@charset "UTF-8";

.maplibregl-ctrl-group {
  background-color: #fff;
  border-radius: 6px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;
}

.maplibregl-ctrl.maplibregl-ctrl-group .magicmap__control:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.maplibregl-ctrl.maplibregl-ctrl-group .magicmap__control:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.magicmap__control {
  width: 38px !important;
  height: 38px !important;
  background-color: #fff;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: .15s color,.15s background-color;
  color: #666;
  font-weight: 500;
  font-family: "Inter",sans-serif;
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.magicmap__control:hover {
  background-color: #286cf6 !important;
  color: #fff !important;
}

.magicmap__control:active {
  background-color: #1f5fe2 !important;
}

.magicmap__control svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.magicmap__control--dark.is-active {
  color: #286cf6;
}

.magicmap__control[data-title]::before {
  content: attr(data-title);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(-12px, -50%) scale(0.6);
  transform-origin: right center;
  background-color: rgba(0,0,0,.85);
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: .25s all;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  line-height: 1;
  z-index: 1000;
}

.magicmap__control[data-title]:hover::before {
  opacity: 1;
  transform: translate(-12px, -50%) scale(1);
  visibility: visible;
}

.magicmap__zoom-level {
  font-size: 14px !important;
  font-weight: 600;
  min-width: 38px;
  height: auto !important;
  min-height: 32px;
  background-color: #fff;
  color: #333;
  border-top: 1px solid #e8e8e8 !important;
  border-bottom: 1px solid #e8e8e8 !important;
  pointer-events: none;
}

.magicmap__control-dropdown {
  position: absolute;
  right: 100%;
  top: 0 !important;
  background-color: #fff;
  min-width: 150px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  margin-right: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  transform: scale(0.6) translateX(10px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform-origin: right center;
  transition: .25s all;
  z-index: 2000 !important;
}

.magicmap__control-dropdown--show {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.magicmap__control-dropdown-item {
  width: auto !important;
  display: flex;
  padding: 8px 12px !important;
  border-radius: 4px;
  transition: .2s all;
  background: none;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #666;
  cursor: pointer;
  border: 0 !important;
  text-align: left;
}

.magicmap__control-dropdown-item:not(:first-child) {
  margin-top: 4px;
}

.magicmap__control-dropdown-item:hover {
  background-color: #f5f5f5;
  color: #000;
}

.magicmap__control-dropdown-item--active {
  background-color: #e9f0fe;
  color: #286cf6;
}

.magicmap__popup,
.magicmap__popup * {
  pointer-events: none;
}

.magicmap__popup {
  pointer-events: none;
}

.magicmap__popup * {
  pointer-events: none;
}

.magicmap__popup.maplibregl-popup-anchor-top {
  top: 32px;
}

.magicmap__popup.maplibregl-popup-anchor-top .maplibregl-popup-tip {
  border-bottom-color: rgba(0,0,0,.9);
}

.magicmap__popup.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
  border-top-color: rgba(0,0,0,.9);
}

.magicmap__popup.maplibregl-popup-anchor-left .maplibregl-popup-tip {
  border-right-color: rgba(0,0,0,.9);
}

.magicmap__popup.maplibregl-popup-anchor-right .maplibregl-popup-tip {
  border-left-color: rgba(0,0,0,.9);
}

.magicmap__popup .maplibregl-popup-content {
  background: rgba(0,0,0,.9);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  backdrop-filter: blur(5px);
  border: none;
}

.magicmap__popup-content {
  display: flex;
  flex-direction: column;
  font-family: "Inter",sans-serif;
}

.magicmap__popup-flag {
  width: 28px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 0 1px hsla(0,0%,100%,.1);
  align-self: center;
  flex-shrink: 0;
  margin-right: 8px;
}

.magicmap__popup-body {
  display: flex;
  align-items: center;
}

.magicmap__popup-title {
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 500;
}

.magicmap__popup-meta {
  display: flex;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid hsla(0,0%,100%,.1);
  margin-top: 8px;
}

.magicmap__popup-meta-item {
  display: inline-flex;
  background-color: hsla(0,0%,100%,.15);
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}

.magicmap__loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0,0%,100%,.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.magicmap__loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: magicmap__spin 1s linear infinite;
  margin-bottom: 15px;
}

.magicmap__loader-text {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

@keyframes magicmap__spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.magicmap__pulse {
  position: absolute;
  border: 2px solid #007bff;
  border-radius: 50%;
  background: hsla(0,0%,100%,.15);
  animation: magicmap__pulse-effect 1.5s infinite,magicmap__pulse-scale 2s infinite linear;
  pointer-events: none;
  z-index: 500;
}

@keyframes magicmap__pulse-effect {
  0% {
    box-shadow: 0 0 0 2px hsla(0,0%,100%,.4),0 0 0 0 #286cf6;
  }

  100% {
    box-shadow: 0 0 0 3px hsla(0,0%,100%,.6),0 0 0 12px rgba(0,149,232,0);
  }
}

@keyframes magicmap__pulse-scale {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.magicmap__player {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 16px;
  color: #fff;
  font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border: 1px solid hsla(0,0%,100%,.1);
  min-width: 600px;
  z-index: 1000;
  user-select: none;
}

.magicmap__player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.magicmap__player-controls-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 16px;
}

.magicmap__player-controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 16px;
}

.magicmap__player-btn {
  background: hsla(0,0%,100%,.1);
  border: 1px solid hsla(0,0%,100%,.2);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.magicmap__player-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.magicmap__player-btn:hover {
  background: hsla(0,0%,100%,.2);
  border-color: hsla(0,0%,100%,.3);
}

.magicmap__player-btn--play.is-playing .magicmap__player-icon--play {
  display: none;
}

.magicmap__player-btn--play.is-playing .magicmap__player-icon--pause {
  display: block !important;
}

.magicmap__player-btn--close {
  background: rgba(220,53,69,.2);
  border-color: rgba(220,53,69,.3);
}

.magicmap__player-btn--close:hover {
  background: rgba(220,53,69,.3);
  border-color: rgba(220,53,69,.4);
}

.magicmap__player-timeline {
  flex: 1;
  margin: 0;
  display: flex;
}

.magicmap__player-info {
  font-size: 11px;
  color: hsla(0,0%,100%,.7);
  text-align: center;
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.magicmap__player-speed {
  position: relative;
}

.magicmap__player-speed-btn {
  background: hsla(0,0%,100%,.1);
  border: 1px solid hsla(0,0%,100%,.2);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  transition: all .2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.magicmap__player-speed-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.magicmap__player-speed-btn:hover {
  background: hsla(0,0%,100%,.2);
}

.magicmap__player-speed-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(0,0,0,.95);
  border: 1px solid hsla(0,0%,100%,.2);
  border-radius: 6px;
  padding: 4px;
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .2s ease;
  min-width: 60px;
}

.magicmap__player-speed-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.magicmap__player-speed-option {
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
  text-align: center;
  transition: background .2s ease;
}

.magicmap__player-speed-option:hover {
  background: hsla(0,0%,100%,.1);
}

.magicmap__player-speed-dropdown {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(10px);
  padding: 12px 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  border: 1px solid hsla(0,0%,100%,.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  min-width: 30px;
  height: 150px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom center;
  transform: translateX(-50%) translateY(10px) scale(0.95);
}

.magicmap__player-speed-dropdown.visible {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.magicmap__speed-value-display {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
}

.magicmap__speed-slider-container {
  flex-grow: 1;
  width: 8px !important;
  margin: 0 auto;
}

.magicmap__progress-slider-container {
  flex: 1;
  display: flex;
  min-height: 8px;
  background-color: hsla(0,0%,100%,.05);
  box-shadow: inherit;
  border: 0;
  border-radius: 50px;
}

.magicmap__progress-slider {
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: hsla(0,0%,100%,.15);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.1);
}

.magicmap__progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #007bff;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: all .2s ease;
}

.magicmap__progress-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,123,255,.4);
}

.magicmap__progress-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.05);
}

.magicmap__progress-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #007bff;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-vertical .noUi-origin {
  top: 0 !important;
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-vertical .noUi-base {
  height: 100% !important;
  width: 100% !important;
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-target {
  background: hsla(0,0%,100%,.2) !important;
  border: none !important;
  border-radius: 20px !important;
  width: 8px !important;
  height: 140px !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-connect {
  background: linear-gradient(180deg, #007bff, #0056b3) !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 8px rgba(0,123,255,.4) !important;
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-handle {
  background: #fff !important;
  border: 3px solid #007bff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  cursor: grab !important;
  width: 24px !important;
  height: 24px !important;
  outline: none !important;
  transition: transform .2s ease !important;
  top: -12px !important;
  right: -8px !important;
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-handle:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 16px rgba(0,123,255,.4) !important;
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-handle:active {
  cursor: grabbing !important;
  transform: scale(1.05) !important;
}

.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-handle:before,
.magicmap__player-simple .magicmap__player-speed-dropdown .noUi-handle:after {
  display: none !important;
  content: none !important;
}

.magicmap__player-simple .magicmap__progress-slider-container .noUi-target {
  background: hsla(0,0%,100%,.15) !important;
  border: none !important;
  border-radius: 6px !important;
  height: 8px !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.1) !important;
  margin: 0 !important;
}

.magicmap__player-simple .magicmap__progress-slider-container .noUi-connect {
  background: linear-gradient(90deg, #007bff, #0056b3) !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(0,123,255,.3) !important;
}

.magicmap__player-simple .magicmap__progress-slider-container .noUi-handle {
  background: #fff !important;
  border: 3px solid #007bff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.2) !important;
  cursor: grab !important;
  width: 20px !important;
  height: 20px !important;
  outline: none !important;
  transition: all .2s ease !important;
  top: -6px !important;
  right: -10px !important;
}

.magicmap__player-simple .magicmap__progress-slider-container .noUi-handle:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 16px rgba(0,123,255,.4) !important;
}

.magicmap__player-simple .magicmap__progress-slider-container .noUi-handle:active {
  cursor: grabbing !important;
  transform: scale(1.05) !important;
}

.magicmap__player-simple .magicmap__progress-slider-container .noUi-handle:before,
.magicmap__player-simple .magicmap__progress-slider-container .noUi-handle:after {
  display: none !important;
  content: none !important;
}

.magicmap__player-simple .magicmap__progress-slider-container .noUi-horizontal {
  height: 8px !important;
}

.magicmap__player .noUi-target {
  background: hsla(0,0%,100%,.2);
  border: none;
  box-shadow: none;
  border-radius: 3px;
  height: auto;
}

.magicmap__player .noUi-connect {
  background: #007bff;
}

.magicmap__player .noUi-handle {
  background: #007bff;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.magicmap__player .noUi-handle:before,
.magicmap__player .noUi-handle:after {
  display: none;
}

.magicmap__player .noUi-horizontal .noUi-handle {
  top: -5px;
  right: -9px;
  cursor: grab;
}

.magicmap__player .noUi-horizontal .noUi-handle:active {
  cursor: grabbing;
}

.magicmap__player .noUi-tooltip {
  background: rgba(0,0,0,.9) !important;
  border: 1px solid hsla(0,0%,100%,.2) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-size: 11px !important;
  padding: 6px 8px !important;
  font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all .2s ease !important;
}

.magicmap__player .noUi-tooltip:before {
  border-top-color: rgba(0,0,0,.9) !important;
}

.magicmap__player .noUi-handle:hover .noUi-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
}

.magicmap__player .noUi-vertical .noUi-handle {
  right: -5px;
  bottom: -6px;
}

/*# sourceMappingURL=magicmap.min.css.map */

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

@-webkit-keyframes shapemoveUp {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@keyframes shapemoveUp {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@-webkit-keyframes shapemoveDown {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

@keyframes shapemoveDown {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes highlight {
  0% {
    background-color: #ffffd1;
    box-shadow: 0 0 0 0.25rem rgba(208, 208, 100, 0.2);
  }

  100% {
    background-color: transparent;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes highlight {
  0% {
    background-color: #ffffd1;
    box-shadow: 0 0 0 0.25rem rgba(208, 208, 100, 0.2);
  }

  100% {
    background-color: transparent;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.is-highlight {
  -webkit-animation: 1s highlight linear;
  animation: 1s highlight linear;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/inter/Inter-Regular.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/inter/Inter-Italic.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/inter/Inter-Bold.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/source-serif/SourceSerif4-Regular.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/source-serif/SourceSerif4-Italic.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/source-serif/SourceSerif4-Bold.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/source-serif/SourceSerif4-Medium.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/source-serif/SourceSerif4-MediumItalic.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/source-serif/SourceSerif4-SemiBold.woff2") format("woff2");
  font-display: swap;
  font-optical-sizing: auto;
}

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

button {
  background: none;
  outline: 0;
  border: 0;
  padding: 0;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

figure {
  margin: 0;
}

html {
  box-sizing: border-box;
  font-size: 1rem;
  -ms-overflow-style: scrollbar;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1f2937;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

@media (max-width: 767px) {
  body {
    line-height: 1.72;
  }
}

body.fixed-hidden {
  position: fixed;
  width: 100%;
  height: 100%;
}

body.is-hidden {
  overflow: hidden;
}

pre,
code,
kbd,
samp {
  font-family: "Lucida Console", "Monaco", monospace;
}

fieldset {
  display: block;
  padding: 1rem;
}

strong,
b {
  font-weight: bold;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 0;
  display: block;
  height: 1px;
  background-color: #e2e8f0;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (min-width: 48rem) {
  hr {
    margin-top: calc(3.7037vw + 0.22222rem);
    margin-bottom: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

hr.lg {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 48rem) {
  hr.lg {
    margin-top: calc(7.40741vw - 1.55556rem);
    margin-bottom: calc(7.40741vw - 1.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  hr.lg {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

hr.xl {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 48rem) {
  hr.xl {
    margin-top: calc(9.25926vw - 2.44444rem);
    margin-bottom: calc(9.25926vw - 2.44444rem);
  }
}

@media screen and (min-width: 75rem) {
  hr.xl {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }
}

/*! purgecss start ignore */

img {
  display: block;
}

img[data-src] {
  opacity: 0;
}

img[data-src].is-loaded,
img[data-src].loaded {
  opacity: 1;
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-bg].is-preloading,
[data-bg].is-loading {
  opacity: 0;
}

[data-bg].is-loaded,
[data-bg].loaded {
  opacity: 1;
  transition-duration: 0.4s;
  transition-property: opacity;
}

[data-bg-blurry='true'].is-preloading,
[data-bg-blurry='true'].is-loading {
  opacity: 0;
  -webkit-filter: blur(60px);
  filter: blur(60px);
}

[data-bg-blurry='true'].is-loaded,
[data-bg-blurry='true'].loaded {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition-duration: 0.5s;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.static {
  position: static !important;
}

img.lazyload:not([src]) {
  visibility: hidden;
}

[data-gallery-item] {
  cursor: pointer;
}

[data-tab-item]:not(:first-child) {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.flag {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
}

.flag img {
  width: 1.375rem;
  height: auto;
  margin-right: 0.375rem;
  border-radius: 0.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

.flag--normal img {
  width: 1.5rem;
  height: 1.125rem;
  border-radius: 0.1875rem;
}

[data-isotope-item] {
  width: 100%;
}

.icon-duotone {
  fill: #286cf6;
}

.icon-duotone--white {
  fill: #fff;
}

body.modal-opened .layout__body {
  z-index: 1004;
}

@media (max-width: 991px) {
  body.search-opened {
    overflow: hidden;
  }
}

body.search-opened .layout__header {
  z-index: 1000;
}

body.search-opened .layout__body,
body.search-opened .navbar,
body.search-opened .hero__container {
  z-index: initial;
}

body.search-opened .hero {
  position: inherit;
  z-index: initial;
}

@supports (position: sticky) {
  .sticky {
    transition: 0.3s top;
  }

@media (min-width: 62rem) {
    .sticky {
      position: sticky;
      top: 1.5rem;
      z-index: 10;
    }
}
}

@supports (position: sticky) {
@media (min-width: 62rem) {
    .sticky--navbar {
      top: 5.1875rem;
    }
}
}

[class*='col'].d-flex[data-isotope-item][style*='display: none;'] {
  display: none !important;
}

[data-form-editable] [data-form-editable-item] [data-form-editable-item-visibility='hide'] {
  display: none;
}

[data-form-editable] [data-form-editable-item]:not(.is-active) [data-form-editable-item-visibility='show'] {
  display: none !important;
}

[data-form-editable] [data-form-editable-item]:not(.is-active) [data-form-editable-item-visibility='show'].d-flex {
  display: none;
}

[data-form-editable] [data-form-editable-item]:not(.is-active) [data-form-editable-item-visibility='hide'] {
  display: block !important;
}

[data-form-editable] [data-form-editable-item]:not(.is-active) [data-form-editable-item-visibility='hide'].d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.row--bordered.row-cols-1 .col + .col {
  border-top: 1px solid #e2e8f0;
}

[data-block-loader] {
  position: relative;
  min-height: 12.5rem;
}

[data-block-loader].is-loading {
  border-radius: 0.625rem;
  overflow: hidden;
}

[data-block-loader] .loader {
  position: absolute;
  background-color: rgba(2, 6, 23, 0.12);
  z-index: 50;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 991px) {
@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .pb-safe {
      padding-bottom: constant(safe-area-inset-bottom);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .pb-safe {
      padding-bottom: env(safe-area-inset-bottom);
    }
}
}

[data-accordion-toggle] {
  cursor: pointer;
}

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

.link {
  color: #286cf6;
}

.link:hover {
  text-decoration: underline;
}

.hidden {
  overflow: hidden !important;
}

.tooltip {
  transition: 0.3s color;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  border: 0;
  background-color: transparent;
  outline: none;
  color: #94a3b8;
  font-size: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.125rem;
}

.tooltip:hover {
  color: #020617;
}

.tooltip--small {
  font-size: 1.25rem;
}

.tooltip--xsmall {
  font-size: 1rem;
}

.rounded {
  border-radius: 0.375rem;
}

.c-pointer {
  cursor: pointer;
}

/*! purgecss end ignore */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #020617;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #020617;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #286cf6;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 0.9375rem;
}

h6 {
  font-size: 0.875rem;
}

@media (min-width: 48rem) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.6875rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  h6 {
    font-size: 1rem;
  }
}

a {
  color: #1f2937;
  text-decoration: none;
  transition: 0.3s color;
}

a:hover {
  color: #286cf6;
  text-decoration: none;
}

/*
 * Bootstrap Grid v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto,
.col-2xl-1,
.col-2xl-2,
.col-2xl-3,
.col-2xl-4,
.col-2xl-5,
.col-2xl-6,
.col-2xl-7,
.col-2xl-8,
.col-2xl-9,
.col-2xl-10,
.col-2xl-11,
.col-2xl-12,
.col-2xl,
.col-2xl-auto {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

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

.offset-r-1 {
  margin-right: 8.33333%;
}

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

.offset-r-2 {
  margin-right: 16.66667%;
}

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

.offset-r-3 {
  margin-right: 25%;
}

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

.offset-r-4 {
  margin-right: 33.33333%;
}

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

.offset-r-5 {
  margin-right: 41.66667%;
}

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

.offset-r-6 {
  margin-right: 50%;
}

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

.offset-r-7 {
  margin-right: 58.33333%;
}

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

.offset-r-8 {
  margin-right: 66.66667%;
}

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

.offset-r-9 {
  margin-right: 75%;
}

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

.offset-r-10 {
  margin-right: 83.33333%;
}

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

.offset-r-11 {
  margin-right: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-r-sm-0 {
    margin-right: 0;
  }

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

  .offset-r-sm-1 {
    margin-right: 8.33333%;
  }

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

  .offset-r-sm-2 {
    margin-right: 16.66667%;
  }

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

  .offset-r-sm-3 {
    margin-right: 25%;
  }

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

  .offset-r-sm-4 {
    margin-right: 33.33333%;
  }

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

  .offset-r-sm-5 {
    margin-right: 41.66667%;
  }

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

  .offset-r-sm-6 {
    margin-right: 50%;
  }

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

  .offset-r-sm-7 {
    margin-right: 58.33333%;
  }

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

  .offset-r-sm-8 {
    margin-right: 66.66667%;
  }

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

  .offset-r-sm-9 {
    margin-right: 75%;
  }

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

  .offset-r-sm-10 {
    margin-right: 83.33333%;
  }

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

  .offset-r-sm-11 {
    margin-right: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-r-md-0 {
    margin-right: 0;
  }

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

  .offset-r-md-1 {
    margin-right: 8.33333%;
  }

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

  .offset-r-md-2 {
    margin-right: 16.66667%;
  }

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

  .offset-r-md-3 {
    margin-right: 25%;
  }

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

  .offset-r-md-4 {
    margin-right: 33.33333%;
  }

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

  .offset-r-md-5 {
    margin-right: 41.66667%;
  }

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

  .offset-r-md-6 {
    margin-right: 50%;
  }

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

  .offset-r-md-7 {
    margin-right: 58.33333%;
  }

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

  .offset-r-md-8 {
    margin-right: 66.66667%;
  }

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

  .offset-r-md-9 {
    margin-right: 75%;
  }

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

  .offset-r-md-10 {
    margin-right: 83.33333%;
  }

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

  .offset-r-md-11 {
    margin-right: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-r-lg-0 {
    margin-right: 0;
  }

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

  .offset-r-lg-1 {
    margin-right: 8.33333%;
  }

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

  .offset-r-lg-2 {
    margin-right: 16.66667%;
  }

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

  .offset-r-lg-3 {
    margin-right: 25%;
  }

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

  .offset-r-lg-4 {
    margin-right: 33.33333%;
  }

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

  .offset-r-lg-5 {
    margin-right: 41.66667%;
  }

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

  .offset-r-lg-6 {
    margin-right: 50%;
  }

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

  .offset-r-lg-7 {
    margin-right: 58.33333%;
  }

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

  .offset-r-lg-8 {
    margin-right: 66.66667%;
  }

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

  .offset-r-lg-9 {
    margin-right: 75%;
  }

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

  .offset-r-lg-10 {
    margin-right: 83.33333%;
  }

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

  .offset-r-lg-11 {
    margin-right: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-r-xl-0 {
    margin-right: 0;
  }

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

  .offset-r-xl-1 {
    margin-right: 8.33333%;
  }

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

  .offset-r-xl-2 {
    margin-right: 16.66667%;
  }

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

  .offset-r-xl-3 {
    margin-right: 25%;
  }

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

  .offset-r-xl-4 {
    margin-right: 33.33333%;
  }

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

  .offset-r-xl-5 {
    margin-right: 41.66667%;
  }

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

  .offset-r-xl-6 {
    margin-right: 50%;
  }

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

  .offset-r-xl-7 {
    margin-right: 58.33333%;
  }

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

  .offset-r-xl-8 {
    margin-right: 66.66667%;
  }

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

  .offset-r-xl-9 {
    margin-right: 75%;
  }

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

  .offset-r-xl-10 {
    margin-right: 83.33333%;
  }

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

  .offset-r-xl-11 {
    margin-right: 91.66667%;
  }
}

@media (min-width: 1440px) {
  .col-2xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-2xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-2xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-2xl-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-2xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-2xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-2xl-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-2xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-2xl-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-2xl-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-2xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-2xl-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-2xl-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-2xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-2xl-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-2xl-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-2xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-2xl-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-2xl-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-2xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-2xl-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-2xl-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-2xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-2xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-2xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-2xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-2xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-2xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-2xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-2xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-2xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-2xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-2xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-2xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-2xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-2xl-0 {
    margin-left: 0;
  }

  .offset-r-2xl-0 {
    margin-right: 0;
  }

  .offset-2xl-1 {
    margin-left: 8.33333%;
  }

  .offset-r-2xl-1 {
    margin-right: 8.33333%;
  }

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

  .offset-r-2xl-2 {
    margin-right: 16.66667%;
  }

  .offset-2xl-3 {
    margin-left: 25%;
  }

  .offset-r-2xl-3 {
    margin-right: 25%;
  }

  .offset-2xl-4 {
    margin-left: 33.33333%;
  }

  .offset-r-2xl-4 {
    margin-right: 33.33333%;
  }

  .offset-2xl-5 {
    margin-left: 41.66667%;
  }

  .offset-r-2xl-5 {
    margin-right: 41.66667%;
  }

  .offset-2xl-6 {
    margin-left: 50%;
  }

  .offset-r-2xl-6 {
    margin-right: 50%;
  }

  .offset-2xl-7 {
    margin-left: 58.33333%;
  }

  .offset-r-2xl-7 {
    margin-right: 58.33333%;
  }

  .offset-2xl-8 {
    margin-left: 66.66667%;
  }

  .offset-r-2xl-8 {
    margin-right: 66.66667%;
  }

  .offset-2xl-9 {
    margin-left: 75%;
  }

  .offset-r-2xl-9 {
    margin-right: 75%;
  }

  .offset-2xl-10 {
    margin-left: 83.33333%;
  }

  .offset-r-2xl-10 {
    margin-right: 83.33333%;
  }

  .offset-2xl-11 {
    margin-left: 91.66667%;
  }

  .offset-r-2xl-11 {
    margin-right: 91.66667%;
  }
}

.col-25 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

@media (min-width: 48rem) {
  .col-md-25 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 62rem) {
  .col-lg-25 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 75rem) {
  .col-xl-25 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1440px) {
  .d-2xl-none {
    display: none !important;
  }

  .d-2xl-inline {
    display: inline !important;
  }

  .d-2xl-inline-block {
    display: inline-block !important;
  }

  .d-2xl-block {
    display: block !important;
  }

  .d-2xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-2xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1440px) {
  .flex-2xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-2xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-2xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-2xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-2xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-2xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-2xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-2xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-2xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-2xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-2xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-2xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-2xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-2xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-2xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-2xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-2xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-2xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-2xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-2xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-2xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-2xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-2xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-2xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-2xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-2xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-2xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-2xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-2xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-2xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-2xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-2xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-2xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-2xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.m-2 {
  margin: 1.5rem !important;
}

.mt-2 {
  margin-top: 1.5rem !important;
}

.mr-2 {
  margin-right: 1.5rem !important;
}

.mb-2 {
  margin-bottom: 1.5rem !important;
}

.ml-2 {
  margin-left: 1.5rem !important;
}

.m-3 {
  margin: 2rem !important;
}

.mt-3 {
  margin-top: 2rem !important;
}

.mr-3 {
  margin-right: 2rem !important;
}

.mb-3 {
  margin-bottom: 2rem !important;
}

.ml-3 {
  margin-left: 2rem !important;
}

.m-4 {
  margin: 3rem !important;
}

.mt-4 {
  margin-top: 3rem !important;
}

.mr-4 {
  margin-right: 3rem !important;
}

.mb-4 {
  margin-bottom: 3rem !important;
}

.ml-4 {
  margin-left: 3rem !important;
}

.m-5 {
  margin: 4rem !important;
}

.mt-5 {
  margin-top: 4rem !important;
}

.mr-5 {
  margin-right: 4rem !important;
}

.mb-5 {
  margin-bottom: 4rem !important;
}

.ml-5 {
  margin-left: 4rem !important;
}

.m-025 {
  margin: 0.25rem !important;
}

.mt-025 {
  margin-top: 0.25rem !important;
}

.mr-025 {
  margin-right: 0.25rem !important;
}

.mb-025 {
  margin-bottom: 0.25rem !important;
}

.ml-025 {
  margin-left: 0.25rem !important;
}

.m-05 {
  margin: 0.5rem !important;
}

.mt-05 {
  margin-top: 0.5rem !important;
}

.mr-05 {
  margin-right: 0.5rem !important;
}

.mb-05 {
  margin-bottom: 0.5rem !important;
}

.ml-05 {
  margin-left: 0.5rem !important;
}

.m-6 {
  margin: 4.375rem !important;
}

.mt-6 {
  margin-top: 4.375rem !important;
}

.mr-6 {
  margin-right: 4.375rem !important;
}

.mb-6 {
  margin-bottom: 4.375rem !important;
}

.ml-6 {
  margin-left: 4.375rem !important;
}

.m-7 {
  margin: 5.875rem !important;
}

.mt-7 {
  margin-top: 5.875rem !important;
}

.mr-7 {
  margin-right: 5.875rem !important;
}

.mb-7 {
  margin-bottom: 5.875rem !important;
}

.ml-7 {
  margin-left: 5.875rem !important;
}

.m-8 {
  margin: 6rem !important;
}

.mt-8 {
  margin-top: 6rem !important;
}

.mr-8 {
  margin-right: 6rem !important;
}

.mb-8 {
  margin-bottom: 6rem !important;
}

.ml-8 {
  margin-left: 6rem !important;
}

.m-9 {
  margin: 9.25rem !important;
}

.mt-9 {
  margin-top: 9.25rem !important;
}

.mr-9 {
  margin-right: 9.25rem !important;
}

.mb-9 {
  margin-bottom: 9.25rem !important;
}

.ml-9 {
  margin-left: 9.25rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 1rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.p-2 {
  padding: 1.5rem !important;
}

.pt-2 {
  padding-top: 1.5rem !important;
}

.pr-2 {
  padding-right: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 1.5rem !important;
}

.pl-2 {
  padding-left: 1.5rem !important;
}

.p-3 {
  padding: 2rem !important;
}

.pt-3 {
  padding-top: 2rem !important;
}

.pr-3 {
  padding-right: 2rem !important;
}

.pb-3 {
  padding-bottom: 2rem !important;
}

.pl-3 {
  padding-left: 2rem !important;
}

.p-4 {
  padding: 3rem !important;
}

.pt-4 {
  padding-top: 3rem !important;
}

.pr-4 {
  padding-right: 3rem !important;
}

.pb-4 {
  padding-bottom: 3rem !important;
}

.pl-4 {
  padding-left: 3rem !important;
}

.p-5 {
  padding: 4rem !important;
}

.pt-5 {
  padding-top: 4rem !important;
}

.pr-5 {
  padding-right: 4rem !important;
}

.pb-5 {
  padding-bottom: 4rem !important;
}

.pl-5 {
  padding-left: 4rem !important;
}

.p-025 {
  padding: 0.25rem !important;
}

.pt-025 {
  padding-top: 0.25rem !important;
}

.pr-025 {
  padding-right: 0.25rem !important;
}

.pb-025 {
  padding-bottom: 0.25rem !important;
}

.pl-025 {
  padding-left: 0.25rem !important;
}

.p-05 {
  padding: 0.5rem !important;
}

.pt-05 {
  padding-top: 0.5rem !important;
}

.pr-05 {
  padding-right: 0.5rem !important;
}

.pb-05 {
  padding-bottom: 0.5rem !important;
}

.pl-05 {
  padding-left: 0.5rem !important;
}

.p-6 {
  padding: 4.375rem !important;
}

.pt-6 {
  padding-top: 4.375rem !important;
}

.pr-6 {
  padding-right: 4.375rem !important;
}

.pb-6 {
  padding-bottom: 4.375rem !important;
}

.pl-6 {
  padding-left: 4.375rem !important;
}

.p-7 {
  padding: 5.875rem !important;
}

.pt-7 {
  padding-top: 5.875rem !important;
}

.pr-7 {
  padding-right: 5.875rem !important;
}

.pb-7 {
  padding-bottom: 5.875rem !important;
}

.pl-7 {
  padding-left: 5.875rem !important;
}

.p-8 {
  padding: 6rem !important;
}

.pt-8 {
  padding-top: 6rem !important;
}

.pr-8 {
  padding-right: 6rem !important;
}

.pb-8 {
  padding-bottom: 6rem !important;
}

.pl-8 {
  padding-left: 6rem !important;
}

.p-9 {
  padding: 9.25rem !important;
}

.pt-9 {
  padding-top: 9.25rem !important;
}

.pr-9 {
  padding-right: 9.25rem !important;
}

.pb-9 {
  padding-bottom: 9.25rem !important;
}

.pl-9 {
  padding-left: 9.25rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 1rem !important;
  }

  .mt-sm-1 {
    margin-top: 1rem !important;
  }

  .mr-sm-1 {
    margin-right: 1rem !important;
  }

  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-1 {
    margin-left: 1rem !important;
  }

  .m-sm-2 {
    margin: 1.5rem !important;
  }

  .mt-sm-2 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-2 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-2 {
    margin-left: 1.5rem !important;
  }

  .m-sm-3 {
    margin: 2rem !important;
  }

  .mt-sm-3 {
    margin-top: 2rem !important;
  }

  .mr-sm-3 {
    margin-right: 2rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-3 {
    margin-left: 2rem !important;
  }

  .m-sm-4 {
    margin: 3rem !important;
  }

  .mt-sm-4 {
    margin-top: 3rem !important;
  }

  .mr-sm-4 {
    margin-right: 3rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-4 {
    margin-left: 3rem !important;
  }

  .m-sm-5 {
    margin: 4rem !important;
  }

  .mt-sm-5 {
    margin-top: 4rem !important;
  }

  .mr-sm-5 {
    margin-right: 4rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 4rem !important;
  }

  .ml-sm-5 {
    margin-left: 4rem !important;
  }

  .m-sm-025 {
    margin: 0.25rem !important;
  }

  .mt-sm-025 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-025 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-025 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-025 {
    margin-left: 0.25rem !important;
  }

  .m-sm-05 {
    margin: 0.5rem !important;
  }

  .mt-sm-05 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-05 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-05 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-05 {
    margin-left: 0.5rem !important;
  }

  .m-sm-6 {
    margin: 4.375rem !important;
  }

  .mt-sm-6 {
    margin-top: 4.375rem !important;
  }

  .mr-sm-6 {
    margin-right: 4.375rem !important;
  }

  .mb-sm-6 {
    margin-bottom: 4.375rem !important;
  }

  .ml-sm-6 {
    margin-left: 4.375rem !important;
  }

  .m-sm-7 {
    margin: 5.875rem !important;
  }

  .mt-sm-7 {
    margin-top: 5.875rem !important;
  }

  .mr-sm-7 {
    margin-right: 5.875rem !important;
  }

  .mb-sm-7 {
    margin-bottom: 5.875rem !important;
  }

  .ml-sm-7 {
    margin-left: 5.875rem !important;
  }

  .m-sm-8 {
    margin: 6rem !important;
  }

  .mt-sm-8 {
    margin-top: 6rem !important;
  }

  .mr-sm-8 {
    margin-right: 6rem !important;
  }

  .mb-sm-8 {
    margin-bottom: 6rem !important;
  }

  .ml-sm-8 {
    margin-left: 6rem !important;
  }

  .m-sm-9 {
    margin: 9.25rem !important;
  }

  .mt-sm-9 {
    margin-top: 9.25rem !important;
  }

  .mr-sm-9 {
    margin-right: 9.25rem !important;
  }

  .mb-sm-9 {
    margin-bottom: 9.25rem !important;
  }

  .ml-sm-9 {
    margin-left: 9.25rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 1rem !important;
  }

  .pt-sm-1 {
    padding-top: 1rem !important;
  }

  .pr-sm-1 {
    padding-right: 1rem !important;
  }

  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-1 {
    padding-left: 1rem !important;
  }

  .p-sm-2 {
    padding: 1.5rem !important;
  }

  .pt-sm-2 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-2 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-2 {
    padding-left: 1.5rem !important;
  }

  .p-sm-3 {
    padding: 2rem !important;
  }

  .pt-sm-3 {
    padding-top: 2rem !important;
  }

  .pr-sm-3 {
    padding-right: 2rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-3 {
    padding-left: 2rem !important;
  }

  .p-sm-4 {
    padding: 3rem !important;
  }

  .pt-sm-4 {
    padding-top: 3rem !important;
  }

  .pr-sm-4 {
    padding-right: 3rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-4 {
    padding-left: 3rem !important;
  }

  .p-sm-5 {
    padding: 4rem !important;
  }

  .pt-sm-5 {
    padding-top: 4rem !important;
  }

  .pr-sm-5 {
    padding-right: 4rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 4rem !important;
  }

  .pl-sm-5 {
    padding-left: 4rem !important;
  }

  .p-sm-025 {
    padding: 0.25rem !important;
  }

  .pt-sm-025 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-025 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-025 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-025 {
    padding-left: 0.25rem !important;
  }

  .p-sm-05 {
    padding: 0.5rem !important;
  }

  .pt-sm-05 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-05 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-05 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-05 {
    padding-left: 0.5rem !important;
  }

  .p-sm-6 {
    padding: 4.375rem !important;
  }

  .pt-sm-6 {
    padding-top: 4.375rem !important;
  }

  .pr-sm-6 {
    padding-right: 4.375rem !important;
  }

  .pb-sm-6 {
    padding-bottom: 4.375rem !important;
  }

  .pl-sm-6 {
    padding-left: 4.375rem !important;
  }

  .p-sm-7 {
    padding: 5.875rem !important;
  }

  .pt-sm-7 {
    padding-top: 5.875rem !important;
  }

  .pr-sm-7 {
    padding-right: 5.875rem !important;
  }

  .pb-sm-7 {
    padding-bottom: 5.875rem !important;
  }

  .pl-sm-7 {
    padding-left: 5.875rem !important;
  }

  .p-sm-8 {
    padding: 6rem !important;
  }

  .pt-sm-8 {
    padding-top: 6rem !important;
  }

  .pr-sm-8 {
    padding-right: 6rem !important;
  }

  .pb-sm-8 {
    padding-bottom: 6rem !important;
  }

  .pl-sm-8 {
    padding-left: 6rem !important;
  }

  .p-sm-9 {
    padding: 9.25rem !important;
  }

  .pt-sm-9 {
    padding-top: 9.25rem !important;
  }

  .pr-sm-9 {
    padding-right: 9.25rem !important;
  }

  .pb-sm-9 {
    padding-bottom: 9.25rem !important;
  }

  .pl-sm-9 {
    padding-left: 9.25rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto {
    margin-left: auto !important;
  }

  .px-sm-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 1rem !important;
  }

  .mt-md-1 {
    margin-top: 1rem !important;
  }

  .mr-md-1 {
    margin-right: 1rem !important;
  }

  .mb-md-1 {
    margin-bottom: 1rem !important;
  }

  .ml-md-1 {
    margin-left: 1rem !important;
  }

  .m-md-2 {
    margin: 1.5rem !important;
  }

  .mt-md-2 {
    margin-top: 1.5rem !important;
  }

  .mr-md-2 {
    margin-right: 1.5rem !important;
  }

  .mb-md-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-2 {
    margin-left: 1.5rem !important;
  }

  .m-md-3 {
    margin: 2rem !important;
  }

  .mt-md-3 {
    margin-top: 2rem !important;
  }

  .mr-md-3 {
    margin-right: 2rem !important;
  }

  .mb-md-3 {
    margin-bottom: 2rem !important;
  }

  .ml-md-3 {
    margin-left: 2rem !important;
  }

  .m-md-4 {
    margin: 3rem !important;
  }

  .mt-md-4 {
    margin-top: 3rem !important;
  }

  .mr-md-4 {
    margin-right: 3rem !important;
  }

  .mb-md-4 {
    margin-bottom: 3rem !important;
  }

  .ml-md-4 {
    margin-left: 3rem !important;
  }

  .m-md-5 {
    margin: 4rem !important;
  }

  .mt-md-5 {
    margin-top: 4rem !important;
  }

  .mr-md-5 {
    margin-right: 4rem !important;
  }

  .mb-md-5 {
    margin-bottom: 4rem !important;
  }

  .ml-md-5 {
    margin-left: 4rem !important;
  }

  .m-md-025 {
    margin: 0.25rem !important;
  }

  .mt-md-025 {
    margin-top: 0.25rem !important;
  }

  .mr-md-025 {
    margin-right: 0.25rem !important;
  }

  .mb-md-025 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-025 {
    margin-left: 0.25rem !important;
  }

  .m-md-05 {
    margin: 0.5rem !important;
  }

  .mt-md-05 {
    margin-top: 0.5rem !important;
  }

  .mr-md-05 {
    margin-right: 0.5rem !important;
  }

  .mb-md-05 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-05 {
    margin-left: 0.5rem !important;
  }

  .m-md-6 {
    margin: 4.375rem !important;
  }

  .mt-md-6 {
    margin-top: 4.375rem !important;
  }

  .mr-md-6 {
    margin-right: 4.375rem !important;
  }

  .mb-md-6 {
    margin-bottom: 4.375rem !important;
  }

  .ml-md-6 {
    margin-left: 4.375rem !important;
  }

  .m-md-7 {
    margin: 5.875rem !important;
  }

  .mt-md-7 {
    margin-top: 5.875rem !important;
  }

  .mr-md-7 {
    margin-right: 5.875rem !important;
  }

  .mb-md-7 {
    margin-bottom: 5.875rem !important;
  }

  .ml-md-7 {
    margin-left: 5.875rem !important;
  }

  .m-md-8 {
    margin: 6rem !important;
  }

  .mt-md-8 {
    margin-top: 6rem !important;
  }

  .mr-md-8 {
    margin-right: 6rem !important;
  }

  .mb-md-8 {
    margin-bottom: 6rem !important;
  }

  .ml-md-8 {
    margin-left: 6rem !important;
  }

  .m-md-9 {
    margin: 9.25rem !important;
  }

  .mt-md-9 {
    margin-top: 9.25rem !important;
  }

  .mr-md-9 {
    margin-right: 9.25rem !important;
  }

  .mb-md-9 {
    margin-bottom: 9.25rem !important;
  }

  .ml-md-9 {
    margin-left: 9.25rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 1rem !important;
  }

  .pt-md-1 {
    padding-top: 1rem !important;
  }

  .pr-md-1 {
    padding-right: 1rem !important;
  }

  .pb-md-1 {
    padding-bottom: 1rem !important;
  }

  .pl-md-1 {
    padding-left: 1rem !important;
  }

  .p-md-2 {
    padding: 1.5rem !important;
  }

  .pt-md-2 {
    padding-top: 1.5rem !important;
  }

  .pr-md-2 {
    padding-right: 1.5rem !important;
  }

  .pb-md-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-2 {
    padding-left: 1.5rem !important;
  }

  .p-md-3 {
    padding: 2rem !important;
  }

  .pt-md-3 {
    padding-top: 2rem !important;
  }

  .pr-md-3 {
    padding-right: 2rem !important;
  }

  .pb-md-3 {
    padding-bottom: 2rem !important;
  }

  .pl-md-3 {
    padding-left: 2rem !important;
  }

  .p-md-4 {
    padding: 3rem !important;
  }

  .pt-md-4 {
    padding-top: 3rem !important;
  }

  .pr-md-4 {
    padding-right: 3rem !important;
  }

  .pb-md-4 {
    padding-bottom: 3rem !important;
  }

  .pl-md-4 {
    padding-left: 3rem !important;
  }

  .p-md-5 {
    padding: 4rem !important;
  }

  .pt-md-5 {
    padding-top: 4rem !important;
  }

  .pr-md-5 {
    padding-right: 4rem !important;
  }

  .pb-md-5 {
    padding-bottom: 4rem !important;
  }

  .pl-md-5 {
    padding-left: 4rem !important;
  }

  .p-md-025 {
    padding: 0.25rem !important;
  }

  .pt-md-025 {
    padding-top: 0.25rem !important;
  }

  .pr-md-025 {
    padding-right: 0.25rem !important;
  }

  .pb-md-025 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-025 {
    padding-left: 0.25rem !important;
  }

  .p-md-05 {
    padding: 0.5rem !important;
  }

  .pt-md-05 {
    padding-top: 0.5rem !important;
  }

  .pr-md-05 {
    padding-right: 0.5rem !important;
  }

  .pb-md-05 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-05 {
    padding-left: 0.5rem !important;
  }

  .p-md-6 {
    padding: 4.375rem !important;
  }

  .pt-md-6 {
    padding-top: 4.375rem !important;
  }

  .pr-md-6 {
    padding-right: 4.375rem !important;
  }

  .pb-md-6 {
    padding-bottom: 4.375rem !important;
  }

  .pl-md-6 {
    padding-left: 4.375rem !important;
  }

  .p-md-7 {
    padding: 5.875rem !important;
  }

  .pt-md-7 {
    padding-top: 5.875rem !important;
  }

  .pr-md-7 {
    padding-right: 5.875rem !important;
  }

  .pb-md-7 {
    padding-bottom: 5.875rem !important;
  }

  .pl-md-7 {
    padding-left: 5.875rem !important;
  }

  .p-md-8 {
    padding: 6rem !important;
  }

  .pt-md-8 {
    padding-top: 6rem !important;
  }

  .pr-md-8 {
    padding-right: 6rem !important;
  }

  .pb-md-8 {
    padding-bottom: 6rem !important;
  }

  .pl-md-8 {
    padding-left: 6rem !important;
  }

  .p-md-9 {
    padding: 9.25rem !important;
  }

  .pt-md-9 {
    padding-top: 9.25rem !important;
  }

  .pr-md-9 {
    padding-right: 9.25rem !important;
  }

  .pb-md-9 {
    padding-bottom: 9.25rem !important;
  }

  .pl-md-9 {
    padding-left: 9.25rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto {
    margin-left: auto !important;
  }

  .px-md-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 1rem !important;
  }

  .mt-lg-1 {
    margin-top: 1rem !important;
  }

  .mr-lg-1 {
    margin-right: 1rem !important;
  }

  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-1 {
    margin-left: 1rem !important;
  }

  .m-lg-2 {
    margin: 1.5rem !important;
  }

  .mt-lg-2 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-2 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-2 {
    margin-left: 1.5rem !important;
  }

  .m-lg-3 {
    margin: 2rem !important;
  }

  .mt-lg-3 {
    margin-top: 2rem !important;
  }

  .mr-lg-3 {
    margin-right: 2rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-3 {
    margin-left: 2rem !important;
  }

  .m-lg-4 {
    margin: 3rem !important;
  }

  .mt-lg-4 {
    margin-top: 3rem !important;
  }

  .mr-lg-4 {
    margin-right: 3rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-4 {
    margin-left: 3rem !important;
  }

  .m-lg-5 {
    margin: 4rem !important;
  }

  .mt-lg-5 {
    margin-top: 4rem !important;
  }

  .mr-lg-5 {
    margin-right: 4rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 4rem !important;
  }

  .ml-lg-5 {
    margin-left: 4rem !important;
  }

  .m-lg-025 {
    margin: 0.25rem !important;
  }

  .mt-lg-025 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-025 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-025 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-025 {
    margin-left: 0.25rem !important;
  }

  .m-lg-05 {
    margin: 0.5rem !important;
  }

  .mt-lg-05 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-05 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-05 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-05 {
    margin-left: 0.5rem !important;
  }

  .m-lg-6 {
    margin: 4.375rem !important;
  }

  .mt-lg-6 {
    margin-top: 4.375rem !important;
  }

  .mr-lg-6 {
    margin-right: 4.375rem !important;
  }

  .mb-lg-6 {
    margin-bottom: 4.375rem !important;
  }

  .ml-lg-6 {
    margin-left: 4.375rem !important;
  }

  .m-lg-7 {
    margin: 5.875rem !important;
  }

  .mt-lg-7 {
    margin-top: 5.875rem !important;
  }

  .mr-lg-7 {
    margin-right: 5.875rem !important;
  }

  .mb-lg-7 {
    margin-bottom: 5.875rem !important;
  }

  .ml-lg-7 {
    margin-left: 5.875rem !important;
  }

  .m-lg-8 {
    margin: 6rem !important;
  }

  .mt-lg-8 {
    margin-top: 6rem !important;
  }

  .mr-lg-8 {
    margin-right: 6rem !important;
  }

  .mb-lg-8 {
    margin-bottom: 6rem !important;
  }

  .ml-lg-8 {
    margin-left: 6rem !important;
  }

  .m-lg-9 {
    margin: 9.25rem !important;
  }

  .mt-lg-9 {
    margin-top: 9.25rem !important;
  }

  .mr-lg-9 {
    margin-right: 9.25rem !important;
  }

  .mb-lg-9 {
    margin-bottom: 9.25rem !important;
  }

  .ml-lg-9 {
    margin-left: 9.25rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 1rem !important;
  }

  .pt-lg-1 {
    padding-top: 1rem !important;
  }

  .pr-lg-1 {
    padding-right: 1rem !important;
  }

  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-1 {
    padding-left: 1rem !important;
  }

  .p-lg-2 {
    padding: 1.5rem !important;
  }

  .pt-lg-2 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-2 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-2 {
    padding-left: 1.5rem !important;
  }

  .p-lg-3 {
    padding: 2rem !important;
  }

  .pt-lg-3 {
    padding-top: 2rem !important;
  }

  .pr-lg-3 {
    padding-right: 2rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-3 {
    padding-left: 2rem !important;
  }

  .p-lg-4 {
    padding: 3rem !important;
  }

  .pt-lg-4 {
    padding-top: 3rem !important;
  }

  .pr-lg-4 {
    padding-right: 3rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-4 {
    padding-left: 3rem !important;
  }

  .p-lg-5 {
    padding: 4rem !important;
  }

  .pt-lg-5 {
    padding-top: 4rem !important;
  }

  .pr-lg-5 {
    padding-right: 4rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 4rem !important;
  }

  .pl-lg-5 {
    padding-left: 4rem !important;
  }

  .p-lg-025 {
    padding: 0.25rem !important;
  }

  .pt-lg-025 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-025 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-025 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-025 {
    padding-left: 0.25rem !important;
  }

  .p-lg-05 {
    padding: 0.5rem !important;
  }

  .pt-lg-05 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-05 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-05 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-05 {
    padding-left: 0.5rem !important;
  }

  .p-lg-6 {
    padding: 4.375rem !important;
  }

  .pt-lg-6 {
    padding-top: 4.375rem !important;
  }

  .pr-lg-6 {
    padding-right: 4.375rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 4.375rem !important;
  }

  .pl-lg-6 {
    padding-left: 4.375rem !important;
  }

  .p-lg-7 {
    padding: 5.875rem !important;
  }

  .pt-lg-7 {
    padding-top: 5.875rem !important;
  }

  .pr-lg-7 {
    padding-right: 5.875rem !important;
  }

  .pb-lg-7 {
    padding-bottom: 5.875rem !important;
  }

  .pl-lg-7 {
    padding-left: 5.875rem !important;
  }

  .p-lg-8 {
    padding: 6rem !important;
  }

  .pt-lg-8 {
    padding-top: 6rem !important;
  }

  .pr-lg-8 {
    padding-right: 6rem !important;
  }

  .pb-lg-8 {
    padding-bottom: 6rem !important;
  }

  .pl-lg-8 {
    padding-left: 6rem !important;
  }

  .p-lg-9 {
    padding: 9.25rem !important;
  }

  .pt-lg-9 {
    padding-top: 9.25rem !important;
  }

  .pr-lg-9 {
    padding-right: 9.25rem !important;
  }

  .pb-lg-9 {
    padding-bottom: 9.25rem !important;
  }

  .pl-lg-9 {
    padding-left: 9.25rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto {
    margin-left: auto !important;
  }

  .px-lg-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 1rem !important;
  }

  .mt-xl-1 {
    margin-top: 1rem !important;
  }

  .mr-xl-1 {
    margin-right: 1rem !important;
  }

  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-1 {
    margin-left: 1rem !important;
  }

  .m-xl-2 {
    margin: 1.5rem !important;
  }

  .mt-xl-2 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-2 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-2 {
    margin-left: 1.5rem !important;
  }

  .m-xl-3 {
    margin: 2rem !important;
  }

  .mt-xl-3 {
    margin-top: 2rem !important;
  }

  .mr-xl-3 {
    margin-right: 2rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 2rem !important;
  }

  .ml-xl-3 {
    margin-left: 2rem !important;
  }

  .m-xl-4 {
    margin: 3rem !important;
  }

  .mt-xl-4 {
    margin-top: 3rem !important;
  }

  .mr-xl-4 {
    margin-right: 3rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-4 {
    margin-left: 3rem !important;
  }

  .m-xl-5 {
    margin: 4rem !important;
  }

  .mt-xl-5 {
    margin-top: 4rem !important;
  }

  .mr-xl-5 {
    margin-right: 4rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 4rem !important;
  }

  .ml-xl-5 {
    margin-left: 4rem !important;
  }

  .m-xl-025 {
    margin: 0.25rem !important;
  }

  .mt-xl-025 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-025 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-025 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-025 {
    margin-left: 0.25rem !important;
  }

  .m-xl-05 {
    margin: 0.5rem !important;
  }

  .mt-xl-05 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-05 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-05 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-05 {
    margin-left: 0.5rem !important;
  }

  .m-xl-6 {
    margin: 4.375rem !important;
  }

  .mt-xl-6 {
    margin-top: 4.375rem !important;
  }

  .mr-xl-6 {
    margin-right: 4.375rem !important;
  }

  .mb-xl-6 {
    margin-bottom: 4.375rem !important;
  }

  .ml-xl-6 {
    margin-left: 4.375rem !important;
  }

  .m-xl-7 {
    margin: 5.875rem !important;
  }

  .mt-xl-7 {
    margin-top: 5.875rem !important;
  }

  .mr-xl-7 {
    margin-right: 5.875rem !important;
  }

  .mb-xl-7 {
    margin-bottom: 5.875rem !important;
  }

  .ml-xl-7 {
    margin-left: 5.875rem !important;
  }

  .m-xl-8 {
    margin: 6rem !important;
  }

  .mt-xl-8 {
    margin-top: 6rem !important;
  }

  .mr-xl-8 {
    margin-right: 6rem !important;
  }

  .mb-xl-8 {
    margin-bottom: 6rem !important;
  }

  .ml-xl-8 {
    margin-left: 6rem !important;
  }

  .m-xl-9 {
    margin: 9.25rem !important;
  }

  .mt-xl-9 {
    margin-top: 9.25rem !important;
  }

  .mr-xl-9 {
    margin-right: 9.25rem !important;
  }

  .mb-xl-9 {
    margin-bottom: 9.25rem !important;
  }

  .ml-xl-9 {
    margin-left: 9.25rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 1rem !important;
  }

  .pt-xl-1 {
    padding-top: 1rem !important;
  }

  .pr-xl-1 {
    padding-right: 1rem !important;
  }

  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-1 {
    padding-left: 1rem !important;
  }

  .p-xl-2 {
    padding: 1.5rem !important;
  }

  .pt-xl-2 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-2 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-2 {
    padding-left: 1.5rem !important;
  }

  .p-xl-3 {
    padding: 2rem !important;
  }

  .pt-xl-3 {
    padding-top: 2rem !important;
  }

  .pr-xl-3 {
    padding-right: 2rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 2rem !important;
  }

  .pl-xl-3 {
    padding-left: 2rem !important;
  }

  .p-xl-4 {
    padding: 3rem !important;
  }

  .pt-xl-4 {
    padding-top: 3rem !important;
  }

  .pr-xl-4 {
    padding-right: 3rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-4 {
    padding-left: 3rem !important;
  }

  .p-xl-5 {
    padding: 4rem !important;
  }

  .pt-xl-5 {
    padding-top: 4rem !important;
  }

  .pr-xl-5 {
    padding-right: 4rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 4rem !important;
  }

  .pl-xl-5 {
    padding-left: 4rem !important;
  }

  .p-xl-025 {
    padding: 0.25rem !important;
  }

  .pt-xl-025 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-025 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-025 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-025 {
    padding-left: 0.25rem !important;
  }

  .p-xl-05 {
    padding: 0.5rem !important;
  }

  .pt-xl-05 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-05 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-05 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-05 {
    padding-left: 0.5rem !important;
  }

  .p-xl-6 {
    padding: 4.375rem !important;
  }

  .pt-xl-6 {
    padding-top: 4.375rem !important;
  }

  .pr-xl-6 {
    padding-right: 4.375rem !important;
  }

  .pb-xl-6 {
    padding-bottom: 4.375rem !important;
  }

  .pl-xl-6 {
    padding-left: 4.375rem !important;
  }

  .p-xl-7 {
    padding: 5.875rem !important;
  }

  .pt-xl-7 {
    padding-top: 5.875rem !important;
  }

  .pr-xl-7 {
    padding-right: 5.875rem !important;
  }

  .pb-xl-7 {
    padding-bottom: 5.875rem !important;
  }

  .pl-xl-7 {
    padding-left: 5.875rem !important;
  }

  .p-xl-8 {
    padding: 6rem !important;
  }

  .pt-xl-8 {
    padding-top: 6rem !important;
  }

  .pr-xl-8 {
    padding-right: 6rem !important;
  }

  .pb-xl-8 {
    padding-bottom: 6rem !important;
  }

  .pl-xl-8 {
    padding-left: 6rem !important;
  }

  .p-xl-9 {
    padding: 9.25rem !important;
  }

  .pt-xl-9 {
    padding-top: 9.25rem !important;
  }

  .pr-xl-9 {
    padding-right: 9.25rem !important;
  }

  .pb-xl-9 {
    padding-bottom: 9.25rem !important;
  }

  .pl-xl-9 {
    padding-left: 9.25rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto {
    margin-left: auto !important;
  }

  .px-xl-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1440px) {
  .m-2xl-0 {
    margin: 0 !important;
  }

  .mt-2xl-0 {
    margin-top: 0 !important;
  }

  .mr-2xl-0 {
    margin-right: 0 !important;
  }

  .mb-2xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-2xl-0 {
    margin-left: 0 !important;
  }

  .m-2xl-1 {
    margin: 1rem !important;
  }

  .mt-2xl-1 {
    margin-top: 1rem !important;
  }

  .mr-2xl-1 {
    margin-right: 1rem !important;
  }

  .mb-2xl-1 {
    margin-bottom: 1rem !important;
  }

  .ml-2xl-1 {
    margin-left: 1rem !important;
  }

  .m-2xl-2 {
    margin: 1.5rem !important;
  }

  .mt-2xl-2 {
    margin-top: 1.5rem !important;
  }

  .mr-2xl-2 {
    margin-right: 1.5rem !important;
  }

  .mb-2xl-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-2xl-2 {
    margin-left: 1.5rem !important;
  }

  .m-2xl-3 {
    margin: 2rem !important;
  }

  .mt-2xl-3 {
    margin-top: 2rem !important;
  }

  .mr-2xl-3 {
    margin-right: 2rem !important;
  }

  .mb-2xl-3 {
    margin-bottom: 2rem !important;
  }

  .ml-2xl-3 {
    margin-left: 2rem !important;
  }

  .m-2xl-4 {
    margin: 3rem !important;
  }

  .mt-2xl-4 {
    margin-top: 3rem !important;
  }

  .mr-2xl-4 {
    margin-right: 3rem !important;
  }

  .mb-2xl-4 {
    margin-bottom: 3rem !important;
  }

  .ml-2xl-4 {
    margin-left: 3rem !important;
  }

  .m-2xl-5 {
    margin: 4rem !important;
  }

  .mt-2xl-5 {
    margin-top: 4rem !important;
  }

  .mr-2xl-5 {
    margin-right: 4rem !important;
  }

  .mb-2xl-5 {
    margin-bottom: 4rem !important;
  }

  .ml-2xl-5 {
    margin-left: 4rem !important;
  }

  .m-2xl-025 {
    margin: 0.25rem !important;
  }

  .mt-2xl-025 {
    margin-top: 0.25rem !important;
  }

  .mr-2xl-025 {
    margin-right: 0.25rem !important;
  }

  .mb-2xl-025 {
    margin-bottom: 0.25rem !important;
  }

  .ml-2xl-025 {
    margin-left: 0.25rem !important;
  }

  .m-2xl-05 {
    margin: 0.5rem !important;
  }

  .mt-2xl-05 {
    margin-top: 0.5rem !important;
  }

  .mr-2xl-05 {
    margin-right: 0.5rem !important;
  }

  .mb-2xl-05 {
    margin-bottom: 0.5rem !important;
  }

  .ml-2xl-05 {
    margin-left: 0.5rem !important;
  }

  .m-2xl-6 {
    margin: 4.375rem !important;
  }

  .mt-2xl-6 {
    margin-top: 4.375rem !important;
  }

  .mr-2xl-6 {
    margin-right: 4.375rem !important;
  }

  .mb-2xl-6 {
    margin-bottom: 4.375rem !important;
  }

  .ml-2xl-6 {
    margin-left: 4.375rem !important;
  }

  .m-2xl-7 {
    margin: 5.875rem !important;
  }

  .mt-2xl-7 {
    margin-top: 5.875rem !important;
  }

  .mr-2xl-7 {
    margin-right: 5.875rem !important;
  }

  .mb-2xl-7 {
    margin-bottom: 5.875rem !important;
  }

  .ml-2xl-7 {
    margin-left: 5.875rem !important;
  }

  .m-2xl-8 {
    margin: 6rem !important;
  }

  .mt-2xl-8 {
    margin-top: 6rem !important;
  }

  .mr-2xl-8 {
    margin-right: 6rem !important;
  }

  .mb-2xl-8 {
    margin-bottom: 6rem !important;
  }

  .ml-2xl-8 {
    margin-left: 6rem !important;
  }

  .m-2xl-9 {
    margin: 9.25rem !important;
  }

  .mt-2xl-9 {
    margin-top: 9.25rem !important;
  }

  .mr-2xl-9 {
    margin-right: 9.25rem !important;
  }

  .mb-2xl-9 {
    margin-bottom: 9.25rem !important;
  }

  .ml-2xl-9 {
    margin-left: 9.25rem !important;
  }

  .p-2xl-0 {
    padding: 0 !important;
  }

  .pt-2xl-0 {
    padding-top: 0 !important;
  }

  .pr-2xl-0 {
    padding-right: 0 !important;
  }

  .pb-2xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-2xl-0 {
    padding-left: 0 !important;
  }

  .p-2xl-1 {
    padding: 1rem !important;
  }

  .pt-2xl-1 {
    padding-top: 1rem !important;
  }

  .pr-2xl-1 {
    padding-right: 1rem !important;
  }

  .pb-2xl-1 {
    padding-bottom: 1rem !important;
  }

  .pl-2xl-1 {
    padding-left: 1rem !important;
  }

  .p-2xl-2 {
    padding: 1.5rem !important;
  }

  .pt-2xl-2 {
    padding-top: 1.5rem !important;
  }

  .pr-2xl-2 {
    padding-right: 1.5rem !important;
  }

  .pb-2xl-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-2xl-2 {
    padding-left: 1.5rem !important;
  }

  .p-2xl-3 {
    padding: 2rem !important;
  }

  .pt-2xl-3 {
    padding-top: 2rem !important;
  }

  .pr-2xl-3 {
    padding-right: 2rem !important;
  }

  .pb-2xl-3 {
    padding-bottom: 2rem !important;
  }

  .pl-2xl-3 {
    padding-left: 2rem !important;
  }

  .p-2xl-4 {
    padding: 3rem !important;
  }

  .pt-2xl-4 {
    padding-top: 3rem !important;
  }

  .pr-2xl-4 {
    padding-right: 3rem !important;
  }

  .pb-2xl-4 {
    padding-bottom: 3rem !important;
  }

  .pl-2xl-4 {
    padding-left: 3rem !important;
  }

  .p-2xl-5 {
    padding: 4rem !important;
  }

  .pt-2xl-5 {
    padding-top: 4rem !important;
  }

  .pr-2xl-5 {
    padding-right: 4rem !important;
  }

  .pb-2xl-5 {
    padding-bottom: 4rem !important;
  }

  .pl-2xl-5 {
    padding-left: 4rem !important;
  }

  .p-2xl-025 {
    padding: 0.25rem !important;
  }

  .pt-2xl-025 {
    padding-top: 0.25rem !important;
  }

  .pr-2xl-025 {
    padding-right: 0.25rem !important;
  }

  .pb-2xl-025 {
    padding-bottom: 0.25rem !important;
  }

  .pl-2xl-025 {
    padding-left: 0.25rem !important;
  }

  .p-2xl-05 {
    padding: 0.5rem !important;
  }

  .pt-2xl-05 {
    padding-top: 0.5rem !important;
  }

  .pr-2xl-05 {
    padding-right: 0.5rem !important;
  }

  .pb-2xl-05 {
    padding-bottom: 0.5rem !important;
  }

  .pl-2xl-05 {
    padding-left: 0.5rem !important;
  }

  .p-2xl-6 {
    padding: 4.375rem !important;
  }

  .pt-2xl-6 {
    padding-top: 4.375rem !important;
  }

  .pr-2xl-6 {
    padding-right: 4.375rem !important;
  }

  .pb-2xl-6 {
    padding-bottom: 4.375rem !important;
  }

  .pl-2xl-6 {
    padding-left: 4.375rem !important;
  }

  .p-2xl-7 {
    padding: 5.875rem !important;
  }

  .pt-2xl-7 {
    padding-top: 5.875rem !important;
  }

  .pr-2xl-7 {
    padding-right: 5.875rem !important;
  }

  .pb-2xl-7 {
    padding-bottom: 5.875rem !important;
  }

  .pl-2xl-7 {
    padding-left: 5.875rem !important;
  }

  .p-2xl-8 {
    padding: 6rem !important;
  }

  .pt-2xl-8 {
    padding-top: 6rem !important;
  }

  .pr-2xl-8 {
    padding-right: 6rem !important;
  }

  .pb-2xl-8 {
    padding-bottom: 6rem !important;
  }

  .pl-2xl-8 {
    padding-left: 6rem !important;
  }

  .p-2xl-9 {
    padding: 9.25rem !important;
  }

  .pt-2xl-9 {
    padding-top: 9.25rem !important;
  }

  .pr-2xl-9 {
    padding-right: 9.25rem !important;
  }

  .pb-2xl-9 {
    padding-bottom: 9.25rem !important;
  }

  .pl-2xl-9 {
    padding-left: 9.25rem !important;
  }

  .m-2xl-auto {
    margin: auto !important;
  }

  .mx-2xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-2xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-2xl-auto {
    margin-top: auto !important;
  }

  .mr-2xl-auto {
    margin-right: auto !important;
  }

  .mb-2xl-auto {
    margin-bottom: auto !important;
  }

  .ml-2xl-auto {
    margin-left: auto !important;
  }

  .px-2xl-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.cs-0 {
  margin: 0rem;
}

.cs-0 > .col,
.cs-0 > [class*='col-'] {
  padding: 0rem;
}

.cs-x-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.cs-x-0 > .col,
.cs-x-0 > [class*='col-'] {
  padding-left: 0rem;
  padding-right: 0rem;
}

.cs-y-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.cs-y-0 > .col,
.cs-y-0 > [class*='col-'] {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.cs-4 {
  margin: -0.25rem;
}

.cs-4 > .col,
.cs-4 > [class*='col-'] {
  padding: 0.25rem;
}

.cs-x-4 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.cs-x-4 > .col,
.cs-x-4 > [class*='col-'] {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.cs-y-4 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.cs-y-4 > .col,
.cs-y-4 > [class*='col-'] {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.cs-6 {
  margin: -0.375rem;
}

.cs-6 > .col,
.cs-6 > [class*='col-'] {
  padding: 0.375rem;
}

.cs-x-6 {
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.cs-x-6 > .col,
.cs-x-6 > [class*='col-'] {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.cs-y-6 {
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.cs-y-6 > .col,
.cs-y-6 > [class*='col-'] {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.cs-8 {
  margin: -0.5rem;
}

.cs-8 > .col,
.cs-8 > [class*='col-'] {
  padding: 0.5rem;
}

.cs-x-8 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.cs-x-8 > .col,
.cs-x-8 > [class*='col-'] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.cs-y-8 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.cs-y-8 > .col,
.cs-y-8 > [class*='col-'] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.cs-12 {
  margin: -0.75rem;
}

.cs-12 > .col,
.cs-12 > [class*='col-'] {
  padding: 0.75rem;
}

.cs-x-12 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.cs-x-12 > .col,
.cs-x-12 > [class*='col-'] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.cs-y-12 {
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.cs-y-12 > .col,
.cs-y-12 > [class*='col-'] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.cs-16 {
  margin: -1rem;
}

.cs-16 > .col,
.cs-16 > [class*='col-'] {
  padding: 1rem;
}

.cs-x-16 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.cs-x-16 > .col,
.cs-x-16 > [class*='col-'] {
  padding-left: 1rem;
  padding-right: 1rem;
}

.cs-y-16 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.cs-y-16 > .col,
.cs-y-16 > [class*='col-'] {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cs-20 {
  margin: -1.25rem;
}

.cs-20 > .col,
.cs-20 > [class*='col-'] {
  padding: 1.25rem;
}

.cs-x-20 {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.cs-x-20 > .col,
.cs-x-20 > [class*='col-'] {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.cs-y-20 {
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.cs-y-20 > .col,
.cs-y-20 > [class*='col-'] {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.cs-24 {
  margin: -1.5rem;
}

.cs-24 > .col,
.cs-24 > [class*='col-'] {
  padding: 1.5rem;
}

.cs-x-24 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.cs-x-24 > .col,
.cs-x-24 > [class*='col-'] {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.cs-y-24 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.cs-y-24 > .col,
.cs-y-24 > [class*='col-'] {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.cs-32 {
  margin: -2rem;
}

.cs-32 > .col,
.cs-32 > [class*='col-'] {
  padding: 2rem;
}

.cs-x-32 {
  margin-left: -2rem;
  margin-right: -2rem;
}

.cs-x-32 > .col,
.cs-x-32 > [class*='col-'] {
  padding-left: 2rem;
  padding-right: 2rem;
}

.cs-y-32 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.cs-y-32 > .col,
.cs-y-32 > [class*='col-'] {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 576px) {
  .cs-sm-0 {
    margin: 0rem;
  }

  .cs-sm-0 > .col,
  .cs-sm-0 > [class*='col-'] {
    padding: 0rem;
  }

  .cs-sm-x-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .cs-sm-x-0 > .col,
  .cs-sm-x-0 > [class*='col-'] {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .cs-sm-y-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .cs-sm-y-0 > .col,
  .cs-sm-y-0 > [class*='col-'] {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .cs-sm-4 {
    margin: -0.25rem;
  }

  .cs-sm-4 > .col,
  .cs-sm-4 > [class*='col-'] {
    padding: 0.25rem;
  }

  .cs-sm-x-4 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .cs-sm-x-4 > .col,
  .cs-sm-x-4 > [class*='col-'] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .cs-sm-y-4 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .cs-sm-y-4 > .col,
  .cs-sm-y-4 > [class*='col-'] {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .cs-sm-6 {
    margin: -0.375rem;
  }

  .cs-sm-6 > .col,
  .cs-sm-6 > [class*='col-'] {
    padding: 0.375rem;
  }

  .cs-sm-x-6 {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .cs-sm-x-6 > .col,
  .cs-sm-x-6 > [class*='col-'] {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .cs-sm-y-6 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .cs-sm-y-6 > .col,
  .cs-sm-y-6 > [class*='col-'] {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .cs-sm-8 {
    margin: -0.5rem;
  }

  .cs-sm-8 > .col,
  .cs-sm-8 > [class*='col-'] {
    padding: 0.5rem;
  }

  .cs-sm-x-8 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .cs-sm-x-8 > .col,
  .cs-sm-x-8 > [class*='col-'] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .cs-sm-y-8 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .cs-sm-y-8 > .col,
  .cs-sm-y-8 > [class*='col-'] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cs-sm-12 {
    margin: -0.75rem;
  }

  .cs-sm-12 > .col,
  .cs-sm-12 > [class*='col-'] {
    padding: 0.75rem;
  }

  .cs-sm-x-12 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .cs-sm-x-12 > .col,
  .cs-sm-x-12 > [class*='col-'] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cs-sm-y-12 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .cs-sm-y-12 > .col,
  .cs-sm-y-12 > [class*='col-'] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .cs-sm-16 {
    margin: -1rem;
  }

  .cs-sm-16 > .col,
  .cs-sm-16 > [class*='col-'] {
    padding: 1rem;
  }

  .cs-sm-x-16 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .cs-sm-x-16 > .col,
  .cs-sm-x-16 > [class*='col-'] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cs-sm-y-16 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .cs-sm-y-16 > .col,
  .cs-sm-y-16 > [class*='col-'] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cs-sm-20 {
    margin: -1.25rem;
  }

  .cs-sm-20 > .col,
  .cs-sm-20 > [class*='col-'] {
    padding: 1.25rem;
  }

  .cs-sm-x-20 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .cs-sm-x-20 > .col,
  .cs-sm-x-20 > [class*='col-'] {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cs-sm-y-20 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .cs-sm-y-20 > .col,
  .cs-sm-y-20 > [class*='col-'] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .cs-sm-24 {
    margin: -1.5rem;
  }

  .cs-sm-24 > .col,
  .cs-sm-24 > [class*='col-'] {
    padding: 1.5rem;
  }

  .cs-sm-x-24 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .cs-sm-x-24 > .col,
  .cs-sm-x-24 > [class*='col-'] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cs-sm-y-24 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .cs-sm-y-24 > .col,
  .cs-sm-y-24 > [class*='col-'] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cs-sm-32 {
    margin: -2rem;
  }

  .cs-sm-32 > .col,
  .cs-sm-32 > [class*='col-'] {
    padding: 2rem;
  }

  .cs-sm-x-32 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .cs-sm-x-32 > .col,
  .cs-sm-x-32 > [class*='col-'] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .cs-sm-y-32 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .cs-sm-y-32 > .col,
  .cs-sm-y-32 > [class*='col-'] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .cs-md-0 {
    margin: 0rem;
  }

  .cs-md-0 > .col,
  .cs-md-0 > [class*='col-'] {
    padding: 0rem;
  }

  .cs-md-x-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .cs-md-x-0 > .col,
  .cs-md-x-0 > [class*='col-'] {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .cs-md-y-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .cs-md-y-0 > .col,
  .cs-md-y-0 > [class*='col-'] {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .cs-md-4 {
    margin: -0.25rem;
  }

  .cs-md-4 > .col,
  .cs-md-4 > [class*='col-'] {
    padding: 0.25rem;
  }

  .cs-md-x-4 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .cs-md-x-4 > .col,
  .cs-md-x-4 > [class*='col-'] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .cs-md-y-4 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .cs-md-y-4 > .col,
  .cs-md-y-4 > [class*='col-'] {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .cs-md-6 {
    margin: -0.375rem;
  }

  .cs-md-6 > .col,
  .cs-md-6 > [class*='col-'] {
    padding: 0.375rem;
  }

  .cs-md-x-6 {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .cs-md-x-6 > .col,
  .cs-md-x-6 > [class*='col-'] {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .cs-md-y-6 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .cs-md-y-6 > .col,
  .cs-md-y-6 > [class*='col-'] {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .cs-md-8 {
    margin: -0.5rem;
  }

  .cs-md-8 > .col,
  .cs-md-8 > [class*='col-'] {
    padding: 0.5rem;
  }

  .cs-md-x-8 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .cs-md-x-8 > .col,
  .cs-md-x-8 > [class*='col-'] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .cs-md-y-8 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .cs-md-y-8 > .col,
  .cs-md-y-8 > [class*='col-'] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cs-md-12 {
    margin: -0.75rem;
  }

  .cs-md-12 > .col,
  .cs-md-12 > [class*='col-'] {
    padding: 0.75rem;
  }

  .cs-md-x-12 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .cs-md-x-12 > .col,
  .cs-md-x-12 > [class*='col-'] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cs-md-y-12 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .cs-md-y-12 > .col,
  .cs-md-y-12 > [class*='col-'] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .cs-md-16 {
    margin: -1rem;
  }

  .cs-md-16 > .col,
  .cs-md-16 > [class*='col-'] {
    padding: 1rem;
  }

  .cs-md-x-16 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .cs-md-x-16 > .col,
  .cs-md-x-16 > [class*='col-'] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cs-md-y-16 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .cs-md-y-16 > .col,
  .cs-md-y-16 > [class*='col-'] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cs-md-20 {
    margin: -1.25rem;
  }

  .cs-md-20 > .col,
  .cs-md-20 > [class*='col-'] {
    padding: 1.25rem;
  }

  .cs-md-x-20 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .cs-md-x-20 > .col,
  .cs-md-x-20 > [class*='col-'] {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cs-md-y-20 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .cs-md-y-20 > .col,
  .cs-md-y-20 > [class*='col-'] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .cs-md-24 {
    margin: -1.5rem;
  }

  .cs-md-24 > .col,
  .cs-md-24 > [class*='col-'] {
    padding: 1.5rem;
  }

  .cs-md-x-24 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .cs-md-x-24 > .col,
  .cs-md-x-24 > [class*='col-'] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cs-md-y-24 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .cs-md-y-24 > .col,
  .cs-md-y-24 > [class*='col-'] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cs-md-32 {
    margin: -2rem;
  }

  .cs-md-32 > .col,
  .cs-md-32 > [class*='col-'] {
    padding: 2rem;
  }

  .cs-md-x-32 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .cs-md-x-32 > .col,
  .cs-md-x-32 > [class*='col-'] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .cs-md-y-32 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .cs-md-y-32 > .col,
  .cs-md-y-32 > [class*='col-'] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .cs-lg-0 {
    margin: 0rem;
  }

  .cs-lg-0 > .col,
  .cs-lg-0 > [class*='col-'] {
    padding: 0rem;
  }

  .cs-lg-x-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .cs-lg-x-0 > .col,
  .cs-lg-x-0 > [class*='col-'] {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .cs-lg-y-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .cs-lg-y-0 > .col,
  .cs-lg-y-0 > [class*='col-'] {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .cs-lg-4 {
    margin: -0.25rem;
  }

  .cs-lg-4 > .col,
  .cs-lg-4 > [class*='col-'] {
    padding: 0.25rem;
  }

  .cs-lg-x-4 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .cs-lg-x-4 > .col,
  .cs-lg-x-4 > [class*='col-'] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .cs-lg-y-4 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .cs-lg-y-4 > .col,
  .cs-lg-y-4 > [class*='col-'] {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .cs-lg-6 {
    margin: -0.375rem;
  }

  .cs-lg-6 > .col,
  .cs-lg-6 > [class*='col-'] {
    padding: 0.375rem;
  }

  .cs-lg-x-6 {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .cs-lg-x-6 > .col,
  .cs-lg-x-6 > [class*='col-'] {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .cs-lg-y-6 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .cs-lg-y-6 > .col,
  .cs-lg-y-6 > [class*='col-'] {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .cs-lg-8 {
    margin: -0.5rem;
  }

  .cs-lg-8 > .col,
  .cs-lg-8 > [class*='col-'] {
    padding: 0.5rem;
  }

  .cs-lg-x-8 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .cs-lg-x-8 > .col,
  .cs-lg-x-8 > [class*='col-'] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .cs-lg-y-8 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .cs-lg-y-8 > .col,
  .cs-lg-y-8 > [class*='col-'] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cs-lg-12 {
    margin: -0.75rem;
  }

  .cs-lg-12 > .col,
  .cs-lg-12 > [class*='col-'] {
    padding: 0.75rem;
  }

  .cs-lg-x-12 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .cs-lg-x-12 > .col,
  .cs-lg-x-12 > [class*='col-'] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cs-lg-y-12 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .cs-lg-y-12 > .col,
  .cs-lg-y-12 > [class*='col-'] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .cs-lg-16 {
    margin: -1rem;
  }

  .cs-lg-16 > .col,
  .cs-lg-16 > [class*='col-'] {
    padding: 1rem;
  }

  .cs-lg-x-16 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .cs-lg-x-16 > .col,
  .cs-lg-x-16 > [class*='col-'] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cs-lg-y-16 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .cs-lg-y-16 > .col,
  .cs-lg-y-16 > [class*='col-'] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cs-lg-20 {
    margin: -1.25rem;
  }

  .cs-lg-20 > .col,
  .cs-lg-20 > [class*='col-'] {
    padding: 1.25rem;
  }

  .cs-lg-x-20 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .cs-lg-x-20 > .col,
  .cs-lg-x-20 > [class*='col-'] {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cs-lg-y-20 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .cs-lg-y-20 > .col,
  .cs-lg-y-20 > [class*='col-'] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .cs-lg-24 {
    margin: -1.5rem;
  }

  .cs-lg-24 > .col,
  .cs-lg-24 > [class*='col-'] {
    padding: 1.5rem;
  }

  .cs-lg-x-24 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .cs-lg-x-24 > .col,
  .cs-lg-x-24 > [class*='col-'] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cs-lg-y-24 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .cs-lg-y-24 > .col,
  .cs-lg-y-24 > [class*='col-'] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cs-lg-32 {
    margin: -2rem;
  }

  .cs-lg-32 > .col,
  .cs-lg-32 > [class*='col-'] {
    padding: 2rem;
  }

  .cs-lg-x-32 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .cs-lg-x-32 > .col,
  .cs-lg-x-32 > [class*='col-'] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .cs-lg-y-32 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .cs-lg-y-32 > .col,
  .cs-lg-y-32 > [class*='col-'] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  .cs-xl-0 {
    margin: 0rem;
  }

  .cs-xl-0 > .col,
  .cs-xl-0 > [class*='col-'] {
    padding: 0rem;
  }

  .cs-xl-x-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .cs-xl-x-0 > .col,
  .cs-xl-x-0 > [class*='col-'] {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .cs-xl-y-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .cs-xl-y-0 > .col,
  .cs-xl-y-0 > [class*='col-'] {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .cs-xl-4 {
    margin: -0.25rem;
  }

  .cs-xl-4 > .col,
  .cs-xl-4 > [class*='col-'] {
    padding: 0.25rem;
  }

  .cs-xl-x-4 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .cs-xl-x-4 > .col,
  .cs-xl-x-4 > [class*='col-'] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .cs-xl-y-4 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .cs-xl-y-4 > .col,
  .cs-xl-y-4 > [class*='col-'] {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .cs-xl-6 {
    margin: -0.375rem;
  }

  .cs-xl-6 > .col,
  .cs-xl-6 > [class*='col-'] {
    padding: 0.375rem;
  }

  .cs-xl-x-6 {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .cs-xl-x-6 > .col,
  .cs-xl-x-6 > [class*='col-'] {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .cs-xl-y-6 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .cs-xl-y-6 > .col,
  .cs-xl-y-6 > [class*='col-'] {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .cs-xl-8 {
    margin: -0.5rem;
  }

  .cs-xl-8 > .col,
  .cs-xl-8 > [class*='col-'] {
    padding: 0.5rem;
  }

  .cs-xl-x-8 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .cs-xl-x-8 > .col,
  .cs-xl-x-8 > [class*='col-'] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .cs-xl-y-8 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .cs-xl-y-8 > .col,
  .cs-xl-y-8 > [class*='col-'] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cs-xl-12 {
    margin: -0.75rem;
  }

  .cs-xl-12 > .col,
  .cs-xl-12 > [class*='col-'] {
    padding: 0.75rem;
  }

  .cs-xl-x-12 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .cs-xl-x-12 > .col,
  .cs-xl-x-12 > [class*='col-'] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cs-xl-y-12 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .cs-xl-y-12 > .col,
  .cs-xl-y-12 > [class*='col-'] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .cs-xl-16 {
    margin: -1rem;
  }

  .cs-xl-16 > .col,
  .cs-xl-16 > [class*='col-'] {
    padding: 1rem;
  }

  .cs-xl-x-16 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .cs-xl-x-16 > .col,
  .cs-xl-x-16 > [class*='col-'] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cs-xl-y-16 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .cs-xl-y-16 > .col,
  .cs-xl-y-16 > [class*='col-'] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cs-xl-20 {
    margin: -1.25rem;
  }

  .cs-xl-20 > .col,
  .cs-xl-20 > [class*='col-'] {
    padding: 1.25rem;
  }

  .cs-xl-x-20 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .cs-xl-x-20 > .col,
  .cs-xl-x-20 > [class*='col-'] {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cs-xl-y-20 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .cs-xl-y-20 > .col,
  .cs-xl-y-20 > [class*='col-'] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .cs-xl-24 {
    margin: -1.5rem;
  }

  .cs-xl-24 > .col,
  .cs-xl-24 > [class*='col-'] {
    padding: 1.5rem;
  }

  .cs-xl-x-24 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .cs-xl-x-24 > .col,
  .cs-xl-x-24 > [class*='col-'] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cs-xl-y-24 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .cs-xl-y-24 > .col,
  .cs-xl-y-24 > [class*='col-'] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cs-xl-32 {
    margin: -2rem;
  }

  .cs-xl-32 > .col,
  .cs-xl-32 > [class*='col-'] {
    padding: 2rem;
  }

  .cs-xl-x-32 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .cs-xl-x-32 > .col,
  .cs-xl-x-32 > [class*='col-'] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .cs-xl-y-32 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .cs-xl-y-32 > .col,
  .cs-xl-y-32 > [class*='col-'] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1440px) {
  .cs-2xl-0 {
    margin: 0rem;
  }

  .cs-2xl-0 > .col,
  .cs-2xl-0 > [class*='col-'] {
    padding: 0rem;
  }

  .cs-2xl-x-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .cs-2xl-x-0 > .col,
  .cs-2xl-x-0 > [class*='col-'] {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .cs-2xl-y-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .cs-2xl-y-0 > .col,
  .cs-2xl-y-0 > [class*='col-'] {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .cs-2xl-4 {
    margin: -0.25rem;
  }

  .cs-2xl-4 > .col,
  .cs-2xl-4 > [class*='col-'] {
    padding: 0.25rem;
  }

  .cs-2xl-x-4 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .cs-2xl-x-4 > .col,
  .cs-2xl-x-4 > [class*='col-'] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .cs-2xl-y-4 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .cs-2xl-y-4 > .col,
  .cs-2xl-y-4 > [class*='col-'] {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .cs-2xl-6 {
    margin: -0.375rem;
  }

  .cs-2xl-6 > .col,
  .cs-2xl-6 > [class*='col-'] {
    padding: 0.375rem;
  }

  .cs-2xl-x-6 {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .cs-2xl-x-6 > .col,
  .cs-2xl-x-6 > [class*='col-'] {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .cs-2xl-y-6 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .cs-2xl-y-6 > .col,
  .cs-2xl-y-6 > [class*='col-'] {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .cs-2xl-8 {
    margin: -0.5rem;
  }

  .cs-2xl-8 > .col,
  .cs-2xl-8 > [class*='col-'] {
    padding: 0.5rem;
  }

  .cs-2xl-x-8 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .cs-2xl-x-8 > .col,
  .cs-2xl-x-8 > [class*='col-'] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .cs-2xl-y-8 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .cs-2xl-y-8 > .col,
  .cs-2xl-y-8 > [class*='col-'] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cs-2xl-12 {
    margin: -0.75rem;
  }

  .cs-2xl-12 > .col,
  .cs-2xl-12 > [class*='col-'] {
    padding: 0.75rem;
  }

  .cs-2xl-x-12 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .cs-2xl-x-12 > .col,
  .cs-2xl-x-12 > [class*='col-'] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cs-2xl-y-12 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .cs-2xl-y-12 > .col,
  .cs-2xl-y-12 > [class*='col-'] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .cs-2xl-16 {
    margin: -1rem;
  }

  .cs-2xl-16 > .col,
  .cs-2xl-16 > [class*='col-'] {
    padding: 1rem;
  }

  .cs-2xl-x-16 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .cs-2xl-x-16 > .col,
  .cs-2xl-x-16 > [class*='col-'] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cs-2xl-y-16 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .cs-2xl-y-16 > .col,
  .cs-2xl-y-16 > [class*='col-'] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cs-2xl-20 {
    margin: -1.25rem;
  }

  .cs-2xl-20 > .col,
  .cs-2xl-20 > [class*='col-'] {
    padding: 1.25rem;
  }

  .cs-2xl-x-20 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .cs-2xl-x-20 > .col,
  .cs-2xl-x-20 > [class*='col-'] {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cs-2xl-y-20 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .cs-2xl-y-20 > .col,
  .cs-2xl-y-20 > [class*='col-'] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .cs-2xl-24 {
    margin: -1.5rem;
  }

  .cs-2xl-24 > .col,
  .cs-2xl-24 > [class*='col-'] {
    padding: 1.5rem;
  }

  .cs-2xl-x-24 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .cs-2xl-x-24 > .col,
  .cs-2xl-x-24 > [class*='col-'] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cs-2xl-y-24 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .cs-2xl-y-24 > .col,
  .cs-2xl-y-24 > [class*='col-'] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cs-2xl-32 {
    margin: -2rem;
  }

  .cs-2xl-32 > .col,
  .cs-2xl-32 > [class*='col-'] {
    padding: 2rem;
  }

  .cs-2xl-x-32 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .cs-2xl-x-32 > .col,
  .cs-2xl-x-32 > [class*='col-'] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .cs-2xl-y-32 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .cs-2xl-y-32 > .col,
  .cs-2xl-y-32 > [class*='col-'] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .row.row--carousel {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    margin: 0 -1.25rem;
    padding: 0;
    scroll-padding: 0 1.25rem;
    width: auto;
  }

  .row.row--carousel::-webkit-scrollbar {
    display: none;
  }

  .row.row--carousel::after,
  .row.row--carousel::before {
    content: '';
    width: 0.625rem;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .row.row--carousel .row__item {
    -ms-flex: 0 0 17.5rem;
    flex: 0 0 17.5rem;
    max-width: 17.5rem;
    padding: 0;
    scroll-snap-align: start;
    margin: 0.625rem;
  }
}

@media (max-width: 575px) {
  .row.row--carousel--small .row__item {
    -ms-flex: 0 0 8.75rem;
    flex: 0 0 8.75rem;
    max-width: 8.75rem;
  }
}

@media (max-width: 767px) {
  .row.row--carousel .card--shadowed {
    box-shadow: initial;
  }
}

.lg-container {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next,
.lg-single-item
.lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: '\e095';
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: '\e094';
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  transition: color 0.2s linear;
  background: none;
  border: none;
  box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: '\e070';
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: '\e90a';
}

.lg-toolbar .lg-download:after {
  content: '\e0f2';
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, 0.6);
}

.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px;
}

@font-face {
  font-family: 'lg';
  src: url("../fonts/lightgallery/lg.woff2?io9a6k") format("woff2"), url("../fonts/lightgallery/lg.ttf?io9a6k") format("truetype"), url("../fonts/lightgallery/lg.woff?io9a6k") format("woff"), url("../fonts/lightgallery/lg.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

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

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  transition-duration: 0ms !important;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
}

.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  transition: opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition {
  transition: none !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition {
  -webkit-transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
  transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
  max-width: none !important;
  max-height: none !important;
  top: 50% !important;
  left: 50% !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x {
  -webkit-transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
  transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
  top: 0 !important;
  left: 50% !important;
  max-width: none !important;
  max-height: none !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
  transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
  top: 50% !important;
  left: 0% !important;
  max-width: none !important;
  max-height: none !important;
}

.lg-icon.lg-zoom-in:after {
  content: '\e311';
}

.lg-actual-size .lg-icon.lg-zoom-in {
  opacity: 1;
  pointer-events: auto;
}

.lg-icon.lg-actual-size {
  font-size: 20px;
}

.lg-icon.lg-actual-size:after {
  content: '\e033';
}

.lg-icon.lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

.lg-icon.lg-zoom-out:after {
  content: '\e312';
}

.lg-zoomed .lg-icon.lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer[data-lg-slide-type='video'] .lg-zoom-in,
.lg-outer[data-lg-slide-type='video'] .lg-actual-size,
.lg-outer[data-lg-slide-type='video'] .lg-zoom-out,
.lg-outer[data-lg-slide-type='iframe'] .lg-zoom-in,
.lg-outer[data-lg-slide-type='iframe'] .lg-actual-size,
.lg-outer[data-lg-slide-type='iframe'] .lg-zoom-out,
.lg-outer.lg-first-slide-loading .lg-zoom-in,
.lg-outer.lg-first-slide-loading .lg-actual-size,
.lg-outer.lg-first-slide-loading .lg-zoom-out {
  opacity: 0.75;
  pointer-events: none;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer .lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  will-change: visibility, opacity;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active .lg-dropdown-overlay {
  transition-delay: 0s;
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active .lg-share {
  color: #fff;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  will-change: visibility, opacity, transform;
  transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer .lg-share {
  position: relative;
}

.lg-outer .lg-share:after {
  content: '\e80d';
}

.lg-outer .lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer .lg-share-facebook .lg-icon:after {
  content: '\e904';
}

.lg-outer .lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer .lg-share-twitter .lg-icon:after {
  content: '\e907';
}

.lg-outer .lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer .lg-share-pinterest .lg-icon:after {
  content: '\e906';
}

.lg-outer .lg-video-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.lg-outer .lg-video-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-has-iframe .lg-video-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.lg-outer .lg-video-object {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
}

.lg-outer .lg-video-poster {
  z-index: 1;
}

.lg-outer .lg-has-video .lg-video-object {
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.3s ease-in;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster,
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button {
  opacity: 0 !important;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
  opacity: 1;
}

@-webkit-keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@-webkit-keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.lg-video-play-button {
  width: 18%;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  will-change: opacity, transform;
  transition: opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28);
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28);
}

.lg-video-play-button:hover .lg-video-play-icon-bg,
.lg-video-play-button:hover .lg-video-play-icon {
  opacity: 1;
}

.lg-video-play-icon-bg {
  fill: none;
  stroke-width: 3%;
  stroke: #fcfcfc;
  opacity: 0.6;
  will-change: opacity;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  fill: none;
  stroke-width: 3%;
  stroke: rgba(30, 30, 30, 0.9);
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.lg-video-play-icon {
  position: absolute;
  width: 25%;
  max-width: 120px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  will-change: opacity;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon .lg-video-play-icon-inner {
  fill: #fcfcfc;
}

.lg-video-loading .lg-video-play-icon-circle {
  -webkit-animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
  animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
}

.lg-video-loaded .lg-video-play-button {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
}

.lg-group:after {
  content: '';
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-overlay-open {
  overflow: hidden;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  transition-duration: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  display: none !important;
}

.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-outer .lg-media-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.lg-outer .lg-media-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-has-iframe .lg-media-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #0a0e1e;
  opacity: 0;
  will-change: auto;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 0.85;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: '\e909';
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  transition: -webkit-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-container {
  font-family: inherit;
}

.lg-sub-html h1,
.lg-sub-html h2,
.lg-sub-html h3,
.lg-sub-html h4,
.lg-sub-html h5,
.lg-sub-html h6 {
  color: inherit;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  color: #fff;
}

@media (min-width: 61.9375rem) and (min-height: 45rem) {
  .lg-video-cont {
    border-radius: 0.75rem;
    overflow: hidden;
  }
}

.lg-toolbar .lg-icon,
.lg-counter {
  color: #cbd5e1;
}

.lg-toolbar .lg-icon:hover,
.lg-counter:hover {
  color: #286cf6;
}

.lg-next,
.lg-prev {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  background-color: rgba(23, 31, 68, 0.3);
  color: #cbd5e1;
  border-radius: 0.375rem;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  background-color: #286cf6;
  color: #fff;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir='rtl'] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

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

.select2-container {
  width: auto !important;
}

.select2-selection {
  background-image: none !important;
  outline: none !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.select2-selection__rendered {
  padding: 0 !important;
}

.select2-selection__arrow {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMC41NDYiIGhlaWdodD0iNi4xNzMiIHZpZXdCb3g9IjAgMCAxMC41NDYgNi4xNzMiPjxwYXRoIGQ9Ik02LDlsNCw0LDQtNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQuNzI3IC03LjcyNykiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2JkYzVkMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuOCIvPjwvc3ZnPg==") no-repeat 100%;
  width: 1.5rem;
  height: 24px;
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: rotate(0deg) translateY(-50%);
  transform: rotate(0deg) translateY(-50%);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.select2-selection.select2-selection--single .select2-selection__rendered {
  padding-right: 1.25rem !important;
}

.select2-selection.select2-selection--single .select2-selection__clear {
  transition: 0.3s color;
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1.25rem;
  right: 1.75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  z-index: 3;
  padding-bottom: 0.1875rem;
}

.select2-selection.select2-selection--single .select2-selection__clear:hover {
  color: #6b7280;
}

.select2-dropdown {
  border-color: #cbd5e1;
  margin-top: -1px;
  box-shadow: 0px 52px 72px -16px rgba(82, 82, 82, 0.08);
  z-index: 999 !important;
}

.select2-dropdown--above {
  box-shadow: 0px -52px 72px -16px rgba(82, 82, 82, 0.08);
  margin-top: 0;
  margin-bottom: -1px;
}

.select2-dropdown--above .select2-search {
  margin-top: 0.75rem !important;
}

.select2-search {
  margin: 0.75rem 0.75rem 0.75rem 0.75rem;
  padding: 0;
}

.select2-search__field {
  transition-duration: 0.3s;
  transition-property: color, background-color, border-color;
  border: 0 !important;
  min-height: 2.5rem;
  background-color: #f1f5f9;
  outline: none !important;
  border-radius: 0.625rem !important;
  font-size: 0.875rem;
  color: #1f2937;
  padding: 0.5rem 1rem 0.5rem 3rem !important;
}

.select2-search__field:focus {
  background-color: #e2e8f0;
  color: #020617;
}

.select2-search:not(.select2-search--hide) + .select2-results {
  padding-top: 0;
}

.select2-results {
  font-size: 0.875rem;
  padding: 0.75rem;
}

.select2-results__options:not(.select2-results__options--nested) {
  max-height: 16.1875rem;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.select2-results__option {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  padding: 0.5rem 0.75rem;
  color: #1f2937 !important;
  border-radius: 0.375rem !important;
}

.select2-results__option + .select2-results__option {
  margin-top: 0.125rem;
}

.select2-results__option--highlighted {
  background-color: #eff4fa !important;
  color: #286cf6 !important;
}

.select2-results__option--selected {
  background-color: #f1f5f9 !important;
  color: #020617 !important;
  font-weight: 500 !important;
}

.select2-results__group {
  padding: 0.5rem 1rem;
  background-color: #fff;
  margin: 0 -1rem;
  font-weight: 500;
  color: #020617;
  position: sticky;
  top: 0;
}

.select2-selection--multiple {
  height: initial !important;
  min-height: 3rem !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.select2-selection--multiple::after {
  content: '';
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMC41NDYiIGhlaWdodD0iNi4xNzMiIHZpZXdCb3g9IjAgMCAxMC41NDYgNi4xNzMiPjxwYXRoIGQ9Ik02LDlsNCw0LDQtNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQuNzI3IC03LjcyNykiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2JkYzVkMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuOCIvPjwvc3ZnPg==") no-repeat 100%;
  width: 1.5rem;
  height: 24px;
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: rotate(0deg) translateY(-50%);
  transform: rotate(0deg) translateY(-50%);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.select2-selection--multiple .select2-search {
  margin: 0.75rem 0.75rem 0.75rem 0;
}

.select2-selection--multiple .select2-search.select2-search--inline {
  margin: 0;
}

.select2-selection--multiple .select2-search__field {
  background: none !important;
  margin: 0 !important;
  padding: 0.75rem 0 !important;
  height: 2.5rem !important;
  letter-spacing: -0.01em !important;
  font-family: inherit !important;
}

.select2-selection--multiple .select2-search__field::-webkit-input-placeholder {
  color: #020617;
}

.select2-selection--multiple .select2-search__field:-ms-input-placeholder {
  color: #020617;
}

.select2-selection--multiple .select2-search__field::-ms-input-placeholder {
  color: #020617;
}

.select2-selection--multiple .select2-search__field::placeholder {
  color: #020617;
}

.select2-selection--multiple .select2-selection__rendered {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.25rem !important;
  min-width: 0;
}

.select2-selection--multiple .select2-selection__rendered:not(:empty) ~ .select2-search {
  margin-left: 0.75rem !important;
  max-width: calc(100% - 1.5rem);
}

.select2-selection--multiple .select2-selection__rendered:empty ~ .select2-search {
  margin-left: 0 !important;
  width: calc(100% - 1.5rem);
}

.select2-selection--multiple .select2-selection__choice {
  transition: 0.3s background-color;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e2e8f0;
  color: #374151;
  border-radius: 0.75rem;
  min-height: 1.5rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  margin: 0.25rem;
  font-weight: 500;
  min-width: 0;
}

.select2-selection--multiple .select2-selection__choice:hover {
  background-color: #cbd5e1;
}

.select2-selection--multiple .select2-selection__choice__remove {
  transition: 0.3s color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.125rem 0.125rem;
  color: #6b7280;
  margin-right: 0.25rem;
  font-size: 1rem;
  line-height: 1;
}

.select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #020617;
}

.select2-selection--multiple .select2-selection__rendered:empty {
  display: none !important;
  margin: 0;
}

.select2-selection--multiple .select2-selection__choice__display {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  min-width: 0;
}

.select2-container--focus .select2-selection {
  border-color: #cbd5e1 !important;
}

@media (max-width: 991px) {
  .select2-container--open {
    z-index: 99999 !important;
  }
}

.select2-container--open .select2-selection {
  border-color: #cbd5e1 !important;
}

.select2-container--open .select2-selection__arrow,
.select2-container--open .select2-selection--multiple::after {
  -webkit-transform: rotate(180deg) translate(-50%, -50%);
  transform: rotate(180deg) translate(-50%, -50%);
}

.select2-container--open.select2-container--below .select2-selection {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open.select2-container--above .select2-selection {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--open .select2-selection--multiple .select2-selection__rendered:not(:empty) + .select2-selection__placeholder {
  display: none;
}

.select2-container--disabled .select2-selection {
  background-color: #f3f4f6 !important;
  border-color: #d1d5db !important;
  cursor: not-allowed;
}

.select2-container--disabled .select2-selection__choice__remove {
  display: none !important;
}

.select2-container--disabled .select2-selection__rendered {
  margin: 0 !important;
}

.select2-container--disabled .select2-selection__choice {
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: -ms-flexbox;
  display: flex;
  color: #1f2937 !important;
}

.select2-container--disabled .select2-selection__choice + .select2-selection__choice::before {
  content: ',';
  display: inline-block;
  margin-right: 0.125rem;
}

.select--small + .select2 .select2-selection--multiple {
  height: initial !important;
  min-height: 2.5rem !important;
  padding: 0.4375rem 2rem 0.4375rem 0.9375rem !important;
}

.select--small + .select2 .select2-selection--multiple .select2-search__field {
  padding: 0.1875rem 0 0 !important;
  min-height: 0 !important;
  height: 1.5rem !important;
}

.select--small + .select2 .select2-selection--multiple .select2-search__field::-webkit-input-placeholder {
  color: #020617;
}

.select--small + .select2 .select2-selection--multiple .select2-search__field:-ms-input-placeholder {
  color: #020617;
}

.select--small + .select2 .select2-selection--multiple .select2-search__field::-ms-input-placeholder {
  color: #020617;
}

.select--small + .select2 .select2-selection--multiple .select2-search__field::placeholder {
  color: #020617;
}

.select--small + .select2 .select2-selection--multiple .select2-selection__choice {
  padding: 0.125rem 0.5rem;
  font-size: 0.8125rem;
  margin: 0.1875rem;
}

.select--small + .select2 .select2-results__option {
  font-size: 0.875rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.select2-container--status .select2-selection {
  padding: 2px;
  height: auto;
  border: 0;
  border-radius: 6.25rem !important;
}

.select2-container--status .select2-selection .select2-selection__rendered {
  padding-right: 0 !important;
  border-radius: 100px;
  position: relative;
}

.select2-container--status .select2-selection .select2-selection__rendered::after {
  transition: 0.2s opacity;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 6.25rem;
  background-color: #000;
  opacity: 0;
}

.select2-container--status .select2-selection .select2-selection__arrow {
  display: none;
}

.select2-container--status .select2-selection:hover .select2-selection__rendered::after {
  opacity: 0.08;
}

.select2-dropdown {
  border-radius: 0.625rem;
}

.select2-dropdown.select2-dropdown--status {
  border: 0;
  margin-top: 4px;
  width: 128px !important;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  border-radius: 6px;
}

.select2-dropdown .select2-results {
  padding: 12px 0;
}

.select2-dropdown .select2-results__option {
  padding: 8px 16px;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 !important;
}

.select2-dropdown .select2-results__option--group {
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
}

.select2-dropdown .select2-results__option + .select2-results__option {
  margin-top: 0;
}

.select2-dropdown .select2-results__option .select2-results__option .badge {
  box-shadow: 0 0 0 2px #fff;
  min-width: 96px;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
}

select:not([data-select-lazy]):not(.select--searchable) + .select2 .select2-selection--multiple .select2-selection__rendered:not(:empty) ~ .select2-search {
  display: none !important;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-lazy-preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #286cf6;
  z-index: 10;
  box-sizing: border-box;
  width: 2.625rem;
  height: 2.625rem;
  margin-left: -1.3125rem;
  margin-top: -1.3125rem;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  border-radius: 50%;
  border: 0.1875rem solid #286cf6;
  border-top-color: transparent !important;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  border-color: #fff;
  opacity: 0.7;
}

.swiper-lazy-preloader-black {
  border-color: #001441;
}

.swiper-lazy-preloader--small {
  width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  margin-top: -1rem;
  border-width: 0.125rem;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**
 * Quill Editor
 */

.ql-toolbar,
.ql-container {
  border-color: #e2e8f0 !important;
}

.ql-container {
  font-family: inherit !important;
  font-size: 0.875rem;
}

.ql-toolbar {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.ql-container {
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.ql-editor {
  min-height: 11.25rem;
  color: #1f2937;
}

@media screen and (min-width: 48rem) {
  .ql-editor {
    min-height: calc(16.2037vw + 3.47222rem);
  }
}

@media screen and (min-width: 75rem) {
  .ql-editor {
    min-height: 15.625rem;
  }
}

.ql-editor strong,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6,
.ql-editor b {
  font-weight: 600;
  color: #020617;
}

.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.ql-editor p:first-child,
.ql-editor ol:first-child,
.ql-editor ul:first-child,
.ql-editor pre:first-child,
.ql-editor blockquote:first-child,
.ql-editor h1:first-child,
.ql-editor h2:first-child,
.ql-editor h3:first-child,
.ql-editor h4:first-child,
.ql-editor h5:first-child,
.ql-editor h6:first-child {
  margin-top: 0;
}

.ql-editor p:last-child,
.ql-editor ol:last-child,
.ql-editor ul:last-child,
.ql-editor pre:last-child,
.ql-editor blockquote:last-child,
.ql-editor h1:last-child,
.ql-editor h2:last-child,
.ql-editor h3:last-child,
.ql-editor h4:last-child,
.ql-editor h5:last-child,
.ql-editor h6:last-child {
  margin-bottom: 0;
}

.ql-toolbar button:hover,
.ql-toolbar button:hover,
.ql-toolbar button:focus,
.ql-toolbar button:focus,
.ql-toolbar button.ql-active,
.ql-toolbar button.ql-active,
.ql-toolbar .ql-picker-label:hover,
.ql-toolbar .ql-picker-label:hover,
.ql-toolbar .ql-picker-label.ql-active,
.ql-toolbar .ql-picker-label.ql-active,
.ql-toolbar .ql-picker-item:hover,
.ql-toolbar .ql-picker-item:hover,
.ql-toolbar .ql-picker-item.ql-selected,
.ql-toolbar .ql-picker-item.ql-selected {
  color: #286cf6;
}

.ql-disabled .ql-editor {
  background-color: #f3f4f6;
}

/**
 * MagicMap
 */

.air-datepicker {
  --adp-border-color-inline: #e2e8f0;
  --adp-border-color-inner: #e2e8f0;
  --adp-border-radius: 0.375rem;
  --adp-width: 17.5rem;
  --adp-padding: 0.5rem;
  --adp-day-name-color: #020617;
  font-family: inherit;
  font-size: 0.8125rem;
  border-color: transparent;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  border-radius: 0.375rem;
}

.air-datepicker-global-container {
  z-index: 10000 !important;
}

.air-datepicker-cell {
  cursor: pointer;
}

.air-datepicker-body--day-name {
  font-weight: 600;
}

.air-datepicker-body--cell.-current- {
  color: #286cf6;
  font-weight: 500;
}

.air-datepicker-body--cell.-selected- {
  font-weight: 600;
}

.tippy-box[data-animation='shift-away-subtle'][data-state='hidden'] {
  opacity: 0;
}

.tippy-box[data-animation='shift-away-subtle'][data-state='hidden'][data-placement^='top'] {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.tippy-box[data-animation='shift-away-subtle'][data-state='hidden'][data-placement^='bottom'] {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.tippy-box[data-animation='shift-away-subtle'][data-state='hidden'][data-placement^='left'] {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.tippy-box[data-animation='shift-away-subtle'][data-state='hidden'][data-placement^='right'] {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}

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

.tippy-box {
  position: relative;
  background-color: #020617;
  color: #fff;
  border-radius: 0.375rem;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  outline: 0;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform;
}

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

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
  bottom: -0.3125rem;
  left: 0;
  border-width: 0.4375rem 0.4375rem 0;
  border-top-color: initial;
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

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

.tippy-box[data-placement^='top-start'],
.tippy-box[data-placement^='bottom-start'] {
  margin-left: -0.625rem;
}

.tippy-box[data-placement^='top-start'] > .tippy-arrow,
.tippy-box[data-placement^='bottom-start'] > .tippy-arrow {
  -webkit-transform: initial !important;
  transform: initial !important;
  left: 0.625rem !important;
}

.tippy-box[data-placement^='top-end'],
.tippy-box[data-placement^='bottom-end'] {
  margin-right: -0.625rem;
}

.tippy-box[data-placement^='top-end'] > .tippy-arrow,
.tippy-box[data-placement^='bottom-end'] > .tippy-arrow {
  -webkit-transform: initial !important;
  transform: initial !important;
  left: initial !important;
  right: 0.625rem !important;
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
  top: -0.3125rem;
  left: 0;
  border-width: 0 0.4375rem 0.4375rem;
  border-bottom-color: initial;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

.tippy-box[data-placement^='left'] > .tippy-arrow:before {
  border-width: 0.4375rem 0 0.4375rem 0.4375rem;
  border-left-color: initial;
  right: -0.3125rem;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

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

.tippy-box[data-placement^='right'] > .tippy-arrow:before {
  left: -0.3125rem;
  border-width: 0.4375rem 0.4375rem 0.4375rem 0;
  border-right-color: initial;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

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

.tippy-arrow {
  width: 0.875rem;
  height: 0.875rem;
  color: #020617;
}

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

.tippy-content {
  max-width: 100%;
  min-width: 3rem;
  position: relative;
  padding: 0.3125rem 0.75rem;
  z-index: 1;
  text-align: center;
}

.tippy-content a {
  color: #286cf6;
}

.tippy-content a:hover {
  text-decoration: underline;
}

.tippy-box[data-theme='light'] {
  background-color: #fff;
  color: #020617;
}

.tippy-box[data-theme='light'] .tippy-arrow {
  color: #fff;
}

.tippy-box[data-theme='medium'] {
  border-radius: 0.375rem;
}

.tippy-box[data-theme='medium'] .tippy-content {
  padding: 0.75rem;
}

.tippy-box[data-theme='text-left'] {
  border-radius: 0.375rem;
}

.tippy-box[data-theme='text-left'] .tippy-content {
  text-align: left;
  padding: 0.75rem;
}

[data-tippy-root] {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  /*@include breakpoint-up('large') {
    max-width: rem(220px);
  }*/
}

@media (max-width: 575px) {
  [data-tippy-root] {
    max-width: calc(100vw - 30px);
  }
}

.privacypolicies-com---nb {
  max-width: 100% !important;
  width: 100%;
  /*position: fixed !important;
  max-width: initial !important;
  width: 100% !important;
  left: 0 !important;
  right: initial !important;
  z-index: 9999 !important;
  top: 0 !important;
  bottom: initial !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.75) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: inherit !important;
  letter-spacing: -0.02em !important;*/
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.14) !important;
}

.privacypolicies-com---pc-overlay {
  background: transparent !important;
}

.cc-nb-main-container,
.privacypolicies-com---pc-dialog .cc-pc-container {
  max-width: 100% !important;
  background-color: #fff !important;
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.14) !important;
  padding: 16px !important;
}

.privacypolicies-com---nb .cc-nb-title {
  font-size: 18px !important;
  margin-bottom: 8px;
}

.privacypolicies-com---nb .cc-nb-text {
  font-size: 13px !important;
  margin-bottom: 12px !important;
}

@media (min-width: 991px) {
  .privacypolicies-com---pc-dialog .cc-pc-container {
    border-radius: 16px !important;
  }

  .cc-nb-main-container {
    padding: 16px 32px !important;
  }
}

@media (min-width: 991px) {
  .privacypolicies-com---palette-light .cc-pc-head {
    border-radius: 16px 16px 0 0 !important;
  }
}

@media (min-width: 991px) {
  .privacypolicies-com---palette-light .cc-pc-head .cc-pc-head-title {
    padding-left: 24px !important;
  }
}

@media (min-width: 991px) {
  .privacypolicies-com---palette-light .cc-pc-head .cc-pc-head-lang {
    padding-right: 16px !important;
  }
}

@media (min-width: 991px) {
  .privacypolicies-com---palette-light .cc-cp-foot {
    border-radius: 0 0 16px 16px !important;
  }
}

.privacypolicies-com---pc-dialog .cc-pc-container {
  padding: 0 !important;
}

.privacypolicies-com---palette-light .cc-nb-okagree,
.privacypolicies-com---palette-light .cc-cp-foot-save {
  background-color: #2bace2 !important;
  border-radius: 32px !important;
}

.privacypolicies-com---palette-light .cc-nb-okagree:hover,
.privacypolicies-com---palette-light .cc-cp-foot-save:hover {
  background-color: #46bff1 !important;
}

.privacypolicies-com---palette-light .cc-nb-reject {
  background-color: #aadef3 !important;
  color: #0b2b39 !important;
}

.privacypolicies-com---palette-light .cc-nb-reject:hover {
  background-color: #94d5f0 !important;
}

.privacypolicies-com---reset.privacypolicies-com---nb .cc-nb-okagree,
.privacypolicies-com---reset.privacypolicies-com---nb .cc-nb-reject,
.privacypolicies-com---reset.privacypolicies-com---nb .cc-nb-changep,
.privacypolicies-com---reset .privacypolicies-com---palette-light .cc-cp-foot-save {
  border-radius: 32px !important;
  margin-right: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  font-weight: 600 !important;
  font-size: 13px;
}

.privacypolicies-com---reset.privacypolicies-com---nb .cc-nb-changep {
  background-color: transparent !important;
  color: #286cf6 !important;
  border-radius: 0 !important;
}

@media (min-width: 991px) {
  .privacypolicies-com---palette-light .cc-cp-foot-save {
    padding: 8px 16px !important;
  }
}

@media (min-width: 991px) {
  .cc-nb-buttons-container {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .cc-nb-buttons-container .cc-nb-changep {
    margin-left: auto !important;
  }
}

.cc-nb-title {
  color: #1e295b !important;
}

.cc-nb-text {
  font-size: 14px !important;
  line-height: 20px !important;
  color: #30315a !important;
}

/*.privacypolicies-com---pc-overlay {
  z-index: 9999 !important;
}*/

.privacypolicies-com---pc-dialog {
  width: 720px !important;
}

.privacypolicies-com---is-visible {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  overflow: auto !important;
}

.privacypolicies-com---palette-light .cc-pc-head-lang select {
  border-radius: 4px !important;
}

.privacypolicies-com---palette-light .cc-pc-head-lang select:focus {
  box-shadow: 0 0 0 3px #2bace2 !important;
}

.privacypolicies-com---pc-dialog input[type='checkbox'].cc-custom-checkbox:checked + label:before {
  background: #2bace2 !important;
}

@media (max-width: 575px) {
  .privacypolicies-com---pc-overlay {
    overflow: hidden !important;
  }
}

@media (max-width: 575px) {
  .privacypolicies-com---pc-dialog {
    max-width: 100% !important;
    margin: 0 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
    position: relative !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    min-height: 1px !important;
  }
}

.privacypolicies-com---pc-dialog .cc-pc-container {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
  min-height: 1px !important;
}

.privacypolicies-com---pc-dialog .cc-pc-head,
.privacypolicies-com---pc-dialog .cc-pc-foot {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.privacypolicies-com---pc-dialog .cc-cp-body {
  overflow-y: auto !important;
}

.privacypolicies-com---is-hidden {
  display: none !important;
}

.toast {
  background-color: #fff;
  box-shadow: 0px 16px 34px rgba(57, 68, 86, 0.1);
  border-radius: 0.625rem;
  color: #020617;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAARvSURBVHgB7dxBThxHFAbgv6qmd1nMNovgYZcEouATeG4QUGAdOIGdExBO4PgEkLWxBp/Aww1GSkjYTRtfYKQkG/d0vbwaQEmsSWSkV9XV3e+TbCNkQU/91a+ruroaUEoppZRSSimllFJKKaWUUlEZtMTOZD6sqmJk4Xe8o6HxGH74f4wxMyKzGAyWs9ne5gItkG0AocHryu16hycgGvOhjvAQRDNYM+OvLgtbTGd7n5bIUHYBbL98NyZDx/zlGIIIuDAGr6++3ThDRrIIIPT2937w1BI944YaIiaDkv8+ySWIxgP44ny+a419DjIjpJRJEI0FwL1+VNXuFMKl5sEMzvgacdLUNaKRAEKvd3Cn0cvNx2rwbLBIbPvVu2MLN8mm8QPCiP+cfsnHhsSSngFb5zeh5BwiZ1yS+Ew4QiLJAmhF499LGEKSErT16uY52tL4AeGQj/kUCUQPINR8/kDP0DYcQoprQtQSxL3oMFzc0GLcQ/d+3t+4QCTRAliN8719k3yCJW9RuOJxrHlCtBJUeXfcgcYPhlVdRTuLo5wBsUsPH/R03fcp4qw6VimKFMDbeczef7W/sfa4eahLiIVny4WtH0uvM4iXoNveb0boGp4tv19a8dFchGsAJZ/Op8Irbk8hTDSAzvb+vw3DghEEiQbAhfkbdNzdap0YsQDCuJ8Iu+i+cVjBgxCxAHjcP0ZP1N6JdTTJEvQEPeEFP6tYAIbMDvqC5CZ8IgGEmkig/gQAjKSuAyIBLJeDPjX+SlXxMqYAkQCMoXzWdxOxzol0OpEAiHpVfla8p3xKUB8Zoac6NICGaQAN0wAaJnMRtmjFZogcDSDA1mbhE55LUVe+PlLYjQMBIs3mCytyMG0StkJBgEgABaoSPRP2oUGASAC3C9VUojdIbBOgZOW+RF8I1f9ALADrzRT9IdbZREZBgSvqC3+75Si62hWb677v6mqOFL/fFlMIEX0wa/v85k3Mp9PuNfJg1h2+8fj614NHWS5JhkcGTtBxxhrRxxNFA/jl4LMp/9PdWbFBKb2RT3z+aoheoLvEz3DxAAYD/yOnUKJrIvT+2x8bwVfnN7semCCe6X98f4xYDI5aE0CQakSURMRdk9HuYS5dHQ64/RdkLj087o82uosWwPXeZsk/PNmG54hOriO+RyLqXfywpYdHRa2dG/CkK/r7I5LslN96+faMb2B9hzYh+unq4NEhIkv3qoI2hZCo8YO0L+toQwgJGz9I+lRE+GA5XxNWNT9h4weNvLBptZcsbObLZD8ZN8KiRn302/5mtFcS/M/vbsbnk/nI1fYHPoRGS1LY9L10xdF1n15Z9k+NnQ08wfJUf99Er//3YWQiVRCh3HCxf/EH3zQsM3i7bjYB3AtBhO2u0jsuV++X4AWjuzWLbGQXwL3VNSLsvCQa80F+TXjoHjS+JW7M1Na4/J3Xq3Po7etkG8CHRpP58JPlYCfsxlm3ISQ8n7p6RLKwsz9Rlbk2uFJKKaWUUkoppZRSSimllErsLyrvn+ipzTN0AAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: 1rem 1rem;
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 0.5rem;
  padding: 1rem 1rem 1rem 4rem;
  width: 18.75rem;
  min-height: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  /*
  @include breakpoint-up('large') {
    background-position: rem(24px) rem(24px);
  }*/
}

.toast.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}

.toast-title {
  font-weight: 600;
}

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #020617;
}

.toast-message a:hover {
  color: #2566e8;
  text-decoration: none;
}

.toast-close-button {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  position: absolute;
  right: 0.75rem;
  top: 1rem;
  font-size: 1rem;
  color: #64748b;
  line-height: 1;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.toast-close-button ~ .toast-message,
.toast-close-button ~ .toast-title {
  padding-right: 2rem;
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #1e293b;
  background-color: #f1f5f9;
  text-decoration: none;
  cursor: pointer;
}

.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

.toast.toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAU4SURBVHgB7ZxfThtJEMaregyyAg9erVnl0XuCkBPEvOxiQAo5QeAESU5AOEHYE8CeII4WMN4XzA18g/VjtE4UPwQtiz3d6RqwFFkxmrGre3qs+kkILGTNzPd1V1f/qQEQBEEQBEEQBEEQBEEQBEEQBEEQnIJQEGrvdyvXK7c1iGHdIFbA2J8JlIm7GqPB6k2p23vRHEABCNaARPDy7a5GfKbA1A1gLcv37YN1gX6MuYpgufOx0exBgARnQLW1Uwc0B/bPOnCCpokaPvQb5ycQEEEYQK3966PbVzaIvLYttgIOsQ/cs9c4DMWI3A345byxa5R6Z6wP4JFQjMjNgMet3doIh8fAHWoyYgU4iczSYV5jRC4GUKvXUXTsOtykJc/eoMAz1fbWgVbqfSjiExT+bGp7TPcGnvHaA9Yuto5tOrkHAUMhqb95tg+e8GZAEcQf49MELyGo2t5+VxTxCRuS9tYuto/BA84NSOKqgddQMMgEH2OC0xC01trao8ENCozS+sW/W60mOMKZAZTnxzi89D3BYgdhUNJLT13NE5yFICv+QeHFJwxU7ieMTnBiQBJ6bAyFxaFOk0dwgJsegOh9QuMaWq+iRUNght2A+9Zfg4ChpQebFv+R5Tv0TF/LI/Zsjr8HBN76SfzIxBufN0/t0jceZvqyMq+AGVYDQm/9Y/E/Ni569PlT4/RtJhPsgJxsGDHCaoBB9RwCZVL8MZlNuNut47wvHu7X9/+BAJkm/vdU2zu0Qpsq01n9b+knrk1/th4Qw20dAiSN+D+3t1+mFZ+4LsdsKSlfCEJ8BoGRVnw0cAIZ0KjZnpXNAJvWrUNAuBKfUIzbqCxjQOVyt1L6f/gFAsGl+GO4xgGWHlC6GbG0fivIn6jMUxvOZn4wH+ITySk9BlgMMArnnqKT+P3G2V7/t/Muot6YxQRf4ifEEUujYzEAtZnrZsbijz/PYoJX8YHmPJplXcj7qYhJJsUfk8UE3+InGFwMAyAyR9P+lcaEXMRnJHcDjMHLtb+3poawh0wouvhE/j3ALnDNYsIiiE/wGIBmvnw4owmLIj7BkwWZOQ0gMpgQgvhKxV1ggKcH6GWWm0lrQggtX+sonNXQ4SPoARcpTJiGz7BDdWjAAIsBg41mEpeBixlM8Ck+InSD2w+wol0BJxlM8D7gGuAJucCahpoOcJPChFyyHWPYGhubAcPyspvzkw+YkFeqGYHuABNsBtA4YH91wAU/MCG/PN98eCgLy0oJOKHTBWjq4AIyARITNrTBJ3lNsux1WXs6++noanvni9P6L4QBmQE5QJlef/PsV2CEfy1IQ6Yjf5nJSfy7a5tsJ+lSwG7AqFw6Yp0TBELS+h2UsbIbQIOxRvUGFg0HrZ9wViFTvdi+hJyr4LlwWTXpbD+gZOL9eU43hML90reT1k84M4ByZZs2eit4doYNPZx5/yROd8Q+//5XM/MZ/JCw9+76/RFeKuXXWtsnBuElFIhppzXYrwOeKJIJvsRPrgUeKYIJPsUnvJ6KSB4s5DEhifn+xCe89oAxVEtGxXzB1JPZdFnF8b7LVxJMvTTkxOPWZi2G6G3+IQk7JTPad5lqPnh1yJm8egNNsFDrN3m0+on7CANvRtDs3K7Yrt6UjkJ4u24wBoxJao2Vep6laC4d2LFL2YefGqcdCIjgDBhzN0aour3FukF8YlOUTOeEKMRoUB1l4quVm+VmqO+SDtaASZK365ZH61SN88OCEDSD5IhkBN2V6+VeUV7eLQiCIAiCIAiCIAiCIAiCIAiCIDjmG5+RycXEdtOlAAAAAElFTkSuQmCC");
}

.toast.toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAARLSURBVHgB7dw/btRAFAbwb+wYRYIi7VI5hJ6QUNDhGxBOwOYEwAkgJwBOsOEEhBOw6SgIcklBFFcs5QoJKcKxH2+cREKwoCR6Mx7b79dktQLZO9/8s8djQCmllFJKKaWUUkoppZRSSjll0BFHWbpy/UeSVlW9bmBWKMLKn/+GiHJjzPz4xkm+Oi3m6IBgA7AFvvw93uIzfABCxn/Ty/x/AocBk/OHfVxLpqMPnwsEKLgAZvduZ1yVn/PHDIL4h+4R4d3o0+EuAhJEAKe1PXrC3cdTwt9di7CCW8VOKEG0HsDXzbUtPomX/DGFX0EE0VoAs/tpijKeQLiruYJdJMlOW2NEKwHYWh8BEw/dzUW11hoieDbbuPWcU38bUOFbKVfFiT03eOa1Bcw21iZ8xDHCtjs6ONyGJ94C6Ejhn/MWgpcu6NvGrZcdKnxrPNtcm8AD5wHYfpV4fo/uGfsYE5x2QdztjO3ghg7jycKjmweHe3DEWQBn8/z38H+BJYoLaE5JctfVdYK7LqiMbfNN0XHNdLksnbViJy3AeddjzHTh90QZHHHVFbkJYHPtCA5rP08RzT+OS3CnOK6qu6u57DqDeBfU1P4edD0LpMtLS+KzOfkxwMD75bwvhugJhIkG0OPa37ADcrNgJEg0AL7geoi+O12tEyMWgJ33G9AW+i87Wk/F7uTKtYCfcYaBWE4SsYomF4B9emEo6lrst4oFQDDrGI4MQkQCsH0i9/9DCiCVGgdEAuALlCEVfuN6kqQQIBIAEYW0vutFBYhUOpEAjBlU/9+QqnTen4roCyP0VIcG0DINoGUaQMtkBmFeN4W6kiUIoJrmPp+xc7zydSERUQ4BIi2giiORk+mS2hiRVi8SQFmWBQbm+OQknBbQLFQTCgyEMZRLLc5L3o7ex0AQGbEuVy4AwhRDQXKVTWQWZB3X1d5yHPt5DjRJVhd+X5ZH8KFOphAiOnnk6aF9FjSDYy09mNXgA7y7eXAY4JKkZcwOes4QRB9PFA1g9PHLtOdXxYX0Rj7xe0FkzGv0FUG8hYsHwBcor4BeXhMULraxOrmDc7b7/S3cmf7j+wyuELY7E4Dla0bkibNdk+7WA6pquycDcoEqcTa7cxbAKC+KGvC24dkZ+wqD3N17JJyuiDVberp8bcDn7vr9EV6WUXg82OU/j9Etb7jfH8Mxf68q6FYIXgrf8vuyjm6E4K3wLa9PRTQ/LOQxwfb5Hgu/OSRacLaPOJiN3Ha6bGdsLl9J8J9jt2O2nqaI4xdou0uym75PlrZdTjX/e3i0rMXWUPC9/Wdt1PrftR7AOV9BNC/f4Du29qah9K73K55PWGwQJjIPiYR3XJ6+X2LHrlkgIMEFcK4ZI6I44zPMuMbeMXTpLVAFz/GmqLBv16tDqO2LBBvAn+yeLLsVym6MWLQhxNTctYDmcRzlP8qyCLXAlVJKKaWUUkoppZRSSimllGe/ACyIdnHLIJkWAAAAAElFTkSuQmCC");
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000;
  opacity: 0.4;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
}

@-webkit-keyframes jconfirm-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes jconfirm-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }

  20%, 80% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }

  30%, 50%, 70% {
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0);
  }

  40%, 60% {
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }

  20%, 80% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }

  30%, 50%, 70% {
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0);
  }

  40%, 60% {
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0);
  }
}

@-webkit-keyframes glow {
  0%, 100% {
    box-shadow: 0 0 0px red;
  }

  50% {
    box-shadow: 0 0 30px red;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 0px red;
  }

  50% {
    box-shadow: 0 0 30px red;
  }
}

body[class*='jconfirm-no-scroll-'] {
  overflow: hidden !important;
}

.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  overflow: hidden;
  -webkit-perspective: 400px;
  perspective: 400px;
}

.jconfirm-scrollpane {
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-perspective-origin: center;
  perspective-origin: center;
  display: table;
  width: 100%;
  height: 100%;
}

.jconfirm-row {
  display: table-row;
  width: 100%;
}

.jconfirm-cell {
  display: table-cell;
  vertical-align: middle;
}

.jconfirm-holder {
  max-height: 100%;
  padding: 3.125rem 0;
}

.jconfirm-box-container {
  transition: -webkit-transform;
  transition: transform;
  transition: transform, -webkit-transform;
}

.jconfirm-box-container.jconfirm-no-transition {
  transition: none !important;
}

.jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.4s;
  opacity: 0.8;
}

.jconfirm-bg-h {
  opacity: 0 !important;
}

body:not(.is-hidden) .jconfirm-bg {
  background-color: rgba(10, 14, 30, 0.85);
}

body.is-hidden .jconfirm-bg {
  background-color: rgba(10, 14, 30, 0.3);
}

.jconfirm-box {
  position: relative;
  outline: none;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 0.75rem;
  width: 100% !important;
  max-width: 32.5rem;
  opacity: 1;
  transition-property: all;
  padding: 1.5rem;
}

@media (max-width: 575px) {
  .jconfirm-box {
    max-width: 90%;
  }
}

.jconfirm-box.jconfirm-type-animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.jconfirm-box.hilight.jconfirm-hilight-shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.jconfirm-box.hilight.jconfirm-hilight-glow {
  -webkit-animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.jconfirm-box.loading {
  height: 7.5rem;
}

.jconfirm-box.loading:before {
  content: '';
  position: absolute;
  left: 0;
  background: white;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0.625rem;
  z-index: 1;
}

.jconfirm-box.loading:after {
  opacity: 0.6;
  content: '';
  height: 1.875rem;
  width: 1.875rem;
  border: solid 3px transparent;
  position: absolute;
  left: 50%;
  margin-left: -0.9375rem;
  border-radius: 50%;
  -webkit-animation: jconfirm-spin 1s infinite linear;
  animation: jconfirm-spin 1s infinite linear;
  border-bottom-color: #286cf6;
  top: 50%;
  margin-top: -0.9375rem;
  z-index: 2;
}

.jconfirm-box.jconfirm-animation-scale,
.jconfirm-box.jconfirm-animation-zoom {
  opacity: 0;
}

.jconfirm-box.jconfirm-animation-scale {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.jconfirm-box.jconfirm-animation-zoom {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.jconfirm-box.jconfirm-animation-none {
  visibility: hidden;
}

.jconfirm-title-c {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #020617;
  margin-bottom: 1.5rem;
}

.jconfirm-title-c.jconfirm-hand {
  cursor: move;
}

.jconfirm-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1.5rem -0.5rem -0.5rem -0.5rem;
  position: relative;
  /*&:before {
      content: '';
      position: absolute;
      height: 1px;
      background-color: color('border');
      top: 0;
      left: rem(8px);
      right: rem(8px);
    }*/
}

@media (min-width: 36rem) {
  .jconfirm-buttons {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.jconfirm-buttons > button {
  margin: 0.5rem;
  min-width: 0;
}

@media (max-width: 575px) {
  .jconfirm-buttons > button {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 48rem) {
  .jconfirm-buttons > button {
    min-width: 10.25rem;
  }
}

.jconfirm-closeIcon {
  transition: 0.3s, color;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  text-align: center;
  font-size: 1.5rem;
  color: #1f2937;
  line-height: 1;
  display: none;
  z-index: 1;
}

.jconfirm-closeIcon:empty {
  display: none;
}

.jconfirm-closeIcon:hover {
  color: #286cf6;
}

.iti {
  width: 100%;
}

.iti__country {
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
}

.iti__flag {
  border-radius: 0.1875rem;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  border-bottom: 0;
}

table.dataTable th,
table.dataTable td {
  height: 2.0625rem;
}

table.dataTable.no-footer {
  border-bottom: 0;
}

.table-controls {
  margin-top: 1.5rem;
}

div.dataTables_processing {
  display: none;
}

table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting_asc_disabled,
table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  padding-right: 2.25rem;
}

div.dataTables_wrapper .table-responsive {
  position: relative;
}

div.dataTables_wrapper div.dataTables_processing {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 !important;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

div.dataTables_wrapper div.dataTables_processing > div:not(.loader) {
  display: none;
}

div.dataTables_wrapper div.dataTables_processing .loader {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: none;
}

.dataTables_wrapper .dataTables_length select {
  padding: 0.5rem 2rem 0.5rem 1rem !important;
  border-color: #e2e8f0;
  line-height: 1;
  border-radius: 0.625rem;
}

.dataTables_paginate .pagination {
  padding-top: 0;
}

@-webkit-keyframes rotate-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.autocomplete {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.autocomplete__loading {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  font-size: 1.125rem;
  color: #94a3b8;
}

.autocomplete__loading svg {
  -webkit-animation: 1s linear rotate-spinner infinite;
  animation: 1s linear rotate-spinner infinite;
}

.autocomplete__results {
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  background-color: #fff;
  z-index: 5;
  padding: 0.5rem;
  border-radius: 0.625rem;
  overflow-y: auto;
  max-height: 17.875rem;
}

.autocomplete__results.is-active {
  display: -ms-flexbox;
  display: flex;
}

.autocomplete__option {
  display: -ms-flexbox;
  display: flex;
  min-height: 2rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  transition: 0.1s all;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.autocomplete__option:not(:first-child) {
  margin-top: 0.125rem;
}

.autocomplete__option.is-hovered,
.autocomplete__option.is-focused {
  background-color: #f1f5f9;
  color: #1f2937;
}

.autocomplete__option.is-checked {
  background-color: #eff4fa;
  color: #286cf6;
}

.autocomplete__preview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  margin: -0.125rem;
}

.autocomplete__preview-item {
  margin: 0.125rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.125rem 0.375rem;
  border-radius: 6.25rem;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(228, 229, 231, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
}

.autocomplete__preview-remove {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: transparent;
  width: 1rem;
  height: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
  color: #64748b;
  margin-left: 0.25rem;
  margin-right: -0.125rem;
  border-radius: 50%;
}

.autocomplete__preview-remove:hover {
  background-color: #fff;
  color: #334155;
}

@-webkit-keyframes spinnerLoader {
  0%, 40%, to {
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3);
  }

  20% {
    -webkit-transform: scaleY(0.75);
    transform: scaleY(0.75);
  }
}

@keyframes spinnerLoader {
  0%, 40%, to {
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3);
  }

  20% {
    -webkit-transform: scaleY(0.75);
    transform: scaleY(0.75);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #fff;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.loader__wrapper {
  position: relative;
  width: 2rem;
  height: 2rem;
}

.loader__item {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-width: 0.25rem;
  border-style: solid;
  border-radius: 50%;
  -webkit-animation: rotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: rotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #286cf6 transparent transparent transparent;
}

.loader__item:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}

.loader__item:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.loader__item:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}

.loader.is-show,
.loader.is-active {
  display: -ms-flexbox;
  display: flex;
}

.skeleton {
  display: inline-block;
  height: 1em;
  position: relative;
  overflow: hidden;
  background-color: #e5e7eb !important;
  border-radius: 0.75rem !important;
  border-width: 0 !important;
  max-width: 100% !important;
}

.skeleton--circle {
  border-radius: 50% !important;
}

.skeleton-wrapper {
  pointer-events: none;
}

.skeleton::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  -webkit-animation: shimmer 2s infinite;
  animation: shimmer 2s infinite;
  content: '';
}

.skeleton--dark {
  background-color: #d1d5db !important;
}

.progressbar {
  display: block;
  width: 11.25rem;
  height: 11.25rem;
  position: relative;
  font-weight: 400;
}

.progressbar-text {
  font-weight: 600;
  color: #1f2937 !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.progressbar-text strong {
  line-height: 1;
  color: #020617 !important;
}

.progressbar-text span {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  outline: none;
}

.icon--stroked {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.icon--filled {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.hamburger-button {
  transition: 0.3s color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #020617;
}

.hamburger-button__wrapper {
  transition: 0.3s all;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 20px;
  height: 16px;
}

.hamburger-button__wrapper:before {
  content: '';
  top: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.hamburger-button__wrapper:after {
  content: '';
  top: auto;
  bottom: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.hamburger-button__icon,
.hamburger-button__wrapper:before,
.hamburger-button__wrapper:after {
  transition: 0.3s all;
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 2px;
}

.hamburger-button:hover:not(.hamburger-button--close):not(.has-toggle) .hamburger-button__icon {
  width: 100%;
}

.hamburger-button:hover:not(.hamburger-button--close):not(.has-toggle) .hamburger-button__wrapper:before,
.hamburger-button:hover:not(.hamburger-button--close):not(.has-toggle) .hamburger-button__wrapper:after {
  width: 100%;
}

.hamburger-button:hover:not(.hamburger-button--close):not(.has-toggle) .hamburger-button__icon,
.hamburger-button:hover:not(.hamburger-button--close):not(.has-toggle) .hamburger-button__wrapper:before,
.hamburger-button:hover:not(.hamburger-button--close):not(.has-toggle) .hamburger-button__wrapper:after {
  background-color: currentColor;
}

.hamburger-button--left .hamburger-button__wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
}

.hamburger-button--close,
.hamburger-button.has-toggle,
.has-toggle > .hamburger-button {
  color: #374151;
}

.hamburger-button--close .hamburger-button__icon,
.hamburger-button.has-toggle .hamburger-button__icon,
.has-toggle > .hamburger-button .hamburger-button__icon {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.hamburger-button--close .hamburger-button__wrapper,
.hamburger-button.has-toggle .hamburger-button__wrapper,
.has-toggle > .hamburger-button .hamburger-button__wrapper {
  height: 20px;
}

.hamburger-button--close .hamburger-button__wrapper:before,
.hamburger-button.has-toggle .hamburger-button__wrapper:before,
.has-toggle > .hamburger-button .hamburger-button__wrapper:before {
  -webkit-transform: rotate(45deg) scale(1.303, 1);
  transform: rotate(45deg) scale(1.303, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.hamburger-button--close .hamburger-button__wrapper:after,
.hamburger-button.has-toggle .hamburger-button__wrapper:after,
.has-toggle > .hamburger-button .hamburger-button__wrapper:after {
  -webkit-transform: rotate(-45deg) scale(1.303, 1);
  transform: rotate(-45deg) scale(1.303, 1);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.hamburger-button--modern {
  position: relative;
}

.hamburger-button--modern .hamburger-button__wrapper {
  transition: initial;
  width: 1.875rem !important;
  height: 1.875rem !important;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hamburger-button--modern .hamburger-button__wrapper::before,
.hamburger-button--modern .hamburger-button__wrapper::after {
  content: none;
}

.hamburger-button--modern .hamburger-button__icon {
  transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96), -webkit-transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.hamburger-button--modern .hamburger-button__icon::before {
  transition: transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s, -webkit-transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s;
  content: '';
  width: 1.0625rem;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0.4375rem;
  border-radius: 0.5px;
}

.hamburger-button--modern .hamburger-button__icon--top {
  z-index: 4;
}

.hamburger-button--modern .hamburger-button__icon--top::before {
  top: 0.875rem;
  -webkit-transform: translateY(-3px) scaleX(0.88235);
  transform: translateY(-3px) scaleX(0.88235);
}

.hamburger-button--modern .hamburger-button__icon--bottom::before {
  bottom: 0.875rem;
  -webkit-transform: translateY(3px) scaleX(0.88235);
  transform: translateY(3px) scaleX(0.88235);
}

.hamburger-button--modern.has-toggle .hamburger-button__icon,
.has-toggle > .hamburger-button--modern .hamburger-button__icon {
  opacity: 1;
  visibility: visible;
}

.hamburger-button--modern.has-toggle .hamburger-button__icon--top,
.hamburger-button--modern.has-toggle .hamburger-button__icon--bottom,
.has-toggle > .hamburger-button--modern .hamburger-button__icon--top,
.has-toggle > .hamburger-button--modern .hamburger-button__icon--bottom {
  transition: transform 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s, -webkit-transform 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.hamburger-button--modern.has-toggle .hamburger-button__icon--top,
.has-toggle > .hamburger-button--modern .hamburger-button__icon--top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger-button--modern.has-toggle .hamburger-button__icon--bottom,
.has-toggle > .hamburger-button--modern .hamburger-button__icon--bottom {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger-button--modern.has-toggle .hamburger-button__icon--top::before,
.hamburger-button--modern.has-toggle .hamburger-button__icon--bottom::before,
.has-toggle > .hamburger-button--modern .hamburger-button__icon--top::before,
.has-toggle > .hamburger-button--modern .hamburger-button__icon--bottom::before {
  transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96), -webkit-transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.text-style {
  display: block;
  margin: 0;
}

.text-style__flag {
  width: 1rem;
  height: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.text-style__flag:last-child {
  margin-left: 0.375rem;
}

.text-style__flag:first-child {
  margin-right: 0.375rem;
}

.text-style--jumbo {
  font-size: 3.5rem;
  color: #020617;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 62rem) {
  .text-style--jumbo {
    font-size: calc(3.57143vw + 1.28571rem);
  }
}

@media screen and (min-width: 90rem) {
  .text-style--jumbo {
    font-size: 4.5rem;
  }
}

@media (min-width: 62rem) {
  .text-style--jumbo {
    line-height: 1.13;
  }
}

.text-style--hero {
  font-size: 2rem;
  color: #020617;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 62rem) {
  .text-style--hero {
    font-size: calc(7.14286vw - 2.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .text-style--hero {
    font-size: 4rem;
  }
}

@media (min-width: 62rem) {
  .text-style--hero {
    line-height: 1.13;
  }
}

.text-style--h1 {
  font-size: 1.75rem;
  color: #020617;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 48rem) {
  .text-style--h1 {
    font-size: calc(6.48148vw - 1.36111rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 62rem) {
  .text-style--h1 {
    line-height: 1.13;
  }
}

.text-style--h2 {
  font-size: 1.5rem;
  color: #020617;
  line-height: 1.14;
  font-weight: bold;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 48rem) {
  .text-style--h2 {
    font-size: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--h2 {
    font-size: 3rem;
  }
}

.text-style--h3 {
  font-size: 1.25rem;
  color: #020617;
  line-height: 1.17;
  font-weight: bold;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 48rem) {
  .text-style--h3 {
    font-size: calc(4.62963vw - 0.97222rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--h3 {
    font-size: 2.5rem;
  }
}

.text-style--h4 {
  font-size: 1.125rem;
  color: #020617;
  line-height: 1.33;
  font-weight: bold;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 48rem) {
  .text-style--h4 {
    font-size: calc(3.24074vw - 0.43056rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--h4 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .text-style--h4 {
    line-height: 1.2;
  }
}

.text-style--h5 {
  font-size: 1rem;
  color: #020617;
  line-height: 1.46;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 48rem) {
  .text-style--h5 {
    font-size: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--h5 {
    font-size: 1.5rem;
  }
}

.text-style--h6 {
  font-size: 0.875rem;
  color: #020617;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.text-style--paragraph {
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (min-width: 48rem) {
  .text-style--paragraph {
    font-size: calc(0.46296vw + 0.65278rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--paragraph {
    font-size: 1rem;
  }
}

@media (min-width: 62rem) {
  .text-style--paragraph {
    line-height: 1.76;
    letter-spacing: -0.02em;
  }
}

.text-style--normal {
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (min-width: 48rem) {
  .text-style--normal {
    font-size: calc(0.46296vw + 0.65278rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--normal {
    font-size: 1rem;
  }
}

.text-style--normal--keep {
  font-size: 1rem;
}

.text-style--large {
  font-size: 0.875rem;
}

@media screen and (min-width: 48rem) {
  .text-style--large {
    font-size: calc(0.92593vw + 0.43056rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--large {
    font-size: 1.125rem;
  }
}

@media (min-width: 48rem) {
  .text-style--large {
    line-height: 1.78;
    letter-spacing: -0.02em;
  }
}

.text-style--xlarge {
  font-size: 1rem;
}

@media screen and (min-width: 48rem) {
  .text-style--xlarge {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--xlarge {
    font-size: 1.25rem;
  }
}

.text-style--xxlarge {
  font-size: 1.125rem;
}

@media screen and (min-width: 48rem) {
  .text-style--xxlarge {
    font-size: calc(1.38889vw + 0.45833rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--xxlarge {
    font-size: 1.5rem;
  }
}

.text-style--xxlarge--fix {
  font-size: 1.5rem;
}

.text-style--small {
  font-size: 0.875rem;
}

@media (min-width: 48rem) {
  .text-style--small {
    line-height: 1.72;
  }
}

.text-style--xsmall {
  font-size: 0.75rem;
}

@media (min-width: 48rem) {
  .text-style--xsmall {
    line-height: 1.71;
  }
}

.text-style--detail {
  font-size: 0.75rem;
  line-height: 1.33;
}

.text-style--heading {
  font-size: 0.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #020617;
}

@media (max-width: 575px) {
  .text-style--heading {
    letter-spacing: 0;
  }
}

.text-style--heading-l {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #020617;
}

@media screen and (min-width: 48rem) {
  .text-style--heading-l {
    font-size: calc(0.46296vw + 0.65278rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--heading-l {
    font-size: 1rem;
  }
}

@media (min-width: 62rem) {
  .text-style--heading-l {
    line-height: 1.5;
  }
}

.text-style--card-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

@media screen and (min-width: 48rem) {
  .text-style--card-title {
    font-size: calc(0.46296vw + 0.90278rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .text-style--card-title--fix {
    font-size: 1.375rem;
  }
}

.text-style--single-title {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

@media screen and (min-width: 48rem) {
  .text-style--single-title {
    font-size: calc(3.24074vw - 0.43056rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--single-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .text-style--section {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

@media (max-width: 767px) {
  .text-style--section-s {
    font-size: 1.125rem;
    line-height: 1.33;
  }
}

.text-style--sub-heading {
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: bold;
}

.text-style--sub-heading--medium {
  font-size: 0.875rem;
}

@media screen and (min-width: 48rem) {
  .text-style--sub-heading--medium {
    font-size: calc(0.46296vw + 0.65278rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--sub-heading--medium {
    font-size: 1rem;
  }
}

.text-style--sub-heading--small {
  font-size: 0.75rem;
}

.text-style--sub-heading--large {
  font-size: 1rem;
  font-weight: bold;
}

@media screen and (min-width: 48rem) {
  .text-style--sub-heading--large {
    font-size: calc(0.46296vw + 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--sub-heading--large {
    font-size: 1.125rem;
  }
}

@media (min-width: 48rem) {
  .text-style--sub-heading--large {
    letter-spacing: 0.16rem;
  }
}

.text-style--special {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #020617;
}

@media screen and (min-width: 48rem) {
  .text-style--special {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--special {
    font-size: 1.25rem;
  }
}

.text-style--special-m {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1.33;
}

@media screen and (min-width: 48rem) {
  .text-style--special-m {
    font-size: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--special-m {
    font-size: 1.5rem;
  }
}

.text-style--box-title {
  font-size: 1.125rem;
  color: #020617;
  line-height: 1.46;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 48rem) {
  .text-style--box-title {
    font-size: calc(0.46296vw + 0.90278rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--box-title {
    font-size: 1.25rem;
  }
}

.text-style--box-title-s {
  font-size: 0.8125rem;
  color: #020617 !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media screen and (min-width: 48rem) {
  .text-style--box-title-s {
    font-size: calc(0.23148vw + 0.70139rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--box-title-s {
    font-size: 0.875rem;
  }
}

.text-style--dashboard-title {
  font-size: 1.5rem;
  letter-spacing: 0;
  font-weight: bold;
}

@media screen and (min-width: 48rem) {
  .text-style--dashboard-title {
    font-size: calc(0.92593vw + 1.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--dashboard-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 62rem) {
  .text-style--dashboard-title {
    line-height: 2rem;
  }
}

.text-style--price {
  font-size: 1.5rem;
  letter-spacing: 0;
  font-weight: bold;
}

@media screen and (min-width: 48rem) {
  .text-style--price {
    font-size: calc(0.69444vw + 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .text-style--price {
    font-size: 1.6875rem;
  }
}

@media (min-width: 62rem) {
  .text-style--price {
    line-height: 2rem;
  }
}

.text-style--default {
  font-weight: 400;
}

.text-style--light {
  font-weight: 300;
}

.text-style--medium {
  font-weight: 500;
}

.text-style--semi {
  font-weight: 600;
}

.text-style--bold {
  font-weight: bold;
}

.text-style--max-width {
  max-width: 50.875rem;
}

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

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

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

.text-style--upper {
  text-transform: uppercase;
}

.text-style--lh-reset {
  line-height: 1;
}

.text-style--lh-base {
  line-height: 1.5;
}

@media (min-width: 62rem) {
  .text-style--lh-md {
    line-height: 1.72;
  }
}

@media (min-width: 62rem) {
  .text-style--lh-xl {
    line-height: 2;
  }
}

.text-style--color-title {
  color: #020617;
}

.text-style--gray {
  color: #6b7280;
}

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

.text-style--truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  display: block;
}

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

.image-ratio {
  position: relative;
  display: block;
  overflow: hidden;
}

.image-ratio:not(.image-ratio--transparent) {
  background-color: #f3f4f6;
}

.image-ratio--white {
  background-color: #fff !important;
}

.image-ratio__item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.image-ratio__item:focus {
  outline: 0;
}

.image-ratio__item.is-preloading,
.image-ratio__item.is-loading,
.image-ratio__item.swiper-lazy {
  opacity: 0;
}

.image-ratio__item.is-loaded,
.image-ratio__item.loaded {
  opacity: 1;
  transition-duration: 0.4s;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.image-ratio--1by1 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--1by1::before {
  padding-bottom: calc((1 / 1) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--1by1--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((1 / 1) * 100%) !important;
  }
}

.image-ratio--2by1 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--2by1::before {
  padding-bottom: calc((1 / 2) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--2by1--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((1 / 2) * 100%) !important;
  }
}

.image-ratio--3by1 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--3by1::before {
  padding-bottom: calc((1 / 3) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--3by1--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((1 / 3) * 100%) !important;
  }
}

.image-ratio--3by2 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--3by2::before {
  padding-bottom: calc((2 / 3) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--3by2--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((2 / 3) * 100%) !important;
  }
}

.image-ratio--4by3 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--4by3::before {
  padding-bottom: calc((3 / 4) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--4by3--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((3 / 4) * 100%) !important;
  }
}

.image-ratio--4by5 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--4by5::before {
  padding-bottom: calc((5 / 4) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--4by5--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((5 / 4) * 100%) !important;
  }
}

.image-ratio--4by7 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--4by7::before {
  padding-bottom: calc((7 / 4) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--4by7--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((7 / 4) * 100%) !important;
  }
}

.image-ratio--16by9 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--16by9::before {
  padding-bottom: calc((9 / 16) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--16by9--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((9 / 16) * 100%) !important;
  }
}

.image-ratio--3by15 .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--3by15::before {
  padding-bottom: calc((1.5 / 3) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--3by15--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((1.5 / 3) * 100%) !important;
  }
}

.image-ratio--single-buyer .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--single-buyer::before {
  padding-bottom: calc((300 / 840) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--single-buyer--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((300 / 840) * 100%) !important;
  }
}

.image-ratio--featured .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--featured::before {
  padding-bottom: calc((500 / 1280) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--featured--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((500 / 1280) * 100%) !important;
  }
}

.image-ratio--app .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--app::before {
  padding-bottom: calc((307 / 160) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--app--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((307 / 160) * 100%) !important;
  }
}

.image-ratio--premium-about .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--premium-about::before {
  padding-bottom: calc((586 / 1168) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--premium-about--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((586 / 1168) * 100%) !important;
  }
}

.image-ratio--ship .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--ship::before {
  padding-bottom: calc((854 / 626) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--ship--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((854 / 626) * 100%) !important;
  }
}

.image-ratio--section .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--section::before {
  padding-bottom: calc((448 / 520) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--section--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((448 / 520) * 100%) !important;
  }
}

.image-ratio--about .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--about::before {
  padding-bottom: calc((286 / 525) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--about--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((286 / 525) * 100%) !important;
  }
}

.image-ratio--partner .image-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-ratio--partner::before {
  padding-bottom: calc((120 / 210) * 100%);
  display: block;
  content: '';
}

@media (max-width: 575px) {
  .image-ratio--partner--mobile::before {
    content: '' !important;
    display: block;
    padding-bottom: calc((120 / 210) * 100%) !important;
  }
}

.image-ratio--contain .image-ratio__item {
  -o-object-fit: contain;
  object-fit: contain;
}

.image-ratio--cover .image-ratio__item {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50%;
  object-position: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 36rem) {
  .image-ratio--fill {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 11.25rem;
  }
}

@media (max-width: 991px) {
  .image-ratio--fill {
    min-height: 0;
  }
}

@media (min-width: 36rem) {
  .image-ratio--fill::before {
    content: none;
  }
}

.image-ratio--fill .image-ratio__item {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50%;
  object-position: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.image-ratio--blurly .image-ratio__item.is-preloading,
.image-ratio--blurly .image-ratio__item.is-loading,
.image-ratio--blurly .image-ratio__item.swiper-lazy {
  opacity: 0;
  -webkit-filter: blur(60px);
  filter: blur(60px);
}

.image-ratio--blurly .image-ratio__item.is-loaded,
.image-ratio--blurly .image-ratio__item.loaded {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition-duration: 0.5s;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
}

.list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list__item + .list__item {
  margin-top: 0.5rem;
}

.list__item p:first-child {
  margin-top: 0;
}

.list__item p:last-child {
  margin-bottom: 0;
}

.list__item-title {
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 600;
  color: #020617;
}

.list__item-title + .list__item-label {
  margin-left: 0.75rem;
}

.list__item-progress {
  max-width: 12.5rem;
  -ms-flex-item-align: center;
  align-self: center;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

@media screen and (min-width: 48rem) {
  .list__item-progress {
    max-width: calc(23.14815vw + 1.38889rem);
  }
}

@media screen and (min-width: 75rem) {
  .list__item-progress {
    max-width: 18.75rem;
  }
}

.list__item-tooltip {
  transition: 0.3s color;
  cursor: pointer;
  font-size: 1.125rem;
  margin-left: 0.125rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #94a3b8;
}

.list__item-tooltip:hover {
  color: #334155;
}

.list__item-icon {
  transition: 0.3s color;
  color: #286cf6;
  font-size: 1.5rem;
  margin-right: 0.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.list__item-icon-wrapper {
  width: 3rem;
  height: 3rem;
  margin-right: 0.75rem;
  font-size: 1rem;
  background-color: #eff4fa;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .list__item-icon-wrapper {
    width: calc(1.85185vw + 2.11111rem);
    height: calc(1.85185vw + 2.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .list__item-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .list__item-icon-wrapper {
    margin-right: calc(2.77778vw - 0.58333rem);
  }
}

@media screen and (min-width: 75rem) {
  .list__item-icon-wrapper {
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .list__item-icon-wrapper {
    font-size: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .list__item-icon-wrapper {
    font-size: 1.5rem;
  }
}

.list__item-icon-wrapper .list__item-icon {
  font-size: 1em;
  margin: 0 !important;
  color: inherit;
}

.list__item-link {
  color: #020617;
}

.list__item-link--active {
  color: #020617 !important;
  font-weight: 600;
}

.list__item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.list__item-subtitle {
  color: #6b7280;
  font-size: 0.75rem;
}

.list__item-title a {
  word-break: break-all;
}

.list__item-lock {
  display: inline;
  -ms-flex-align: baseline;
  align-items: baseline;
  word-break: break-all;
}

.list__item-lock-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.25rem;
  color: #ff7e05;
}

.list__item-lock-icon:hover {
  color: #e06d00;
}

.list .list {
  padding-left: 1rem;
  border-left: 1px solid #e2e8f0;
  margin-left: 0.1875rem;
  margin-top: 0.3125rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.list--dotted .list__item {
  position: relative;
  padding-left: 1.5625rem;
  line-height: 1.5rem;
}

.list--dotted .list__item::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  line-height: 1;
  left: 0.0625rem;
  background-color: #286cf6;
}

.list--dotted .list__item + .list__item {
  margin-top: 0.75rem;
}

.list--dotted.list--inline {
  margin: -0.1875rem -0.5rem;
}

.list--dotted.list--inline .list__item {
  padding: 0.1875rem 0.5rem 0.1875rem 1.375rem;
}

.list--dotted.list--inline .list__item::before {
  top: 0.75rem;
  left: 0.5rem;
}

.list--icon {
  line-height: 1.25rem;
  color: #020617;
}

.list--icon .list__item,
.list--icon .list__item-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .list--icon .list__item,
  .list--icon .list__item-link {
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1.25rem;
  }
}

.list--icon .list__item a:not(:hover):not(.list__item-lock-icon):not(.lock__icon) {
  color: inherit;
}

.list--icon .list__item-icon {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.list--icon .list__item-icon:last-child {
  margin-right: 0;
  margin-left: 0.5rem;
}

.list--icon .list__item {
  line-height: inherit;
}

.list--icon .list__item.is-disabled {
  color: rgba(100, 116, 139, 0.7) !important;
}

.list--icon .list__item.is-disabled .list__item-icon {
  color: #94a3b8 !important;
}

.list--icon .list__item + .list__item {
  margin-top: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .list--icon .list__item + .list__item {
    margin-top: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon .list__item + .list__item {
    margin-top: 1.25rem;
  }
}

.list--icon--error .list__item-icon {
  color: #e73323;
}

.list--icon--success .list__item-icon {
  color: #14b84b;
}

.list--icon--warning .list__item-icon {
  color: #ff7e05;
}

.list--icon.list--small {
  font-size: 0.875rem;
}

.list--icon.list--small .list__icon {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.list--icon.list--small .list__item + .list__item {
  margin-top: 0.5rem;
}

.list--icon.list--packages .list__item {
  -ms-flex-align: start;
  align-items: flex-start;
  color: #030712;
}

.list--icon.list--packages .list__item + .list__item {
  margin-top: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .list--icon.list--packages .list__item + .list__item {
    margin-top: calc(-1.85185vw + 2.38889rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon.list--packages .list__item + .list__item {
    margin-top: 1rem;
  }
}

.list--icon.list--packages .list__item-icon {
  font-size: 1.25rem;
  color: #14b84b;
}

.list--icon.list--packages .list__item-icon:first-child {
  margin-right: 0.5rem;
}

@media screen and (min-width: 48rem) {
  .list--icon.list--packages .list__item-icon:first-child {
    margin-right: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon.list--packages .list__item-icon:first-child {
    margin-right: 0.75rem;
  }
}

.list--icon.list--packages .list__item-icon:last-child {
  margin-left: 0.5rem;
}

@media screen and (min-width: 48rem) {
  .list--icon.list--packages .list__item-icon:last-child {
    margin-left: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon.list--packages .list__item-icon:last-child {
    margin-left: 0.75rem;
  }
}

.list--icon.list--packages .list__item-label {
  margin-top: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.list--icon.list--packages .list__item-tooltip {
  font-size: 1.25rem;
  margin-left: 0.5rem;
}

.list--icon.list--packages span {
  margin-top: 0.5rem;
}

.list--icon.list--packages strong {
  color: #020617;
}

.list--icon.list--feature .list__item {
  -ms-flex-align: start;
  align-items: flex-start;
  color: #1f2937;
}

.list--icon.list--feature .list__item + .list__item {
  margin-top: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .list--icon.list--feature .list__item + .list__item {
    margin-top: calc(0.92593vw + 1.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon.list--feature .list__item + .list__item {
    margin-top: 1.75rem;
  }
}

.list--icon.list--feature .list__item-icon {
  font-size: 1.25rem;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .list--icon.list--feature .list__item-icon {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon.list--feature .list__item-icon {
    font-size: 1.5rem;
  }
}

.list--icon.list--feature .list__item-icon:first-child {
  margin-right: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .list--icon.list--feature .list__item-icon:first-child {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon.list--feature .list__item-icon:first-child {
    margin-right: 1rem;
  }
}

.list--icon.list--feature .list__item-icon:last-child {
  margin-left: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .list--icon.list--feature .list__item-icon:last-child {
    margin-left: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--icon.list--feature .list__item-icon:last-child {
    margin-left: 1rem;
  }
}

.list--icon.list--feature span {
  margin-top: 0.5rem;
}

.list--icon.list--feature strong {
  color: #020617;
}

@media (min-width: 36rem) {
  .list--grid {
    grid-column-gap: 1.25rem;
    display: grid;
    grid-row-gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .list--grid {
    grid-column-gap: calc(17.59259vw - 7.19444rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .list--grid {
    grid-column-gap: 6rem;
  }
}

@media (min-width: 48rem) {
  .list--grid:not(.list--grid--2) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 36rem) {
  .list--grid .list__item {
    min-width: 0;
  }
}

@media (min-width: 36rem) {
  .list--grid .list__item + .list__item {
    margin-top: 0;
  }
}

.list--extra-space .list__item + .list__item {
  margin-top: 1rem;
}

@media screen and (min-width: 48rem) {
  .list--extra-space .list__item + .list__item {
    margin-top: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--extra-space .list__item + .list__item {
    margin-top: 2rem;
  }
}

.list--fix {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list--inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.625rem -0.9375rem;
}

.list--inline .list__item {
  padding: 0.625rem 0.9375rem;
  margin: 0 !important;
}

.list--numbered .list__item {
  display: -ms-flexbox;
  display: flex;
}

.list--numbered .list__item-number {
  color: #286cf6;
  font-weight: bold;
  min-width: 1.5rem;
  padding-right: 0.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.list--summary .list__item {
  display: -ms-flexbox;
  display: flex;
  text-align: right;
}

.list--summary .list__item + .list__item {
  border-top: 1px dashed #d1d5db;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.list--summary .list__item-title {
  padding-right: 0.75rem;
  text-align: left;
}

@media screen and (min-width: 48rem) {
  .list--summary .list__item-title {
    padding-right: calc(2.77778vw - 0.58333rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--summary .list__item-title {
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .list--summary .list__item-title {
    min-width: 40%;
  }
}

@media (min-width: 48rem) {
  .list--summary.list--small {
    font-size: 1rem;
  }
}

.list--summary.list--small .list__item + .list__item {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.list--summary.list--small .list__item-badge {
  min-height: 1.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

@media (min-width: 48rem) {
  .list--summary.list--xsmall {
    font-size: 0.875rem;
  }
}

.list--summary.list--xsmall .list__item + .list__item {
  padding-top: 0.375rem;
  margin-top: 0.375rem;
}

.list--summary.list--xsmall .list__item-title {
  padding-right: 0.75rem;
}

@media (min-width: 48rem) {
  .list--summary.list--xsmall .list__item-title + span {
    max-width: 65%;
  }
}

.list--nav {
  font-size: 0.875rem;
}

.list--nav .list {
  border-left: 0;
}

.list--nav .list__item-link {
  transition-duration: 0.3s;
  transition-property: color, background-color;
  padding: 0.3125rem 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 0.375rem;
  color: #1f2937;
}

.list--nav .list__item-badge {
  transition-duration: 0.3s;
  transition-property: color, background-color;
  min-height: 1.125rem;
  line-height: 1;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0 0.25rem;
  min-width: 1.3125rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #475569;
  background-color: #f1f5f9;
  border-radius: 0.375rem;
}

.list--nav .list__item-link-icon {
  transition: 0.3s color;
  font-size: 1rem;
  margin-left: 0.5rem;
  color: #64748b;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.125rem;
}

.list--nav .list__item + .list__item {
  margin-top: 0.1875rem;
}

.list--nav .list__item-link:hover {
  background-color: #f1f5f9;
  color: #020617;
}

.list--nav .list__item-link:hover .list__item-link-icon {
  color: #334155;
}

.list--nav .list__item-link:hover .list__item-badge {
  background-color: #fff;
  color: #334155;
}

.list--bordered .list__item {
  transition: 0.3s background-color;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
}

.list--bordered .list__item:hover {
  background-color: #e5e7eb;
}

.list--bordered .list__item + .list__item {
  margin-top: 1rem;
}

.list--small {
  font-size: 0.875rem;
}

@media (min-width: 48rem) {
  .list--large {
    font-size: 1rem;
  }
}

.list--contact {
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
}

.list--contact .list__item + .list__item {
  border-top: 1px solid #e2e8f0;
}

.list--contact .list__item {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1f2937;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 48rem) {
  .list--contact .list__item {
    padding-top: calc(3.7037vw - 0.77778rem);
    padding-bottom: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--contact .list__item {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .list--contact .list__item {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--contact .list__item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .list--contact .list__item {
    font-size: calc(0.46296vw + 0.65278rem);
  }
}

@media screen and (min-width: 75rem) {
  .list--contact .list__item {
    font-size: 1rem;
  }
}

.list--contact .list__item:hover {
  background-color: #f1f5f9;
}

.list--contact .list__item-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.list--contact .list__item-content strong {
  font-weight: 600;
  color: #020617;
}

.list--contact .list__item-content a {
  margin-right: auto;
}

.list--contact .list__item-content a:not(:hover) {
  color: inherit;
}

.list--condition {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.375rem;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #020617;
}

.list--condition .list__item {
  padding: 0.375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 36rem) {
  .list--condition .list__item {
    width: 50%;
  }
}

@media (min-width: 62rem) {
  .list--condition .list__item {
    width: 33.3%;
  }
}

.list--condition .list__item-content {
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 36rem) {
  .list--condition .list__item-content {
    background-color: #f1f5f9;
    display: -ms-flexbox;
    display: flex;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
  }
}

.list--condition .list__item-label {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.list--condition .list__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-left: 0.5rem;
  color: #14b84b;
  margin-right: 0;
}

.list--condition .list__item--error .list__item-icon {
  color: #cbd5e1;
}

.list--condition .list__item + .list__item {
  margin-top: 0;
}

.list--condition.list--column > .list__item {
  width: 100%;
}

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

.list--tooltip .list__item + .list__item {
  margin-top: 0 !important;
}

.list--tooltip .list__item {
  padding-left: 1rem;
  line-height: 1.25rem;
}

.list--tooltip.list--dotted .list__item::before {
  top: 0.4375rem;
}

.list--no-space .list__item + .list__item {
  margin-top: 0 !important;
}

.list--categories {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.5rem;
}

.list--categories .list__item {
  padding: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important;
}

.list--categories .list__item-link {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  min-height: 2rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #020617;
}

.list--categories .list__item-link:hover:not(.is-active) {
  background-color: #f1f5f9;
  color: #020617;
}

.list--categories .list__item-link.is-active {
  background-color: #dce4f7;
  color: #020617;
}

@-webkit-keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes buttonAnimation {
  100% {
    background-position: 100% 100%;
  }
}

@keyframes buttonAnimation {
  100% {
    background-position: 100% 100%;
  }
}

.button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: inherit;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  border-style: solid;
  text-transform: none;
  cursor: pointer;
  box-sizing: border-box;
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color, outline, box-shadow;
  background-color: #286cf6;
  border-color: transparent;
  color: #fff;
  border-width: 0;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 600;
  min-width: 48px;
  min-height: 48px;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.5rem;
  /*&--gray {
    @include button-theme(
      $color: color('title'),
      $color-hover: color('title'),
      $color-active: color('title'),
      $color-focus: color('title'),
      $background-color: color('neutral-200'),
      $background-color-hover: color('neutral-300'),
      $background-color-active: darken(color('neutral-300'), 4%),
      $background-color-focus: darken(color('neutral-300'), 2%),
      $outline-color-active: rgba(color('neutral-900'), 0.08)
    );
  }*/
}

.button:hover {
  text-decoration: none;
}

.button:disabled,
.button[disabled],
.button.is-disabled {
  opacity: 0.7;
  cursor: no-drop;
}

.button:hover {
  background-color: #2566e8;
  border-color: transparent;
  color: #fff;
}

.button:focus {
  background-color: #185de5;
  border-color: transparent;
  color: #fff;
}

.button:active {
  background-color: #1757d8;
  border-color: transparent;
  color: #fff;
}

.button:active:not(:disabled) {
  box-shadow: 0 0 0 4px rgba(37, 102, 232, 0.3);
}

.button:disabled,
.button[disabled],
.button.is-disabled {
  background-color: #286cf6;
  border-color: #e2e8f0;
  color: #fff;
}

@media (max-width: 767px) {
  .button {
    font-size: 0.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 48rem) {
  .button {
    white-space: nowrap;
  }
}

.button__label {
  text-align: left;
  line-height: 1;
}

.button__label:not(.d-none) + .button__icon,
.button__label:not(.d-none) + .button__icon-wrapper,
.button__icon:not(.d-none) + .button__label,
.button__icon-wrapper:not(.d-none) + .button__label {
  margin-left: 0.5rem;
  vertical-align: middle;
}

.button__icon:first-child {
  margin-left: -0.25rem;
}

.button__icon:last-child {
  margin-right: -0.25rem;
}

.button__icon,
.button__icon-wrapper {
  font-size: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .button__icon,
  .button__icon-wrapper {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .button__icon,
  .button__icon-wrapper {
    font-size: 1.25rem;
  }
}

.button__icon-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  overflow: hidden;
}

.button__icon-wrapper .button__icon {
  transition-duration: 0.3s;
  transition-property: color, opacity, visibility, -webkit-transform;
  transition-property: transform, color, opacity, visibility;
  transition-property: transform, color, opacity, visibility, -webkit-transform;
}

.button__icon-wrapper .button__icon--animate {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: translate(-100%, 100%);
  transform: translate(-100%, 100%);
  opacity: 0;
  visibility: hidden;
}

.button__label:not(.d-none) + .button__icon:last-child,
.button__label:not(.d-none) + .button__icon-wrapper:last-child {
  margin-right: -0.5rem;
}

@media screen and (min-width: 48rem) {
  .button__label:not(.d-none) + .button__icon:last-child,
  .button__label:not(.d-none) + .button__icon-wrapper:last-child {
    margin-right: calc(0vw - 0.5rem);
  }
}

@media screen and (min-width: 75rem) {
  .button__label:not(.d-none) + .button__icon:last-child,
  .button__label:not(.d-none) + .button__icon-wrapper:last-child {
    margin-right: -0.5rem;
  }
}

.button__svg {
  max-height: 1.5rem;
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 48rem) {
  .button__svg {
    max-height: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .button__svg {
    max-height: 2rem;
  }
}

.button__loader {
  -webkit-animation: loader 1s linear infinite;
  animation: loader 1s linear infinite;
  display: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.button__loader:last-child {
  margin-left: 0.5rem;
  margin-right: -0.25rem;
}

.button__loader:first-child {
  margin-right: 0.5rem;
  margin-left: -0.25rem;
}

.button:not(:disabled):not(.is-disabled):hover .button__icon-wrapper .button__icon:not(.button__icon--animate),
.button:not(:disabled):not(.is-disabled):active .button__icon-wrapper .button__icon:not(.button__icon--animate),
.button:not(:disabled):not(.is-disabled):focus .button__icon-wrapper .button__icon:not(.button__icon--animate) {
  -webkit-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  opacity: 0;
  visibility: hidden;
}

.button:not(:disabled):not(.is-disabled):hover .button__icon-wrapper .button__icon--animate,
.button:not(:disabled):not(.is-disabled):active .button__icon-wrapper .button__icon--animate,
.button:not(:disabled):not(.is-disabled):focus .button__icon-wrapper .button__icon--animate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.button--secondary {
  background-color: #bdefef;
  color: #020617;
}

.button--secondary:hover {
  background-color: #39d0d0;
  color: #020617;
}

.button--secondary:focus {
  background-color: #1f8484;
  color: #020617;
}

.button--secondary:active {
  background-color: #2bb5b5;
  color: #020617;
}

.button--secondary:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(57, 208, 208, 0.3);
}

.button--light-primary {
  background-color: #eff4fa;
  color: #286cf6;
}

.button--light-primary:hover {
  background-color: #286cf6;
  color: #fff;
}

.button--light-primary:focus {
  background-color: #1b59d5;
  color: #fff;
}

.button--light-primary:active {
  background-color: #205fdc;
  color: #fff;
}

.button--light-primary:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(37, 102, 232, 0.3);
}

.button--light-primary:disabled,
.button--light-primary[disabled],
.button--light-primary.is-disabled {
  background-color: #e5e7eb;
  color: #9ca3af;
}

.button--light-primary[disabled] {
  opacity: 1;
}

.button--light-primary.button--icon:not(:hover):not(:active):not(:focus) {
  color: #001ba3;
}

.button--gray {
  background-color: #e2e8f0;
  color: #020617;
}

.button--gray:hover {
  background-color: #cbd5e1;
  color: #020617;
}

.button--gray:focus {
  background-color: #c5d0dd;
  color: #020617;
}

.button--gray:active {
  background-color: #becbda;
  color: #020617;
}

.button--gray:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(2, 6, 23, 0.08);
}

.button--red {
  background-color: #ffedeb;
  color: #e04646;
}

.button--red:hover {
  background-color: #e04646;
  color: #fff;
}

.button--red:focus {
  background-color: #df3d3d;
  color: #fff;
}

.button--red:active {
  background-color: #dd3535;
  color: #fff;
}

.button--red:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(224, 70, 70, 0.08);
}

.button--red:disabled,
.button--red[disabled],
.button--red.is-disabled {
  background-color: #ffedeb;
  color: #e04646;
}

.button--green {
  background-color: rgba(20, 184, 75, 0.12);
  color: #03a037;
}

.button--green:hover {
  background-color: #38ba86;
  color: #fff;
}

.button--green:focus {
  background-color: #36b280;
  color: #fff;
}

.button--green:active {
  background-color: #33aa7b;
  color: #fff;
}

.button--green:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(56, 186, 134, 0.08);
}

.button--green:disabled,
.button--green[disabled],
.button--green.is-disabled {
  background-color: #ebfff2;
  color: #38ba86;
}

.button--success {
  background-color: #14b84b;
  color: #fff;
}

.button--success:hover {
  background-color: #13aa45;
  color: #fff;
}

.button--success:focus {
  background-color: #12a644;
  color: #fff;
}

.button--success:active {
  background-color: #12a142;
  color: #fff;
}

.button--success:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(20, 184, 75, 0.08);
}

.button--success:disabled,
.button--success[disabled],
.button--success.is-disabled {
  background-color: #14b84b;
  color: #fff;
}

.button--warning {
  background-color: #ff7e05;
  color: #fff;
}

.button--warning:hover {
  background-color: #ff8614;
  color: #fff;
}

.button--warning:focus {
  background-color: #eb7100;
  color: #fff;
}

.button--warning:active {
  background-color: #f57600;
  color: #fff;
}

.button--warning:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(255, 126, 5, 0.1);
}

.button--light-warning {
  background-color: #ffeddb;
  color: #ff7e05;
}

.button--light-warning:hover {
  background-color: #ff7e05;
  color: #fff;
}

.button--light-warning:focus {
  background-color: #eb7100;
  color: #fff;
}

.button--light-warning:active {
  background-color: #f57600;
  color: #fff;
}

.button--light-warning:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(255, 126, 5, 0.1);
}

.button--dark {
  background-color: #1e293b;
  color: #fff;
}

.button--dark:hover {
  background-color: #3e5068;
  color: #fff;
}

.button--dark:focus {
  background-color: #040d33;
  color: #fff;
}

.button--dark:active {
  background-color: #040c2e;
  color: #fff;
}

.button--dark:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(2, 6, 23, 0.08);
}

.button--link {
  background-color: transparent;
  color: #020617;
  line-height: 1.72;
  padding: 0.5rem 0rem;
  min-width: initial !important;
}

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

.button--link:focus {
  background-color: transparent;
  color: #286cf6;
}

.button--link:active {
  background-color: transparent;
  color: #286cf6;
}

.button--link:active:not(:disabled) {
  box-shadow: 0 0 0 5px transparent;
}

.button--link .button__icon-wrapper {
  transition-duration: 0.3s;
  transition-property: background-color, box-shadow;
  background-color: #1e295b;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

.button--link .button__icon-wrapper .button__icon {
  color: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.button--link .button__icon-wrapper .button__icon--animate {
  -webkit-transform: translate(-130%, -50%);
  transform: translate(-130%, -50%);
}

.button--link .button__label + .button__icon,
.button--link .button__label + .button__icon-wrapper,
.button--link .button__icon + .button__label,
.button--link .button__icon-wrapper + .button__label {
  margin-left: 0.75rem;
}

.button--link:hover .button__icon-wrapper,
.button--link:active .button__icon-wrapper,
.button--link:focus .button__icon-wrapper {
  background-color: #286cf6;
  color: #fff;
}

.button--link:hover .button__icon-wrapper .button__icon:not(.button__icon--animate),
.button--link:active .button__icon-wrapper .button__icon:not(.button__icon--animate),
.button--link:focus .button__icon-wrapper .button__icon:not(.button__icon--animate) {
  -webkit-transform: translate(130%, -50%);
  transform: translate(130%, -50%);
}

.button--link:hover .button__icon-wrapper .button__icon--animate,
.button--link:active .button__icon-wrapper .button__icon--animate,
.button--link:focus .button__icon-wrapper .button__icon--animate {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.button--link:active .button__icon-wrapper {
  background-color: #1757d8;
  box-shadow: 0 0 0 0.1875rem rgba(37, 102, 232, 0.3);
}

.button--link.button--small {
  font-weight: 500;
}

.button--link.button--small .button__icon-wrapper {
  width: 1.625rem;
  height: 1.625rem;
}

.button--link.button--small .button__icon {
  font-size: 1rem;
}

.button--link.button--small .button__label + .button__icon,
.button--link.button--small .button__label + .button__icon-wrapper,
.button--link.button--small .button__icon + .button__label,
.button--link.button--small .button__icon-wrapper + .button__label {
  margin-left: 0.5rem;
}

.button--share .button__icon {
  transition: 0.3s color;
  font-size: 1.25rem;
  opacity: 1;
}

.button--share:not(:hover):not(:focus):not(:active) .button__icon {
  color: #286cf6;
}

.button--plain {
  background-color: transparent;
  color: #020617;
}

.button--plain:hover {
  background-color: #eaf0f6;
  color: #020617;
}

.button--plain:focus {
  background-color: #cbd5e1;
  color: #020617;
}

.button--plain:active {
  background-color: #dbe3ed;
  color: #020617;
}

.button--plain:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(2, 6, 23, 0.03);
}

.button--plain:disabled,
.button--plain[disabled],
.button--plain.is-disabled {
  background-color: transparent;
}

.button--plain .button__icon {
  color: #286cf6;
}

.button--plain:hover .button__icon,
.button--plain:active .button__icon,
.button--plain:focus .button__icon {
  color: #286cf6;
}

.button--rounded {
  border-radius: 6.25rem;
}

.button--light {
  background-color: #fff;
  color: #286cf6;
}

.button--light:hover {
  background-color: #e2e8f0;
  color: #020617;
}

.button--light:focus {
  background-color: #dbe3ed;
  color: #020617;
}

.button--light:active {
  background-color: #d5dde9;
  color: #020617;
}

.button--light:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(203, 213, 225, 0.3);
}

.button--light .button__icon {
  color: #286cf6;
}

.button--app {
  background-color: #020617;
  color: #fff;
}

.button--app:hover {
  background-color: #061246;
  color: #fff;
}

.button--app:focus {
  background-color: #040d33;
  color: #fff;
}

.button--app:active {
  background-color: #050f38;
  color: #fff;
}

.button--app:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(2, 6, 23, 0.2);
}

.button--app:disabled,
.button--app[disabled],
.button--app.is-disabled {
  background-color: #020617;
  color: #fff;
}

@media (max-width: 767px) {
  .button--app {
    min-height: 2.5rem;
    padding: 0.5rem;
  }
}

.button.is-checked {
  background-color: #e04646;
  border-color: transparent;
  color: #fff;
}

.button.is-checked:hover {
  background-color: #e74314;
  color: #fff;
}

.button.is-checked:focus {
  background-color: #d03c12;
  color: #fff;
}

.button.is-checked:active {
  background-color: #d03c12;
  color: #fff;
}

.button.is-checked:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(208, 60, 18, 0.1);
}

.button--action {
  background-color: transparent;
  color: #6b7280;
}

.button--action:hover {
  background-color: #e2e8f0;
  color: #374151;
}

.button--action:focus {
  background-color: #dbe3ed;
  color: #374151;
}

.button--action:active {
  background-color: #d5dde9;
  color: #374151;
}

.button--action:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(203, 213, 225, 0.3);
}

.button--action:disabled,
.button--action[disabled],
.button--action.is-disabled {
  background-color: transparent;
  color: #6b7280;
}

.button--action .button__icon {
  color: inherit !important;
  font-size: 1.25rem;
}

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

.button--small {
  min-width: 40px;
  min-height: 40px;
  padding: 0.4375rem 1.25rem;
}

.button--small .button__icon:first-child:not(:last-child) {
  margin-left: -0.25rem;
}

.button--small .button__icon + .button__label {
  margin-left: 0.625rem;
}

.button--small .button__icon {
  font-size: 1rem;
}

.button--small.button--icon {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.button--small.button--icon.button--bordered {
  padding: 0.6875rem;
  min-width: 2.5rem;
}

.button--small.button--icon.button--icon-lg {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.button--small.button--icon.button--icon-lg .button__icon {
  font-size: 1.25rem;
}

.button--xsmall {
  font-size: 0.8125rem;
  min-width: 32px;
  min-height: 32px;
  padding: 0.25rem 0.5rem;
}

.button--xsmall .button__icon + .button__label {
  margin-left: 0.5rem;
}

.button--xsmall.button--icon {
  min-width: 2rem !important;
  padding: 0.25rem !important;
}

.button--xsmall.button--icon.button--bordered {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.button--xsmall .button__icon {
  font-size: 1rem;
}

.button--medium {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  min-height: 3rem;
}

.button--text-dark:not(:hover):not(:active):not(:focus) {
  color: #020617;
}

.button--bordered {
  border-width: 1px;
  background-color: transparent;
  border-color: #cbd5e1;
  color: #020617;
}

.button--bordered:hover {
  background-color: #eff4fa;
  border-color: transparent;
  color: #286cf6;
}

.button--bordered:focus {
  background-color: #d4e1f2;
  border-color: transparent;
  color: #001ba3;
}

.button--bordered:active {
  background-color: #dce7f4;
  border-color: transparent;
  color: #001ba3;
}

.button--bordered:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(37, 102, 232, 0.05);
}

.button--bordered:disabled,
.button--bordered[disabled],
.button--bordered.is-disabled {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  color: #020617;
}

.button--bordered.button--primary:not(:hover):not(:active):not(:focus):not(.is-checked) {
  color: #286cf6;
}

.button--bordered.button--icon {
  padding: 0.75rem 0.875rem;
}

.button--bordered.button--white {
  background-color: #fff;
  border-color: #e2e8f0;
  color: #020617;
}

.button--bordered.button--white:hover {
  background-color: #fff;
  border-color: #cbd5e1;
  color: #020617;
}

.button--bordered.button--white:focus {
  background-color: #fff;
  border-color: #cbd5e1;
  color: #020617;
}

.button--bordered.button--white:active {
  background-color: #fff;
  border-color: #cbd5e1;
  color: #020617;
}

.button--bordered.button--white:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(203, 213, 225, 0.3);
}

.button--bordered.button--white:disabled,
.button--bordered.button--white[disabled],
.button--bordered.button--white.is-disabled {
  background-color: #fff;
  color: #020617;
}

.button--bordered.button--white .button__icon {
  transition: 0.3s color;
}

.button--bordered.button--white:hover .button__icon {
  color: #286cf6;
}

.button--icon-primary .button__icon {
  color: #286cf6;
}

.button--icon-red .button__icon {
  color: #e04646;
}

.button--active-red:hover {
  background-color: #ffedeb;
  color: #e04646;
}

.button--active-red:focus {
  background-color: mistyrose;
  color: #e04646;
}

.button--active-red:active {
  background-color: #ffdbd7;
  color: #e04646;
}

.button--active-red:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(224, 70, 70, 0.08);
}

@media (min-width: 48rem) {
  .button--large {
    min-height: 3.5rem;
    font-size: 1rem;
  }
}

.button--banner {
  font-weight: 500;
}

@media (max-width: 575px) {
  .button--banner > .button__icon:first-child {
    display: none;
  }
}

@media (max-width: 575px) {
  .button--banner > .button__icon:first-child + .button__label {
    margin-left: 0;
  }
}

.button--banner .button__label {
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 1.3;
}

.button--banner .button__label + .button__icon-wrapper:last-child,
.button--banner .button__label + .button__icon:last-child {
  margin-right: 0;
}

.button--icon {
  padding: 0.5625rem 0.75rem;
}

.button--icon:not(.button--primary):not(.button--light-primary):not(.button--secondary):not(.button--red):not(.button--action):not(.is-checked):not(.button--plain) {
  color: #020617;
}

.button--icon:not(.button--small) {
  min-width: 3rem;
}

.button--icon.button--small:not(.button--bordered) {
  min-width: 2.5rem;
}

.button--icon .button__icon {
  color: currentColor !important;
  transition: initial !important;
  margin: 0 !important;
}

.button--toggle {
  border-width: 1px;
  border-radius: 12px;
  min-height: 56px;
  padding: 1rem 1.25rem;
  background-color: transparent;
  border-color: #cbd5e1;
  color: #020617;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.button--toggle:hover {
  background-color: #eff4fa;
  border-color: transparent;
  color: #286cf6;
}

.button--toggle:focus {
  background-color: #d4e1f2;
  border-color: transparent;
  color: #001ba3;
}

.button--toggle:active {
  background-color: #dce7f4;
  border-color: transparent;
  color: #001ba3;
}

.button--toggle:active:not(:disabled) {
  box-shadow: 0 0 0 5px rgba(37, 102, 232, 0.05);
}

.button--toggle:disabled,
.button--toggle[disabled],
.button--toggle.is-disabled {
  background-color: #eff4fa;
  border-color: #e2e8f0;
  color: #286cf6;
}

.button--toggle .button__icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #eff4fa;
  margin-right: 1rem;
  color: #286cf6;
}

.button--toggle .button__icon {
  font-size: 1.5rem;
  -webkit-transform: initial !important;
  transform: initial !important;
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.button--toggle .button__label {
  color: #475569;
  line-height: 1.25rem;
  font-weight: 500;
}

.button--toggle .button__label strong {
  color: #020617;
}

.button--toggle:hover .button__icon-wrapper {
  background-color: #fff;
  color: #286cf6;
}

.button--upper {
  text-transform: uppercase;
}

@media (min-width: 62rem) {
  .button--extra-space {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 36rem) {
  .button--min-width {
    min-width: 8.75rem;
  }
}

.button--lock.button--light:not(:hover):not(:active):not(:focus),
.button--lock.button--gray:not(:hover):not(:active):not(:focus) {
  color: #020617;
}

.button--lock.button--light .button__icon,
.button--lock.button--gray .button__icon {
  color: #ff7e05;
}

.button--lock.button--dark .button__icon {
  color: #ff7e05;
}

.button--unlock.button--light:not(:hover):not(:active):not(:focus),
.button--unlock.button--gray:not(:hover):not(:active):not(:focus) {
  color: #020617;
}

.button--unlock.button--light .button__icon,
.button--unlock.button--gray .button__icon {
  color: #14b84b;
}

.button--unlock.button--dark .button__icon {
  color: #14b84b;
}

.button--two-line {
  white-space: inherit;
  font-weight: 500;
  min-height: 3.25rem;
  padding: 0.375rem 1.5rem;
  font-size: 0.875rem;
}

.button--two-line .button__icon {
  font-size: 1.5rem;
}

.button--two-line .button__label {
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 1.3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button--two-line .button__label strong {
  font-weight: 600;
}

.button--two-line .button__label {
  margin: 0 !important;
}

.button--two-line > .button__icon:last-child {
  margin-left: 0.75rem;
  margin-right: -0.25rem !important;
}

.button--two-line > .button__icon:first-child {
  margin-right: 0.75rem;
  margin-left: -0.25rem !important;
}

.button--two-line.button--light-warning:not(:hover):not(:active):not(:focus) .button__label {
  color: rgba(2, 6, 23, 0.6);
}

.button--two-line.button--light-warning:not(:hover):not(:active):not(:focus) .button__label strong {
  color: #020617;
}

.button--two-line.button--large {
  box-shadow: 0 0 0 2px #fff;
}

@media (min-width: 48rem) {
  .button--two-line.button--large {
    padding: 0.75rem 1.5rem;
  }
}

@media (min-width: 62rem) {
  .button--two-line.button--large > .button__icon {
    font-size: 1.75rem;
  }
}

.button--processing {
  cursor: wait;
  pointer-events: none;
}

.button--processing .button__loader {
  display: block;
}

.button--processing .button__icon-wrapper {
  transition-duration: 0.3s;
  transition-property: color, width, opacity, -webkit-transform;
  transition-property: color, transform, width, opacity;
  transition-property: color, transform, width, opacity, -webkit-transform;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.btn-ai {
  display: inline-block;
  position: relative;
  text-decoration: none;
  border-radius: 10px;
}

.btn-ai__content {
  min-width: 2.5rem;
  height: 2.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #543ed6;
  border-radius: 6.25rem;
  color: #000;
  font-weight: 500;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 48rem) {
  .btn-ai__content {
    min-width: calc(1.85185vw + 1.61111rem);
    height: calc(1.85185vw + 1.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .btn-ai__content {
    min-width: 3rem;
    height: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .btn-ai__content {
    padding-left: calc(3.7037vw - 1.27778rem);
    padding-right: calc(3.7037vw - 1.27778rem);
  }
}

@media screen and (min-width: 75rem) {
  .btn-ai__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .btn-ai__content {
    border-radius: 3.125rem;
  }
}

.btn-ai__icon {
  z-index: 5;
  width: 20px;
  height: 20px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -0.25rem;
}

.btn-ai__icon-item {
  color: #286cf6;
}

.btn-ai__icon-item--1 {
  font-size: 15px !important;
  z-index: 5;
}

.btn-ai__icon-item--2 {
  font-size: 6px !important;
  position: absolute;
  left: 14px;
  top: 2px;
  -webkit-animation: btn-ai-icon-2 3s ease-out infinite;
  animation: btn-ai-icon-2 3s ease-out infinite;
}

.btn-ai__icon-item--3 {
  position: absolute;
  font-size: 8px !important;
  left: 13px;
  bottom: 0;
  -webkit-animation: btn-ai-icon-2 3s 1s linear infinite;
  animation: btn-ai-icon-2 3s 1s linear infinite;
}

@media (min-width: 48rem) {
  .btn-ai__icon {
    margin-right: 8px;
    margin-left: -8px;
  }
}

.btn-ai__label {
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .btn-ai__label {
    display: none;
  }
}

.btn-ai__badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-shadow: initial;
  padding: 0 4px;
  border-radius: 4px;
  background-color: #fff;
  font-weight: 500;
  color: #000;
  z-index: 3;
  font-size: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 8px;
  margin-right: -4px;
}

.btn-ai__shape {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-filter: blur(12px);
  filter: blur(12px);
}

.btn-ai__shape--1 {
  background-color: #deb0f3;
  -webkit-transform: translate(-48px, -16px);
  transform: translate(-48px, -16px);
  -webkit-animation: btn-ai-shape-1 3s 1s ease-out infinite;
  animation: btn-ai-shape-1 3s 1s ease-out infinite;
}

.btn-ai__shape--2 {
  background-color: #e9def6;
  -webkit-transform: translate(-12px, 16px);
  transform: translate(-12px, 16px);
  -webkit-animation: btn-ai-shape-2 3s ease-in infinite;
  animation: btn-ai-shape-2 3s ease-in infinite;
}

.btn-ai__shape--3 {
  background-color: #86d3d7;
  -webkit-transform: translate(20px, -16px);
  transform: translate(20px, -16px);
  -webkit-animation: btn-ai-shape-3 3s ease-out infinite;
  animation: btn-ai-shape-3 3s ease-out infinite;
}

.btn-ai__shape--4 {
  background-color: #9dcaf5;
  -webkit-transform: translate(48px, 16px);
  transform: translate(48px, 16px);
  -webkit-animation: btn-ai-shape-4 3s 1s ease-in infinite;
  animation: btn-ai-shape-4 3s 1s ease-in infinite;
}

.btn-ai__shadow {
  width: 80%;
  height: 1rem;
  background: linear-gradient(80deg, #deb0f3 10%, #e9def6 30%, #86d3d7 60%, #9dcaf5 90%);
  border-radius: 4rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -2px;
  z-index: -1;
  -webkit-filter: blur(12px);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-ai:hover .btn-ai__shadow {
  opacity: 1;
}

@-webkit-keyframes btn-ai-shape-1 {
  33% {
    -webkit-transform: translate(-28px, 0);
    transform: translate(-28px, 0);
  }
}

@keyframes btn-ai-shape-1 {
  33% {
    -webkit-transform: translate(-28px, 0);
    transform: translate(-28px, 0);
  }
}

@-webkit-keyframes btn-ai-shape-2 {
  33% {
    -webkit-transform: translate(-28px, 28px);
    transform: translate(-28px, 28px);
  }
}

@keyframes btn-ai-shape-2 {
  33% {
    -webkit-transform: translate(-28px, 28px);
    transform: translate(-28px, 28px);
  }
}

@-webkit-keyframes btn-ai-shape-3 {
  33% {
    -webkit-transform: translate(20px, 4px);
    transform: translate(20px, 4px);
  }
}

@keyframes btn-ai-shape-3 {
  33% {
    -webkit-transform: translate(20px, 4px);
    transform: translate(20px, 4px);
  }
}

@-webkit-keyframes btn-ai-shape-4 {
  33% {
    -webkit-transform: translate(48px, 0);
    transform: translate(48px, 0);
  }
}

@keyframes btn-ai-shape-4 {
  33% {
    -webkit-transform: translate(48px, 0);
    transform: translate(48px, 0);
  }
}

@-webkit-keyframes btn-ai-icon-1 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(-24px);
    transform: translateX(-24px);
    opacity: 0;
  }

  86% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes btn-ai-icon-1 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(-24px);
    transform: translateX(-24px);
    opacity: 0;
  }

  86% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes btn-ai-icon-2 {
  0%, 100% {
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(-3px) scale(1.3);
    transform: translateX(-3px) scale(1.3);
    opacity: 0.4;
  }
}

@keyframes btn-ai-icon-2 {
  0%, 100% {
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(-3px) scale(1.3);
    transform: translateX(-3px) scale(1.3);
    opacity: 0.4;
  }
}

.lock {
  display: inline;
  word-break: break-word;
  cursor: pointer;
  /*@include breakpoint-up('large') {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: masonry;
    grid-gap: rem(24px) rem(40px);
    align-items: flex-start;
  }*/
}

.lock__icon {
  color: #ff7e05;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  outline: none;
}

.lock__icon:hover {
  color: #db6a00;
}

.lock__icon:last-child {
  margin-left: 0.375rem;
}

.lock__icon:first-child {
  margin-right: 0.375rem;
}

.lock--unlock .lock__icon {
  color: #14b84b;
}

.lock--unlock:hover .lock__icon {
  color: #03a037;
}

.table .lock,
.entry table .lock {
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  word-break: initial;
}

.table .lock .lock__icon:last-child,
.entry table .lock .lock__icon:last-child {
  margin-left: 0.5rem;
}

.table .lock .lock__icon:first-child,
.entry table .lock .lock__icon:first-child {
  margin-right: 0.5rem;
}

.stars {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.stars__item {
  font-size: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .stars__item {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .stars__item {
    font-size: 1.25rem;
  }
}

.stars__item:not(:last-child) {
  margin-right: 0.125rem;
}

@media screen and (min-width: 48rem) {
  .stars__item:not(:last-child) {
    margin-right: calc(0vw + 0.125rem);
  }
}

@media screen and (min-width: 75rem) {
  .stars__item:not(:last-child) {
    margin-right: 0.125rem;
  }
}

.stars--small .stars__item:not(:last-child) {
  margin-right: 0;
}

.stars--small .stars__item-icon {
  font-size: 1rem;
}

.badge {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  color: #020617;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  background-color: #fff;
}

@media screen and (min-width: 48rem) {
  .badge {
    padding-left: calc(1.85185vw - 0.38889rem);
    padding-right: calc(1.85185vw - 0.38889rem);
  }
}

@media screen and (min-width: 75rem) {
  .badge {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.badge__icon {
  font-size: 1.25rem;
  color: #286cf6;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.badge__label {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.badge__icon-wrapper {
  margin-right: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #286cf6;
  font-size: 1.125rem;
  color: #fff;
}

@media screen and (min-width: 48rem) {
  .badge__icon-wrapper {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .badge__icon-wrapper {
    margin-right: 1rem;
  }
}

.badge__icon-wrapper .badge__icon {
  font-size: inherit;
  color: inherit;
  margin: 0;
}

.badge__stars {
  margin-right: 0.75rem;
  -ms-flex-item-align: center;
  align-self: center;
}

@media screen and (min-width: 48rem) {
  .badge__stars {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .badge__stars {
    margin-right: 1rem;
  }
}

.badge__stars-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #286cf6;
  font-size: 1.125rem;
  color: #fff;
}

.badge__stars-item + .badge__stars-item {
  margin-left: 0.1875rem;
}

.badge__status {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #e73323;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
  -ms-flex-item-align: center;
  align-self: center;
}

.badge__status--online {
  background-color: #14b84b;
}

.badge--large {
  font-size: 0.875rem;
}

@media screen and (min-width: 62rem) {
  .badge--large {
    font-size: calc(0.64655vw + 0.47414rem);
  }
}

@media screen and (min-width: 120rem) {
  .badge--large {
    font-size: 1.25rem;
  }
}

@media (min-width: 62rem) {
  .badge--large {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 62rem) {
  .badge--large .badge__icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
  }
}

.badge--seperated {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 48rem) {
  .badge--seperated {
    padding-top: calc(3.7037vw - 0.77778rem);
    padding-bottom: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .badge--seperated {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.badge--seperated .badge__label {
  font-weight: 400;
  color: #020617;
}

.badge--ellipsis .badge__label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.badge--column {
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
}

.badge--column .badge__stars {
  -ms-flex-item-align: start;
  align-self: start;
  margin-bottom: 0.5rem;
}

.badge--light {
  background-color: #fff !important;
  border-color: transparent;
  box-shadow: 0px 94px 118px rgba(7, 7, 62, 0.04);
}

.badge--success {
  background-color: #dafbe5 !important;
  color: #046c47 !important;
  border-color: transparent;
}

.badge--success .badge__icon {
  color: #046c47;
}

.badge--danger {
  background-color: #ffedeb;
  color: #d03c12;
  border-color: transparent;
}

.badge--danger .badge__icon {
  color: #d03c12;
}

.badge--warning,
.card--other-vessel .card__badge {
  background-color: rgba(248, 190, 39, 0.08);
  color: #c7900a;
  border-color: transparent;
}

.badge--warning .badge__icon,
.card--other-vessel .card__badge .badge__icon {
  color: #c7900a;
}

.badge--success-base {
  background-color: #12a142 !important;
  color: #fff !important;
  border-color: transparent;
}

.badge--success-base .badge__icon {
  color: #fff;
}

.badge--success-light {
  background-color: rgba(20, 184, 75, 0.12);
  color: #020617;
  border-color: transparent;
}

.badge--success-light .badge__icon {
  color: #14b84b;
}

.badge--primary-light {
  background-color: rgba(40, 108, 246, 0.15);
  color: #001ba3;
  border-color: transparent;
}

.badge--primary-light .badge__icon {
  color: #286cf6;
}

.badge--primary {
  background-color: #286cf6;
  color: #fff;
  border-color: transparent;
}

.badge--dark {
  background-color: #020617;
  color: #fff;
  border-color: transparent;
}

.badge--gray {
  background-color: #e5e7eb;
  color: #020617;
  border-color: transparent;
}

.badge--error-light {
  background-color: #ffedeb;
  color: #d03c12;
  border-color: transparent;
}

.badge--verified {
  background-color: rgba(20, 184, 75, 0.12);
  border-radius: 6.25rem;
  border: 0;
  font-size: 0.8125rem;
  color: #020617;
}

.badge--verified .badge__icon {
  font-size: 1.25rem;
  margin-left: -0.5rem;
  margin-right: 0.5rem;
  color: #14b84b;
}

.badge--verified:not(.badge--large) {
  padding: 0.25rem 1rem;
}

.badge--verified.badge--small {
  min-height: 1.5rem;
  padding: 0 0.75rem;
}

.badge--verified.badge--small .badge__icon {
  font-size: 1rem;
  margin-left: -0.375rem;
  margin-right: 0.375rem;
}

.badge--verified.badge--plain {
  font-size: 0.8125rem;
  border: 1px solid #14b84b;
  padding-right: 0.5rem !important;
}

.badge--verified.badge--plain .badge__icon {
  margin-left: 0;
  margin-right: 0.375rem;
  font-size: 1.25rem;
}

.badge--small {
  padding: 0.25rem 1rem;
  line-height: 1;
  font-size: 0.8125rem;
  min-height: 1.75rem;
}

.badge--xsmall {
  padding: 0.25rem 0.625rem;
  line-height: 1;
  font-size: 0.75rem;
  min-height: 1.25rem;
}

.badge--xsmall .badge__icon {
  font-size: 0.75rem;
  margin: -0.375rem 0.25rem -0.375rem -0.25rem;
}

.badge--rounded {
  border-radius: 6.25rem;
}

@media (max-width: 575px) {
  .badge--plain-mobile {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 575px) {
  .badge--plain-mobile-light {
    color: #1f2937 !important;
  }
}

@media (max-width: 575px) {
  .badge--plain-mobile-danger {
    color: #d03c12 !important;
  }
}

.badge--claimed {
  background-color: #ffefe0;
  color: #020617;
  border-radius: 6.25rem;
  border: 0;
  font-size: 0.8125rem;
}

.badge--claimed .badge__icon {
  font-size: 1.25rem;
  margin-left: -0.5rem;
  margin-right: 0.5rem;
  color: #ff7e05;
}

.badge--claimed:not(.badge--large) {
  padding: 0.25rem 1rem;
}

.badge--warning,
.card--other-vessel .card__badge {
  background-color: #ffefe0;
  color: #020617;
}

.badge--pointer {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.badge--pointer::before {
  transition: 0.3s opacity;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  opacity: 0;
  z-index: 3;
}

.badge--pointer:hover::before {
  opacity: 1;
  pointer-events: auto;
}

.badge--dotted {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 0;
  border-radius: 0;
  line-height: 1.25rem;
  color: #1f2937;
  min-height: initial !important;
  height: initial !important;
  font-weight: 400 !important;
  white-space: nowrap;
}

.badge--dotted::before {
  content: '';
  width: 0.25rem;
  height: 0.25rem;
  background-color: #286cf6;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.badge--plain {
  padding: 0 !important;
  border-width: 0;
  min-height: initial;
  height: initial;
  background-color: transparent !important;
  line-height: 1.25rem !important;
}

.badge--plain.badge--small {
  font-size: 0.8125rem !important;
}

@media (max-width: 575px) {
  .badge--plain .badge__icon {
    margin-left: 0 !important;
  }
}

a.badge,
button.badge {
  transition-duration: 0.3s;
  transition-property: background-color, color;
}

a.badge:hover.badge--gray,
button.badge:hover.badge--gray {
  background-color: #d1d5db;
}

.card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-direction: column;
  flex-direction: column;
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color, box-shadow;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .card {
    border-radius: 0.75rem;
  }
}

.card__content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card__subtitle {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: rgba(100, 116, 139, 0.7);
  font-size: 0.875rem;
}

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

.card__subtitle + .card__caption {
  margin-top: 0.75rem;
}

.card__badge {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  background-color: #eff4fa;
  color: #286cf6;
  font-size: 0.875rem;
  line-height: 1.44;
  margin-bottom: 1.5rem;
  border-color: transparent;
  font-weight: 600;
}

.card__badge-icon {
  font-size: 1.5rem;
  margin: -0.125rem 0.5rem -0.125rem -0.25rem;
}

.card__badge--danger {
  background-color: #ffedeb;
  color: #d03c12;
}

.card__badge--small {
  padding: 0.1875rem 0.75rem;
  font-size: 0.8125rem;
  min-height: 1.5rem;
  line-height: 1rem;
}

.card__badge--small .card__badge-icon {
  font-size: 1rem;
}

.card__badge-text {
  display: block;
  text-align: left;
  color: #475569;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  font-size: 0.8125rem;
  font-weight: 400;
}

.card__badge-text strong {
  color: #020617;
}

.card__lottie {
  width: 100%;
  height: auto;
  display: block;
  max-width: 50%;
}

@media (min-width: 36rem) {
  .card__lottie {
    max-width: 17.5rem;
  }
}

.card__badge-verified {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 36rem) {
  .card__badge-verified {
    margin-top: 0;
    margin-left: 0.75rem;
  }
}

.card__badge-verified .icon {
  margin-left: -0.375rem;
}

.card__categories-list {
  font-size: 0.875rem;
  padding-top: 0.75rem;
}

.card__title {
  line-height: 1.34;
  word-break: break-word;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 48rem) {
  .card__title--wrapper {
    padding-right: 3.25rem;
  }
}

.card__title-icon {
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  font-size: 1.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

@media screen and (min-width: 48rem) {
  .card__title-icon {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__title-icon {
    font-size: 1.5rem;
  }
}

.card__title-card {
  width: 2.5rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.card__caption {
  margin-top: 0.75rem;
}

@media (min-width: 62rem) {
  .card__caption {
    line-height: 1.75;
  }
}

.card__price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: end;
  align-items: flex-end;
}

.is-loaded .card__price number-flow {
  margin-bottom: -0.5625rem;
  margin-top: -0.5625rem;
}

.card__price-value,
.card__price-currency {
  font-size: 1.75rem;
  font-weight: bold;
  color: #020617;
  line-height: 1;
  letter-spacing: -0.01em;
}

@media screen and (min-width: 48rem) {
  .card__price-value,
  .card__price-currency {
    font-size: calc(1.85185vw + 0.86111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__price-value,
  .card__price-currency {
    font-size: 2.25rem;
  }
}

.card__price-period {
  color: #94a3b8;
  font-weight: 600;
  margin-left: 0.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 0.125rem;
  letter-spacing: -0.01em;
  font-size: 0.875rem;
}

.card__price-seat {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.5rem;
  font-weight: 500;
}

.card__list {
  border-top: 1px solid #e2e8f0;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.card__list-item + .card__list-item {
  margin-top: 1rem !important;
}

.card__icon {
  transition: 0.3s color;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .card__icon {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__icon {
    font-size: 2rem;
  }
}

.card__icon + .card__subtitle {
  margin-top: 0;
}

.card__icon-wrapper {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #eff4fa;
  color: #001ba3;
  border-radius: 0.375rem;
}

@media screen and (min-width: 48rem) {
  .card__icon-wrapper {
    width: calc(3.7037vw + 1.22222rem);
    height: calc(3.7037vw + 1.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__icon-wrapper {
    width: 4rem;
    height: 4rem;
  }
}

@media screen and (min-width: 48rem) {
  .card__icon-wrapper {
    margin-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__icon-wrapper {
    margin-bottom: 2rem;
  }
}

.card__icon-wrapper .card__icon {
  transition: initial !important;
  font-size: 2rem;
  color: inherit !important;
  margin-bottom: 0;
}

.card__icon-wrapper--rounded {
  border-radius: 50%;
}

.card__number {
  color: #286cf6;
}

.card__number--wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card__image {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.card__image-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1rem;
}

.card__image + .card__content {
  margin-top: 1.5rem;
}

.card__image-placeholder {
  transition-duration: 0.3s;
  transition-property: color, -webkit-transform;
  transition-property: color, transform;
  transition-property: color, transform, -webkit-transform;
  font-size: 1.5rem;
  color: #020617;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  border-radius: 1rem;
}

.card__image-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background-color: #e04646;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  border-radius: 3.125rem;
  z-index: 3;
  letter-spacing: 0.1em;
}

.card__image-flag {
  height: 1.5rem;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0.375rem;
  z-index: 4;
  border: 2px solid #fff;
}

.card a.card__image:hover .card__hover {
  opacity: 1;
  visibility: visible;
}

.card a.card__image:hover .card__hover-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.card a.card__image:hover .card__image-item {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.card a.card__image:hover .card__image-placeholder {
  -webkit-transform: translate(-50%, -50%) scale(1.15);
  transform: translate(-50%, -50%) scale(1.15);
  color: #286cf6;
}

.card__images {
  position: relative;
}

.card__images-wrapper {
  height: 20rem;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
  margin-bottom: -0.0625rem;
}

@media screen and (min-width: 48rem) {
  .card__images-wrapper {
    height: calc(18.51852vw + 11.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__images-wrapper {
    height: 25rem;
  }
}

.card__images .card__image {
  margin: 0 !important;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  width: 100%;
}

.card__images .card__image-item {
  border: 1px solid #fff;
}

.card__images .card__image,
.card__images .card__image-item {
  border-radius: 0 !important;
}

.card__images--2 .card__image:nth-child(1),
.card__images--2 .card__image:nth-child(2) {
  height: 50%;
  width: 100%;
}

.card__images--3 .card__image:nth-child(2),
.card__images--3 .card__image:nth-child(3) {
  height: 50%;
  width: 50%;
}

.card__images--3 .card__image:nth-child(1) {
  width: 100%;
  height: 50%;
}

.card__images--4 .card__image:nth-child(1),
.card__images--4 .card__image:nth-child(2),
.card__images--4 .card__image:nth-child(3),
.card__images--4 .card__image:nth-child(4) {
  height: 50%;
  width: 50%;
}

.card__images--5 .card__image:nth-child(1),
.card__images--5 .card__image:nth-child(2) {
  height: 60%;
  width: 50%;
}

.card__images--5 .card__image:nth-child(3),
.card__images--5 .card__image:nth-child(4),
.card__images--5 .card__image:nth-child(5) {
  height: 40%;
  width: 33.3%;
}

.card__images:last-child {
  margin-top: 1.5rem;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
  position: relative;
}

.card__logo {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  border-radius: 0.375rem;
  background-color: #eff4fa;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #286cf6;
  margin-bottom: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 48rem) {
  .card__logo {
    width: calc(0vw + 3rem);
    height: calc(0vw + 3rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__logo {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .card__logo {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__logo {
    font-size: 1.5rem;
  }
}

.card__video {
  border-radius: 1rem;
  overflow: hidden;
}

.card__video-item {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
  width: 100% !important;
  height: 100% !important;
}

.card__video:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .card__video:not(:last-child) {
    margin-bottom: calc(3.7037vw - 0.27778rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__video:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

.card__hover {
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 108, 246, 0.8);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
}

.card__hover-icon {
  font-size: 1.5rem;
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, transform, visibility;
  transition-property: opacity, transform, visibility, -webkit-transform;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
  -webkit-transform-origin: center;
  transform-origin: center;
  opacity: 0;
  visibility: hidden;
  color: #fff;
}

@media screen and (min-width: 48rem) {
  .card__hover-icon {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__hover-icon {
    font-size: 2rem;
  }
}

.card__bottom {
  margin-top: auto;
  padding-top: 1.5rem;
}

.card__bottom .card__button + .card__button {
  margin-left: 0.5rem;
}

@media (max-width: 575px) {
  .card__bottom .card__button {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    white-space: normal;
  }
}

.card__progress {
  display: block;
  width: 8.75rem;
  height: 8.75rem;
  margin: 1.5rem auto;
  font-size: 1.5rem;
}

.card__progress--small {
  width: 6.875rem;
  height: 6.875rem;
}

.card__author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.card__author:last-child {
  padding-top: 1rem;
}

@media screen and (min-width: 48rem) {
  .card__author:last-child {
    padding-top: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__author:last-child {
    padding-top: 1.5rem;
  }
}

.card__author-title {
  line-height: 1.5rem;
  color: #020617;
}

.card__author-image {
  max-width: 3.25rem;
  width: 3.25rem;
  max-height: 3.25rem;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: 50%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  overflow: hidden;
}

.card__author-caption {
  margin-top: 0.25rem;
}

.card__author-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5rem;
  font-size: 0.875rem;
  color: #1f2937;
  margin-top: 0.375rem;
}

.card__author-social-icon {
  font-size: 1rem;
}

.card__author svg:not(.icon),
.card__author-social-icon,
.card__author-social-image {
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.card__author svg:not(.icon),
.card__author-social-image {
  width: auto;
  height: 1rem;
}

.card__list {
  font-size: 0.875rem;
}

.card__list-item {
  line-height: 1.5rem;
}

.card__list-item-icon {
  margin-top: 0.125rem;
}

.card__rating {
  margin-top: 0.5rem;
}

.card__message {
  background-color: #f1f5f9;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin: 0;
}

.card__message a {
  color: #286cf6;
  text-decoration: underline;
}

.card__message a:hover {
  color: #2566e8;
  text-decoration: none;
}

.card__meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.5rem -0.75rem;
  padding-top: 1rem;
}

.card__meta-item {
  padding: 0.5rem 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.card__meta-item-icon {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-right: 0.5rem;
}

.card__meta-item-link {
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.card__meta--date {
  color: #e04646;
  font-size: 0.875rem;
  font-weight: 600;
}

.card__meta--date .card__meta-item-icon {
  color: inherit;
}

.card__company {
  padding: 0.375rem 1rem !important;
  font-size: 0.875rem;
  margin-right: auto;
  margin-bottom: 0.75rem;
}

.card__company-icon {
  margin-left: -0.25rem !important;
}

.card__company:hover {
  color: #020617;
}

.card__date {
  color: #64748b;
}

.card__readmore {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  margin-left: 1rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0.375rem;
  background-color: #f1f5f9;
  font-size: 1.25rem;
  color: #020617;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 48rem) {
  .card__readmore {
    margin-left: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__readmore {
    margin-left: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card__readmore {
    padding: 0.25rem 0.625rem;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    margin-top: 1rem;
  }
}

.card__readmore-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.card__dropdown {
  max-height: 0;
  overflow: hidden;
  box-sizing: content-box;
}

.card__dropdown > * {
  box-sizing: border-box;
}

.card__prop {
  font-size: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.125rem -0.25rem;
}

@media screen and (min-width: 48rem) {
  .card__prop {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__prop {
    font-size: 1.25rem;
  }
}

.card__prop-item {
  width: 1.5rem;
  height: 1.5rem;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  margin: 0.125rem 0.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #286cf6;
  border-radius: 0.375rem;
  background-color: transparent;
}

@media screen and (min-width: 48rem) {
  .card__prop-item {
    width: calc(1.85185vw + 0.61111rem);
    height: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card__prop-item {
    width: 2rem;
    height: 2rem;
  }
}

.card__prop-item:hover {
  background-color: #fff;
  color: #2566e8;
}

.is-active .card__prop-item,
.is-opened .card__prop-item {
  background-color: #fff !important;
}

.card.card--background-primary {
  background-color: #eff4fa;
}

.card.card--background-primary:hover {
  background-color: #eff4fa;
}

.card.card--background-primary:not(.card--no-hover):hover {
  background-color: #fff;
}

.card.card--background-primary.card--no-hover .card__icon-wrapper {
  background-color: #fff !important;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  color: #286cf6;
}

.card.card--background-primary:not(:hover):not(.card--no-hover) .card__icon-wrapper {
  background-color: #fff !important;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  color: #286cf6;
}

.card.card--background-hover:not(.card--no-hover):hover {
  background-color: #f1f5f9;
}

.card.card--background-hover-primary:not(.card--no-hover):hover {
  background-color: #fff;
}

.card.card--background-gray {
  background-color: #f1f5f9;
}

.card.card--background-gray:hover {
  background-color: #f1f5f9;
}

.card.card--background-gray:not(.card--no-hover):hover {
  background-color: #fff;
}

.card.card--background-gray.card--no-hover .card__icon-wrapper {
  background-color: #fff !important;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  color: #286cf6;
}

.card.card--background-gray:not(:hover):not(.card--no-hover) .card__icon-wrapper {
  background-color: #fff !important;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  color: #286cf6;
}

.card.card--background-hover:not(.card--no-hover):hover {
  background-color: #f1f5f9;
}

.card.card--background-hover-gray:not(.card--no-hover):hover {
  background-color: #fff;
}

.card--app {
  position: relative;
}

.card--app .card__title {
  -ms-flex-order: 1;
  order: 1;
}

.card--app .card__caption {
  -ms-flex-order: 2;
  order: 2;
}

.card--app .card__icon-wrapper,
.card--app .card__progress,
.card--app .card__number {
  -ms-flex-order: 3;
  order: 3;
  margin-left: auto;
  margin-right: auto;
}

.card--app .card__icon-wrapper,
.card--app .card__number {
  width: 8.75rem;
  height: 8.75rem;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
}

.card--app .card__icon-wrapper .card__icon,
.card--app .card__number .card__icon {
  font-size: inherit;
}

.card--app .card__icon-wrapper {
  font-size: 3rem;
}

.card--app .card__number {
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #eff4fa;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #001ba3;
}

@media screen and (min-width: 48rem) {
  .card--app .card__number {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--app .card__number {
    font-size: 2rem;
  }
}

.card--app .card__bottom {
  -ms-flex-order: 10;
  order: 10;
}

.card--app .card__badge-purchased {
  margin-top: -0.5rem;
  font-weight: 600;
}

@media screen and (min-width: 48rem) {
  .card--app .card__badge-purchased {
    margin-top: calc(-0.92593vw - 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--app .card__badge-purchased {
    margin-top: -0.75rem;
  }
}

.card--app-premium .card__icon-wrapper {
  color: #001ba3 !important;
}

.card--collapse {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fff;
}

@media screen and (min-width: 48rem) {
  .card--collapse {
    padding-top: calc(2.38095vw + 0.35714rem);
    padding-bottom: calc(2.38095vw + 0.35714rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse {
    padding-left: calc(3.57143vw - 0.71429rem);
    padding-right: calc(3.57143vw - 0.71429rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.card--collapse:hover {
  background-color: #fff;
}

.card--collapse:not(.card--image-keep):not(.card--job) .card__image {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1.5rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: calc(-3.57143vw + 0.71429rem);
    margin-right: calc(-3.57143vw + 0.71429rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: calc(-2.38095vw - 0.35714rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: -2.5rem;
  }
}

.card--collapse:not(.card--image-keep):not(.card--job) .card__image,
.card--collapse:not(.card--image-keep):not(.card--job) .card__image-item {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.card--collapse .card__image + .card__content {
  margin-top: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse .card__image + .card__content {
    margin-top: calc(2.38095vw + 0.35714rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse .card__image + .card__content {
    margin-top: 2.5rem;
  }
}

.card--collapse:hover {
  position: relative;
  z-index: 2;
}

.card--collapse:not(.card--no-shadow):not(.card--shadowed):not(.card--price):not(.card--hover-shadow-sm):hover {
  box-shadow: 0px 94px 118px rgba(7, 7, 62, 0.04);
}

.card--collapse:not(.card--no-shadow):not(.card--shadowed):not(.card--price).card--hover-shadow-sm:hover {
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.card--collapse.card--small .card__icon {
  font-size: 2rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--small .card__icon {
    font-size: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--collapse.card--small .card__icon {
    font-size: 3rem;
  }
}

.card--collapse.card--bordered:not(.card--image-border):not(.card--image-keep):not(.card--job) .card__image {
  margin-left: -1.0625rem;
  margin-right: -1.0625rem;
  margin-top: -1.5625rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--bordered:not(.card--image-border):not(.card--image-keep):not(.card--job) .card__image {
    margin-left: calc(-3.57143vw + 0.65179rem);
    margin-right: calc(-3.57143vw + 0.65179rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--bordered:not(.card--image-border):not(.card--image-keep):not(.card--job) .card__image {
    margin-left: -2.5625rem;
    margin-right: -2.5625rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--bordered:not(.card--image-border):not(.card--image-keep):not(.card--job) .card__image {
    margin-top: calc(-2.38095vw - 0.41964rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--bordered:not(.card--image-border):not(.card--image-keep):not(.card--job) .card__image {
    margin-top: -2.5625rem;
  }
}

.card--collapse.card--space-s {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-s {
    padding-top: calc(1.19048vw + 0.92857rem);
    padding-bottom: calc(1.19048vw + 0.92857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-s {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-s {
    padding-left: calc(2.38095vw - 0.14286rem);
    padding-right: calc(2.38095vw - 0.14286rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-s {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.card--collapse.card--space-s:not(.card--image-keep):not(.card--job) .card__image {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1.5rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-s:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: calc(-2.38095vw + 0.14286rem);
    margin-right: calc(-2.38095vw + 0.14286rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-s:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-s:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: calc(-1.19048vw - 0.92857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-s:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: -2rem;
  }
}

.card--collapse.card--space-s .card__image + .card__content {
  margin-top: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-s .card__image + .card__content {
    margin-top: calc(1.19048vw + 0.92857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-s .card__image + .card__content {
    margin-top: 2rem;
  }
}

.card--collapse.card--space-s.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
  margin-left: -1.0625rem;
  margin-right: -1.0625rem;
  margin-top: -1.5625rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-s.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: calc(-2.38095vw + 0.08036rem);
    margin-right: calc(-2.38095vw + 0.08036rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-s.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: -2.0625rem;
    margin-right: -2.0625rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-s.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: calc(-1.19048vw - 0.99107rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-s.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: -2.0625rem;
  }
}

.card--collapse.card--space-xs {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs {
    padding-top: calc(0vw + 1.5rem);
    padding-bottom: calc(0vw + 1.5rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs {
    padding-left: calc(1.19048vw + 0.42857rem);
    padding-right: calc(1.19048vw + 0.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__image {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1.5rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: calc(-1.19048vw - 0.42857rem);
    margin-right: calc(-1.19048vw - 0.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: calc(0vw - 1.5rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: -1.5rem;
  }
}

.card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__images {
  margin-left: -1rem;
  margin-right: -1rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__images {
    margin-left: calc(-1.19048vw - 0.42857rem);
    margin-right: calc(-1.19048vw - 0.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__images {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__images:last-child {
  margin-bottom: -1.5rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__images:last-child {
    margin-bottom: calc(0vw - 1.5rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs:not(.card--image-keep):not(.card--job) .card__images:last-child {
    margin-bottom: -1.5rem;
  }
}

.card--collapse.card--space-xs .card__image + .card__content {
  margin-top: 1.5rem;
}

.card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
  margin-left: -1.0625rem;
  margin-right: -1.0625rem;
  margin-top: -1.5625rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: calc(-1.19048vw - 0.49107rem);
    margin-right: calc(-1.19048vw - 0.49107rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-left: -1.5625rem;
    margin-right: -1.5625rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: calc(0vw - 1.5625rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__image {
    margin-top: -1.5625rem;
  }
}

.card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__images:last-child {
  margin-bottom: -1.5625rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__images:last-child {
    margin-bottom: calc(0vw - 1.5625rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xs.card--bordered:not(.card--image-keep):not(.card--job) .card__images:last-child {
    margin-bottom: -1.5625rem;
  }
}

.card--collapse.card--space-xs .card__bottom {
  padding-top: 1rem;
}

.card--collapse.card--space-xxs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xxs {
    padding-top: calc(0vw + 1rem);
    padding-bottom: calc(0vw + 1rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xxs {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--space-xxs {
    padding-left: calc(-0.59524vw + 1.28571rem);
    padding-right: calc(-0.59524vw + 1.28571rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--space-xxs {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.card--collapse.card--xsmall {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--xsmall {
    padding-top: calc(1.19048vw + 0.42857rem);
    padding-bottom: calc(1.19048vw + 0.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--xsmall {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--xsmall {
    padding-left: calc(0.59524vw + 0.71429rem);
    padding-right: calc(0.59524vw + 0.71429rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--xsmall {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.card--collapse.card--xxsmall {
  padding: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .card--collapse.card--xxsmall {
    padding: calc(0.59524vw + 0.46429rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--collapse.card--xxsmall {
    padding: 1rem;
  }
}

.card--overlay {
  position: relative;
  overflow: hidden;
}

.card--overlay .card__image {
  background-color: #e2e8f0;
}

.card--overlay .card__image + .card__content {
  margin-top: 0;
}

.card--overlay .card__content {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 2;
  border-radius: 0.375rem;
  color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 48rem) {
  .card--overlay .card__content {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--overlay .card__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--overlay .card__content {
    padding-top: calc(1.85185vw + 0.61111rem);
    padding-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--overlay .card__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.card--overlay .card__content::before {
  transition-duration: 0.3s;
  transition-property: opacity, height;
  content: '';
  height: 70%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  border-radius: 0 0 0.375rem 0.375rem;
}

.card--overlay .card__title,
.card--overlay .card__title-link,
.card--overlay .card__subtitle {
  color: #fff;
}

.card--overlay .card__subtitle {
  margin-top: 0;
  opacity: 0.7;
}

.card--overlay.card--space-s .card__content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.card--overlay.card--min-height {
  min-height: 11.25rem;
  background-color: #374151;
}

.card--bordered {
  border: 1px solid #e2e8f0;
}

.card--bordered.card--collapse:not(.card--no-shadow):not(.card--price):hover {
  border-color: transparent;
}

.card--image-border .card__image {
  border: 1px solid #e2e8f0;
}

.card--category {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fff;
  color: #1f2937;
}

@media screen and (min-width: 48rem) {
  .card--category {
    padding-top: calc(0.59524vw + 0.46429rem);
    padding-bottom: calc(0.59524vw + 0.46429rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--category {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--category {
    padding-left: calc(1.19048vw + 0.42857rem);
    padding-right: calc(1.19048vw + 0.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--category {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.card--category:not(.card--no-shadow) {
  box-shadow: 0px 2px 4px rgba(7, 7, 62, 0.09) !important;
}

.card--category:not(.card--no-shadow):hover {
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08) !important;
}

.card--category .card__content {
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
}

.card--category .card__icon {
  margin-bottom: 0;
  margin-right: 0.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: inherit;
}

.card--category .card__title {
  color: inherit;
}

.card--category.card--space-xs {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--category.card--space-xs {
    padding-top: calc(0vw + 0.75rem);
    padding-bottom: calc(0vw + 0.75rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--category.card--space-xs {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--category.card--space-xs {
    padding-left: calc(0vw + 1rem);
    padding-right: calc(0vw + 1rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--category.card--space-xs {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 48rem) {
  .card--category.card--space-xs .card__icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
  }
}

.card--category.card--space-xs:not(.card--no-shadow):hover {
  box-shadow: 0px 4px 8px rgba(7, 7, 62, 0.12) !important;
}

.card--category.card--no-shadow:hover {
  background-color: #f1f5f9;
  border-color: transparent;
}

.card--category--new {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--category--new {
    padding-top: calc(0.89286vw + 0.32143rem);
    padding-bottom: calc(0.89286vw + 0.32143rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--category--new {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--category--new {
    padding-left: calc(1.19048vw + 0.42857rem);
    padding-right: calc(1.19048vw + 0.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--category--new {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.card--shadowed {
  box-shadow: 0px 94px 118px rgba(7, 7, 62, 0.04);
}

.card--shadowed:hover {
  box-shadow: 0px 72px 96px rgba(180, 192, 210, 0.12);
}

.card--shadowed-sm {
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

@media (min-width: 36rem) {
  .card--info {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.card--info .card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #286cf6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .card--info .card__icon {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--info .card__icon {
    font-size: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--info .card__icon {
    margin-bottom: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--info .card__icon {
    margin-bottom: 1rem;
  }
}

@media (min-width: 36rem) {
  .card--info .card__icon {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .card--info .card__icon {
    margin-right: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .card--info .card__icon {
    margin-right: 0.75rem;
  }
}

.card--info .card__subtitle {
  font-weight: 500;
  color: #286cf6;
  margin: 0;
  font-size: 0.75rem;
}

.card--horizontal {
  /* &.card--space-s {
      padding: rem(16px);
    }*/
}

@media (min-width: 36rem) {
  .card--horizontal {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (min-width: 36rem) {
  .card--horizontal .card__image {
    -ms-flex-preferred-size: 4.5rem;
    flex-basis: 4.5rem;
    max-width: 4.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    margin: 0 !important;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .card--horizontal .card__image {
    -ms-flex-preferred-size: calc(5.55556vw + 1.83333rem);
    flex-basis: calc(5.55556vw + 1.83333rem);
    max-width: calc(5.55556vw + 1.83333rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .card--horizontal .card__image {
    -ms-flex-preferred-size: 6rem;
    flex-basis: 6rem;
    max-width: 6rem;
  }
}

@media (min-width: 36rem) {
  .card--horizontal .card__image + .card__content {
    margin-left: 0.75rem;
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .card--horizontal .card__image + .card__content {
    margin-left: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .card--horizontal .card__image + .card__content {
    margin-left: 1rem;
  }
}

.card--horizontal .card__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

@media (min-width: 48rem) {
  .card--horizontal .card__content {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.card--horizontal .card__rating {
  margin-top: 0.25rem;
}

.card--horizontal .card__logo {
  margin-right: 0.75rem;
  margin-bottom: 0;
}

@media screen and (min-width: 48rem) {
  .card--horizontal .card__logo {
    margin-right: calc(2.77778vw - 0.58333rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--horizontal .card__logo {
    margin-right: 1.5rem;
  }
}

.card--horizontal > .card__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 36rem) {
  .card--horizontal > .card__icon {
    margin-right: 0.75rem;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .card--horizontal > .card__icon {
    margin-right: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .card--horizontal > .card__icon {
    margin-right: 1.25rem;
  }
}

.card--horizontal .card__readmore {
  -ms-flex-item-align: center;
  align-self: center;
}

@media (min-width: 36rem) {
  .card--horizontal.card--solution .card__image {
    max-width: 5rem;
    -ms-flex-preferred-size: 5rem;
    flex-basis: 5rem;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .card--horizontal.card--solution .card__image {
    max-width: calc(37.03704vw - 12.77778rem);
    -ms-flex-preferred-size: calc(37.03704vw - 12.77778rem);
    flex-basis: calc(37.03704vw - 12.77778rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .card--horizontal.card--solution .card__image {
    max-width: 15rem;
    -ms-flex-preferred-size: 15rem;
    flex-basis: 15rem;
  }
}

@media (min-width: 36rem) {
  .card--horizontal.card--solution .card__image + .card__content {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .card--horizontal.card--solution .card__image + .card__content {
    margin-left: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .card--horizontal.card--solution .card__image + .card__content {
    margin-left: 1.5rem;
  }
}

.card--horizontal.card--mobile-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: start;
  align-items: flex-start;
}

.card--horizontal.card--mobile-horizontal .card__image {
  -ms-flex-preferred-size: 4rem;
  flex-basis: 4rem;
  max-width: 4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  margin: 0 !important;
}

@media screen and (min-width: 48rem) {
  .card--horizontal.card--mobile-horizontal .card__image {
    -ms-flex-preferred-size: calc(7.40741vw + 0.44444rem);
    flex-basis: calc(7.40741vw + 0.44444rem);
    max-width: calc(7.40741vw + 0.44444rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--horizontal.card--mobile-horizontal .card__image {
    -ms-flex-preferred-size: 6rem;
    flex-basis: 6rem;
    max-width: 6rem;
  }
}

.card--horizontal.card--mobile-horizontal .card__image + .card__content {
  margin-left: 0.75rem;
  margin-top: 0 !important;
}

@media screen and (min-width: 48rem) {
  .card--horizontal.card--mobile-horizontal .card__image + .card__content {
    margin-left: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--horizontal.card--mobile-horizontal .card__image + .card__content {
    margin-left: 1rem;
  }
}

.card--horizontal.card--mobile-horizontal .card__readmore {
  margin-top: 0;
  margin-left: 0.5rem;
}

.card--truncate .card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card--icon-primary .card__icon {
  color: #286cf6;
}

.card--profile {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5;
  font-size: 0.875rem;
}

.card--profile .card__title {
  font-size: inherit;
  line-height: 1.5rem;
}

.card--profile .card__icon-wrapper,
.card--profile .card__image {
  width: 3rem;
  height: 3rem;
  margin-right: 0.75rem;
  background-color: #f1f5f9;
}

@media screen and (min-width: 48rem) {
  .card--profile .card__icon-wrapper,
  .card--profile .card__image {
    width: calc(1.85185vw + 2.11111rem);
    height: calc(1.85185vw + 2.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--profile .card__icon-wrapper,
  .card--profile .card__image {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--profile .card__icon-wrapper,
  .card--profile .card__image {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--profile .card__icon-wrapper,
  .card--profile .card__image {
    margin-right: 1rem;
  }
}

.card--profile .card__image + .card__content {
  margin-top: 0;
}

.card--profile .card__icon-wrapper {
  border-radius: 50%;
  margin-bottom: 0;
  font-size: 1.5rem;
  color: #475569;
}

.card--profile .card__icon-wrapper .card__icon {
  color: inherit;
  font-size: inherit;
}

.card--min-collapsed {
  min-height: 4rem;
}

@media (min-width: 36rem) {
  .card--min-collapsed.card--horizontal {
    -ms-flex-align: center;
    align-items: center;
  }
}

.card--min-collapsed.card--horizontal .card__content {
  -ms-flex-item-align: initial;
  align-self: initial;
}

.card--min-collapsed.card--mobile-horizontal {
  -ms-flex-align: center;
  align-items: center;
}

.card--client {
  background-color: #fff;
  z-index: 1;
  border-radius: 0.375rem;
  height: 6.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.card--client:not(.card--no-shadow):hover {
  border-color: transparent;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.card--client.card--no-shadow:hover {
  background-color: #f1f5f9;
}

.card--client .card__image,
.card--client .card__image-item {
  border-radius: 0.375rem;
}

.card--client .card__image {
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-filter;
  transition-property: filter, opacity;
  transition-property: filter, opacity, -webkit-filter;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.8;
}

.card--client .card__image-item {
  max-width: 100%;
  max-height: 5.875rem;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: initial !important;
  transform: initial !important;
  margin-left: auto;
  margin-right: auto;
}

.card--client:hover {
  z-index: 2;
}

.card--client:hover .card__image {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.card--partner .card__image {
  background-color: transparent !important;
}

.card--partner .card__image {
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-filter;
  transition-property: filter, opacity;
  transition-property: filter, opacity, -webkit-filter;
}

.card--partner:not(.card--partner-colorful) .card__image {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
}

.card--partner:hover {
  z-index: 2;
}

.card--partner:hover .card__image {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.card--video {
  border-radius: 1rem;
  overflow: hidden;
}

.card--video .card__image-item {
  -webkit-transform: scale(1.00001);
  transform: scale(1.00001);
}

.card--video .card__image + .card__content {
  margin-top: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--video .card__image + .card__content {
    margin-top: calc(6.48148vw - 2.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--video .card__image + .card__content {
    margin-top: 2.75rem;
  }
}

.card--video .card__image::after {
  transition: 0.4s opacity;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #020617;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
  border-radius: 1rem;
  z-index: 3;
}

.card--video .card__hover {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
  opacity: 1;
  visibility: visible;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  color: #64748b;
  box-shadow: 0px 94px 118px rgba(7, 7, 62, 0.04);
  z-index: 4;
}

@media screen and (min-width: 48rem) {
  .card--video .card__hover {
    width: calc(1.85185vw + 3.11111rem);
    height: calc(1.85185vw + 3.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--video .card__hover {
    width: 4.5rem;
    height: 4.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--video .card__hover {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--video .card__hover {
    font-size: 2rem;
  }
}

.card--video .card__hover-icon {
  opacity: 1;
  visibility: visible;
  color: inherit;
}

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

.card--centered .card__title {
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card--centered .card__icon,
.card--centered .card__icon-wrapper,
.card--centered .card__badge,
.card--centered .card__lottie {
  margin-left: auto;
  margin-right: auto;
}

.card--centered.card--category .card__icon {
  margin-left: 0;
  margin-right: 0.5rem;
}

.card--centered.card--category .card__content {
  -ms-flex-pack: center;
  justify-content: center;
}

.card--logo .card__image {
  background-color: transparent !important;
}

.card--logo .card__image-item {
  max-width: 80%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.card--advanced {
  padding: 1rem;
}

@media screen and (min-width: 48rem) {
  .card--advanced {
    padding: calc(1.19048vw + 0.42857rem);
  }
}

@media screen and (min-width: 90rem) {
  .card--advanced {
    padding: 1.5rem;
  }
}

.card--advanced-bordered {
  border: 1px solid transparent;
}

.card--advanced-bordered:not(:hover):not(:active):not(:focus) {
  border-color: #e2e8f0;
}

.card--advanced .card__image {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0;
  border: 1px solid #e2e8f0;
  background-color: transparent !important;
  border-radius: 0.375rem;
}

.card--advanced .card__image-item {
  max-width: 95%;
  max-height: 95%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 0;
}

.card--advanced .card__rating-item {
  font-size: 1.125rem;
  margin-right: 0.125rem;
}

.card--author {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -ms-flex-align: center;
  align-items: center;
}

.card--author .card__image {
  -ms-flex-preferred-size: 3rem;
  flex-basis: 3rem;
  max-width: 3rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  margin-bottom: auto;
  border: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .card--author .card__image {
    -ms-flex-preferred-size: calc(2.31481vw + 1.88889rem);
    flex-basis: calc(2.31481vw + 1.88889rem);
    max-width: calc(2.31481vw + 1.88889rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--author .card__image {
    -ms-flex-preferred-size: 3.625rem;
    flex-basis: 3.625rem;
    max-width: 3.625rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--author .card__image {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--author .card__image {
    margin-right: 1rem;
  }
}

.card--author .card__image + .card__content {
  margin-top: 0;
}

.card--author .card__caption {
  margin-top: 0;
  color: #64748b;
}

.card--author .card__badge-verified {
  margin-left: 0;
}

.card--author.card--bordered {
  padding: 1rem;
  border-radius: 0.625rem;
}

@media screen and (min-width: 48rem) {
  .card--author.card--bordered {
    padding: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--author.card--bordered {
    padding: 1.25rem;
  }
}

.card--certificate .card__image {
  background-color: transparent !important;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.card--certificate .card__image-item {
  max-width: 80%;
  max-height: 4.75rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.card--no-radius {
  border-radius: 0;
}

.card--no-radius .card__video {
  border-radius: 0;
}

.card--plain {
  background-color: transparent !important;
  box-shadow: initial !important;
  border-radius: 0 !important;
  border: 0 !important;
}

.card--community {
  font-size: 0.875rem;
  /*.card__meta-item:first-child .card__meta-item-icon {
      @include breakpoint-up('medium') {
        display: none;
      }
    }*/
}

@media (max-width: 767px) {
  .card--community {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
  }
}

@media (max-width: 767px) {
  .card--community .card__logo {
    margin-bottom: 1rem;
  }
}

.card--community .card__caption {
  margin-top: 0.5rem;
  line-height: 1.5;
}

@media (min-width: 48rem) {
  .card--community .card__meta {
    padding-top: 0;
    margin: 0 0 0 1rem;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .card--community .card__meta-item {
    padding: 0;
  }
}

@media (min-width: 48rem) {
  .card--community .card__meta-item + .card__meta-item {
    margin-top: 0.75rem;
  }
}

.card--job {
  border-radius: 0.375rem;
}

@media screen and (min-width: 48rem) {
  .card--job {
    border-radius: calc(1.38889vw - 0.29167rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--job {
    border-radius: 0.75rem;
  }
}

@media (min-width: 48rem) {
  .card--job {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
  }
}

.card--job .card__logo,
.card--job .card__image {
  width: 3rem;
  height: 3rem;
  margin-right: 0.75rem;
  font-size: 1rem;
  border-radius: 50%;
  background-color: #eff4fa;
  color: #001ba3;
  margin-bottom: 0;
}

@media screen and (min-width: 48rem) {
  .card--job .card__logo,
  .card--job .card__image {
    width: calc(3.7037vw + 1.22222rem);
    height: calc(3.7037vw + 1.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--job .card__logo,
  .card--job .card__image {
    width: 4rem;
    height: 4rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--job .card__logo,
  .card--job .card__image {
    margin-right: calc(2.77778vw - 0.58333rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--job .card__logo,
  .card--job .card__image {
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--job .card__logo,
  .card--job .card__image {
    font-size: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--job .card__logo,
  .card--job .card__image {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card--job .card__logo,
  .card--job .card__image {
    margin-right: auto;
    margin-bottom: 1rem;
  }
}

.card--job .card__image {
  border: 1px solid #e2e8f0;
}

.card--job .card__image + .card__content {
  margin-top: 0;
}

.card--job .card__content {
  position: relative;
}

.card--job .card__badge {
  margin-left: 0.75rem;
  border-radius: 3.125rem;
  margin-bottom: 0;
}

.card--job .card__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 48rem) {
  .card--job .card__title {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 25rem) {
  .card--job .card__title .card__badge {
    width: 100%;
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

.card--job--small {
  padding: 1.1875rem;
  min-height: 5.625rem;
}

@media (max-width: 767px) {
  .card--job--small {
    min-height: 15.0625rem;
  }
}

.card--job--small:hover {
  background-color: #f1f5f9;
}

.card--job--small:not(.card--bordered) {
  border-width: 0;
}

@media (min-width: 48rem) {
  .card--job--small:not(.card--bordered) {
    box-shadow: 0px 8px 32px rgba(7, 7, 62, 0.03);
  }
}

.card--job--small:not(.card--bordered):hover {
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08) !important;
}

@media (min-width: 48rem) {
  .card--job--small .card__logo {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    font-size: 1.625rem;
  }
}

@media (min-width: 48rem) {
  .card--job--small .card__title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
  }
}

.card--job--small .card__meta {
  font-size: 0.8125rem;
  font-weight: 500;
  padding-top: 1rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

@media (min-width: 48rem) {
  .card--job--small .card__meta {
    padding-top: 0.5rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 48rem) {
  .card--job--small .card__meta-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    line-height: 1rem;
  }
}

@media (min-width: 48rem) {
  .card--job--small .card__meta-item-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

.card--job--small .card__readmore {
  display: none;
}

@media (min-width: 48rem) {
  .card--job--small .card__readmore {
    display: -ms-flexbox;
    display: flex;
    min-width: 2rem;
    min-height: 2rem;
    font-size: 1rem;
    margin-left: 1rem;
    padding: 0.5rem;
  }
}

.card--job.card--collapse:not(.card--image-keep) .card__image {
  margin-top: 0;
  margin-left: 0;
}

.card--ads .card__meta {
  font-size: 0.875rem;
}

.card--ads .card__meta .card__meta-icon {
  font-size: 1rem;
  margin-right: 0.25rem;
}

.card--search {
  padding: 1rem;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}

.card--search .card__icon-wrapper {
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
  font-size: 1rem;
  margin-bottom: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .card--search .card__icon-wrapper {
    width: calc(3.7037vw + 0.22222rem);
    height: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--search .card__icon-wrapper {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--search .card__icon-wrapper {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--search .card__icon-wrapper {
    margin-right: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--search .card__icon-wrapper {
    font-size: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--search .card__icon-wrapper {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .card--search .card__icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
}

.card--search .card__icon {
  font-size: inherit;
}

.card--search .card__content {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}

.card--search .card__title {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card--search .card__title .card__badge {
  border-radius: 3.125rem;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 0.75rem;
  background-color: #e5e7eb;
  color: #4b5563;
  margin-bottom: 0;
  margin-left: 0.75rem;
  padding: 0.25rem 0.75rem;
}

@media (max-width: 575px) {
  .card--search .card__title .card__badge {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-left: 0;
    margin-top: 0.25rem;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: #6b7280;
  }
}

@media (max-width: 767px) {
  .card--search .card__readmore {
    margin-top: 0;
    margin-left: 0.75rem;
  }
}

@media (max-width: 575px) {
  .card--search .card__readmore {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.card--blog .card__image-badge {
  background-color: #fff;
  color: #020617;
}

.card--blog .card__meta--date {
  color: #6b7280;
}

.card--file {
  padding: 0.5rem 1rem;
  min-height: 3.125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}

.card--file:hover {
  background-color: #e2e8f0;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.card--file .card__icon {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  margin-bottom: 0;
  color: #286cf6;
}

.card--credit-card {
  position: relative !important;
}

.card--credit-card .card__actions {
  top: 0.5rem;
  position: absolute;
  right: 0.5rem;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 48rem) {
  .card--credit-card .card__actions {
    top: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--credit-card .card__actions {
    top: 0.75rem;
  }
}

.card--credit-card .card__title {
  padding-right: 4rem;
}

.card--credit-card .card__actions-button {
  font-size: 1rem;
}

.card--credit-card .card__actions-button .icon {
  font-size: inherit !important;
  color: inherit;
}

.card--credit-card .card__actions-button:not(:hover):not(:active):not(:focus) {
  color: #6b7280 !important;
}

.card--stats {
  padding: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .card--stats {
    padding: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--stats {
    padding: 1rem;
  }
}

.card--stats .card__icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
}

.card--stats .card__icon {
  font-size: 1.5rem;
}

.card--stats .card__caption {
  margin-top: 0.25rem;
}

.card--stats-2 {
  padding: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 48rem) {
  .card--stats-2 {
    padding: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--stats-2 {
    padding: 1rem;
  }
}

.card--stats-2 .card__icon-wrapper {
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-bottom: 0;
  color: #286cf6;
}

.card--stats-2 .card__content {
  margin-top: 0;
}

.card--stats-2 .card__number {
  color: #020617;
}

.card--stats-2 .card__title {
  color: #64748b;
}

.card--vessel {
  padding: 0.75rem;
}

.card--vessel:hover {
  background-color: #f1f5f9;
}

@media screen and (min-width: 48rem) {
  .card--vessel {
    padding: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--vessel {
    padding: 1rem;
  }
}

.card--vessel .card__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  cursor: pointer;
}

.card--vessel > .card__content {
  padding: 0.75rem;
  margin: -0.75rem;
}

@media screen and (min-width: 48rem) {
  .card--vessel > .card__content {
    padding: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--vessel > .card__content {
    padding: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--vessel > .card__content {
    margin: calc(-0.92593vw - 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--vessel > .card__content {
    margin: -1rem;
  }
}

.card--vessel .card__image {
  width: 1.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 1rem 0 0 !important;
  border: 1px solid #e2e8f0;
  background-color: #f1f5f9;
}

.card--vessel .card__image,
.card--vessel .card__image-item {
  border-radius: 0.375rem !important;
}

.card--vessel .card__title {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.card--vessel .card__toggle {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.75rem;
  min-width: 2.5rem;
  padding-left: 0;
  padding-right: 0;
  color: #64748b;
}

.card--vessel .card__toggle .icon {
  transition: 0.2s color, 0.2s -webkit-transform !important;
  transition: 0.2s transform, 0.2s color !important;
  transition: 0.2s transform, 0.2s color, 0.2s -webkit-transform !important;
  font-size: 1.5rem;
}

.card--vessel.card--with-logo .card__image {
  width: 3.5rem;
}

.card--vessel.card--with-logo .card__image-item {
  width: 86%;
  left: 7%;
}

.card--other-vessel .card__icon-wrapper {
  margin-bottom: 1.25rem;
}

.card--other-vessel .card__icon {
  font-size: 1.5rem;
}

.card--other-vessel .card__badge {
  border-radius: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-bottom: 0;
  margin-top: 0.75rem;
  -ms-flex-order: 2;
  order: 2;
}

.card--prop {
  padding: 0.5rem 0.75rem !important;
}

@media (min-width: 62rem) {
  .card--prop {
    padding: 0.75rem 1rem !important;
  }
}

.card--prop .card__content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  align-items: flex-start;
}

.card--prop .card__icon {
  font-size: 1.25rem;
  color: #286cf6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.75rem;
  margin-bottom: 0;
}

.card--prop .card__title {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  line-height: 1rem;
}

.card--prop .card__caption,
.card--prop .card__list {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.card--prop .card__list {
  margin-top: 0.75rem;
  border-top: 0;
  padding-top: 0;
  margin-bottom: auto;
  margin-left: 0.375rem;
}

.card--prop .card__list-item + .card__list-item {
  margin-top: 0.5rem !important;
}

.card--project:hover {
  background-color: #f1f5f9 !important;
}

.card--project:hover .card__title-icon {
  color: #286cf6;
}

.card--company {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: start;
  align-items: flex-start;
}

.card--company .card__content {
  min-height: 4rem;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
}

.card--company .card__more {
  transition: 0.3s opacity;
  margin-top: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.card--company .card__more:not(.is-active) {
  display: none;
}

.card--company .card__more-toggle {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  font-size: 1.25rem;
  color: #1e293b;
}

.card--company .card__more-dropdown {
  padding: 0.375rem;
  border-radius: 0.375rem;
  min-width: 11.25rem;
}

.card--company .card__title {
  line-height: 1.3;
  display: block;
}

.card--company .card__image {
  width: 4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1rem;
  border: 1px solid #e2e8f0;
}

.card--company .card__image + .card__content {
  margin-top: 0;
}

.card--company .card__meta {
  margin: -0.1875rem;
  padding-top: 0.25rem;
}

.card--company .card__meta-item {
  padding: 0.1875rem;
}

.card--company .card__meta-item-label {
  background-color: #f1f5f9;
  padding: 0.125rem 0.375rem;
  min-height: 0;
  line-height: 1.5;
  border-radius: 1rem;
  font-size: 0.75rem;
  color: #334155;
  font-weight: 500;
}

.card--company .card__bottom {
  padding-top: 0.75rem;
  display: -ms-flexbox;
  display: flex;
}

.card--company .card__button {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 36rem) {
  .card--company .card__button {
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}

.card--company.card--company--large .card__image {
  width: 5.625rem;
}

.card--company:hover .card__more {
  display: -ms-flexbox;
  display: flex;
}

.card--ship-type {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.75rem -0.125rem rgba(2, 6, 23, 0.06);
}

.card--ship-type .card__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}

.card--ship-type .card__icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
  margin-right: 0.5rem;
  margin-left: -0.5rem;
}

.card--ship-type .card__icon-wrapper .card__icon {
  font-size: 1.75rem;
}

.card--radius-lg {
  border-radius: 0.75rem;
}

.card--feature.card--collapse {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .card--feature.card--collapse {
    padding-left: calc(0.92593vw + 0.55556rem);
    padding-right: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--feature.card--collapse {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--feature.card--collapse {
    padding-top: calc(0.92593vw + 0.30556rem);
    padding-bottom: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--feature.card--collapse {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.card--feature .card__icon {
  font-size: 1.5rem;
}

@media (min-width: 36rem) {
  .card--feature >  .card__icon {
    margin-right: 0.75rem;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .card--feature >  .card__icon {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .card--feature >  .card__icon {
    margin-right: 1rem;
  }
}

.card--feature .card__content {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.card--supplier {
  padding: 1rem;
  position: relative;
}

@media screen and (min-width: 48rem) {
  .card--supplier {
    padding: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--supplier {
    padding: 1.25rem;
  }
}

@media (max-width: 575px) {
  .card--supplier {
    padding-bottom: 4.5rem;
  }
}

.card--supplier .card__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 36rem) {
  .card--supplier .card__header {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.card--supplier .card__header-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.card--supplier .card__content {
  margin-top: 0 !important;
}

.card--supplier .card__image {
  width: 3rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  margin-bottom: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media screen and (min-width: 48rem) {
  .card--supplier .card__image {
    width: calc(5.55556vw + 0.33333rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--supplier .card__image {
    width: 4.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--supplier .card__image {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--supplier .card__image {
    margin-right: 1rem;
  }
}

.card--supplier .card__image,
.card--supplier .card__image-item {
  border-radius: 0.375rem !important;
}

@media (max-width: 575px) {
  .card--supplier .card__caption {
    margin-left: -3.75rem !important;
    margin-top: 1.25rem !important;
  }
}

.card--supplier .card__meta {
  font-size: 0.875rem;
  padding-top: 0;
}

.card--supplier .card__meta-item-icon {
  font-size: 1rem;
  margin-right: 0.25rem;
}

.card--supplier .card__button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0 !important;
  margin-left: 1.5rem;
}

@media (max-width: 575px) {
  .card--supplier .card__button {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin-top: 0;
    width: auto;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .card--supplier .card__bottom {
    padding-top: 1rem;
  }
}

.card--price {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-shadow: 0 4px 6px -2px rgba(2, 6, 23, 0.08);
}

@media screen and (min-width: 48rem) {
  .card--price {
    padding-left: calc(0.92593vw + 0.80556rem);
    padding-right: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--price {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--price {
    padding-top: calc(1.85185vw + 0.61111rem);
    padding-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--price {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.card--price .card__title {
  line-height: 1.5rem;
}

.card--price .card__icon {
  font-size: 1.5rem;
  color: #286cf6;
  margin-bottom: 0.75rem;
}

.card--price .card__popular {
  background-color: #286cf6;
  position: absolute;
  bottom: 100%;
  left: 2rem;
  right: 2rem;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.75rem 0.75rem 0 0;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  font-weight: bold;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.25rem;
}

.card--price .card__header {
  transition: 0.3s min-height;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 13.1875rem;
}

.card--price .card__caption {
  line-height: 1.25rem;
}

@media (min-width: 36rem) {
  .card--price .card__caption {
    min-height: 3.75rem;
  }
}

.card--price .card__actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  padding-top: 1.5rem;
}

@media (min-width: 36rem) {
  .card--price .card__actions:not(.card__actions--single) {
    min-height: 7rem;
  }
}

@media (min-width: 36rem) {
  .card--price .card__price {
    min-height: 2.5rem;
  }
}

.card--price .card__price:not(:empty) {
  margin-top: 1rem;
}

.card--price .card__price-total {
  color: #64748b;
  line-height: 1.25rem;
}

.card--price .card__price-saving-wrapper,
.card--price .card__price-total {
  transition-duration: 0.3s;
  transition-property: max-height, margin-top, -webkit-transform;
  transition-property: max-height, margin-top, transform;
  transition-property: max-height, margin-top, transform, -webkit-transform;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
}

.card--price .card__list {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.card--price .card__trial {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-bottom: -1.5rem;
  margin-top: auto;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: auto;
  border-top: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .card--price .card__trial {
    margin-left: calc(-0.92593vw - 0.80556rem);
    margin-right: calc(-0.92593vw - 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--price .card__trial {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--price .card__trial {
    margin-bottom: calc(-1.85185vw - 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--price .card__trial {
    margin-bottom: -2rem;
  }
}

.card--price .card__content {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.card--price .card__bottom {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-bottom: -1.5rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 1rem;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #f1f5f9;
  color: #64748b;
  border-radius: 0 0 1rem 1rem;
}

@media screen and (min-width: 48rem) {
  .card--price .card__bottom {
    margin-left: calc(-0.92593vw - 0.80556rem);
    margin-right: calc(-0.92593vw - 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--price .card__bottom {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .card--price .card__bottom {
    margin-bottom: calc(-1.85185vw - 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .card--price .card__bottom {
    margin-bottom: -2rem;
  }
}

.card--price:hover {
  box-shadow: 0 6px 12px -2px rgba(2, 6, 23, 0.15);
}

.card--price .button--link {
  min-height: 2rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  line-height: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.card--price .button--link:not(:hover):not(:focus):not(:active) {
  color: #475569;
}

.card--price.is-popular {
  position: relative;
  border: 2px solid #286cf6;
  box-shadow: 0 0 0 0.25rem rgba(40, 108, 246, 0.13);
}

@media (min-width: 62rem) {
  .card--price.is-popular {
    box-shadow: 0 0 0 0.375rem rgba(40, 108, 246, 0.13);
  }
}

@media (max-width: 575px) {
  .card--price.is-popular {
    margin-top: 2.25rem;
  }
}

.card--price.is-popular:hover {
  box-shadow: 0 0 0 0.25rem rgba(40, 108, 246, 0.2), 0 6px 12px -2px rgba(2, 6, 23, 0.15);
}

@media (min-width: 62rem) {
  .card--price.is-popular:hover {
    box-shadow: 0 0 0 0.375rem rgba(40, 108, 246, 0.2), 0 6px 12px -2px rgba(2, 6, 23, 0.15);
  }
}

.card--price.is-current {
  position: relative;
  border: 2px solid #14b84b;
  box-shadow: 0 0 0 0.25rem rgba(20, 184, 75, 0.13);
}

@media (min-width: 62rem) {
  .card--price.is-current {
    box-shadow: 0 0 0 0.375rem rgba(20, 184, 75, 0.13);
  }
}

@media (max-width: 575px) {
  .card--price.is-current {
    margin-top: 2.25rem;
  }
}

.card--price.is-current .card__icon {
  color: #14b84b;
}

.card--price.is-current .card__popular {
  background-color: #14b84b;
}

.card--price.is-current:hover {
  box-shadow: 0 0 0 0.25rem rgba(20, 184, 75, 0.2), 0 6px 12px -2px rgba(2, 6, 23, 0.15);
}

@media (min-width: 62rem) {
  .card--price.is-current:hover {
    box-shadow: 0 0 0 0.375rem rgba(20, 184, 75, 0.2), 0 6px 12px -2px rgba(2, 6, 23, 0.15);
  }
}

.card--price.is-annually .card__header {
  min-height: 17.3125rem;
}

.card--price.is-annually .card__price-saving-wrapper {
  max-height: 2.375rem;
}

.card--price.is-annually .card__price-total {
  max-height: 1.25rem;
  margin-top: 0.5rem;
}

.card.is-animate .card__dropdown {
  transition-duration: 0.4s;
  transition-property: max-height, padding-top;
}

.card.is-active,
.card.is-opened {
  background-color: #f1f5f9;
}

.card.is-active .card__toggle,
.card.is-opened .card__toggle {
  color: #1e293b;
}

.card.is-active .card__toggle .icon,
.card.is-opened .card__toggle .icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.card.is-active .card__dropdown,
.card.is-opened .card__dropdown {
  padding-top: 1rem;
}

.card.is-active .card__dropdown {
  max-height: initial;
}

.card.is-error {
  border-color: #d35c5c;
}

.card.is-error .card__icon-wrapper {
  background-color: #ffedeb;
  color: #d03c12;
}

.card.is-warning {
  border-color: #ff7e05;
}

.card.is-warning .card__icon-wrapper {
  background-color: #ffefe0;
  color: #ff7e05;
}

a.card[data-fancybox] .card__hover,
a.card[data-fancybox] .card__hover-icon,
a.card[data-fslightbox] .card__hover,
a.card[data-fslightbox] .card__hover-icon {
  pointer-events: none;
}

a.card.card--community {
  padding: 1rem;
  border-radius: 0.375rem;
}

@media (min-width: 48rem) {
  a.card.card--community {
    margin: -1rem;
  }
}

a.card.card--ship-type:hover {
  background-color: #e0e8f8;
  box-shadow: 0 0 0 transparent;
}

a.card.card--ship-type:active {
  background-color: #d7e1f6;
  box-shadow: 0 0 0 0.1875rem rgba(40, 108, 246, 0.1);
}

a.card:hover {
  color: #1f2937;
}

a.card:hover .card__image .card__date {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

a.card:hover .card__hover {
  opacity: 1;
  visibility: visible;
}

a.card:hover .card__hover-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

a.card:hover .card__image-item {
  transition-duration: 1s;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

a.card:hover .card__title-icon {
  -webkit-transform: translateX(0.3125rem);
  transform: translateX(0.3125rem);
}

a.card:hover .card__icon {
  color: #286cf6;
}

a.card:hover.card--overlay .card__content::before {
  height: 40%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a.card:hover.card--client {
  z-index: 3;
}

a.card:hover.card--video .card__image::after {
  opacity: 0;
}

a.card:hover.card--video .card__hover {
  background-color: #fff;
  color: #286cf6;
}

a.card:hover.card--community {
  background-color: #e2e8f0;
}

a.card:hover.card--community .card__logo {
  background-color: #286cf6;
  color: #fff;
}

a.card:hover.card--community .card__title {
  color: #286cf6;
}

a.card:hover.card--collapse .card__readmore {
  background-color: #020617;
  color: #fff;
}

a.card:hover.card--other-vessel .card__icon-wrapper {
  background-color: #286cf6;
  color: #fff;
}

a.card:hover.card--other-vessel .card__title {
  color: #020617;
}

.progress-bar {
  width: 100%;
  background-color: #cbd5e1;
  position: relative;
  border-radius: 0.625rem;
  height: 0.375rem;
}

@media screen and (min-width: 48rem) {
  .progress-bar {
    height: calc(0.46296vw + 0.15278rem);
  }
}

@media screen and (min-width: 75rem) {
  .progress-bar {
    height: 0.5rem;
  }
}

.progress-bar__track {
  transition-duration: 0.3s;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #286cf6;
}

.progress-bar__track:first-child {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.progress-bar__track:last-child {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.progress-bar__track--cargo {
  background-color: #62ad56;
}

.progress-bar__track--cargo:hover {
  background-color: #6cd05c;
}

.progress-bar__track--fishing {
  background-color: #fd7a35;
}

.progress-bar__track--fishing:hover {
  background-color: #ff620e;
}

.progress-bar__track--passenger {
  background-color: #036aee;
}

.progress-bar__track--passenger:hover {
  background-color: #002b62;
}

.progress-bar__track--craft {
  background-color: #ff70ff;
}

.progress-bar__track--craft:hover {
  background-color: #700c70;
}

.progress-bar__track--sailing {
  background-color: #ffff00;
}

.progress-bar__track--sailing:hover {
  background-color: #e1e130;
}

.progress-bar__track--tanker {
  background-color: #df2329;
}

.progress-bar__track--tanker:hover {
  background-color: #f14146;
}

.progress-bar__track--tug {
  background-color: #2ce8e8;
}

.progress-bar__track--tug:hover {
  background-color: #00baba;
}

.progress-bar__track--other {
  background-color: #c8c8c8;
}

.progress-bar__track--other:hover {
  background-color: #a2a2a2;
}

.progress-bar__group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.progress-bar__group-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.progress-bar__group-item:not(:first-child) {
  margin-top: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .progress-bar__group-item:not(:first-child) {
    margin-top: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .progress-bar__group-item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.progress-bar__group-item-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.progress-bar__group-item-header strong {
  font-weight: 600;
  color: #020617;
}

.progress-bar__group-item-bar {
  background-color: #e2e8f0;
}

.progress-bar--light {
  background-color: #fff;
}

.progress-bar--group {
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0 0 0 0.1875rem #fff;
}

.progress-bar--group .progress-bar__track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: initial;
}

.progress-bar--group .progress-bar__track:hover {
  opacity: 0.8;
  -webkit-transform: scale(1, 1.5);
  transform: scale(1, 1.5);
}

.table,
.entry table {
  width: 100%;
  text-align: left;
  border-spacing: 0;
  border-radius: 0.625rem;
  background-color: #fff;
  font-size: 0.875rem;
  line-height: 1.4;
  border-collapse: separate;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
}

@media (max-width: 767px) {
  .table,
  .entry table {
    font-size: 0.8125rem;
  }
}

.table tr + tr th,
.entry table tr + tr th,
.table tr + tr td,
.entry table tr + tr td {
  border-top: 1px solid #e2e8f0;
}

.table th,
.entry table th,
.table td,
.entry table td {
  vertical-align: middle;
  box-sizing: border-box;
  padding: 0.375rem 0.75rem;
  height: 3.125rem;
}

@media (min-width: 48rem) {
  .table th,
  .entry table th,
  .table td,
  .entry table td {
    padding: 0.5rem 1.5rem;
  }
}

.table th > div:not([class]),
.entry table th > div:not([class]),
.table td > div:not([class]),
.entry table td > div:not([class]) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.table th strong,
.entry table th strong,
.table th b,
.entry table th b,
.table td strong,
.entry table td strong,
.table td b,
.entry table td b {
  font-weight: 600;
}

.table thead th,
.entry table thead th,
.table thead td,
.entry table thead td {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #020617;
  padding-top: 0.875rem;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

@media (min-width: 62rem) {
  .table thead th,
  .entry table thead th,
  .table thead td,
  .entry table thead td {
    padding-top: 1.5rem;
    padding-bottom: 0.75rem;
  }
}

.table thead tr:hover th,
.entry table thead tr:hover th,
.table thead tr:hover td,
.entry table thead tr:hover td {
  color: #020617;
}

.table tr.warning .button--light-primary:not(:hover):not(:focus):not(:active),
.entry table tr.warning .button--light-primary:not(:hover):not(:focus):not(:active),
.table tr.success .button--light-primary:not(:hover):not(:focus):not(:active),
.entry table tr.success .button--light-primary:not(:hover):not(:focus):not(:active) {
  background-color: #fff;
}

.table tr.warning:hover td,
.entry table tr.warning:hover td,
.table tr.warning:hover th,
.entry table tr.warning:hover th,
.table tr.success:hover td,
.entry table tr.success:hover td,
.table tr.success:hover th,
.entry table tr.success:hover th {
  background-color: rgba(0, 0, 0, 0.03);
}

.table tr.warning,
.entry table tr.warning {
  background-color: rgba(255, 126, 5, 0.1);
}

.table tr.warning .button--light-primary:not(:hover):not(:focus):not(:active),
.entry table tr.warning .button--light-primary:not(:hover):not(:focus):not(:active) {
  background-color: #fff;
}

.table tr.warning + .warning td,
.entry table tr.warning + .warning td {
  border-top-color: rgba(255, 126, 5, 0.15);
}

.table tr.success,
.entry table tr.success {
  background-color: rgba(20, 184, 75, 0.08);
}

.table tr.success + .success td,
.entry table tr.success + .success td {
  border-top-color: rgba(20, 184, 75, 0.15);
}

.table tr.unread td:first-child::before,
.entry table tr.unread td:first-child::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: #e73323;
  border-radius: 50%;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.125rem;
}

.table tr td,
.entry table tr td {
  transition-duration: 0.3s;
  transition-property: background-color, color;
}

.table tr:hover td,
.entry table tr:hover td {
  color: #020617;
  background-color: #eff4fa;
}

.table thead tr:first-child th:first-child,
.entry table thead tr:first-child th:first-child,
.table thead tr:first-child td:first-child,
.entry table thead tr:first-child td:first-child {
  border-top-left-radius: 0.625rem;
}

.table thead tr:first-child th:last-child,
.entry table thead tr:first-child th:last-child,
.table thead tr:first-child td:last-child,
.entry table thead tr:first-child td:last-child {
  border-top-right-radius: 0.625rem;
}

.table thead tr:last-child th:first-child,
.entry table thead tr:last-child th:first-child,
.table thead tr:last-child td:first-child,
.entry table thead tr:last-child td:first-child {
  border-bottom-left-radius: initial;
}

.table thead tr:last-child th:last-child,
.entry table thead tr:last-child th:last-child,
.table thead tr:last-child td:last-child,
.entry table thead tr:last-child td:last-child {
  border-bottom-right-radius: initial;
}

.table tr:last-child th:first-child,
.entry table tr:last-child th:first-child,
.table tr:last-child td:first-child,
.entry table tr:last-child td:first-child {
  border-bottom-left-radius: 0.625rem;
}

.table tr:last-child th:last-child,
.entry table tr:last-child th:last-child,
.table tr:last-child td:last-child,
.entry table tr:last-child td:last-child {
  border-bottom-right-radius: 0.625rem;
}

.table thead + tbody tr:first-child th:first-child,
.entry table thead + tbody tr:first-child th:first-child,
.table thead + tbody tr:first-child td:first-child,
.entry table thead + tbody tr:first-child td:first-child {
  border-top-left-radius: initial;
}

.table thead + tbody tr:first-child th:last-child,
.entry table thead + tbody tr:first-child th:last-child,
.table thead + tbody tr:first-child td:last-child,
.entry table thead + tbody tr:first-child td:last-child {
  border-top-right-radius: initial;
}

.table tbody + thead tr:first-child th,
.entry table tbody + thead tr:first-child th,
.table tbody + thead tr:first-child td,
.entry table tbody + thead tr:first-child td {
  border-top: 1px solid #e2e8f0;
  border-radius: 0 !important;
}

.table strong,
.entry table strong,
.table b,
.entry table b {
  font-weight: 600;
  color: #020617;
}

.table .checkbox,
.entry table .checkbox {
  vertical-align: middle;
}

.table .button,
.entry table .button {
  white-space: nowrap;
}

.table .button--link,
.entry table .button--link {
  white-space: nowrap;
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
  vertical-align: middle;
}

.table__image {
  width: 3rem;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
}

@media screen and (min-width: 48rem) {
  .table__image {
    width: calc(5.55556vw + 0.33333rem);
  }
}

@media screen and (min-width: 75rem) {
  .table__image {
    width: 4.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .table__image {
    margin-right: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .table__image {
    margin-right: 0.75rem;
  }
}

.table__image--small {
  width: 2rem;
}

.table__icon-condition {
  color: #286cf6;
  font-size: 1.25rem;
}

.table a.table__lock:hover,
.entry table a.table__lock:hover {
  color: #020617;
}

.table__lock {
  display: inline;
  -ms-flex-align: baseline;
  align-items: baseline;
  word-break: break-all;
  cursor: pointer;
}

.table__lock--unlock .table__lock-icon {
  color: #14b84b;
}

.table__lock--unlock .table__lock-icon:hover {
  color: #03a037;
}

.table__lock-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.25rem;
  color: #ff7e05;
}

.table__lock-icon:hover {
  color: #e06d00;
}

.table__link {
  color: #286cf6;
  font-weight: 500;
  text-decoration: underline;
}

.table__link:hover {
  text-decoration: none;
  color: #001ba3;
}

.table__progress {
  width: 7.5rem;
}

@media screen and (min-width: 48rem) {
  .table__progress {
    width: calc(18.51852vw - 1.38889rem);
  }
}

@media screen and (min-width: 75rem) {
  .table__progress {
    width: 12.5rem;
  }
}

.table__search {
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.table__search .table__search-input.input--solid ~ .table__search-clear:hover {
  background-color: #fff;
}

.table__search-clear {
  display: none;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 0.375rem;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
}

.table__search-clear.button--xsmall.button--icon {
  min-width: initial !important;
  min-height: initial !important;
}

.table__search-clear .button__icon {
  font-size: 1.125rem;
}

.table__search-clear:not(:hover):not(:focus):not(:active) .button__icon {
  color: #64748b !important;
}

.table--small thead th,
.table--small thead td {
  letter-spacing: 0.015em;
}

@media (min-width: 62rem) {
  .table--small thead th,
  .table--small thead td {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
    height: auto;
  }
}

.table--small tbody th,
.table--small tbody td {
  font-size: 0.875rem;
}

.table--small th,
.table--small td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.table--small th:first-child,
.table--small td:first-child {
  padding-left: 1rem;
}

.table--small th:last-child,
.table--small td:last-child {
  padding-right: 1rem;
}

.table--xsmall thead th,
.table--xsmall thead td {
  letter-spacing: 0.015em;
}

@media (min-width: 62rem) {
  .table--xsmall thead th,
  .table--xsmall thead td {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
    height: auto;
  }
}

.table--xsmall tbody th,
.table--xsmall tbody td,
.table--xsmall tfoot th,
.table--xsmall tfoot td {
  font-size: 0.875rem;
  height: auto;
}

.table--xsmall th,
.table--xsmall td {
  padding: 0.5rem;
}

.table--xsmall th:first-child,
.table--xsmall td:first-child {
  padding-left: 1rem;
}

.table--xsmall th:last-child,
.table--xsmall td:last-child {
  padding-right: 1rem;
}

.table--xsmall tfoot td {
  border-top: 1px solid #e2e8f0;
}

.table--bordered td + td {
  border-left: 1px solid #e2e8f0;
}

.table--thead-highlight thead {
  background-color: #e2e8f0;
}

.table--prop {
  border: 0;
  font-size: inherit;
  line-height: 1.5;
}

.table--prop th,
.table--prop td {
  background: none !important;
  padding: 0.5rem 0.75rem;
  height: initial;
}

.table--prop th:first-child,
.table--prop td:first-child {
  padding-left: 0;
}

.table--prop th:last-child,
.table--prop td:last-child {
  padding-right: 0;
  text-align: right;
}

.table--prop th {
  font-weight: 600;
  color: #020617;
}

.table--prop tbody tr:first-child th,
.table--prop tbody tr:first-child td {
  padding-top: 0;
}

.table--prop tbody tr:last-child th,
.table--prop tbody tr:last-child td {
  padding-bottom: 0;
}

.table--prop tr + tr th,
.table--prop tr + tr td {
  border-top-style: dashed;
  border-color: #cbd5e1;
}

.table--flush {
  border: 0;
  border-radius: 0 !important;
  width: 100% !important;
}

.table--flush th,
.table--flush td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0 !important;
}

@media screen and (min-width: 48rem) {
  .table--flush th,
  .table--flush td {
    padding-left: calc(0.92593vw + 0.05556rem);
    padding-right: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .table--flush th,
  .table--flush td {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.table--flush thead th,
.table--flush thead td {
  padding-top: 0.75rem;
  vertical-align: middle;
}

.table--flush th:first-child,
.table--flush td:first-child {
  padding-left: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .table--flush th:first-child,
  .table--flush td:first-child {
    padding-left: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .table--flush th:first-child,
  .table--flush td:first-child {
    padding-left: 1.25rem;
  }
}

.table--flush th:last-child,
.table--flush td:last-child {
  padding-right: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .table--flush th:last-child,
  .table--flush td:last-child {
    padding-right: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .table--flush th:last-child,
  .table--flush td:last-child {
    padding-right: 1.25rem;
  }
}

@media (max-width: 767px) {
  .table[data-table-responsive],
  .entry table[data-table-responsive] {
    display: block;
  }

  .table[data-table-responsive] thead,
  .entry table[data-table-responsive] thead {
    display: none;
  }

  .table[data-table-responsive] tbody,
  .entry table[data-table-responsive] tbody,
  .table[data-table-responsive] tr,
  .entry table[data-table-responsive] tr {
    display: block;
  }

  .table[data-table-responsive] th,
  .entry table[data-table-responsive] th,
  .table[data-table-responsive] td,
  .entry table[data-table-responsive] td {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0;
    background-color: transparent !important;
    height: auto;
  }

  .table[data-table-responsive] th:before,
  .entry table[data-table-responsive] th:before,
  .table[data-table-responsive] td:before,
  .entry table[data-table-responsive] td:before {
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    max-width: 35%;
    content: attr(data-label);
    font-weight: 600;
    color: #020617;
    padding: 0.375rem 0.75rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    transition-duration: 0.3s;
    transition-property: background-color, color;
  }

  .table[data-table-responsive] th:hover,
  .entry table[data-table-responsive] th:hover,
  .table[data-table-responsive] td:hover,
  .entry table[data-table-responsive] td:hover {
    background-color: #eff4fa !important;
    color: #020617 !important;
  }

  .table[data-table-responsive] th > div:not([class]),
  .entry table[data-table-responsive] th > div:not([class]),
  .table[data-table-responsive] td > div:not([class]),
  .entry table[data-table-responsive] td > div:not([class]) {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.625rem;
    min-width: 0;
  }

  .table[data-table-responsive] th > div:not([class]) .button,
  .entry table[data-table-responsive] th > div:not([class]) .button,
  .table[data-table-responsive] th > div:not([class]) .input-quantity,
  .entry table[data-table-responsive] th > div:not([class]) .input-quantity,
  .table[data-table-responsive] td > div:not([class]) .button,
  .entry table[data-table-responsive] td > div:not([class]) .button,
  .table[data-table-responsive] td > div:not([class]) .input-quantity,
  .entry table[data-table-responsive] td > div:not([class]) .input-quantity {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .table[data-table-responsive] th > div:not([class]) .button + .button,
  .entry table[data-table-responsive] th > div:not([class]) .button + .button,
  .table[data-table-responsive] td > div:not([class]) .button + .button,
  .entry table[data-table-responsive] td > div:not([class]) .button + .button {
    margin-left: 0.625rem;
  }

  .table[data-table-responsive] tr:first-child td:first-child:before,
  .entry table[data-table-responsive] tr:first-child td:first-child:before {
    border-top-left-radius: 0.625rem;
  }

  .table[data-table-responsive] tr:last-child td:last-child:before,
  .entry table[data-table-responsive] tr:last-child td:last-child:before {
    border-bottom-left-radius: 0.625rem;
  }
}

.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .table-responsive {
    border-radius: 0.625rem;
    border: 1px solid #e2e8f0;
  }
}

@media (max-width: 767px) {
  .table-responsive th:first-child,
  .table-responsive td:first-child {
    border-left: 0;
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .table-responsive th:last-child,
  .table-responsive td:last-child {
    border-left: 0;
    border-right: 0;
  }
}

.table-responsive .table,
.table-responsive .entry table,
.entry .table-responsive table {
  margin: 0;
}

@media (max-width: 767px) {
  .table-responsive .table,
  .table-responsive .entry table,
  .entry .table-responsive table {
    border: 0;
  }
}

@media (max-width: 767px) {
  .table-responsive .table thead > tr:first-child th,
  .table-responsive .entry table thead > tr:first-child th,
  .entry .table-responsive table thead > tr:first-child th,
  .table-responsive .table thead > tr:first-child td,
  .table-responsive .entry table thead > tr:first-child td,
  .entry .table-responsive table thead > tr:first-child td,
  .table-responsive .table > tr:first-child th,
  .table-responsive .entry table > tr:first-child th,
  .entry .table-responsive table > tr:first-child th,
  .table-responsive .table > tr:first-child td,
  .table-responsive .entry table > tr:first-child td,
  .entry .table-responsive table > tr:first-child td,
  .table-responsive .table > tbody tr:first-child th,
  .table-responsive .entry table > tbody tr:first-child th,
  .entry .table-responsive table > tbody tr:first-child th,
  .table-responsive .table > tbody tr:first-child td,
  .table-responsive .entry table > tbody tr:first-child td,
  .entry .table-responsive table > tbody tr:first-child td {
    border-top: 0;
  }
}

@media (max-width: 767px) {
  .table-responsive .table > tr:last-child th,
  .table-responsive .entry table > tr:last-child th,
  .entry .table-responsive table > tr:last-child th,
  .table-responsive .table > tr:last-child td,
  .table-responsive .entry table > tr:last-child td,
  .entry .table-responsive table > tr:last-child td,
  .table-responsive .table > tbody tr:last-child th,
  .table-responsive .entry table > tbody tr:last-child th,
  .entry .table-responsive table > tbody tr:last-child th,
  .table-responsive .table > tbody tr:last-child td,
  .table-responsive .entry table > tbody tr:last-child td,
  .entry .table-responsive table > tbody tr:last-child td {
    border-bottom: 0;
  }
}

.table-responsive table.table thead td,
.table-responsive .entry table thead td,
.entry .table-responsive table thead td,
.table-responsive table.table thead th,
.table-responsive .entry table thead th,
.entry .table-responsive table thead th,
.table-responsive table.table th,
.table-responsive .entry table th,
.entry .table-responsive table th {
  white-space: nowrap;
}

.table-responsive--flush {
  border: 0;
  border-radius: 0 !important;
}

.table-collapsable {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.table-collapsable__wrapper {
  transition: 0.5s max-height;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
}

.table-collapsable__wrapper .table,
.table-collapsable__wrapper .entry table,
.entry .table-collapsable__wrapper table,
.table-collapsable__wrapper .table-responsive {
  border: 0;
}

.table-collapsable__toggle {
  margin-top: 1rem;
}

.table-collapsable__bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.table-collapsable__bottom .table-collapsable__toggle {
  margin-top: 0;
}

.table-collapsable[data-table-collapsable='3'] .table-collapsable__wrapper {
  max-height: 150px;
}

.table-collapsable[data-table-collapsable='4'] .table-collapsable__wrapper {
  max-height: 200px;
}

.table-collapsable[data-table-collapsable='5'] .table-collapsable__wrapper {
  max-height: 250px;
}

.table-collapsable[data-table-collapsable='6'] .table-collapsable__wrapper {
  max-height: 300px;
}

.table-collapsable[data-table-collapsable='7'] .table-collapsable__wrapper {
  max-height: 350px;
}

.table-collapsable[data-table-collapsable='8'] .table-collapsable__wrapper {
  max-height: 400px;
}

.table-collapsable .table-collapsable__toggle.is-active .button__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.table-collapsable--two-line[data-table-collapsable='3'] .table-collapsable__wrapper {
  max-height: 176.57px;
}

.table-collapsable--two-line[data-table-collapsable='4'] .table-collapsable__wrapper {
  max-height: 232.76px;
}

.table-collapsable--two-line[data-table-collapsable='5'] .table-collapsable__wrapper {
  max-height: 288.95px;
}

.table-collapsable--two-line[data-table-collapsable='6'] .table-collapsable__wrapper {
  max-height: 345.14px;
}

.table-collapsable--two-line[data-table-collapsable='7'] .table-collapsable__wrapper {
  max-height: 401.33px;
}

.table-collapsable--two-line[data-table-collapsable='8'] .table-collapsable__wrapper {
  max-height: 457.52px;
}

.table-collapsable--plain .table-collapsable__wrapper {
  border: 0;
  border-radius: 0;
}

.table-collapsable--small[data-table-collapsable='3'] .table-collapsable__wrapper {
  max-height: 141px;
}

.table-collapsable--small[data-table-collapsable='4'] .table-collapsable__wrapper {
  max-height: 191px;
}

.table-collapsable--small[data-table-collapsable='5'] .table-collapsable__wrapper {
  max-height: 241px;
}

.table-collapsable--small[data-table-collapsable='6'] .table-collapsable__wrapper {
  max-height: 291px;
}

.table-collapsable--small[data-table-collapsable='7'] .table-collapsable__wrapper {
  max-height: 341px;
}

.table-collapsable--small[data-table-collapsable='8'] .table-collapsable__wrapper {
  max-height: 391px;
}

.entry {
  line-height: 1.6;
}

.entry .alignleft,
.entry img.alignleft {
  margin-right: 1.875rem;
  display: inline;
  float: left;
}

@media screen and (min-width: 48rem) {
  .entry .alignleft,
  .entry img.alignleft {
    margin-right: calc(6.94444vw - 1.45833rem);
  }
}

@media screen and (min-width: 75rem) {
  .entry .alignleft,
  .entry img.alignleft {
    margin-right: 3.75rem;
  }
}

.entry .alignright,
.entry img.alignright {
  margin-left: 1.875rem;
  display: inline;
  float: right;
}

@media screen and (min-width: 48rem) {
  .entry .alignright,
  .entry img.alignright {
    margin-left: calc(6.94444vw - 1.45833rem);
  }
}

@media screen and (min-width: 75rem) {
  .entry .alignright,
  .entry img.alignright {
    margin-left: 3.75rem;
  }
}

.entry .aligncenter,
.entry img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.entry .alignnone,
.entry img.alignnone {
  /* not sure about this one */
}

@media (max-width: 767px) {
  .entry img[class*='align'] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    height: auto !important;
  }
}

.entry img[class*='align']:first-child {
  margin-top: 0;
}

.entry .wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.entry .wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.entry .wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.entry .wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

.entry--article p {
  font-family: "Source Serif 4", "Inter", sans-serif !important;
  font-size: 1rem !important;
}

@media (min-width: 62rem) {
  .entry--article p {
    font-size: 1.125rem !important;
  }
}

@media (min-width: 62rem) {
  .entry {
    line-height: 1.8;
    color: #1e293b;
  }
}

.entry > *:first-child {
  margin-top: 0;
}

.entry > *:last-child {
  margin-bottom: 0;
}

.entry h1 + *,
.entry h2 + *,
.entry h3 + *,
.entry h4 + *,
.entry h5 + *,
.entry h6 + * {
  margin-top: 0 !important;
}

.entry h1,
.entry h2,
.entry h3 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}

@media (min-width: 62rem) {
  .entry h1,
  .entry h2,
  .entry h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}

.entry h4,
.entry h5 {
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 62rem) {
  .entry h4,
  .entry h5 {
    margin-bottom: 1rem;
  }
}

.entry h4 + p,
.entry h5 + p {
  margin-top: 0;
}

@media (min-width: 62rem) {
  .entry p,
  .entry blockquote,
  .entry table,
  .entry .table-responsive {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.entry p:not(.text-style) {
  font-size: inherit;
}

.entry p:not(.text-style) a {
  text-decoration: underline;
}

.entry p:not(.text-style) a:hover {
  text-decoration: none;
}

.entry p:not(.text-style) span[style*='background'] {
  background-color: #edeee6 !important;
  padding: 0 0.1875rem;
}

.entry img:not(.card__image-item) {
  max-width: 100%;
  height: auto;
}

.entry strong,
.entry b {
  font-weight: 600;
  color: #000;
}

.entry img:not(.card__image-item) {
  max-width: 100%;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.entry img:not(.card__image-item):not([data-src]) {
  height: auto;
}

.entry blockquote {
  padding-left: 1rem;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: #1f2937;
  font-weight: 600;
  text-align: left;
  border-left: 2px solid #286cf6;
  margin-left: 0;
  line-height: 1.7;
}

@media screen and (min-width: 48rem) {
  .entry blockquote {
    padding-left: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .entry blockquote {
    padding-left: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .entry blockquote {
    font-size: calc(0.46296vw + 0.90278rem);
  }
}

@media screen and (min-width: 75rem) {
  .entry blockquote {
    font-size: 1.25rem;
  }
}

.entry blockquote p {
  font-size: inherit !important;
}

.entry blockquote small {
  font-size: 0.875rem;
  margin-top: 1rem;
  display: block;
  font-weight: 500;
  color: #4b5563;
}

@media screen and (min-width: 48rem) {
  .entry blockquote small {
    font-size: calc(0.46296vw + 0.65278rem);
  }
}

@media screen and (min-width: 75rem) {
  .entry blockquote small {
    font-size: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .entry blockquote small {
    margin-top: calc(3.57143vw - 0.71429rem);
  }
}

@media screen and (min-width: 90rem) {
  .entry blockquote small {
    margin-top: 2.5rem;
  }
}

.entry blockquote small strong {
  font-weight: bold;
  color: #286cf6;
  display: block;
  margin-bottom: 0.25rem;
}

.entry code {
  vertical-align: bottom;
}

.entry ul:not(.list) {
  padding-left: 0;
  list-style: none;
}

.entry ul:not(.list) li {
  position: relative;
  padding-left: 1.5625rem;
}

.entry ul:not(.list) li:before {
  content: '';
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 0.75rem;
  border-radius: 50%;
}

.entry ul:not(.list),
.entry ol:not(.list) {
  margin-left: 1rem;
}

.entry ul:not(.list) li,
.entry ol:not(.list) li {
  margin-left: 0;
}

.entry ul:not(.list) li + li,
.entry ol:not(.list) li + li {
  margin-top: 0.625rem;
}

.entry ul:not(.list) ul,
.entry ul:not(.list) ol,
.entry ol:not(.list) ul,
.entry ol:not(.list) ol {
  margin-top: 0.5rem;
}

.entry ul:not(.list) ul li + li,
.entry ul:not(.list) ol li + li,
.entry ol:not(.list) ul li + li,
.entry ol:not(.list) ol li + li {
  margin-top: 0.25rem;
}

.entry .lead {
  font-size: 1.414rem;
}

.entry .hug {
  margin-top: 0;
}

.entry iframe {
  max-width: 100%;
}

.entry .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.entry .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry--small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.entry--small ul:not(.list) li {
  line-height: 1.25rem;
}

.entry--small ul:not(.list) li::before {
  top: 0.40625rem;
}

.entry--seo {
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (min-width: 62rem) {
  .entry--seo p {
    line-height: 1.5rem;
  }
}

.entry--seo ul:not(.list) li {
  line-height: 1.25rem;
}

.entry--seo ul:not(.list) li::before {
  top: 0.40625rem;
}

.entry--seo h1,
.entry--seo h2,
.entry--seo h3,
.entry--seo h4,
.entry--seo h5,
.entry--seo h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.entry--seo h1,
.entry--seo h2,
.entry--seo h3,
.entry--seo h4 {
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (min-width: 48rem) {
  .entry--seo h1,
  .entry--seo h2,
  .entry--seo h3,
  .entry--seo h4 {
    font-size: calc(0.46296vw + 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .entry--seo h1,
  .entry--seo h2,
  .entry--seo h3,
  .entry--seo h4 {
    font-size: 1.125rem;
  }
}

.map {
  height: 15rem;
  overflow: hidden;
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  background-color: #f3f4f6;
  z-index: 1;
}

@media screen and (min-width: 48rem) {
  .map {
    height: calc(37.03704vw - 2.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .map {
    height: 25rem;
  }
}

.map--small {
  height: initial;
  min-height: 10rem;
}

.map--medium {
  height: 15rem;
}

@media screen and (min-width: 48rem) {
  .map--medium {
    height: calc(27.08333vw + 2rem);
  }
}

@media screen and (min-width: 75rem) {
  .map--medium {
    height: 22.3125rem;
  }
}

.map:not(.map--full) {
  border-radius: 0.375rem;
}

.map-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 2;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.map-wrapper .map {
  z-index: 1;
}

.map-banner {
  transition: 0.3s background-color;
  position: absolute !important;
  left: 50%;
  max-width: 96%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  bottom: 1rem;
  z-index: 4;
  margin: 0;
  background-color: #1e295b;
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .map-banner {
    display: none;
  }
}

.map-banner__icon {
  font-size: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.map-banner:hover {
  background-color: #286cf6;
  color: #fff;
}

.map__item {
  height: 13.75rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

@media screen and (min-width: 48rem) {
  .map__item {
    height: calc(41.66667vw - 6.25rem);
  }
}

@media screen and (min-width: 75rem) {
  .map__item {
    height: 25rem;
  }
}

.map__loader {
  position: absolute;
  background-color: transparent;
}

.map__search {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 3;
}

@media (min-width: 36rem) {
  .map__search {
    right: initial;
    max-width: 17.5rem;
    width: 100%;
  }
}

@media (min-width: 62rem) {
  .map__search {
    top: 1rem;
    left: 1rem;
  }
}

.map .map__item {
  height: 100%;
}

.map:not([data-magicmap]) .gm-bundled-control .gmnoprint > div {
  width: 35px !important;
  height: auto !important;
  border-radius: 6px !important;
  box-shadow: 0 20px 40px rgba(15, 23, 80, 0.1) !important;
}

.map:not([data-magicmap]) .gm-bundled-control.gm-bundled-control-on-bottom {
  margin: 0 !important;
  right: 20px !important;
  bottom: 20px !important;
}

.map:not([data-magicmap]) .gm-bundled-control.gm-bundled-control-on-bottom .gmnoprint {
  position: initial !important;
}

.map:not([data-magicmap]) .gm-bundled-control.gm-bundled-control-on-bottom .gm-control-active {
  margin: 0 !important;
  border-radius: 0 !important;
}

.map:not([data-magicmap]) .gm-control-active {
  width: 35px !important;
  height: 35px !important;
  font-size: 1rem;
  border-radius: 6px !important;
}

.map:not([data-magicmap]) .gm-control-active img {
  width: 1em !important;
  height: 1em !important;
}

.map:not([data-magicmap]) .gm-control-active img:nth-child(1) {
  -webkit-filter: invert(49%) sepia(8%) saturate(1267%) hue-rotate(194deg) brightness(91%) contrast(86%);
  filter: invert(49%) sepia(8%) saturate(1267%) hue-rotate(194deg) brightness(91%) contrast(86%);
}

.map:not([data-magicmap]) .gm-fullscreen-control {
  margin: 20px !important;
}

.map.mp-map:not(.map--fill) {
  height: 15rem;
}

@media screen and (min-width: 48rem) {
  .map.mp-map:not(.map--fill) {
    height: calc(37.03704vw - 2.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .map.mp-map:not(.map--fill) {
    height: 25rem;
  }
}

.map.mp-map:not(.map--fill).map--medium {
  height: 15rem;
}

@media screen and (min-width: 48rem) {
  .map.mp-map:not(.map--fill).map--medium {
    height: calc(27.08333vw + 2rem);
  }
}

@media screen and (min-width: 75rem) {
  .map.mp-map:not(.map--fill).map--medium {
    height: 22.3125rem;
  }
}

.map--fill {
  min-height: 15rem;
  height: auto;
}

.map--rounded {
  border-radius: 0.75rem;
}

@media (max-width: 767px) {
  .map:hover .map__info {
    opacity: 0;
    visibility: hidden;
  }
}

div.gmnoprint[title='I might be here'] {
  -moz-animation: pulse 1.5s ease-in-out infinite;
  border: 1pt solid #fff;
  /* make a circle */
  border-radius: 51px;
  box-shadow: inset 0 0 5px #06f, inset 0 0 5px #06f, inset 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f;
  /* set the ring's new dimension and re-center it */
  height: 51px !important;
  margin: -18px 0 0 -18px;
  width: 51px !important;
}

.social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.social__item-link {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow, border-color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  color: #64748b;
  background-color: transparent;
  width: 4rem;
  height: 4rem;
  font-size: 1rem;
}

@media screen and (min-width: 48rem) {
  .social__item-link {
    width: calc(10.64815vw - 1.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .social__item-link {
    width: 6.875rem;
  }
}

@media screen and (min-width: 48rem) {
  .social__item-link {
    height: calc(5.55556vw + 1.33333rem);
  }
}

@media screen and (min-width: 75rem) {
  .social__item-link {
    height: 5.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .social__item-link {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .social__item-link {
    font-size: 1.25rem;
  }
}

.social__item-link:hover {
  background-color: #fff;
  color: #286cf6;
  box-shadow: 0px 94px 118px rgba(7, 7, 62, 0.04);
}

.social--inline {
  margin: 0;
}

.social--inline .social__item {
  padding: 0;
}

.social--inline .social__item + .social__item {
  margin-left: 1.25rem;
}

@media screen and (min-width: 48rem) {
  .social--inline .social__item + .social__item {
    margin-left: calc(2.31481vw + 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .social--inline .social__item + .social__item {
    margin-left: 1.875rem;
  }
}

.social--inline .social__item-link {
  width: auto;
  height: auto;
  border-radius: initial;
  background-color: initial;
  font-size: 1.5rem;
}

.social--inline .social__item-link:hover {
  background-color: initial;
  color: #286cf6;
}

.social--bordered .social__item-link {
  background-color: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 0;
  color: #334155;
}

.social--bordered .social__item-link:hover {
  background-color: #fff;
  border-color: transparent;
}

.social--centered {
  -ms-flex-pack: center;
  justify-content: center;
}

.social--small {
  margin: -0.375rem;
}

.social--small .social__item {
  padding: 0.375rem;
}

.social--small .social__item-link {
  padding: 0.5rem;
  font-size: 1.25rem;
  width: 2.5rem;
  border-radius: 0.5rem;
  height: 2.5rem;
}

.box .social.social--bordered .social__item-link:hover {
  background-color: #286cf6;
  color: #fff;
}

.box {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 0.75rem;
  background-color: #fff;
  min-width: 0;
}

@media screen and (min-width: 48rem) {
  .box {
    padding-left: calc(5.55556vw - 1.66667rem);
    padding-right: calc(5.55556vw - 1.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .box {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .box {
    padding-top: calc(3.7037vw - 0.27778rem);
    padding-bottom: calc(3.7037vw - 0.27778rem);
  }
}

@media screen and (min-width: 75rem) {
  .box {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.box:not(.box--no-border) {
  border: 1px solid #e2e8f0;
}

.box__title,
.box__header {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .box__title,
  .box__header {
    margin-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__title,
  .box__header {
    margin-bottom: 2rem;
  }
}

.box__header .box__title {
  margin-bottom: 0;
}

.box__header--seperated {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .box__header--seperated {
    padding-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__header--seperated {
    padding-bottom: 2rem;
  }
}

.box__header--row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 2.5rem;
  padding-bottom: 0 !important;
}

.box__header--row .box__title {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.box__header--row .box__toolbar {
  margin-left: 1rem;
}

.box__header .box__tab:not(:first-child) {
  margin-top: 0.75rem;
}

.box__header-input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 48rem) {
  .box__header-input {
    min-width: 8.75rem;
  }
}

.box__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.box__title-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .box__title-icon {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__title-icon {
    font-size: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .box__title-icon {
    margin-right: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__title-icon {
    margin-right: 0.75rem;
  }
}

.box__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.box__toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .box__toolbar {
    position: relative;
  }
}

.box__seperator {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: auto;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .box__seperator {
    margin-top: calc(1.85185vw + 0.61111rem);
    margin-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__seperator {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .box__seperator {
    margin-left: calc(-5.55556vw + 1.66667rem);
    margin-right: calc(-5.55556vw + 1.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__seperator {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .box__seperator {
    margin-top: calc(3.7037vw - 0.27778rem);
    margin-bottom: calc(3.7037vw - 0.27778rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__seperator {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.box__table {
  margin-left: -1rem;
  margin-right: -1rem;
}

@media screen and (min-width: 48rem) {
  .box__table {
    margin-left: calc(-5.55556vw + 1.66667rem);
    margin-right: calc(-5.55556vw + 1.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__table {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}

.box__table table th:first-child,
.box__table table td:first-child {
  padding-left: 1rem;
}

@media screen and (min-width: 48rem) {
  .box__table table th:first-child,
  .box__table table td:first-child {
    padding-left: calc(5.55556vw - 1.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__table table th:first-child,
  .box__table table td:first-child {
    padding-left: 2.5rem;
  }
}

.box__table table th:last-child,
.box__table table td:last-child,
.box__table table.dataTable thead > tr > th.sorting:last-child,
.box__table table.dataTable thead > tr > th.sorting_asc:last-child,
.box__table table.dataTable thead > tr > th.sorting_desc:last-child,
.box__table table.dataTable thead > tr > th.sorting_asc_disabled:last-child,
.box__table table.dataTable thead > tr > th.sorting_desc_disabled:last-child,
.box__table table.dataTable thead > tr > td.sorting:last-child,
.box__table table.dataTable thead > tr > td.sorting_asc:last-child,
.box__table table.dataTable thead > tr > td.sorting_desc:last-child,
.box__table table.dataTable thead > tr > td.sorting_asc_disabled:last-child,
.box__table table.dataTable thead > tr > td.sorting_desc_disabled:last-child {
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .box__table table th:last-child,
  .box__table table td:last-child,
  .box__table table.dataTable thead > tr > th.sorting:last-child,
  .box__table table.dataTable thead > tr > th.sorting_asc:last-child,
  .box__table table.dataTable thead > tr > th.sorting_desc:last-child,
  .box__table table.dataTable thead > tr > th.sorting_asc_disabled:last-child,
  .box__table table.dataTable thead > tr > th.sorting_desc_disabled:last-child,
  .box__table table.dataTable thead > tr > td.sorting:last-child,
  .box__table table.dataTable thead > tr > td.sorting_asc:last-child,
  .box__table table.dataTable thead > tr > td.sorting_desc:last-child,
  .box__table table.dataTable thead > tr > td.sorting_asc_disabled:last-child,
  .box__table table.dataTable thead > tr > td.sorting_desc_disabled:last-child {
    padding-right: calc(5.55556vw - 1.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__table table th:last-child,
  .box__table table td:last-child,
  .box__table table.dataTable thead > tr > th.sorting:last-child,
  .box__table table.dataTable thead > tr > th.sorting_asc:last-child,
  .box__table table.dataTable thead > tr > th.sorting_desc:last-child,
  .box__table table.dataTable thead > tr > th.sorting_asc_disabled:last-child,
  .box__table table.dataTable thead > tr > th.sorting_desc_disabled:last-child,
  .box__table table.dataTable thead > tr > td.sorting:last-child,
  .box__table table.dataTable thead > tr > td.sorting_asc:last-child,
  .box__table table.dataTable thead > tr > td.sorting_desc:last-child,
  .box__table table.dataTable thead > tr > td.sorting_asc_disabled:last-child,
  .box__table table.dataTable thead > tr > td.sorting_desc_disabled:last-child {
    padding-right: 2.5rem;
  }
}

.box__table table th:last-child:before,
.box__table table th:last-child:after,
.box__table table td:last-child:before,
.box__table table td:last-child:after,
.box__table table.dataTable thead > tr > th.sorting:last-child:before,
.box__table table.dataTable thead > tr > th.sorting:last-child:after,
.box__table table.dataTable thead > tr > th.sorting_asc:last-child:before,
.box__table table.dataTable thead > tr > th.sorting_asc:last-child:after,
.box__table table.dataTable thead > tr > th.sorting_desc:last-child:before,
.box__table table.dataTable thead > tr > th.sorting_desc:last-child:after,
.box__table table.dataTable thead > tr > th.sorting_asc_disabled:last-child:before,
.box__table table.dataTable thead > tr > th.sorting_asc_disabled:last-child:after,
.box__table table.dataTable thead > tr > th.sorting_desc_disabled:last-child:before,
.box__table table.dataTable thead > tr > th.sorting_desc_disabled:last-child:after,
.box__table table.dataTable thead > tr > td.sorting:last-child:before,
.box__table table.dataTable thead > tr > td.sorting:last-child:after,
.box__table table.dataTable thead > tr > td.sorting_asc:last-child:before,
.box__table table.dataTable thead > tr > td.sorting_asc:last-child:after,
.box__table table.dataTable thead > tr > td.sorting_desc:last-child:before,
.box__table table.dataTable thead > tr > td.sorting_desc:last-child:after,
.box__table table.dataTable thead > tr > td.sorting_asc_disabled:last-child:before,
.box__table table.dataTable thead > tr > td.sorting_asc_disabled:last-child:after,
.box__table table.dataTable thead > tr > td.sorting_desc_disabled:last-child:before,
.box__table table.dataTable thead > tr > td.sorting_desc_disabled:last-child:after {
  right: 1.5rem;
}

.box__table .table-controls {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .box__table .table-controls {
    padding-left: calc(5.55556vw - 1.66667rem);
    padding-right: calc(5.55556vw - 1.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__table .table-controls {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.box__tooltip {
  transition: 0.3s color;
  display: -ms-flexbox;
  display: flex;
  border: 0;
  background-color: transparent;
  outline: none;
  color: #94a3b8;
  font-size: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.box__tooltip:hover {
  color: #020617;
}

.box__dimensions {
  padding: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f1f5f9;
  border-radius: 0.375rem;
}

@media screen and (min-width: 48rem) {
  .box__dimensions {
    padding: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__dimensions {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .box__dimensions {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.box__dimensions-image {
  width: 11.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .box__dimensions-image {
    width: calc(4.62963vw + 9.02778rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__dimensions-image {
    width: 12.5rem;
  }
}

.box__dimensions-prop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: 0.75rem;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (min-width: 48rem) {
  .box__dimensions-prop {
    margin-left: calc(6.48148vw - 2.36111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box__dimensions-prop {
    margin-left: 2.5rem;
  }
}

@media (max-width: 575px) {
  .box__dimensions-prop {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: -0.25rem -0.375rem;
    padding-top: 1rem;
  }
}

@media (max-width: 575px) {
  .box__dimensions-prop-item {
    margin: 0.25rem 0.375rem;
    padding: 0.25rem 0.75rem;
  }
}

@media (min-width: 36rem) {
  .box__dimensions-prop-item:not(:first-child) {
    margin-top: 0.75rem;
  }
}

.box__tab {
  display: -ms-flexbox;
  display: flex;
  background-color: #f1f5f9;
  border-radius: 0.375rem;
  padding: 0.375rem;
  font-size: 0.875rem;
}

.box__tab--scrollable {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.box__tab--scrollable .box__tab-item {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 62rem) {
  .box__tab--scrollable .box__tab-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.box__tab-item {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 2.5rem;
  min-height: 2.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  color: #475569;
  padding: 0.25rem 0.5rem;
  font-weight: 500;
  outline: none;
  border: 0;
  margin-right: 0.25rem;
}

.box__tab-item:last-child {
  margin-right: 0;
}

.box__tab-item:hover:not(.is-active) {
  background-color: #e2e8f0;
  color: #020617;
}

.box__tab-item.is-active {
  background-color: #fff;
  color: #020617;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.box__tab-item-label {
  margin-left: 0.5rem;
}

@media (min-width: 36rem) {
  .box__tab-item-label {
    display: none;
  }
}

.box__tab-item-icon {
  font-size: 1.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.box__tab--view {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.box__tab--view .box__tab-item {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.box__inline-title {
  border-left: 0.125rem solid #ff7e05;
  padding-left: 0.5rem;
  margin-bottom: 0.75rem;
}

.box__map-lock {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
}

.box__map-lock-image {
  width: 100%;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.box__map-lock::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.box__map-lock-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.box__map-lock-button--bottom {
  top: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 2rem;
}

.box .entry {
  line-height: 1.5;
}

@media (min-width: 62rem) {
  .box .entry {
    line-height: 1.5rem;
  }
}

.box .entry:not(.entry--normal) strong {
  font-weight: 500;
}

.box--bordered {
  border: 1px solid #e2e8f0;
}

.box--bordered-full {
  border-left: 0;
  border-right: 0;
}

.box--small {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 48rem) {
  .box--small {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .box--small {
    padding-top: calc(0.92593vw + 0.80556rem);
    padding-bottom: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.box--small .box__header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 62rem) {
  .box--small .box__title-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
  }
}

.box--small .box__seperator {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 48rem) {
  .box--small .box__seperator {
    margin-left: calc(-1.85185vw - 0.11111rem);
    margin-right: calc(-1.85185vw - 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small .box__seperator {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .box--small .box__seperator {
    margin-top: calc(0.92593vw + 0.80556rem);
    margin-bottom: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small .box__seperator {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.box--small .box__table {
  margin-left: -1rem;
  margin-right: -1rem;
}

@media screen and (min-width: 48rem) {
  .box--small .box__table {
    margin-left: calc(-1.85185vw - 0.11111rem);
    margin-right: calc(-1.85185vw - 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small .box__table {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.box--small .box__table table th:first-child,
.box--small .box__table table td:first-child {
  padding-left: 1rem;
}

@media screen and (min-width: 48rem) {
  .box--small .box__table table th:first-child,
  .box--small .box__table table td:first-child {
    padding-left: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small .box__table table th:first-child,
  .box--small .box__table table td:first-child {
    padding-left: 1.5rem;
  }
}

.box--small .box__table table th:last-child,
.box--small .box__table table td:last-child {
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .box--small .box__table table th:last-child,
  .box--small .box__table table td:last-child {
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small .box__table table th:last-child,
  .box--small .box__table table td:last-child {
    padding-right: 1.5rem;
  }
}

.box--small .box__table .table-controls {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .box--small .box__table .table-controls {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--small .box__table .table-controls {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.box--small .entry ul,
.box--small .entry ol {
  font-size: 0.875rem;
}

.box--small .entry .list__item + .list__item {
  margin-top: 0.5rem;
}

.box--xsmall {
  padding: 1rem;
}

.box--xsmall .box__title-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.box--shadowed {
  border-color: transparent;
  box-shadow: 0px 52px 72px -16px rgba(82, 82, 82, 0.08);
  border-radius: 0.75rem;
}

.box--large {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .box--large {
    padding-left: calc(9.25926vw - 3.44444rem);
    padding-right: calc(9.25926vw - 3.44444rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--large {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .box--large {
    padding-top: calc(7.40741vw - 2.05556rem);
    padding-bottom: calc(7.40741vw - 2.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--large {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.box--background-white {
  background-color: #fff;
  border: 0;
}

.box--background-red {
  background-color: #ffedeb;
  border: 0;
}

.box--background-red .box__title {
  color: #d03c12;
}

.box--background-gray {
  background-color: #f1f5f9;
  border: 0;
}

.box--background-gray .table,
.box--background-gray .entry table,
.entry .box--background-gray table {
  border: 0;
}

.box--background-gray-2 {
  background-color: #e2e8f0;
  border: 0;
}

.box--background-green {
  background-color: #ebfff2;
  border: 0;
}

.box--background-green .box__title {
  color: #035737;
}

.box--background-green .card--info .card__icon,
.box--background-green .card--info .card__subtitle {
  color: #14b84b;
}

.box--background-primary {
  background-color: #eff4fa;
  border: 0;
}

.box--background-orange {
  background-color: rgba(237, 180, 91, 0.12);
  border: 0;
}

.box--background-dark {
  background-color: #020617;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
}

.box--background-dark h1,
.box--background-dark h2,
.box--background-dark h3,
.box--background-dark h4,
.box--background-dark h5,
.box--background-dark h6 {
  color: #fff;
}

@media (max-width: 767px) {
  .box--plain-mobile {
    padding: 0 !important;
    border-width: 0 !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 767px) {
  .box--plain-mobile:not(.box--plain-mobile--background) {
    background-color: transparent !important;
  }
}

@media (max-width: 767px) {
  .box--plain-mobile--bordered {
    border-top-width: 1px !important;
    border-bottom-width: 1px !important;
    padding: 2rem 1.25rem !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .box--plain-mobile--bordered + .box--plain-mobile--bordered {
    border-top-width: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .box--plain-mobile--bordered .box__header {
    margin-top: -1rem;
  }
}

@media (max-width: 767px) {
  .box--plain-mobile--bordered:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 991px) {
  .box--plain-mobile--background {
    padding: 2rem 1.25rem !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
    border-radius: 0;
  }
}

.box--secret {
  min-height: 16.25rem;
}

.box--lock .box__content {
  min-height: 10.625rem;
}

.box--no-radius {
  border-radius: 0;
}

@supports (position: sticky) {
@media (min-width: 62rem) {
    .box--sticky {
      top: 1.5rem;
      position: sticky;
      z-index: 20;
    }
}
}

.box--hidden {
  position: relative;
  overflow: hidden;
}

.box--merge {
  border-radius: 0;
}

.box--merge:first-child {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.box--merge:last-child {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.box--merge + .box--merge {
  border-top: 1px solid #ececf1;
}

.box--preview {
  padding: 1rem 1.25rem;
  background-color: #f1f5f9;
  border: 0 !important;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
}

.box--preview .box__icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.75rem;
  font-size: 1.5rem;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  background-color: #fff;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .box--preview .box__icon-wrapper {
    width: calc(1.85185vw + 1.61111rem);
    height: calc(1.85185vw + 1.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--preview .box__icon-wrapper {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .box--preview .box__icon-wrapper {
    margin-right: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--preview .box__icon-wrapper {
    margin-right: 1.25rem;
  }
}

@media screen and (min-width: 48rem) {
  .box--preview .box__icon-wrapper {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .box--preview .box__icon-wrapper {
    font-size: 2rem;
  }
}

.box--preview .box__icon-wrapper .box__icon {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.box--preview .box__content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.box--preview .box__price {
  margin-left: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .box.is-active {
    background-color: rgba(239, 244, 250, 0.3);
  }
}

@media (min-width: 62rem) {
  .box.is-active {
    background-color: rgba(239, 244, 250, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(40, 108, 246, 0.15);
  }
}

.box.is-active .file__label {
  background-color: #fff;
}

.box.is-active .file__label:hover {
  background-color: #f1f5f9;
}

.box.is-opacity {
  opacity: 0.6;
}

.accordion {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  /*@include breakpoint-up('large') {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: masonry;
    grid-gap: rem(24px) rem(40px);
    align-items: flex-start;
  }*/
}

.accordion__item {
  transition-duration: 0.3s;
  transition-property: background-color, box-shadow, padding, margin, border-color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 0.375rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .accordion__item {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion__item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.accordion__item + .accordion__item {
  margin-top: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .accordion__item + .accordion__item {
    margin-top: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion__item + .accordion__item {
    margin-top: 1rem;
  }
}

.accordion__item-toggle {
  transition: 0.3s color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: left;
  color: #020617;
  line-height: 1.5;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.accordion__item-toggle-label {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.accordion__item-toggle-label-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #286cf6;
  margin-right: 0.75rem;
}

.accordion__item-toggle-label--icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.accordion__item-toggle-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

@media screen and (min-width: 48rem) {
  .accordion__item-toggle {
    padding-left: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion__item-toggle {
    padding-left: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion__item-toggle {
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion__item-toggle {
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion__item-toggle {
    margin-left: calc(-1.85185vw - 0.11111rem);
    margin-right: calc(-1.85185vw - 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion__item-toggle {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.accordion__item-toggle:hover {
  color: #020617;
}

.accordion__item-toggle::before,
.accordion__item-toggle::after {
  transition-duration: 0.3s;
  transition-property: opacity, background-color, -webkit-transform;
  transition-property: opacity, transform, background-color;
  transition-property: opacity, transform, background-color, -webkit-transform;
  content: '';
  width: 0.875rem;
  height: 0.125rem;
  background-color: #286cf6;
  position: absolute;
  right: 0;
  top: 0.5625rem;
  top: 1.5625rem;
  right: 1rem;
}

@media screen and (min-width: 48rem) {
  .accordion__item-toggle::before,
  .accordion__item-toggle::after {
    right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion__item-toggle::before,
  .accordion__item-toggle::after {
    right: 1.5rem;
  }
}

.accordion__item-toggle-icon {
  transition-duration: 0.3s;
  transition-property: color, -webkit-transform;
  transition-property: color, transform;
  transition-property: color, transform, -webkit-transform;
  font-size: 1.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.75rem;
  padding-left: 0;
  padding-right: 0;
  color: #64748b;
}

@media screen and (min-width: 48rem) {
  .accordion__item-toggle-icon {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion__item-toggle-icon {
    font-size: 1.5rem;
  }
}

.accordion__item-toggle::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion__item-content {
  max-height: 0;
  overflow: hidden;
  box-sizing: content-box;
}

.accordion__item-content * {
  box-sizing: border-box;
}

.accordion__item.is-animate .accordion__item-content {
  transition-duration: 0.4s;
  transition-property: max-height, padding-top, margin-top, border-color;
}

.accordion__item:not(.is-active):not(.is-opened):hover {
  background-color: #f3f4f6;
}

.accordion__item.is-active,
.accordion__item.is-opened {
  background-color: #f3f4f6;
  border-color: transparent;
}

.accordion__item.is-active .accordion__item-toggle,
.accordion__item.is-opened .accordion__item-toggle {
  color: #020617;
}

.accordion__item.is-active .accordion__item-toggle::before,
.accordion__item.is-active .accordion__item-toggle::after,
.accordion__item.is-opened .accordion__item-toggle::before,
.accordion__item.is-opened .accordion__item-toggle::after {
  background-color: #6b7280;
}

.accordion__item.is-active .accordion__item-toggle::before,
.accordion__item.is-opened .accordion__item-toggle::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}

.accordion__item.is-active .accordion__item-toggle::after,
.accordion__item.is-opened .accordion__item-toggle::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion__item.is-active .accordion__item-toggle-icon,
.accordion__item.is-opened .accordion__item-toggle-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: #1e293b;
}

.accordion__item.is-active .accordion__item-content,
.accordion__item.is-opened .accordion__item-content {
  padding-top: 1rem;
  box-sizing: content-box;
}

.accordion__item.is-active .accordion__item-content {
  max-height: initial;
}

.accordion--light .accordion__item:not(.is-active):not(.is-opened) {
  border-color: rgba(148, 163, 184, 0.4);
}

.accordion--light .accordion__item.is-active,
.accordion--light .accordion__item.is-opened {
  background-color: #fff;
  box-shadow: 0px 72px 96px rgba(180, 192, 210, 0.12);
}

.accordion:not(.accordion--icon):not(.accordion--small) .accordion__item-toggle {
  padding-right: 3.6875rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

@media screen and (min-width: 48rem) {
  .accordion:not(.accordion--icon):not(.accordion--small) .accordion__item-toggle {
    padding-right: calc(1.85185vw + 2.79861rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion:not(.accordion--icon):not(.accordion--small) .accordion__item-toggle {
    padding-right: 4.1875rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion:not(.accordion--icon):not(.accordion--small) .accordion__item-toggle {
    margin-left: calc(-1.85185vw - 0.11111rem);
    margin-right: calc(-1.85185vw - 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion:not(.accordion--icon):not(.accordion--small) .accordion__item-toggle {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.accordion--icon .accordion__item-toggle::before,
.accordion--icon .accordion__item-toggle::after {
  content: none;
  display: none;
}

.accordion--large .accordion__item {
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 48rem) {
  .accordion--large .accordion__item {
    border-radius: calc(1.38889vw - 0.29167rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--large .accordion__item {
    border-radius: 0.75rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--large .accordion__item {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--large .accordion__item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--large .accordion__item {
    padding-top: calc(1.85185vw + 0.11111rem);
    padding-bottom: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--large .accordion__item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.accordion--large .accordion__item-toggle {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}

@media screen and (min-width: 48rem) {
  .accordion--large .accordion__item-toggle {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--large .accordion__item-toggle {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--large .accordion__item-toggle {
    margin-left: calc(-1.85185vw - 0.11111rem);
    margin-right: calc(-1.85185vw - 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--large .accordion__item-toggle {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--large .accordion__item-toggle {
    padding-top: calc(1.85185vw + 0.11111rem);
    padding-bottom: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--large .accordion__item-toggle {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--large .accordion__item-toggle {
    margin-top: calc(-1.85185vw - 0.11111rem);
    margin-bottom: calc(-1.85185vw - 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--large .accordion__item-toggle {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
}

.accordion--small .accordion__item {
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 48rem) {
  .accordion--small .accordion__item {
    border-radius: calc(0.92593vw - 0.06944rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--small .accordion__item {
    border-radius: 0.625rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--small .accordion__item {
    padding-left: calc(0vw + 1rem);
    padding-right: calc(0vw + 1rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--small .accordion__item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--small .accordion__item {
    padding-top: calc(0vw + 1rem);
    padding-bottom: calc(0vw + 1rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--small .accordion__item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.accordion--small .accordion__item-toggle {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}

@media screen and (min-width: 48rem) {
  .accordion--small .accordion__item-toggle {
    padding-left: calc(0vw + 1rem);
    padding-right: calc(0vw + 1rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--small .accordion__item-toggle {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--small .accordion__item-toggle {
    margin-left: calc(0vw - 1rem);
    margin-right: calc(0vw - 1rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--small .accordion__item-toggle {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--small .accordion__item-toggle {
    padding-top: calc(0vw + 1rem);
    padding-bottom: calc(0vw + 1rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--small .accordion__item-toggle {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 48rem) {
  .accordion--small .accordion__item-toggle {
    margin-top: calc(0vw - 1rem);
    margin-bottom: calc(0vw - 1rem);
  }
}

@media screen and (min-width: 75rem) {
  .accordion--small .accordion__item-toggle {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}

.accordion--small .accordion__item-content .box {
  padding: 1rem;
  border-radius: 0.375rem;
}

.accordion--gray .accordion__item {
  background-color: #f1f5f9;
  border-color: #f1f5f9;
}

.accordion--gray .accordion__item.is-active,
.accordion--gray .accordion__item.is-opened {
  background-color: #e2e8f0;
  border-color: #e2e8f0;
}

.accordion--gray .accordion__item:not(.is-active):not(.is-opened):hover {
  background-color: #e9edf3;
  border-color: #e9edf3;
}

.accordion--bordered .accordion__item.is-active,
.accordion--bordered .accordion__item.is-opened {
  background-color: transparent;
  border-color: #e2e8f0;
}

.sticky-button {
  transition-duration: 0.3s;
  transition-property: opacity, visibility, background-color, color, -webkit-transform;
  transition-property: opacity, visibility, transform, background-color, color;
  transition-property: opacity, visibility, transform, background-color, color, -webkit-transform;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #286cf6;
  color: #fff;
  box-shadow: 0px 12px 36px rgba(7, 7, 62, 0.09);
  border-radius: 6.25rem;
  position: fixed;
  z-index: 1003;
  padding: 0;
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
  bottom: 4rem;
  right: 1.25rem;
}

@media screen and (min-width: 48rem) {
  .sticky-button {
    width: calc(3.7037vw + 0.22222rem);
    height: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .sticky-button {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .sticky-button {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .sticky-button {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .sticky-button {
    right: calc(2.31481vw + 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .sticky-button {
    right: 1.875rem;
  }
}

.sticky-button + .sticky-button {
  right: 4rem;
}

@media screen and (min-width: 48rem) {
  .sticky-button + .sticky-button {
    right: calc(6.94444vw + 0.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .sticky-button + .sticky-button {
    right: 5.875rem;
  }
}

.sticky-button__icon {
  transition-duration: 0.4s;
  transition-property: color, -webkit-transform;
  transition-property: transform, color;
  transition-property: transform, color, -webkit-transform;
  margin: 0;
}

.sticky-button:hover {
  background-color: #2566e8;
  color: #fff;
  box-shadow: 0 0 0 transparent;
}

.sticky-button--up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.sticky-button--up:hover .sticky-button__icon {
  -webkit-animation: slideArrow 1s infinite;
  animation: slideArrow 1s infinite;
}

.sticky-button--up.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.sticky-button--whatsapp {
  background-color: #24c661;
}

.sticky-button--whatsapp:hover {
  background-color: #15d75e;
}

.is-hidden .sticky-button,
.menu-opened .sticky-button {
  display: none;
}

@-webkit-keyframes slideArrow {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes slideArrow {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.input {
  display: block;
  width: 100%;
  font-family: inherit;
  line-height: inherit;
  border-style: solid;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color, outline-color, box-shadow;
  outline-style: solid;
  background-color: #fff;
  border-color: #e2e8f0;
  color: #1f2937;
  outline-color: transparent;
  height: 48px;
  padding: 1.28571em 1.42857em;
  border-radius: 10px;
  border-width: 1px;
  font-size: 0.875rem;
  outline-width: 0;
  outline-offset: 0;
}

.input[disabled],
.input.is-disabled,
.is-disabled > .input {
  cursor: no-drop;
}

.input::-webkit-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.input:-ms-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.input::-ms-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.input::placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.input:focus {
  border-color: #cbd5e1;
  color: #020617;
  outline-color: #000;
}

.input.is-valid,
.is-valid > .input {
  border-color: #38ba86;
  color: #14b84b;
}

.input.is-invalid,
.is-invalid > .input,
.input.is-error,
.is-error > .input {
  border-color: #e73323;
  color: #e73323;
}

.input[disabled],
.input.is-disabled,
.is-disabled > .input {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: rgba(2, 6, 23, 0.6);
}

.input[disabled]:focus,
.input.is-disabled:focus,
.is-disabled > .input:focus {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: rgba(2, 6, 23, 0.6);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .input {
    font-size: 1rem;
  }
}

@media (min-width: 62rem) {
  .input {
    font-size: 0.875rem;
  }
}

.input--datepicker {
  height: 44px;
  padding: 0.76923em 1.53846em;
  border-radius: 6px;
  border-width: 1px;
  font-size: 0.8125rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNy41NTYiIHZpZXdCb3g9IjAgMCAxNiAxNy41NTYiPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEgMSkiPjxyZWN0IHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgcng9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMS41NTYpIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2JkYzVkMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIi8+PGxpbmUgeTI9IjMuMTExIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4xMTEpIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2JkYzVkMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIi8+PGxpbmUgeTI9IjMuMTExIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjg4OSkiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjYmRjNWQzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiLz48bGluZSB4Mj0iMTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgNi4yMjIpIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2JkYzVkMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIi8+PC9nPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 1.07692em center;
  background-size: 1.23077em 1.23077em;
  outline-width: 0;
  outline-offset: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .input--datepicker {
    font-size: 1rem;
  }
}

@media (min-width: 62rem) {
  .input--datepicker {
    font-size: 0.8125rem;
  }
}

.input--solid {
  border-color: transparent;
  background-color: #f1f5f9;
  color: #1f2937;
}

.input--solid:hover {
  background-color: #eaf0f6;
}

.input--solid:focus {
  background-color: #fff;
}

.input--solid::-webkit-input-placeholder {
  color: #475569;
}

.input--solid:-ms-input-placeholder {
  color: #475569;
}

.input--solid::-ms-input-placeholder {
  color: #475569;
}

.input--solid::placeholder {
  color: #475569;
}

.input--search,
.select2-search__field {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1LjAyNTggMTMuODQ3NUwxOC41OTUgMTcuNDE1OEwxNy40MTU4IDE4LjU5NUwxMy44NDc1IDE1LjAyNThDMTIuNTE5OCAxNi4wOTAyIDEwLjg2ODMgMTYuNjY5MSA5LjE2NjY2IDE2LjY2NjdDNS4wMjY2NiAxNi42NjY3IDEuNjY2NjYgMTMuMzA2NyAxLjY2NjY2IDkuMTY2NjZDMS42NjY2NiA1LjAyNjY2IDUuMDI2NjYgMS42NjY2NiA5LjE2NjY2IDEuNjY2NjZDMTMuMzA2NyAxLjY2NjY2IDE2LjY2NjcgNS4wMjY2NiAxNi42NjY3IDkuMTY2NjZDMTYuNjY5MSAxMC44NjgzIDE2LjA5MDIgMTIuNTE5OCAxNS4wMjU4IDEzLjg0NzVaTTEzLjM1NDIgMTMuMjI5MkMxNC40MTE4IDEyLjE0MTYgMTUuMDAyNCAxMC42ODM3IDE1IDkuMTY2NjZDMTUgNS45NDMzMiAxMi4zODkyIDMuMzMzMzIgOS4xNjY2NiAzLjMzMzMyQzUuOTQzMzIgMy4zMzMzMiAzLjMzMzMyIDUuOTQzMzIgMy4zMzMzMiA5LjE2NjY2QzMuMzMzMzIgMTIuMzg5MiA1Ljk0MzMyIDE1IDkuMTY2NjYgMTVDMTAuNjgzNyAxNS4wMDI0IDEyLjE0MTYgMTQuNDExOCAxMy4yMjkyIDEzLjM1NDJMMTMuMzU0MiAxMy4yMjkyWiIgZmlsbD0iI0MzQzVENSIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: 1.25rem;
  padding-left: 3rem;
}

.input--search.input--small,
.input--small.select2-search__field {
  padding-left: 2.5rem;
  background-position: 0.75rem center;
  background-size: 1rem;
}

.input--code {
  font-size: 0.9375rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
}

@media screen and (min-width: 48rem) {
  .input--code {
    font-size: calc(0.69444vw + 0.60417rem);
  }
}

@media screen and (min-width: 75rem) {
  .input--code {
    font-size: 1.125rem;
  }
}

.input--rounded {
  border-radius: 3.75rem;
}

.input--small {
  height: 2.5rem;
  padding: 0.5rem 1rem;
}

.input--shadowed {
  border-color: transparent;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.input--border-bottom {
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}

.input--border-bottom:focus {
  box-shadow: inset 0 -1px 0 0 #cbd5e1;
}

.input--border-bottom.is-invalid,
.input--border-bottom.is-error,
.input--border-bottom.is-invalid > .input--border-bottom,
.input--border-bottom.is-error > .input--border-bottom {
  box-shadow: inset 0 -1px 0 0 #e73323;
}

.input--number {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

.input--number:focus {
  border: 1px solid #286cf6;
  box-shadow: inset 0 0 0 1px #286cf6;
}

.select,
.select2-selection {
  display: block;
  width: 100%;
  font-family: inherit;
  line-height: inherit;
  border-style: solid;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color, outline-color, box-shadow;
  outline-style: solid;
  background-color: #fff;
  border-color: #e2e8f0;
  color: #1f2937;
  outline-color: transparent;
  height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border-width: 1px;
  font-size: 0.875rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMC41NDYiIGhlaWdodD0iNi4xNzMiIHZpZXdCb3g9IjAgMCAxMC41NDYgNi4xNzMiPjxwYXRoIGQ9Ik02LDlsNCw0LDQtNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQuNzI3IC03LjcyNykiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2JkYzVkMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuOCIvPjwvc3ZnPg==");
  background-position: right 1em center;
  background-size: 0.71429em 0.71429em;
  text-overflow: ellipsis;
  outline-width: 0;
  outline-offset: 0;
  padding-right: 2.75rem;
}

.select[disabled],
.select2-selection[disabled],
.select.is-disabled,
.is-disabled.select2-selection,
.is-disabled > .select,
.is-disabled > .select2-selection {
  cursor: no-drop;
}

.select::-webkit-input-placeholder,
.select2-selection::-webkit-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.select:-ms-input-placeholder,
.select2-selection:-ms-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.select::-ms-input-placeholder,
.select2-selection::-ms-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.select::placeholder,
.select2-selection::placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.select:focus,
.select2-selection:focus {
  border-color: #cbd5e1;
  color: #020617;
  outline-color: #000;
}

.select.is-valid,
.is-valid.select2-selection,
.is-valid > .select,
.is-valid > .select2-selection {
  border-color: #38ba86;
  color: #14b84b;
}

.select.is-invalid,
.is-invalid.select2-selection,
.is-invalid > .select,
.is-invalid > .select2-selection,
.select.is-error,
.is-error.select2-selection,
.is-error > .select,
.is-error > .select2-selection {
  border-color: #e73323;
  color: #e73323;
}

.select[disabled],
.select2-selection[disabled],
.select.is-disabled,
.is-disabled.select2-selection,
.is-disabled > .select,
.is-disabled > .select2-selection {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: rgba(2, 6, 23, 0.6);
}

.select[disabled]:focus,
.select2-selection[disabled]:focus,
.select.is-disabled:focus,
.is-disabled.select2-selection:focus,
.is-disabled > .select:focus,
.is-disabled > .select2-selection:focus {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: rgba(2, 6, 23, 0.6);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .select,
  .select2-selection {
    font-size: 1rem;
  }
}

@media (min-width: 62rem) {
  .select,
  .select2-selection {
    font-size: 0.875rem;
  }
}

.select--rounded {
  border-radius: 6.25rem;
}

.select--rounded + .select2:not(.select2-container--open) .select2-selection {
  border-radius: 6.25rem;
}

.select--small,
.select--small + .select2 .select2-selection {
  height: 2.5rem;
  padding: 0.5rem 1rem;
}

.select--status {
  border: 0;
  height: 22px;
  padding: 0.25rem 0.625rem;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  font-size: 0.8125rem;
  line-height: 1;
}

.select--solid {
  border-color: transparent;
  background-color: #ecf1f7;
  color: #1f2937;
}

.select--solid:hover {
  background-color: #d8e0eb;
}

.select--solid:focus {
  background-color: #fff;
}

.select--solid::-webkit-input-placeholder {
  color: #1f2937;
}

.select--solid:-ms-input-placeholder {
  color: #1f2937;
}

.select--solid::-ms-input-placeholder {
  color: #1f2937;
}

.select--solid::placeholder {
  color: #1f2937;
}

.select[multiple] option:empty,
.select2-selection[multiple] option:empty {
  display: none;
}

.slider {
  min-width: 0;
  position: relative;
}

.slider__navigations {
  margin-bottom: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .slider__navigations {
    margin-bottom: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .slider__navigations {
    margin-bottom: 3rem;
  }
}

.slider__navigations .slider__navigation:not(:first-child) {
  margin-left: 1.5rem;
}

.slider__navigation {
  transition-duration: 0.3s;
  transition-property: background-color, color, opacity, box-shadow;
  background-color: transparent;
  color: #9ca3af;
  font-size: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.slider__navigation:hover {
  color: #1f2937;
}

.slider__navigation--disabled,
.slider__navigation[disabled] {
  color: #9ca3af;
  opacity: 0.5;
  cursor: not-allowed;
}

.slider__navigation--overlay {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(7, 7, 62, 0.09);
  border-radius: 50%;
  font-size: 1.5rem;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
}

@media (max-width: 991px) {
  .slider__navigation--overlay {
    display: none !important;
  }
}

.slider__navigation--overlay.slider__navigation--disabled {
  background-color: #e2e8f0;
  opacity: 1;
}

.slider__navigation--overlay:not(.slider--navigation--disabled) {
  color: #1f2937;
}

.slider__navigation--overlay:not(.slider--navigation--disabled):hover {
  color: #020617;
  box-shadow: 0px 4px 8px rgba(7, 7, 62, 0.16);
}

.slider__navigation--overlay.slider__navigation--prev {
  right: 100%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.slider__navigation--overlay.slider__navigation--next {
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider__pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -0.125rem -0.375rem;
  padding-top: 2.75rem;
}

.slider__pagination-item {
  transition: 0.3s background-color;
  width: 1rem;
  height: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0.125rem 0.375rem;
  position: relative;
  border-radius: 50%;
}

.slider__pagination-item::before {
  transition: 0.3s background-color;
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #94a3b8;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.slider__pagination-item--active {
  background-color: #fff;
}

.slider__pagination-item--active::before {
  background-color: #286cf6;
}

.slider__pagination--dark .slider__pagination-item:not(.slider__pagination-item--active)::before {
  background-color: rgba(2, 6, 23, 0.7) !important;
}

.slider__navigation:not(.is-show),
.slider__pagination:not(.is-show) {
  display: none;
}

.slider__container:not(.swiper-initialized) .slider__wrapper {
  margin: -0.625rem;
  width: initial;
}

@media (min-width: 48rem) {
  .slider__container:not(.swiper-initialized) .slider__wrapper {
    margin: -0.75rem;
  }
}

@media (min-width: 62rem) {
  .slider__container:not(.swiper-initialized) .slider__wrapper {
    margin: -1.25rem;
  }
}

.slider__container:not(.swiper-initialized) .slider__item {
  padding: 0.625rem;
  box-sizing: border-box;
}

@media (min-width: 48rem) {
  .slider__container:not(.swiper-initialized) .slider__item {
    padding: 0.75rem;
  }
}

@media (min-width: 62rem) {
  .slider__container:not(.swiper-initialized) .slider__item {
    padding: 1.25rem;
  }
}

.slider__container.swiper-container-autoheight .slider__dots {
  margin-top: 1.875rem;
  margin-bottom: 0;
}

.slider__wrapper {
  height: initial;
}

.slider__item {
  height: initial;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.slider__item > * {
  box-sizing: border-box;
}

.slider__container .slider__pagination {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 3;
  bottom: 0.75rem;
  padding: 0;
}

.slider__container .slider__pagination .slider__pagination-item {
  margin: 0.1875rem 0;
}

.slider__container .slider__pagination .slider__pagination-item:not(.slider__pagination-item--active)::before {
  background-color: rgba(255, 255, 255, 0.8);
}

.slider[data-slider-grid='2'] .slider__container:not(.swiper-initialized) .slider__item,
.slider [data-slider-grid='2'] .slider__container:not(.swiper-initialized) .slider__item {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 0 !important;
  width: initial !important;
  box-sizing: border-box !important;
}

@media (min-width: 48rem) {
  .slider[data-slider-grid-md='2'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-md='2'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-lg='2'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-lg='2'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-xl='2'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-xl='2'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

.slider[data-slider-grid='3'] .slider__container:not(.swiper-initialized) .slider__item,
.slider [data-slider-grid='3'] .slider__container:not(.swiper-initialized) .slider__item {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  min-width: 0 !important;
  width: initial !important;
  box-sizing: border-box !important;
}

@media (min-width: 48rem) {
  .slider[data-slider-grid-md='3'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-md='3'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-lg='3'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-lg='3'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-xl='3'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-xl='3'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

.slider[data-slider-grid='4'] .slider__container:not(.swiper-initialized) .slider__item,
.slider [data-slider-grid='4'] .slider__container:not(.swiper-initialized) .slider__item {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  min-width: 0 !important;
  width: initial !important;
  box-sizing: border-box !important;
}

@media (min-width: 48rem) {
  .slider[data-slider-grid-md='4'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-md='4'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-lg='4'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-lg='4'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-xl='4'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-xl='4'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

.slider[data-slider-grid='5'] .slider__container:not(.swiper-initialized) .slider__item,
.slider [data-slider-grid='5'] .slider__container:not(.swiper-initialized) .slider__item {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  min-width: 0 !important;
  width: initial !important;
  box-sizing: border-box !important;
}

@media (min-width: 48rem) {
  .slider[data-slider-grid-md='5'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-md='5'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-lg='5'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-lg='5'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 62rem) {
  .slider[data-slider-grid-xl='5'] .slider__container:not(.swiper-initialized) .slider__item,
  .slider [data-slider-grid-xl='5'] .slider__container:not(.swiper-initialized) .slider__item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    min-width: 0 !important;
    width: initial !important;
    box-sizing: border-box !important;
  }
}

.slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__container {
  overflow: visible;
}

.slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__item {
  width: 17.5rem;
}

.slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__container:not(.swiper-initialized) .slider__wrapper {
  margin: -0.75rem;
}

@media screen and (min-width: 48rem) {
  .slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__container:not(.swiper-initialized) .slider__wrapper {
    margin: calc(-1.85185vw + 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__container:not(.swiper-initialized) .slider__wrapper {
    margin: -1.25rem;
  }
}

.slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__container:not(.swiper-initialized) .slider__item {
  box-sizing: content-box;
  padding: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__container:not(.swiper-initialized) .slider__item {
    padding: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .slider[data-slider-grid='auto']:not([data-slider-grid-md]):not([data-slider-grid-lg]) .slider__container:not(.swiper-initialized) .slider__item {
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .slider[data-slider-grid='auto'][data-slider-grid-md]:not([data-slider-grid-lg]):not([data-slider-grid-md='auto']) .slider__container {
    overflow: visible;
  }
}

@media (max-width: 767px) {
  .slider[data-slider-grid='auto'][data-slider-grid-md]:not([data-slider-grid-lg]):not([data-slider-grid-md='auto']) .slider__item {
    width: 17.5rem;
  }
}

@media (max-width: 767px) {
  .slider[data-slider-grid='auto'][data-slider-grid-md]:not([data-slider-grid-lg]):not([data-slider-grid-md='auto']) .slider__container:not(.swiper-initialized) .slider__item {
    box-sizing: content-box;
  }
}

@media (max-width: 991px) {
  .slider[data-slider-grid='auto']:not([data-slider-grid-md='auto']):not([data-slider-grid-lg='auto']) .slider__container {
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .slider[data-slider-grid='auto']:not([data-slider-grid-md='auto']):not([data-slider-grid-lg='auto']) .slider__item {
    width: 17.5rem;
  }
}

@media (max-width: 991px) {
  .slider[data-slider-grid='auto']:not([data-slider-grid-md='auto']):not([data-slider-grid-lg='auto']) .slider__container:not(.swiper-initialized) .slider__item {
    box-sizing: content-box;
  }
}

.slider--thumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  min-width: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .slider--thumb {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}

@media (min-width: 62rem) {
  .slider--thumb {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem 0 0 0.75rem;
    overflow: hidden;
  }
}

.slider--thumb .slider__container {
  width: 100%;
  height: 100%;
}

.slider--thumb .slider__wrapper {
  height: 100%;
}

.slider--thumb .slider__main .slider__container:not(.swiper-initialized) .slider__wrapper,
.slider--thumb .slider__thumb .slider__container:not(.swiper-initialized) .slider__wrapper {
  margin: 0;
}

.slider--thumb .slider__main .slider__container:not(.swiper-initialized) .slider__item,
.slider--thumb .slider__thumb .slider__container:not(.swiper-initialized) .slider__item {
  padding: 0;
}

.slider--thumb .slider__main {
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
  position: relative;
}

.slider--thumb .slider__main .slider__item-image-wrapper {
  padding: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .slider--thumb .slider__main .slider__item-image-wrapper {
    padding: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .slider--thumb .slider__main .slider__item-image-wrapper {
    padding: 3rem;
  }
}

@media (min-width: 48rem) {
  .slider--thumb .slider__main .slider__item-image {
    max-width: 26.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.slider--thumb .slider__thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  min-height: 0;
  border-top: 1px solid #e2e8f0;
}

.slider--thumb .slider__thumb .slider__item-image {
  transition-duration: 0.3s;
  transition-property: background-color, opacity;
  opacity: 1;
  background-color: #f1f5f9;
  cursor: pointer;
}

.slider--thumb .slider__thumb .slider__item-image img {
  width: 74%;
  height: 74%;
  top: 13%;
  left: 13%;
}

.slider--thumb .slider__thumb .slider__item:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  background-color: #e2e8f0;
  z-index: 5;
}

.slider--thumb .slider__thumb .slider__item:not(.is-active) {
  z-index: 2;
}

.slider--thumb .slider__thumb .slider__item:not(.is-active) .slider__item-image {
  opacity: 0.8;
  background-color: transparent;
}

.slider--thumb .slider__navigation {
  transition-duration: 0.3s;
  transition-property: color, background-color, opacity, -webkit-transform;
  transition-property: color, background-color, transform, opacity;
  transition-property: color, background-color, transform, opacity, -webkit-transform;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(7, 7, 62, 0.09);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 5;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #020617;
  opacity: 0;
}

@media screen and (min-width: 48rem) {
  .slider--thumb .slider__navigation {
    width: calc(1.85185vw + 1.61111rem);
    height: calc(1.85185vw + 1.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .slider--thumb .slider__navigation {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .slider--thumb .slider__navigation {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .slider--thumb .slider__navigation {
    font-size: 1.5rem;
  }
}

.slider--thumb .slider__navigation:not(.slider__navigation--disabled):hover {
  background-color: #286cf6;
  color: #fff;
}

.slider--thumb .slider__navigation--prev {
  left: 1rem;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.slider--thumb .slider__navigation--next {
  right: 1rem;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.slider--thumb:hover .slider__navigation {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.slider--thumb:hover .slider__navigation--disabled {
  opacity: 0.7;
}

@media (min-width: 62rem) {
  .slider--thumb.slider--project {
    border: 0;
    border-radius: 0;
  }
}

@media (min-width: 62rem) {
  .slider--thumb.slider--project .slider__main {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
  }
}

.slider--thumb.slider--project .slider__main .slider__item-image-wrapper {
  padding: 0;
}

.slider--thumb.slider--project .slider__main .slider__item-image {
  max-width: initial;
}

@media (min-width: 62rem) {
  .slider--thumb.slider--project .slider__thumb {
    border-top: 0;
    margin-top: 1rem;
  }
}

@media (min-width: 62rem) {
  .slider--thumb.slider--project .slider__thumb .slider__item-image {
    border-radius: 0.375rem;
  }
}

@media (min-width: 62rem) {
  .slider--thumb.slider--project .slider__thumb .slider__item-image img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}

.slider--visible .slider__container {
  overflow: visible;
}

.slider--infinite .slider__wrapper {
  transition-timing-function: linear;
}

.slider-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.textarea {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-style: solid;
  font-family: inherit;
  line-height: inherit;
  overflow: auto;
  resize: vertical;
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color, outline-color, box-shadow;
  outline-style: solid;
  background-color: #fff;
  border-color: #e2e8f0;
  color: #1f2937;
  outline-color: transparent;
  padding: 1.28571em 1.42857em;
  border-radius: 10px;
  border-width: 1px;
  font-size: 0.875rem;
  outline-width: 0;
  outline-offset: 0;
}

.textarea[disabled],
.textarea.is-disabled,
.is-disabled > .textarea {
  cursor: no-drop;
}

.textarea::-webkit-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.textarea:-ms-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.textarea::-ms-input-placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.textarea::placeholder {
  color: rgba(31, 41, 55, 0.7);
}

.textarea:focus {
  border-color: #cbd5e1;
  color: #020617;
  outline-color: #000;
}

.textarea.is-valid,
.is-valid > .textarea {
  border-color: #38ba86;
  color: #14b84b;
}

.textarea.is-invalid,
.is-invalid > .textarea,
.textarea.is-error,
.is-error > .textarea {
  border-color: #e73323;
  color: #e73323;
}

.textarea[disabled],
.textarea.is-disabled,
.is-disabled > .textarea {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: rgba(2, 6, 23, 0.6);
}

.textarea[disabled]:focus,
.textarea.is-disabled:focus,
.is-disabled > .textarea:focus {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: rgba(2, 6, 23, 0.6);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .textarea {
    font-size: 1rem;
  }
}

@media (min-width: 62rem) {
  .textarea {
    font-size: 0.875rem;
  }
}

.checkbox {
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 1.125rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.checkbox__label {
  position: relative;
  padding-left: 1.125rem;
  line-height: 1.125rem;
  font-size: 0.875rem;
}

.checkbox__label:not(:empty) {
  padding-left: 1.875rem;
}

.checkbox__label:not(.text-style--medium):not(.text-style--semi) {
  font-weight: 400;
}

.checkbox__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-width: 1.4px;
  border-style: solid;
  border-color: #e2e8f0;
  background-color: #fff;
  border-radius: 0.25rem;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: background-color, border-color, outline-color;
}

.checkbox__label::after {
  content: '';
  position: absolute;
  font-size: 1.125rem;
  top: 0.33333em;
  left: 0.25em;
  width: 0.5em;
  height: 0.33333em;
  border-bottom: 0.08333em solid transparent;
  border-left: 0.08333em solid transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotate(-45deg) translate(1.5px, -1.5px);
  transform: rotate(-45deg) translate(1.5px, -1.5px);
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
}

.checkbox__label a {
  color: #286cf6 !important;
  text-decoration: underline;
}

.checkbox__label a:hover {
  color: #2566e8 !important;
  text-decoration: none;
}

.checkbox__label strong,
.checkbox__label b {
  color: #020617;
}

.checkbox__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.125rem;
  height: 1.125rem;
  opacity: 0;
  pointer-events: none;
}

.checkbox .checkbox__label:hover::before {
  background-color: #e2e8f0;
  border-color: #cad5e4;
}

.checkbox .checkbox__label:hover::after {
  opacity: 1;
  visibility: visible;
  border-color: #94a3b8;
}

.checkbox .checkbox__input:focus + .checkbox__label::before {
  background-color: #e2e8f0;
  border-color: #cad5e4;
}

.checkbox .checkbox__input:focus + .checkbox__label::after {
  opacity: 1;
  visibility: visible;
  border-color: #94a3b8;
}

.checkbox.is-invalid > .checkbox__input ~ .checkbox__label::before,
.checkbox .checkbox__input.is-invalid ~ .checkbox__label::before {
  background-color: #fff;
  border-color: #d35c5c;
}

.checkbox.is-invalid > .checkbox__input ~ .checkbox__label::after,
.checkbox .checkbox__input.is-invalid ~ .checkbox__label::after {
  border-color: transparent;
}

.checkbox .checkbox__input:checked + .checkbox__label::before {
  background-color: #286cf6;
  border-color: transparent;
}

.checkbox .checkbox__input:checked + .checkbox__label::after {
  opacity: 1;
  visibility: visible;
  border-color: #fff;
}

.checkbox.is-valid > .checkbox__input:checked + .checkbox__label::before,
.checkbox .checkbox__input.is-valid:checked + .checkbox__label::before {
  background-color: #38ba86;
  border-color: #38ba86;
}

.checkbox.is-valid > .checkbox__input:checked + .checkbox__label::after,
.checkbox .checkbox__input.is-valid:checked + .checkbox__label::after {
  border-color: #fff;
}

.checkbox .checkbox__input:disabled + .checkbox__label {
  cursor: no-drop;
}

.checkbox .checkbox__input:disabled + .checkbox__label::before,
.checkbox .checkbox__input:disabled + .checkbox__label::after {
  opacity: 0.5;
}

.checkbox--button .checkbox__label:before,
.checkbox--button .checkbox__label:after {
  display: none;
}

.checkbox--button .checkbox__label {
  padding: 0.25rem 0.625rem;
  min-width: 63px;
  min-height: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.75rem;
  background-color: #fff;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color;
}

.checkbox--button .checkbox__label:hover {
  color: #1f2937;
  border-color: #c0cddf;
}

.checkbox--button .checkbox__input:checked + .checkbox__label {
  background-color: #fff;
  border-color: #cad5e4;
  color: #e04646;
  font-weight: 600;
}

.checkbox--button .checkbox__input:disabled + .checkbox__label {
  opacity: 0.4;
  border: 1px solid #d1d5db;
  background-color: #f3f4f6;
}

.checkbox--color .checkbox__label {
  min-width: 50px;
  height: 30px;
  border-color: #d1d5db;
}

.checkbox--color .checkbox__input:checked + .checkbox__label {
  border-color: #e2e8f0;
}

.checkbox + .checkbox {
  margin-top: 1rem;
}

.checkbox--toggle .checkbox__label {
  padding-left: 2.25rem;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox--toggle .checkbox__label:not(:empty) {
  padding-left: 3rem;
}

.checkbox--toggle .checkbox__label::before {
  transition-duration: 0.3s;
  transition-property: background-color, border-color;
  width: 2.25rem;
  height: 1.25rem;
  background-color: #cbd5e1 !important;
  border-color: transparent !important;
  border-radius: 2.25rem;
  cursor: pointer;
}

.checkbox--toggle .checkbox__label::after {
  transition-duration: 0.3s;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  width: 1rem;
  height: 1rem;
  border: 0.375rem solid #fff !important;
  background-color: #fff !important;
  border-radius: 50%;
  left: 0.125rem;
  top: 0.125rem;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  box-shadow: 0px 4px 8px rgba(119, 118, 127, 0.04);
  cursor: pointer;
}

.checkbox--toggle .checkbox__label:hover::after {
  background-color: #cbd5e1 !important;
}

.checkbox--toggle .checkbox__input:checked ~ .checkbox__label::before {
  background-color: #286cf6 !important;
}

.checkbox--toggle .checkbox__input:checked ~ .checkbox__label::after {
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
  background-color: #286cf6 !important;
}

.checkbox--visibility,
.checkbox--toggle-icon {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox--visibility .checkbox__label,
.checkbox--toggle-icon .checkbox__label {
  padding: 0.5rem;
  min-width: 2rem;
  min-height: 2rem;
  position: relative;
  cursor: pointer;
}

.checkbox--visibility .checkbox__label::before,
.checkbox--visibility .checkbox__label::after,
.checkbox--toggle-icon .checkbox__label::before,
.checkbox--toggle-icon .checkbox__label::after {
  content: none;
}

.checkbox--visibility .checkbox__label-icon,
.checkbox--toggle-icon .checkbox__label-icon {
  font-size: 1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #64748b;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

@media screen and (min-width: 48rem) {
  .checkbox--visibility .checkbox__label-icon,
  .checkbox--toggle-icon .checkbox__label-icon {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .checkbox--visibility .checkbox__label-icon,
  .checkbox--toggle-icon .checkbox__label-icon {
    font-size: 1.25rem;
  }
}

.checkbox--visibility .checkbox__label-icon--on,
.checkbox--toggle-icon .checkbox__label-icon--on {
  display: none;
}

.checkbox--visibility .checkbox__input:checked ~ .checkbox__label .checkbox__label-icon,
.checkbox--toggle-icon .checkbox__input:checked ~ .checkbox__label .checkbox__label-icon {
  opacity: 1;
}

.checkbox--visibility .checkbox__input:checked ~ .checkbox__label .checkbox__label-icon--off,
.checkbox--toggle-icon .checkbox__input:checked ~ .checkbox__label .checkbox__label-icon--off {
  display: none;
}

.checkbox--visibility .checkbox__input:checked ~ .checkbox__label .checkbox__label-icon--on,
.checkbox--toggle-icon .checkbox__input:checked ~ .checkbox__label .checkbox__label-icon--on {
  display: block !important;
}

.checkbox--toggle-icon .checkbox__label-icon {
  opacity: 1;
}

.checkbox--toggle-icon .checkbox__input:checked ~ .checkbox__label .checkbox__label-icon {
  color: #ff7e05 !important;
}

.checkbox--user {
  width: 100%;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox--user .checkbox__label {
  transition-duration: 0.3s;
  transition-property: background-color, border-color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 3.5rem 0.75rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.checkbox--user .checkbox__label::before {
  top: 1.3125rem;
  left: initial;
  right: 1rem;
}

.checkbox--user .checkbox__label::after {
  top: 1.6875rem;
  left: initial;
  right: 1.28125rem;
}

.checkbox--user .checkbox__label-avatar {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  width: 2.625rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.75rem;
  border-radius: 50%;
  background-color: #f4f7fd;
  color: #001ba3;
  box-shadow: 0 0 0 0.1875rem #fff;
}

.checkbox--user .checkbox__label-avatar-letter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-weight: 600;
  font-size: 1rem;
}

.checkbox--user .checkbox__label-content {
  line-height: 1.5;
}

.checkbox--user .checkbox__label-content strong,
.checkbox--user .checkbox__label-content span {
  line-height: inherit;
}

.checkbox--user .checkbox__input:not(:disabled) ~ .checkbox__label:hover,
.checkbox--user .checkbox__input:checked ~ .checkbox__label {
  background-color: #f1f5f9;
  border-color: transparent;
}

.checkbox--user .checkbox__input:not(:disabled):not(:checked) ~ .checkbox__label:hover::before {
  background-color: #fff;
}

.checkbox--user .checkbox__input:not(:checked) ~ .checkbox__label::before {
  background-color: #f1f5f9;
}

.checkbox--user .checkbox__input:checked ~ .checkbox__label .checkbox__label-avatar {
  background-color: #fff !important;
  color: #286cf6;
  box-shadow: 0 0 0 0.1875rem #e2e8f0;
}

.checkbox--user.checkbox--toggle .checkbox__label {
  padding-left: 1rem;
}

.checkbox--user.checkbox--toggle .checkbox__label::after {
  top: 1.4375rem;
  right: 2.125rem;
}

.checkbox--switch .checkbox__label {
  transition-duration: 0.3s;
  transition-property: background-color, border-color;
  width: 2.875rem;
  height: 1.5rem;
  background-color: #e2e8f0;
  border-radius: 1.5rem;
  cursor: pointer;
}

.checkbox--switch .checkbox__label::after {
  display: none;
  content: none;
}

.checkbox--switch .checkbox__label::before {
  transition-duration: 0.3s;
  transition-property: background-color, border-color, -webkit-transform;
  transition-property: transform, background-color, border-color;
  transition-property: transform, background-color, border-color, -webkit-transform;
  position: absolute;
  left: 0.125rem;
  top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #cbd5e1;
  border: 0.4375rem solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 1px 0.5px rgba(41, 41, 41, 0.04), 0 3px 3px -1.5px rgba(41, 41, 41, 0.02), 0 6px 6px -3px rgba(41, 41, 41, 0.04), 0 12px 12px -6px rgba(41, 41, 41, 0.04), 0 24px 24px -12px rgba(41, 41, 41, 0.04), 0 48px 48px -24px rgba(41, 41, 41, 0.04), inset 0 -1px 1px -0.5px rgba(51, 51, 51, 0.06);
}

.checkbox--switch .checkbox__input:checked ~ .checkbox__label {
  background-color: #286cf6;
}

.checkbox--switch .checkbox__input:checked ~ .checkbox__label::before {
  -webkit-transform: translateX(1.375rem);
  transform: translateX(1.375rem);
  background-color: #286cf6;
  border-color: #fff;
}

.checkbox--switch:hover .checkbox__label::before,
.checkbox--switch:focus .checkbox__label::before {
  border-color: #fff;
  background-color: #cbd5e1;
}

.checkbox--switch:hover .checkbox__input:checked ~ .checkbox__label::before,
.checkbox--switch:focus .checkbox__input:checked ~ .checkbox__label::before {
  background-color: #001ba3;
}

.checkbox--switch .checkbox__input:focus ~ .checkbox__label {
  background-color: #cbd5e1;
}

.checkbox--switch .checkbox__input:focus ~ .checkbox__label::before {
  border-color: #fff;
  background-color: #cbd5e1;
}

.checkbox--switch .checkbox__input:checked:focus ~ .checkbox__label {
  background-color: #286cf6;
}

.checkbox--switch .checkbox__input:checked:focus ~ .checkbox__label::before {
  border-color: #fff;
  background-color: #286cf6;
}

.checkbox--switch:active .checkbox__input:not(:checked) ~ .checkbox__label {
  background-color: #cbd5e1;
}

.checkbox--switch:active .checkbox__input:not(:checked) ~ .checkbox__label::before {
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
}

.checkbox--switch:active .checkbox__input:checked ~ .checkbox__label {
  background-color: #001ba3;
}

.checkbox--switch:active .checkbox__input:checked ~ .checkbox__label::before {
  -webkit-transform: translateX(1.375rem) scale(0.92);
  transform: translateX(1.375rem) scale(0.92);
}

.radio {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.radio__label {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-left: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.radio__label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  background-color: #fff;
  border-radius: 1.25rem;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: background-color, border-color, outline-color;
}

.radio__label:after {
  content: '';
  position: absolute;
  font-size: 1.25rem;
  top: 0.25em;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background-color: transparent;
  border-radius: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio__label a {
  color: #286cf6 !important;
  text-decoration: underline;
}

.radio__label a:hover {
  color: #2566e8 !important;
  text-decoration: none;
}

.radio__label strong,
.radio__label b {
  color: #020617;
}

.radio__input {
  position: absolute;
  left: -9999px;
}

.radio .radio__label:hover::before {
  background-color: #e2e8f0;
  border-color: #cad5e4;
}

.radio .radio__label:hover::after {
  opacity: 1;
  visibility: visible;
  background-color: #1f2937;
}

.radio .radio__input:focus + .radio__label::before {
  background-color: #e2e8f0;
  border-color: #cad5e4;
}

.radio .radio__input:focus + .radio__label::after {
  opacity: 1;
  visibility: visible;
  background-color: #1f2937;
}

.radio.is-invalid > .radio__input + .radio__label::before,
.radio .radio__input.is-invalid + .radio__label::before {
  background-color: #fff;
  border-color: #d35c5c;
}

.radio.is-invalid > .radio__input + .radio__label::after,
.radio .radio__input.is-invalid + .radio__label::after {
  opacity: 1;
  visibility: visible;
  background-color: transparent;
}

.radio .radio__input:checked + .radio__label::before {
  background-color: #fff;
  border-color: #cad5e4;
}

.radio .radio__input:checked + .radio__label::after {
  opacity: 1;
  visibility: visible;
  background-color: #286cf6;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.radio .radio__input:checked + .radio__label {
  color: #020617;
}

.radio.is-valid > .radio__input:checked + .radio__label::before,
.radio .radio__input.is-valid:checked + .radio__label::before {
  background-color: #38ba86;
  border-color: #38ba86;
}

.radio.is-valid > .radio__input:checked + .radio__label::after,
.radio .radio__input.is-valid:checked + .radio__label::after {
  opacity: 1;
  visibility: visible;
  background-color: #020617;
}

.radio .radio__input:disabled + .radio__label {
  cursor: no-drop;
}

.radio .radio__input:disabled + .radio__label::before,
.radio .radio__input:disabled + .radio__label::after {
  opacity: 0.5;
}

.radio--block .radio__label {
  transition-duration: 0.3s;
  transition-property: background-color, border-color;
  width: 100%;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  cursor: pointer;
  border-radius: 0.625rem;
  line-height: 1.25rem;
}

@media (min-width: 62rem) {
  .radio--block .radio__label {
    padding-right: 1.5rem;
    padding-left: 3rem;
  }
}

.radio--block .radio__label strong,
.radio--block .radio__label b {
  transition: 0.3s color;
  font-weight: 600;
}

.radio--block .radio__label::before {
  top: 0.75rem;
  left: 0.75rem;
}

@media (min-width: 62rem) {
  .radio--block .radio__label::before {
    left: 1rem;
  }
}

.radio--block .radio__label::after {
  top: 0.85em;
  left: 0.85em;
}

@media (min-width: 62rem) {
  .radio--block .radio__label::after {
    left: 1.05em;
  }
}

.radio--block .radio__input:checked + .radio__label {
  background-color: #e2e8f0;
}

.radio--block .radio__input:checked + .radio__label strong,
.radio--block .radio__input:checked + .radio__label b {
  color: #020617;
}

.radio--answer {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.radio--answer .radio__label {
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
  min-width: 6.25rem;
  min-height: 2.5rem;
  border: 1px solid  #e2e8f0;
  border-radius: 6px;
  padding: 0.3125rem;
  cursor: pointer;
  color: #1e295b;
  background-color: #fff;
}

.radio--answer .radio__label:before,
.radio--answer .radio__label:after {
  content: none;
  display: none;
}

.radio--answer .radio__value {
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.radio--answer .radio__icon {
  transition: 0.3s background-color;
  display: -ms-flexbox;
  display: flex;
  width: 2.5rem;
  height: 1.875rem;
  background-color: #e2e8f0;
  margin-left: auto;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 4px;
}

.radio--answer .radio__icon .icon {
  transition-duration: 0.3s;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio--answer:hover .radio__icon {
  background-color: #585b74;
}

.radio--answer .radio__input:checked + .radio__label {
  border-color: #cad5e4;
}

.radio--answer .radio__input:checked + .radio__label .radio__icon {
  background-color: #14b84b;
}

.radio--answer .radio__input:checked + .radio__label .radio__icon .icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.radio--button .radio__label {
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 1rem;
  color: #1f2937;
  font-size: inherit;
  font-weight: 500;
  width: 100%;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

@media (min-width: 62rem) {
  .radio--button .radio__label {
    padding: 0.75rem 1.5rem;
    min-width: 8.75rem;
    text-align: center;
  }
}

.radio--button .radio__label::before,
.radio--button .radio__label::after {
  content: none;
}

.radio--button .radio__label-icon {
  transition: 0.3s color;
  color: #286cf6;
  font-size: 1.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.radio--button .radio__input:checked ~ .radio__label {
  background-color: #eff4fa;
  border-color: #baccef;
  color: #001ba3;
}

.radio--button .radio__input:not(:checked) ~ .radio__label:hover {
  background-color: #f1f5f9;
  color: #020617;
  border-color: #cbd5e1;
}

.radio--button.radio--small {
  font-size: 0.875rem;
}

.radio--button.radio--small .radio__label {
  min-height: 2.5rem;
  padding: 0.375rem 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.radio--button.radio--xsmall {
  font-size: 0.8125rem;
}

.radio--button.radio--xsmall .radio__label {
  min-height: 2.5rem;
  padding: 0.375rem 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.radio--button.radio--vertical .radio__label {
  padding: 1rem 0.75rem;
  -ms-flex-direction: column;
  flex-direction: column;
}

.radio--button.radio--vertical .radio__label-icon {
  font-size: 1.5rem;
  margin-right: 0;
  margin-bottom: 0.5rem;
}

.radio--payment .radio__label {
  border-radius: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.9375rem 1.1875rem;
  text-align: left;
}

.radio--payment .radio__label-icon {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f1f5f9;
  margin-right: 1rem;
  font-size: 1.5rem;
  color: #475569;
}

.radio--payment .radio__label-content {
  color: #475569;
  line-height: 1.25rem;
  font-weight: 500;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 0.875rem;
}

.radio--payment .radio__label-content strong {
  color: #020617;
}

.radio--payment .radio__icon {
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  font-size: 1.75rem;
  color: #286cf6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.75rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.radio--payment .radio__label:hover {
  border-color: transparent;
}

.radio--payment .radio__label:hover .radio__label-icon {
  background-color: #fff;
}

.radio--payment .radio__input:checked ~ .radio__label {
  border-color: transparent;
  background-color: #ebf1f9;
}

.radio--payment .radio__input:checked ~ .radio__label .radio__label-icon {
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  background-color: #fff;
  color: #286cf6;
}

.radio--payment .radio__input:checked ~ .radio__label .radio__icon {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}

.radio-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.radio-group__item .radio__label {
  border-radius: 0;
  min-width: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.radio-group__item:not(:last-child) {
  margin-right: -1px;
}

.radio-group__item:first-child .radio__label {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.radio-group__item:last-child .radio__label {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.radio-group .radio__input:checked ~ .radio__label {
  z-index: 3;
  border-color: #286cf6;
  font-weight: 600;
}

.form {
  /*@if ($form-grid == true) {
    &--nowrap {
      flex-wrap: nowrap;
      flex-direction: row;

      .form__item {
        flex: 1 1 auto;
      }

      .form__item + .form__item {
        margin-top: initial;
      }

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

      .button {
        min-width: 0;
        padding-left: rem(20px);
        padding-right: rem(20px);
      }
    }
    &--space-small {
      margin: rem(-5px);

      .form__item {
        padding: rem(5px);
      }
    }
  }*/
}

.form__label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.form__label:not(.text-style--normal) {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #020617;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.form__label strong {
  color: #e73323;
  font-weight: 500;
  margin-left: 0.125rem;
}

.form__label-type {
  margin-left: auto;
  padding-left: 0.5rem;
  text-align: right;
  color: #64748b;
  font-size: 0.75rem;
  opacity: 0.7;
}

.form__input ~ .form__input {
  margin-top: 1.25rem;
}

.form__input ~ .form__input-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}

.form__input-icon {
  transition: 0.3s color;
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  color: #9ca3af;
}

.form__input-icon:hover {
  color: #020617;
}

.form__input-icon .button__icon {
  margin: 0 !important;
}

.form__item {
  position: relative;
}

.form__item--seperator {
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
  padding: 0 !important;
  position: relative;
}

@media screen and (min-width: 48rem) {
  .form__item--seperator {
    margin-top: calc(1.38889vw + 0.20833rem);
    margin-bottom: calc(1.38889vw + 0.20833rem);
  }
}

@media screen and (min-width: 75rem) {
  .form__item--seperator {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.form__item--seperator::before {
  left: 0.4375rem;
  right: 0.4375rem;
  content: '';
  position: absolute;
  top: 0;
  height: 1px;
  background-color: #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .form__item--seperator::before {
    left: calc(0.69444vw + 0.10417rem);
    right: calc(0.69444vw + 0.10417rem);
  }
}

@media screen and (min-width: 75rem) {
  .form__item--seperator::before {
    left: 0.625rem;
    right: 0.625rem;
  }
}

.form__item--seperator[data-seperator-text]:after {
  content: attr(data-seperator-text);
  position: absolute;
  color: rgba(31, 41, 55, 0.7);
  left: 50%;
  top: 50%;
  padding: 0.3125rem 0.9375rem;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 0.8125rem;
}

.form__error-label {
  display: none;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  min-height: 1.375rem;
  color: #e73323;
  font-size: 0.75rem;
  font-weight: 600;
}

.form__error .form__error-label {
  display: block;
}

.form__text {
  color: rgba(100, 116, 139, 0.8);
}

.form__text a {
  color: #020617;
}

.form__text a:hover {
  color: #286cf6;
}

.form__link {
  text-decoration: underline;
}

.form__link:hover {
  text-decoration: none;
}

.form__credit-card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
}

.form__credit-card .form__input--number {
  border-radius: 0;
  border: 0;
  margin-right: 8.125rem;
  background-color: transparent;
  width: auto;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.form__credit-card .form__input--cvc,
.form__credit-card .form__input--expiry {
  border: 0;
  border-radius: 0;
  width: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.form__credit-card .form__input--expiry {
  padding: 0;
  width: 3.75rem;
  right: 4rem;
}

.form__credit-card .form__input--cvc {
  width: 2.375rem;
  right: 0.5rem;
}

.form__credit-card-type {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2rem;
}

@media (max-width: 575px) {
  .form__credit-card-type {
    display: none;
  }
}

.form__credit-card-type-item {
  transition: 0.3s opacity;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  border-radius: 0.375rem;
  height: auto;
  opacity: 0;
}

.form__credit-card-type-item.is-active {
  opacity: 1;
}

@media (min-width: 36rem) {
  .form__credit-card-type + .form__input {
    transition-duration: 0.3s;
    transition-property: padding-left, color, background-color;
  }
}

@media (min-width: 36rem) {
  .form__credit-card-type + .form__input.has-card {
    padding-left: 3.25rem;
  }
}

.form--stack {
  position: relative;
}

.form--stack:not(.form--bordered) .form__input:not(:focus):not(.is-error) {
  border-color: transparent;
}

.form--stack.form--bordered .form__submit {
  top: 0.3125rem;
  right: 0.3125rem;
  bottom: 0.3125rem;
}

.form--stack .form__submit {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  right: 0.25rem;
  min-height: initial;
}

.form--stack .form__submit:not(.button--icon) {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  min-width: 3rem;
}

@media screen and (min-width: 48rem) {
  .form--stack .form__submit:not(.button--icon) {
    padding-left: calc(2.77778vw - 0.58333rem);
    padding-right: calc(2.77778vw - 0.58333rem);
  }
}

@media screen and (min-width: 75rem) {
  .form--stack .form__submit:not(.button--icon) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.message-box {
  padding: 0.75rem 1.25rem;
  display: block;
  background-color: #eff4fa;
  margin: 0.625rem 0 1.25rem;
  border-radius: 6px;
  line-height: 1.5rem;
  color: #1f2937;
  position: relative;
}

.message-box__icon {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 1.5rem;
}

.message-box__icon + .message-box__content {
  padding-left: 2.5rem;
}

.message-box__icon-wrapper {
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  color: #001ba3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-shadow: 0px 2px 4px rgba(7, 7, 62, 0.09);
  margin-bottom: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .message-box__icon-wrapper {
    width: calc(1.85185vw + 2.11111rem);
    height: calc(1.85185vw + 2.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .message-box__icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .message-box__icon-wrapper {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .message-box__icon-wrapper {
    font-size: 1.5rem;
  }
}

@media (min-width: 48rem) {
  .message-box__icon-wrapper {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 48rem) and (min-width: 48rem) {
  .message-box__icon-wrapper {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 48rem) and (min-width: 75rem) {
  .message-box__icon-wrapper {
    margin-right: 1rem;
  }
}

.message-box__icon-wrapper .message-box__icon {
  position: initial;
  font-size: inherit;
  color: inherit;
}

.message-box__icon-wrapper + .message-box__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.message-box strong {
  color: #020617;
}

.message-box strong:not(.text-style--medium) {
  font-weight: 600;
}

.message-box + .message-box {
  margin-top: -0.625rem;
}

.message-box:first-child {
  margin-top: initial;
}

.message-box:last-child {
  margin-bottom: initial;
}

.message-box a:not(.text--primary) {
  color: inherit;
}

.message-box a.text--primary:hover {
  color: #2566e8;
  text-decoration: underline;
}

.message-box__link {
  color: #020617;
  text-decoration: underline;
}

.message-box__link:hover {
  color: #286cf6;
  text-decoration: none;
}

.message-box p {
  margin: 0;
}

.message-box--success {
  background-color: #38ba86;
  color: #fff;
}

.message-box--success strong {
  color: inherit;
}

.message-box--success-light {
  background-color: #e3fcec;
  color: #03a037;
}

.message-box--success-light strong {
  color: inherit;
}

.message-box--error {
  background-color: #e73323;
  color: #fff;
}

.message-box--error strong {
  color: inherit;
}

.message-box--error .button--light:hover {
  background-color: #e73323;
  color: #fff;
}

.message-box--error .button--light:active {
  background-color: #e22919;
  color: #fff;
  box-shadow: 0 0 0 0.1875rem rgba(231, 51, 35, 0.12);
}

.message-box--error .button--light:focus {
  background-color: #d92718;
  color: #fff;
}

.message-box--warning {
  color: #020617;
  background-color: rgba(255, 126, 5, 0.1);
}

.message-box--warning strong {
  color: inherit;
}

.message-box--warning .message-box__icon {
  color: #db6a00;
}

.message-box.message-box--primary-light {
  color: #020617;
  background-color: rgba(40, 108, 246, 0.15);
}

.message-box.message-box--primary-light .message-box__title {
  color: #0951e2;
}

.message-box.message-box--primary-light .message-box__link:hover {
  color: #0951e2;
}

.message-box.message-box--primary-light.message-box--bordered {
  border: 1px solid rgba(40, 108, 246, 0.2);
}

.message-box--light {
  background-color: #fff;
  color: #1f2937;
}

.message-box--small {
  font-size: 0.875rem;
}

.message-box--xsmall {
  padding: 0.5rem 0.75rem;
}

.message-box--large {
  margin-bottom: 1.875rem;
}

@media (min-width: 62rem) {
  .message-box--large {
    padding: 1.25rem 1.5625rem;
  }
}

.message-box--icon {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  padding: 1rem;
}

@media screen and (min-width: 48rem) {
  .message-box--icon {
    padding: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .message-box--icon {
    padding: 1.25rem;
  }
}

@media (min-width: 48rem) {
  .message-box--icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.message-box--icon.message-box--column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.message-box--icon.message-box--column .message-box__icon {
  display: block;
  position: initial;
  margin-bottom: 0.75rem;
  color: #286cf6;
}

.message-box--icon.message-box--column .message-box__content {
  padding-left: 0;
  text-align: center;
}

.message-box--icon.message-box--error {
  color: #020617;
  background-color: #ffedeb;
}

.message-box--icon.message-box--error .message-box__icon-wrapper {
  color: #d03c12;
}

.message-box--icon.message-box--error .message-box__title {
  color: #d03c12;
}

.message-box--icon.message-box--error .message-box__link:hover {
  color: #a12e0e;
}

.message-box--icon.message-box--warning {
  color: #020617;
  background-color: rgba(255, 126, 5, 0.15);
}

.message-box--icon.message-box--warning .message-box__icon-wrapper {
  color: #b85900;
}

.message-box--icon.message-box--warning .message-box__title {
  color: #d16500;
}

.message-box--icon.message-box--warning .message-box__link:hover {
  color: #d16500;
}

.message-box--icon.message-box--success {
  color: #020617;
  background-color: rgba(56, 186, 134, 0.15);
}

.message-box--icon.message-box--success .message-box__icon-wrapper {
  color: #38ba86;
}

.message-box--icon.message-box--success .message-box__title {
  color: #0f8a38;
}

.message-box--icon.message-box--success .message-box__link:hover {
  color: #14b84b;
}

.message-box--icon.message-box--button {
  transition: 0.3s background-color;
  padding: 0.75rem 1rem;
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 36rem) {
  .message-box--icon.message-box--button .message-box__content {
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 36rem) and (min-width: 48rem) {
  .message-box--icon.message-box--button .message-box__content {
    padding-right: calc(2.77778vw + 1.16667rem);
  }
}

@media screen and (min-width: 36rem) and (min-width: 75rem) {
  .message-box--icon.message-box--button .message-box__content {
    padding-right: 3.25rem;
  }
}

.message-box--icon.message-box--button .message-box__icon-wrapper {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  font-size: 1.25rem;
  margin-bottom: 0;
}

@media screen and (min-width: 48rem) {
  .message-box--icon.message-box--button .message-box__icon-wrapper {
    width: calc(1.85185vw + 1.11111rem);
    height: calc(1.85185vw + 1.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .message-box--icon.message-box--button .message-box__icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .message-box--icon.message-box--button .message-box__icon-wrapper {
    margin-right: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .message-box--icon.message-box--button .message-box__icon-wrapper {
    margin-right: 0.75rem;
  }
}

@media screen and (min-width: 48rem) {
  .message-box--icon.message-box--button .message-box__icon-wrapper {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .message-box--icon.message-box--button .message-box__icon-wrapper {
    font-size: 1.5rem;
  }
}

.message-box--rounded-large {
  border-radius: 0.75rem;
}

a.message-box--icon:hover {
  background-color: #dce7f4;
}

a.message-box--icon.message-box--error:hover {
  background-color: #ffd6d2;
}

a.message-box--icon.message-box--warning:hover {
  background-color: rgba(255, 126, 5, 0.25);
}

a.message-box--icon.message-box--success:hover {
  background-color: rgba(56, 186, 134, 0.25);
}

.breadcrumb {
  background-color: #f1f5f9;
}

.breadcrumb--light {
  background-color: #fff;
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
}

.breadcrumb__container {
  min-height: 2.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.breadcrumb__list {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: -0.5rem;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .breadcrumb__list {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

.breadcrumb__item {
  padding: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -ms-flex-align: center;
  align-items: center;
  color: #64748b;
  font-weight: 500;
}

.breadcrumb__link {
  color: #020617;
  font-weight: 400;
}

.breadcrumb__link:hover {
  color: #286cf6;
}

.breadcrumb__item-icon {
  font-size: 1rem;
  margin-left: 0.5rem;
  margin-right: -0.5rem;
  color: #585b74;
}

.breadcrumb + .page .page__container:first-child {
  padding-top: 2rem;
}

@media screen and (min-width: 48rem) {
  .breadcrumb + .page .page__container:first-child {
    padding-top: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .breadcrumb + .page .page__container:first-child {
    padding-top: 3rem;
  }
}

.breadcrumb--plain {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1rem;
}

.breadcrumb--plain .breadcrumb__container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.weather {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
}

.weather__icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #f8be27;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .weather__icon {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .weather__icon {
    font-size: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .weather__icon {
    margin-right: calc(0.92593vw + 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .weather__icon {
    margin-right: 0.75rem;
  }
}

.weather__label {
  font-weight: 500;
}

.weather--collapse {
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  background-color: #eeeff3;
}

.file {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.file__input {
  position: absolute;
  left: -9999px;
}

.file__label {
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color, box-shadow;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background-color: #f1f5f9;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #020617;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #e2e8f0;
}

.file__label-text {
  display: inline-block;
  max-width: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.file__label-text span {
  color: #94a3b8;
}

.file__label-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.file__input.is-valid + .file__label {
  background-color: #38ba86;
  border-color: #38ba86;
}

.file__input.is-error + .file__label {
  background-color: #fff;
  border-color: #e73323;
}

.file__input.is-error + .file__label .file__label-icon {
  color: #e73323;
}

.file__input:focus + .file__label {
  background-color: #e2e8f0;
}

.file__input:disabled ~ .file__label {
  cursor: no-drop;
  opacity: 0.9;
}

.file__input:not(:disabled) ~ .file__label:hover {
  background-color: #e2e8f0;
  border-color: #e2e8f0;
}

.file__input:not(:disabled) ~ .file__label:active {
  background-color: #cbd5e1;
  box-shadow: 0 0 0 0.1875rem rgba(30, 41, 91, 0.08);
}

.file__preview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.file__preview-item {
  display: -ms-flexbox;
  display: flex;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #020617;
}

.file__preview-item + .file__preview-item {
  margin-top: 0.5rem;
}

.file__preview-item-icon,
.file__preview-item-remove {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.file__preview-item-icon {
  color: #14b84b;
  margin-right: 0.75rem;
}

.file__preview-item-remove,
.file__preview-item-download {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  margin-left: 0.5rem;
  padding: 0;
  color: #64748b;
  border-radius: 0.1875rem;
  display: -ms-flexbox;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.file__preview-item-remove:hover,
.file__preview-item-download:hover {
  background-color: #f1f5f9;
  color: #1e293b;
}

.file__preview-item-remove:active,
.file__preview-item-download:active {
  color: #020617;
  background-color: #e2e8f0;
  box-shadow: 0 0 0 0.1875rem rgba(30, 41, 91, 0.06);
}

.file__preview-item-remove:focus,
.file__preview-item-download:focus {
  background-color: #e2e8f0;
  color: #1e293b;
}

.file__preview-item-download {
  font-size: 1.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.file__preview-item-label {
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.file__preview-item--add {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.file__preview-item-add {
  transition: 0.3s background-color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: transparent;
  border-radius: 0.375rem;
}

.file__preview-item-add:hover {
  background-color: #e2e8f0;
}

.file__preview-item-add-icon {
  color: #286cf6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.file--avatar .file__preview-item {
  margin-right: auto;
  position: relative;
  padding: 0;
  border-radius: 50%;
  background-color: #f1f5f9;
}

.file--avatar .file__preview-item-image {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 48rem) {
  .file--avatar .file__preview-item-image {
    width: calc(-5.55556vw + 10.16667rem);
    height: calc(-5.55556vw + 10.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .file--avatar .file__preview-item-image {
    width: 6rem;
    height: 6rem;
  }
}

.file--avatar .file__preview-item-remove {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #4b5563;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
}

.file--avatar .file__preview-item-remove:hover {
  background-color: #cbd8f3;
  color: #001ba3;
}

.file--avatar .file__input:disabled ~ .file__preview .file__preview-item-remove {
  display: none;
}

.file--avatar.file--logo .file__preview-item {
  border-radius: 0.375rem;
  padding: 0.5rem;
}

.file--avatar.file--logo .file__preview-item-image {
  width: 7.5rem;
  height: 5.625rem;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 0.375rem;
}

@media screen and (min-width: 48rem) {
  .file--avatar.file--logo .file__preview-item-image {
    width: calc(-5.55556vw + 10.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .file--avatar.file--logo .file__preview-item-image {
    width: 6rem;
  }
}

@media screen and (min-width: 48rem) {
  .file--avatar.file--logo .file__preview-item-image {
    height: calc(-6.01852vw + 8.51389rem);
  }
}

@media screen and (min-width: 75rem) {
  .file--avatar.file--logo .file__preview-item-image {
    height: 4rem;
  }
}

.file--avatar.file--logo .file__preview-item-remove {
  right: -0.5rem;
  top: -0.5rem;
}

.file--cover .file__preview-item {
  margin-right: auto;
  position: relative;
  border-radius: 0.375rem;
  background-color: #f1f5f9;
  padding: 0.5rem;
}

@media (min-width: 48rem) {
  .file--cover .file__preview-item {
    width: 50%;
  }
}

.file--cover .file__preview-item-image {
  width: 100%;
  border-radius: 0.375rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.file--cover .file__preview-item-remove {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #4b5563;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
}

.file--cover .file__preview-item-remove:hover {
  background-color: #cbd8f3;
  color: #001ba3;
}

.file--cover .file__input:disabled ~ .file__preview .file__preview-item-remove {
  display: none;
}

.file--cover.file--multiple .file__preview {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.file--cover.file--multiple .file__preview:not(:empty) {
  margin: -0.75rem;
}

.file--cover.file--multiple .file__preview-item {
  -ms-flex: 0 0 calc(33.3% - 1rem);
  flex: 0 0 calc(33.3% - 1rem);
  max-width: calc(33.3% - 1rem);
  width: auto;
  margin: 0.5rem;
}

.file--cover.file--multiple .file__preview-item-image {
  height: 4.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 48rem) {
  .file--cover.file--multiple .file__preview-item-image {
    height: calc(4.16667vw + 2.5rem);
  }
}

@media screen and (min-width: 75rem) {
  .file--cover.file--multiple .file__preview-item-image {
    height: 5.625rem;
  }
}

.file--small .file__label {
  min-height: 2.5rem;
}

.file--small .file__label-icon {
  margin-right: 0.5rem;
}

.file__input.is-checked ~ .file__preview ~ .file__label {
  display: none;
}

.text a {
  color: inherit;
}

.text--normal {
  color: #1f2937;
}

.text--primary {
  color: #286cf6;
}

.text--dark {
  color: #1e293b;
}

.text--title {
  color: #020617;
}

.text--success {
  color: #14b84b;
}

.text--light {
  color: #c0c7d3;
}

.text--light-2 {
  color: #4b5563;
}

.text--error {
  color: #e04646;
}

.text--gray-500 {
  color: #6b7280;
}

.text--truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
  overflow: hidden;
}

.text--truncate-two-line {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text--gray-500 {
  color: #64748b;
}

.pagination {
  padding-top: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -0.375rem;
  list-style: none;
  padding: 1.875rem 0 0;
}

@media screen and (min-width: 48rem) {
  .pagination {
    padding-top: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .pagination {
    padding-top: 3rem;
  }
}

@media (min-width: 62rem) {
  .pagination {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.pagination__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.375rem;
}

.pagination__item-link {
  transition-duration: 0.3s;
  transition-property: background-color, box-shadow, color, border-color;
  min-width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e2e8f0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 500;
}

@media screen and (min-width: 48rem) {
  .pagination__item-link {
    min-width: calc(2.77778vw + 1.16667rem);
    height: calc(2.77778vw + 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .pagination__item-link {
    min-width: 3.25rem;
    height: 3.25rem;
  }
}

.pagination__item-link-icon {
  font-size: 1.5rem;
}

.pagination__item-link:hover {
  background-color: #eff4fa;
  border-color: transparent;
  color: #286cf6;
}

.pagination__item-link:active {
  background-color: #d4e1f2;
  color: #001ba3;
  box-shadow: 0 0 0 0.1875rem rgba(40, 108, 246, 0.12);
}

.pagination__item-link--active,
.pagination__item-link.is-active,
.is-active .pagination__item-link {
  background-color: #286cf6;
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

.pagination__item-link.is-disabled,
.is-disabled .pagination__item-link {
  background-color: #f1f5f9;
}

.pagination__item-link.is-ellipsis,
.is-ellipsis .pagination__item-link {
  pointer-events: none;
  border-color: transparent;
  background-color: transparent;
}

.pagination__item--navigation .pagination__item-link:not(:hover) {
  border-color: transparent;
}

.pagination__item--more .pagination__item-link {
  pointer-events: none;
}

.pagination--small .pagination__item {
  padding: 0.25rem;
}

.pagination--small .pagination__item-link {
  min-width: 2.5rem;
  height: 2.5rem;
}

@media screen and (min-width: 48rem) {
  .pagination--small .pagination__item-link {
    min-width: calc(0.92593vw + 2.05556rem);
    height: calc(0.92593vw + 2.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .pagination--small .pagination__item-link {
    min-width: 2.75rem;
    height: 2.75rem;
  }
}

.pagination--xsmall {
  font-size: 0.875rem;
}

.pagination--xsmall .pagination__item {
  padding: 0.25rem;
}

.pagination--xsmall .pagination__item-link {
  min-width: 2.25rem;
  height: 2.25rem;
}

@media screen and (min-width: 48rem) {
  .pagination--xsmall .pagination__item-link {
    min-width: calc(0.92593vw + 1.80556rem);
    height: calc(0.92593vw + 1.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .pagination--xsmall .pagination__item-link {
    min-width: 2.5rem;
    height: 2.5rem;
  }
}

.pagination--xsmall .pagination__item-link-icon {
  font-size: 1.25rem;
}

.comment {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.comment + .comment {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .comment + .comment {
    padding-top: calc(1.85185vw + 0.11111rem);
    margin-top: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .comment + .comment {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

.comment__author {
  margin-bottom: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 48rem) {
  .comment__author {
    margin-bottom: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .comment__author {
    margin-bottom: 1rem;
  }
}

.comment__author-image {
  max-width: 2.75rem;
  -ms-flex-preferred-size: 2.75rem;
  flex-basis: 2.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 100%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background-color: #eff4fa !important;
  color: #286cf6;
  margin-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .comment__author-image {
    max-width: calc(2.77778vw + 1.41667rem);
    -ms-flex-preferred-size: calc(2.77778vw + 1.41667rem);
    flex-basis: calc(2.77778vw + 1.41667rem);
  }
}

@media screen and (min-width: 75rem) {
  .comment__author-image {
    max-width: 3.5rem;
    -ms-flex-preferred-size: 3.5rem;
    flex-basis: 3.5rem;
  }
}

.comment__author-image-item {
  border-radius: 50%;
}

.comment__author-image-letter {
  font-size: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-weight: 600;
}

@media screen and (min-width: 48rem) {
  .comment__author-image-letter {
    font-size: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .comment__author-image-letter {
    font-size: 1.25rem;
  }
}

.comment__author-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
}

.comment__author-content .comment__author-title {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.comment__author-content .comment__author-date {
  margin-left: 0.75rem;
  color: #64748b;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .comment__author-content .comment__author-date {
    margin-left: calc(1.85185vw - 0.13889rem);
  }
}

@media screen and (min-width: 75rem) {
  .comment__author-content .comment__author-date {
    margin-left: 1.25rem;
  }
}

.comment__meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  color: #64748b;
  margin-bottom: 1rem;
}

.comment__body p {
  margin: 0;
}

.comment__bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #475569;
}

.comment__files {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.25rem;
}

.comment__files-item {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  margin: 0.25rem;
  border-radius: 0.375rem;
  background-color: #f1f5f9;
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #020617;
  font-weight: 500;
  min-width: 0;
  /*@include breakpoint-up('large') {
        max-width: 50%;
      }*/
}

.comment__files-item:hover {
  background-color: #e2e8f0;
  color: #020617;
}

.comment__files-item-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.comment__files-item-icon {
  font-size: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
  color: #286cf6;
}

.comment--small {
  font-size: 0.875rem;
}

.comment--small .comment__author {
  margin-bottom: 0.75rem;
}

.comment--small .comment__author-image {
  max-width: 2rem;
  -ms-flex-preferred-size: 2rem;
  flex-basis: 2rem;
  margin-right: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .comment--small .comment__author-image {
    max-width: calc(1.85185vw + 1.11111rem);
    -ms-flex-preferred-size: calc(1.85185vw + 1.11111rem);
    flex-basis: calc(1.85185vw + 1.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .comment--small .comment__author-image {
    max-width: 2.5rem;
    -ms-flex-preferred-size: 2.5rem;
    flex-basis: 2.5rem;
  }
}

.comment--small .comment__meta {
  margin-bottom: 0.5rem;
}

.comment--ticket {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1rem !important;
  position: relative;
  border: 1px solid #e2e8f0;
  max-width: 92%;
  overflow: visible;
  z-index: 2;
  min-width: 15rem;
  color: #020617;
  margin-right: auto;
  /*.comment__meta {
      @include interpolate(top, rem(18px), rem(16px + ((32px - 20px) / 2)));
      position: absolute;
      right: rem(16px);
      font-size: rem(12px);
      span {
        font-size: inherit !important;
      }
    }*/
}

@media (min-width: 48rem) {
  .comment--ticket {
    max-width: 70%;
  }
}

.comment--ticket .comment__body {
  word-break: break-word;
}

.comment--ticket::before,
.comment--ticket::after {
  content: '';
  width: 1rem;
  height: 1rem;
  border-radius: 0.1875rem;
  position: absolute;
  right: 100%;
  bottom: 50%;
  -webkit-transform: translate(0.5rem, 50%) rotate(45deg);
  transform: translate(0.5rem, 50%) rotate(45deg);
  pointer-events: none;
  background-color: #fff;
}

.comment--ticket::before {
  z-index: 1;
  height: 0.5rem;
}

.comment--ticket::after {
  z-index: 2;
}

.comment--ticket + .comment {
  margin-top: 1.5rem;
}

.comment--ticket .comment__author {
  margin-bottom: 0.75rem;
}

.comment--ticket .comment__author-image {
  width: 1.5rem;
  max-width: initial;
  -ms-flex-preferred-size: initial;
  flex-basis: initial;
  margin-right: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .comment--ticket .comment__author-image {
    width: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .comment--ticket .comment__author-image {
    width: 2rem;
  }
}

.comment--ticket .comment__author-title {
  font-size: 0.875rem;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.comment--ticket .comment__author-image-letter {
  font-size: 1rem;
}

.comment--ticket .comment__author-date {
  font-size: 0.75rem;
}

.box .comment--ticket {
  border-color: transparent;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.03);
}

.box .comment--ticket::before {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.03);
}

.comment--ticket.comment--owner::before,
.comment--ticket.comment--owner::after {
  right: initial;
  left: 100%;
  -webkit-transform: translate(-0.5rem, 50%) rotate(45deg);
  transform: translate(-0.5rem, 50%) rotate(45deg);
  background-color: #deeee9;
}

.comment--owner {
  background-color: #deeee9;
  margin-left: auto;
  border-color: transparent !important;
  box-shadow: initial !important;
  margin-right: initial;
  /*.comment__author {
      flex-direction: row-reverse;
      padding-right: 0;
      padding-left: rem(80px);
      &-image {
        margin-right: 0;
        margin-left: rem(12px);
      }
    }
    .comment__meta {
      right: initial;
      left: rem(16px);
    }*/
}

.comment--owner .comment__author-image {
  background-color: #fff !important;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.dropdown {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.dropdown__content {
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  min-width: 15rem;
  background-color: #fff;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  position: absolute;
  right: 0;
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  top: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 1rem;
  z-index: 3;
  border-radius: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767px) {
  .dropdown__content {
    min-width: 0;
    width: calc(100vw - 2.5rem);
    left: 0;
  }
}

.dropdown__content-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 1rem;
  margin: -1rem -1rem 0;
}

.dropdown__content-header-title {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.dropdown__content-header-close {
  transition-duration: 0.3s;
  transition-property: color, background-color, box-shadow;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  color: #475569;
  font-size: 24px;
  z-index: 10;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.dropdown__content-header-close:hover {
  background-color: #f1f5f9;
  color: #020617;
}

.dropdown__content-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 575px) {
  .dropdown__content-body {
    padding: 1rem 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}

.dropdown__content-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e2e8f0;
  margin-top: 1rem;
  padding-top: 1rem;
}

@media (max-width: 575px) {
  .dropdown__content-footer {
    padding: 1.5rem 1rem;
    margin: 0 -1rem -1rem;
  }

@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .dropdown__content-footer {
      padding-bottom: calc((constant(safe-area-inset-bottom)) + 1.5rem);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .dropdown__content-footer {
      padding-bottom: calc((env(safe-area-inset-bottom)) + 1.5rem);
    }
}
}

.dropdown__content-item:not(:first-child) {
  margin-top: 0.75rem;
}

.dropdown__toggle-icon {
  transition-duration: 0.3s;
  transition-property: color, -webkit-transform;
  transition-property: color, transform;
  transition-property: color, transform, -webkit-transform;
  font-size: 1.25rem !important;
  margin-left: 0.25rem;
}

.dropdown__toggle.is-active {
  background-color: #e2e8f0 !important;
  color: #020617 !important;
}

.dropdown__toggle.is-active .dropdown__toggle-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropdown__list {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.dropdown__list-item:not(:first-child) {
  margin-top: 0.5rem;
}

.dropdown__list-link {
  transition-duration: 0.3s;
  transition-property: color, background-color;
  transition-timing-function: true;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem 1rem;
  color: #020617;
  border-radius: 0.625rem;
}

.dropdown__list-link:hover {
  background-color: #f1f5f9;
  color: #020617;
}

.dropdown__list-link.is-active {
  background-color: #eff4fa;
  color: #286cf6;
}

.dropdown__header {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.dropdown__action {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.dropdown__action + .dropdown__action {
  margin-left: 0.75rem;
}

.dropdown.is-active .dropdown__content {
  z-index: 5;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown--full .dropdown__content {
  min-width: 100%;
  width: initial;
}

.dropdown--toolbar .dropdown__content {
  left: initial;
  right: 0;
}

@media (min-width: 48rem) {
  .dropdown--toolbar .dropdown__content {
    min-width: 17.5rem;
  }
}

@media (max-width: 767px) {
  .dropdown--toolbar .dropdown__content {
    width: calc(100vw - 2.5rem - 2rem);
  }
}

@media (max-width: 575px) {
  .dropdown--toolbar .dropdown__content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 9999999;
  }
}

.share__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.5rem;
  overflow: hidden;
  padding-top: 0.1875rem;
}

.share__buttons-item {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.5rem;
}

.share__link {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  margin-top: 1rem;
  position: relative;
}

.share__link-input {
  text-overflow: ellipsis;
  padding-right: 6.5625rem;
  background-color: #e2e8f0;
}

.share__link-button {
  position: absolute;
  min-height: 2.375rem;
  padding-top: 0;
  padding-bottom: 0;
  right: 0.3125rem;
  bottom: 0.3125rem;
  min-width: 5rem;
}

.share__link-button:not(:hover):not(:active):not(:focus) {
  background-color: #fff;
}

.share__link-button-icon--checked {
  display: none;
}

.share__link-button.is-copied {
  background-color: #286cf6 !important;
}

.share__link-button.is-copied .share__link-button-icon {
  color: #fff !important;
}

.share__link-button.is-copied .share__link-button-icon:not(.share__link-button-icon--checked) {
  display: none;
}

.share__link-button.is-copied .share__link-button-icon--checked {
  display: block;
}

.countdown {
  display: -ms-flexbox;
  display: flex;
  color: #020617;
}

.countdown__item {
  font-size: 0.875rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  /*@include breakpoint-up('large') {
      border-color: color('border');
    }*/
}

@media screen and (min-width: 48rem) {
  .countdown__item {
    font-size: calc(0.92593vw + 0.43056rem);
  }
}

@media screen and (min-width: 75rem) {
  .countdown__item {
    font-size: 1.125rem;
  }
}

.countdown__item:not(:first-child) {
  margin-left: 0.25rem;
}

@media screen and (min-width: 48rem) {
  .countdown__item:not(:first-child) {
    margin-left: calc(0.92593vw - 0.19444rem);
  }
}

@media screen and (min-width: 75rem) {
  .countdown__item:not(:first-child) {
    margin-left: 0.5rem;
  }
}

.countdown__item:not(.countdown__item--seperator) {
  width: 1.75rem;
  height: 1.75rem;
  background-color: #e2e8f0;
  border-radius: 0.375rem;
  font-weight: 600;
}

@media screen and (min-width: 48rem) {
  .countdown__item:not(.countdown__item--seperator) {
    width: calc(2.77778vw + 0.41667rem);
    height: calc(2.77778vw + 0.41667rem);
  }
}

@media screen and (min-width: 75rem) {
  .countdown__item:not(.countdown__item--seperator) {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.countdown__item--seperator:first-child {
  display: none;
}

.countdown__group {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.countdown__group:not(:first-child) {
  margin-left: 0.25rem;
}

@media screen and (min-width: 48rem) {
  .countdown__group:not(:first-child) {
    margin-left: calc(0.92593vw - 0.19444rem);
  }
}

@media screen and (min-width: 75rem) {
  .countdown__group:not(:first-child) {
    margin-left: 0.5rem;
  }
}

.countdown__group[data-label]::after {
  margin-top: 0.125rem;
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 0.8125rem;
  color: rgba(2, 6, 23, 0.7);
  font-weight: 500;
}

@media screen and (min-width: 48rem) {
  .countdown__group[data-label]::after {
    margin-top: calc(1.38889vw - 0.54167rem);
  }
}

@media screen and (min-width: 75rem) {
  .countdown__group[data-label]::after {
    margin-top: 0.5rem;
  }
}

.countdown__fallback {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}

.countdown--white .countdown__item:not(.countdown__item--seperator),
.countdown--white .countdown__fallback {
  background-color: #fff;
  box-shadow: 0px 8px 32px rgba(7, 7, 62, 0.03);
}

.roadmap__flag {
  width: 1.5rem;
  border-radius: 0.375rem;
  line-height: 0;
}

@media screen and (min-width: 48rem) {
  .roadmap__flag {
    width: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .roadmap__flag {
    width: 2rem;
  }
}

.roadmap__flag--icon {
  font-size: 2rem;
  color: #020617;
}

.roadmap__progress {
  position: relative;
  height: 0.1875rem;
  background-color: #bbc8d8;
  border-radius: 0.625rem;
  padding-right: 0.3125rem;
  /*&::before {
      content: '';
      width: rem(16px);
      height: rem(16px);
      background-color: color('neutral-300');
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 50%;
    }*/
}

.roadmap__progress-icon {
  color: #bbc8d8;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  margin-left: -0.125rem;
  z-index: 2;
}

.roadmap__progress-track {
  background-color: #286cf6;
  border-radius: 0.625rem;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 4;
}

.roadmap__progress-track[style*='100%'] .roadmap__progress-point {
  background-color: transparent;
}

.roadmap__progress-track[style*='100%'] ~ .roadmap__progress-icon {
  color: #286cf6;
}

.roadmap__progress-point {
  transition-duration: 0.3s;
  transition-property: box-shadow, -webkit-transform;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: scale(1, 1) translate(-100%, -50%);
  transform: scale(1, 1) translate(-100%, -50%);
  background-color: #286cf6;
  border-radius: 50%;
  z-index: 2;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.roadmap__progress-point:hover {
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  -webkit-transform: scale(1.15, 1.15) translate(-100%, -50%);
  transform: scale(1.15, 1.15) translate(-100%, -50%);
}

.roadmap--bordered {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #d1d5db;
}

.roadmap--new .roadmap__flag {
  width: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .roadmap--new .roadmap__flag {
    width: calc(3.24074vw - 0.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .roadmap--new .roadmap__flag {
    width: 2.375rem;
  }
}

.roadmap--new .roadmap__flag--icon {
  color: #475569;
}

.collapsable {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.collapsable__wrapper {
  transition: 0.5s max-height;
  overflow: hidden;
}

.collapsable__item + .collapsable__item {
  margin-top: 0.75rem;
}

.collapsable__toggle {
  margin-top: 1rem;
}

.collapsable[data-collapsable='2'] .collapsable__wrapper {
  max-height: 112px;
}

.collapsable[data-collapsable='3'] .collapsable__wrapper {
  max-height: 174px;
}

.collapsable[data-collapsable='4'] .collapsable__wrapper {
  max-height: 236px;
}

.collapsable[data-collapsable='5'] .collapsable__wrapper {
  max-height: 298px;
}

.collapsable[data-collapsable='6'] .collapsable__wrapper {
  max-height: 360px;
}

.collapsable[data-collapsable='7'] .collapsable__wrapper {
  max-height: 422px;
}

.collapsable[data-collapsable='8'] .collapsable__wrapper {
  max-height: 484px;
}

.collapsable[data-collapsable='content'] .collapsable__wrapper {
  max-height: 11.25rem;
}

@media screen and (min-width: 48rem) {
  .collapsable[data-collapsable='content'] .collapsable__wrapper {
    max-height: calc(32.40741vw - 4.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .collapsable[data-collapsable='content'] .collapsable__wrapper {
    max-height: 20rem;
  }
}

@media (min-width: 48rem) {
  .collapsable .card--project .card__image::before {
    display: none !important;
  }
}

@media (min-width: 48rem) {
  .collapsable .card--project .card__image-item {
    position: initial;
    height: 6.875rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.collapsable__toggle.is-active .collapsable__toggle-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.collapsable--medium[data-collapsable='2'] .collapsable__wrapper {
  max-height: 144px;
}

.collapsable--medium[data-collapsable='3'] .collapsable__wrapper {
  max-height: 224px;
}

.collapsable--medium[data-collapsable='4'] .collapsable__wrapper {
  max-height: 304px;
}

.collapsable--medium[data-collapsable='5'] .collapsable__wrapper {
  max-height: 384px;
}

.collapsable--medium[data-collapsable='6'] .collapsable__wrapper {
  max-height: 464px;
}

.collapsable--medium[data-collapsable='7'] .collapsable__wrapper {
  max-height: 544px;
}

.collapsable--medium[data-collapsable='8'] .collapsable__wrapper {
  max-height: 624px;
}

.collapsable--jobs[data-collapsable='2'] .collapsable__wrapper {
  max-height: 498px;
}

@media (min-width: 48rem) {
  .collapsable--jobs[data-collapsable='2'] .collapsable__wrapper {
    max-height: 196px;
  }
}

.collapsable--jobs[data-collapsable='3'] .collapsable__wrapper {
  max-height: 755px;
}

@media (min-width: 48rem) {
  .collapsable--jobs[data-collapsable='3'] .collapsable__wrapper {
    max-height: 302px;
  }
}

.collapsable--jobs[data-collapsable='4'] .collapsable__wrapper {
  max-height: 1012px;
}

@media (min-width: 48rem) {
  .collapsable--jobs[data-collapsable='4'] .collapsable__wrapper {
    max-height: 408px;
  }
}

.collapsable--jobs[data-collapsable='5'] .collapsable__wrapper {
  max-height: 1269px;
}

@media (min-width: 48rem) {
  .collapsable--jobs[data-collapsable='5'] .collapsable__wrapper {
    max-height: 514px;
  }
}

.collapsable--jobs[data-collapsable='6'] .collapsable__wrapper {
  max-height: 1526px;
}

@media (min-width: 48rem) {
  .collapsable--jobs[data-collapsable='6'] .collapsable__wrapper {
    max-height: 620px;
  }
}

.collapsable--jobs[data-collapsable='7'] .collapsable__wrapper {
  max-height: 1783px;
}

@media (min-width: 48rem) {
  .collapsable--jobs[data-collapsable='7'] .collapsable__wrapper {
    max-height: 726px;
  }
}

.collapsable--jobs[data-collapsable='8'] .collapsable__wrapper {
  max-height: 2040px;
}

@media (min-width: 48rem) {
  .collapsable--jobs[data-collapsable='8'] .collapsable__wrapper {
    max-height: 832px;
  }
}

.collapsable--client[data-collapsable='2'] .collapsable__wrapper {
  max-height: 236px;
}

.collapsable--client[data-collapsable='3'] .collapsable__wrapper {
  max-height: 362px;
}

.collapsable--client[data-collapsable='4'] .collapsable__wrapper {
  max-height: 488px;
}

.collapsable--client[data-collapsable='5'] .collapsable__wrapper {
  max-height: 614px;
}

.collapsable--client[data-collapsable='6'] .collapsable__wrapper {
  max-height: 740px;
}

.collapsable--client[data-collapsable='7'] .collapsable__wrapper {
  max-height: 866px;
}

.collapsable--client[data-collapsable='8'] .collapsable__wrapper {
  max-height: 992px;
}

.collapsable--shadow .collapsable__wrapper {
  position: relative;
}

.collapsable--shadow .collapsable__wrapper::after {
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
  height: 3.75rem;
  content: '';
  width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

@media screen and (min-width: 48rem) {
  .collapsable--shadow .collapsable__wrapper::after {
    height: calc(4.62963vw + 1.52778rem);
  }
}

@media screen and (min-width: 75rem) {
  .collapsable--shadow .collapsable__wrapper::after {
    height: 5rem;
  }
}

.collapsable--shadow.is-active .collapsable__wrapper::after {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 48rem) {
  .collapsable--projects[data-collapsable='2'] .collapsable__wrapper {
    max-height: 412px;
  }
}

@media (min-width: 48rem) {
  .collapsable--projects[data-collapsable='3'] .collapsable__wrapper {
    max-height: 626px;
  }
}

@media (min-width: 48rem) {
  .collapsable--projects[data-collapsable='4'] .collapsable__wrapper {
    max-height: 840px;
  }
}

@media (min-width: 48rem) {
  .collapsable--projects[data-collapsable='5'] .collapsable__wrapper {
    max-height: 1054px;
  }
}

@media (max-width: 767px) {
  .collapsable--mobile-disable .collapsable__wrapper {
    max-height: initial !important;
  }
}

@media (max-width: 767px) {
  .collapsable--mobile-disable .collapsable__toggle {
    display: none !important;
  }
}

.users {
  display: -ms-flexbox;
  display: flex;
}

.users__item {
  z-index: 1;
}

@media (min-width: 36rem) {
  .users__item {
    position: relative;
  }
}

.users__item:not(:last-child) {
  margin-right: -0.5rem;
}

.users__item:nth-child(1) {
  z-index: 5;
}

.users__item:nth-child(2) {
  z-index: 4;
}

.users__item:nth-child(3) {
  z-index: 3;
}

.users__item:nth-child(4) {
  z-index: 2;
}

.users__item:nth-child(5) {
  z-index: 1;
}

.users__item:hover,
.users__item:active,
.users__item:focus {
  z-index: 10 !important;
}

.users__item-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0.1875rem #fff;
  background-color: #f4f7fd !important;
  color: #001ba3;
}

@media screen and (min-width: 48rem) {
  .users__item-avatar {
    width: calc(0.92593vw + 1.55556rem);
    height: calc(0.92593vw + 1.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .users__item-avatar {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.users__item-avatar-letter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-weight: 600;
  font-size: 1rem;
}

.users__item-dropdown {
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  position: absolute;
  width: calc(100% - 1rem);
  background-color: #fff;
  top: 100%;
  right: 0.5rem;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  z-index: 5;
  padding: 0.75rem;
  border-radius: 0.375rem;
  -webkit-transform: translateY(0.625rem);
  transform: translateY(0.625rem);
  opacity: 0;
  visibility: hidden;
  margin-top: 0.5rem;
}

@media (min-width: 36rem) {
  .users__item-dropdown {
    width: 13.75rem;
    right: 0;
  }
}

.users__item-dropdown-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.users__item-dropdown-item:not(:first-child) {
  border-top: 1px solid #e2e8f0;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.users__item-dropdown-item-avatar {
  margin-right: 0.5rem !important;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.users__item-dropdown-item-label {
  color: #020617;
  font-weight: 500;
  font-size: 0.8125rem;
}

.users__item-toggle {
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  padding: 0;
  min-height: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0.1875rem #fff !important;
  margin-left: 0.125rem;
}

@media screen and (min-width: 48rem) {
  .users__item-toggle {
    width: calc(0.92593vw + 1.55556rem);
    height: calc(0.92593vw + 1.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .users__item-toggle {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media screen and (min-width: 48rem) {
  .users__item-toggle {
    font-size: calc(0.23148vw + 0.63889rem);
  }
}

@media screen and (min-width: 75rem) {
  .users__item-toggle {
    font-size: 0.8125rem;
  }
}

.users__item.is-active {
  z-index: 9;
}

.users__item.is-active .users__item-toggle {
  background-color: #cbd5e1 !important;
}

.users__item.is-active .users__item-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.stepper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
}

.stepper__wrapper {
  display: -ms-flexbox;
  display: flex;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.stepper__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  line-height: 1.5rem;
}

@media (max-width: 575px) {
  .stepper__item {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 62rem) {
  .stepper__item {
    padding: 0.75rem 1.25rem;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.stepper__item + .stepper__item {
  border-left: 1px solid #e2e8f0;
}

.stepper__item-label {
  transition: 0.3s color;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  margin-right: 0.5rem;
}

@media (max-width: 575px) {
  .stepper__item-label {
    display: none;
  }
}

@media (min-width: 62rem) {
  .stepper__item-label {
    margin-right: 0.75rem;
  }
}

.stepper__item-count {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 3.125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 0.125rem;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #e2e8f0;
  color: #020617;
}

.stepper__item.is-active {
  background-color: #e2e8f0;
}

.stepper__item.is-active .stepper__item-label {
  color: #020617;
}

.stepper__item.is-active .stepper__item-count {
  background-color: #286cf6;
  color: #fff;
}

.collapsable-entry {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
}

.collapsable-entry__wrapper {
  transition: 0.5s max-height;
  overflow: hidden;
  position: relative;
}

.collapsable-entry__wrapper::after {
  transition: 0.3s opacity;
  content: '';
  position: absolute;
  width: 100%;
  height: 4.375rem;
  background-image: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  left: 0;
  bottom: 0;
}

.collapsable-entry__toggle {
  border: 0;
  outline: none;
  background: none;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #334155;
  margin-top: 0.5rem;
  font-weight: 500;
  margin-right: auto;
}

.collapsable-entry__toggle-icon {
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.25rem;
  color: #64748b;
  font-size: 1.25rem;
}

.collapsable-entry__toggle:hover {
  color: #020617;
}

.collapsable-entry__toggle:hover .collapsable-entry__toggle-icon {
  color: #020617;
}

.collapsable-entry.is-active .collapsable-entry__wrapper::after {
  opacity: 0;
}

.collapsable-entry.is-active .collapsable-entry__toggle-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.notification-bar {
  display: -ms-flexbox;
  display: flex;
  background-color: #286cf6;
  color: #fff;
  min-height: 3.5rem;
  padding: 0.5rem 1.25rem;
  line-height: 1.25rem;
  text-align: left;
}

@media (min-width: 48rem) {
  .notification-bar {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.notification-bar__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.layout {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.layout__header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  z-index: 100;
  min-height: 4rem;
}

@media screen and (min-width: 62rem) {
  .layout__header {
    min-height: calc(3.57143vw + 1.78571rem);
  }
}

@media screen and (min-width: 90rem) {
  .layout__header {
    min-height: 5rem;
  }
}

.layout__header.is-hide,
.layout__header.is-sticky {
  z-index: 1000;
}

.layout__header.is-hide .navbar,
.layout__header.is-sticky .navbar {
  /*@include breakpoint-up('large') {
          height: rem(80px);
        }*/
}

@media (max-width: 991px) {
  .layout__header.is-hide .navbar,
  .layout__header.is-sticky .navbar {
    border-bottom-color: transparent;
    background-color: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
  }
}

.layout__header.is-hide .navbar--transparent .navbar__logo-img--light,
.layout__header.is-sticky .navbar--transparent .navbar__logo-img--light {
  opacity: 0;
}

.layout__header.is-hide .navbar--transparent .navbar__logo-img:not(.navbar__logo-img--light),
.layout__header.is-sticky .navbar--transparent .navbar__logo-img:not(.navbar__logo-img--light) {
  opacity: 1;
}

.layout__header.is-hide + .layout__body,
.layout__header.is-sticky + .layout__body {
  /*.single__tab:not(.not-sticky) {
          @include breakpoint-up('large') {
            box-shadow: box-shadow('navbar');
          }
        }
        .page__map--fill {
          @include breakpoint-up('large') {
            height: calc(100vh - 10.125rem) !important;
            top: rem(80px + 82px) !important;
          }
        }*/
}

.layout__header.is-sticky {
  /*.navbar {
        @include breakpoint-down('large'){
          transform: translateY(0);
        }
      }*/
  /*+ .layout__body {
        .single__tab:not(.not-sticky) {
          @include breakpoint-up('large') {
            @supports (position: sticky) {
              padding-top: 0;
              //border-top-color: color('border');
              @if (
                type-of($layout-header-height) ==
                  list and
                  type-of($layout-header-breakpoint) ==
                  list
              ) {
                @include interpolate(
                  top,
                  rem(nth($layout-header-height, 1)),
                  rem(80px),
                  nth($layout-header-breakpoint, 1),
                  nth($layout-header-breakpoint, 2)
                );
              } @else {
                top: rem($layout-header-height * -1);
              }
            }
          }
        }
        .section--tab:not(.not-sticky) {
          @supports (position: sticky) {
            border-top-color: color('border');
            @if (
              type-of($layout-header-height) == list and type-of($layout-header-breakpoint) == list
            ) {
              @include interpolate(
                top,
                rem(nth($layout-header-height, 1)),
                rem(80px),
                nth($layout-header-breakpoint, 1),
                nth($layout-header-breakpoint, 2)
              );
            } @else {
              top: rem($layout-header-height * -1);
            }
          }
        }
        .sticky {
          @supports (position: sticky) {
            @if (
              type-of($layout-header-height) == list and type-of($layout-header-breakpoint) == list
            ) {
              @include interpolate(
                top,
                rem(nth($layout-header-height, 1) + 16px),
                rem(80px + 24px),
                nth($layout-header-breakpoint, 1),
                nth($layout-header-breakpoint, 2)
              );
            } @else {
              top: rem($layout-header-height + 24px);
            }
          }
        }
      }*/
}

@media (max-width: 991px) {
  .layout__header.is-sticky:not(.no-shadow) .navbar {
    box-shadow: 0px 24px 56px -12px rgba(7, 7, 62, 0.07);
  }
}

.layout__header.no-shadow {
  z-index: 1002;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) {
  background-color: transparent;
  border-bottom-color: transparent;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__seperator {
  background-color: rgba(255, 255, 255, 0.2);
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__switch-toggle:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__switch-toggle:not(.is-active):hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__logo-img:not(.navbar__logo-img--light) {
  opacity: 0;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__button,
.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__button:hover,
.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__hamburger {
  color: #fff;
}

@media (min-width: 62rem) {
  .layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__menu-link:not(:hover) {
    color: #fff;
  }
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .social__item-link:not(:hover) {
  color: #fff;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__logo-badge {
  background-color: #fff;
  color: #020617;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__user-toggle {
  color: #fff;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__buttons-link.button--plain {
  color: #fff;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__buttons-link.button--gray {
  background-color: #fff;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__buttons-link.button--gray:hover {
  color: #171f44 !important;
  background-color: #eff4fa !important;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__user-toggle:not(.is-active):not(:hover):not(:active):not(:focus) .navbar__user-toggle-icon {
  color: #fff;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .navbar__buttons-link[data-badge]::after {
  border-color: #e73323;
}

.layout__header:not(.is-sticky):not(.is-hide) .navbar--transparent:not(.is-opened) .is-active > .navbar__buttons-link {
  color: #020617;
  background-color: #fff;
}

.layout__header.is-fixed .navbar {
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

@media (min-width: 48rem) {
  .layout__header.is-fixed .navbar {
    box-shadow: 0 0 0 0 transparent !important;
  }
}

.layout__header.is-fixed.is-sticky .navbar {
  box-shadow: 0px 24px 56px -12px rgba(7, 7, 62, 0.07);
}

@media (min-width: 48rem) {
  .layout__header.is-fixed + .layout__body .filter-box {
    top: 4rem;
    position: sticky;
    z-index: 10;
  }
}

@media screen and (min-width: 48rem) and (min-width: 62rem) {
  .layout__header.is-fixed + .layout__body .filter-box {
    top: calc(3.57143vw + 1.78571rem);
  }
}

@media screen and (min-width: 48rem) and (min-width: 90rem) {
  .layout__header.is-fixed + .layout__body .filter-box {
    top: 5rem;
  }
}

.is-body-front .layout__header {
  z-index: 999;
}

.layout__header + .layout__body .hero:not(.hero--static) {
  margin-top: -4rem;
  padding-top: 4rem;
}

@media screen and (min-width: 62rem) {
  .layout__header + .layout__body .hero:not(.hero--static) {
    margin-top: calc(-3.57143vw - 1.78571rem);
  }
}

@media screen and (min-width: 90rem) {
  .layout__header + .layout__body .hero:not(.hero--static) {
    margin-top: -5rem;
  }
}

@media screen and (min-width: 62rem) {
  .layout__header + .layout__body .hero:not(.hero--static) {
    padding-top: calc(3.57143vw + 1.78571rem);
  }
}

@media screen and (min-width: 90rem) {
  .layout__header + .layout__body .hero:not(.hero--static) {
    padding-top: 5rem;
  }
}

.layout__body {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.is-body-front .layout__body {
  z-index: 9999;
}

.layout__footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.layout__content-wrapper {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  max-width: 100%;
}

@media screen and (min-width: 48rem) {
  .layout__content-wrapper {
    padding-left: calc(4.62963vw - 0.97222rem);
    padding-right: calc(4.62963vw - 0.97222rem);
  }
}

@media screen and (min-width: 75rem) {
  .layout__content-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .layout__content-wrapper {
    padding-bottom: calc(3.7037vw - 0.27778rem);
    padding-top: calc(3.7037vw - 0.27778rem);
  }
}

@media screen and (min-width: 75rem) {
  .layout__content-wrapper {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}

@media (min-width: 62rem) {
  .layout__content-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (min-width: 90rem) {
  .layout__content-wrapper {
    width: 56.25rem;
  }
}

@media (min-width: 90rem) {
  .layout__content-wrapper {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.layout--dashboard {
  /*.layout__content + .layout__aside--right {
      @include breakpoint-down('large') {
        padding-top: 0;
      }
    }*/
}

@media (min-width: 82.5rem) {
  .layout--dashboard .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.layout--dashboard .layout__header {
  min-height: 4rem;
  position: fixed;
}

.layout--dashboard .layout__header + .layout__body {
  margin-top: 4rem;
}

.layout--dashboard .layout__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 62rem) {
  .layout--dashboard .layout__body {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.layout--dashboard .layout__aside {
  display: none;
  -ms-flex-preferred-size: initial;
  flex-basis: initial;
  max-width: initial;
  border-right: 1px solid #ececf1;
  background-color: #e9edf3;
  position: relative;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 62rem) {
  .layout--dashboard .layout__aside {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 16.25rem;
    flex: 0 0 16.25rem;
    max-width: 16.25rem;
    height: calc(100vh - 4rem);
    position: sticky;
    top: 4rem;
  }
}

.layout--dashboard .layout__aside--right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  border-right: 0;
  border-left: 1px solid #ececf1;
  padding: 1.25rem;
}

@media (max-width: 991px) {
  .layout--dashboard .layout__aside--right {
    -ms-flex-order: -1;
    order: -1;
    border-bottom: 1px solid #e2e8f0;
    border-left: 0;
  }
}

@media (min-width: 62rem) {
  .layout--dashboard .layout__aside--right {
    -ms-flex: 0 0 18.75rem;
    flex: 0 0 18.75rem;
    max-width: 18.75rem;
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 75rem) {
  .layout--dashboard .layout__aside--right {
    -ms-flex: 0 0 20rem;
    flex: 0 0 20rem;
    max-width: 20rem;
  }
}

.layout--dashboard .layout__aside--right .box {
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.layout--dashboard .layout__content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 62rem) and (max-width: 100rem) {
  .layout--dashboard .card--price .card__title {
    font-size: 1rem;
  }
}

@media (min-width: 62rem) and (max-width: 100rem) {
  .layout--dashboard .card--price .card__header {
    min-height: 14.4375rem;
  }
}

@media (min-width: 62rem) and (max-width: 100rem) {
  .layout--dashboard .card--price.is-annually .card__header {
    min-height: 18.5625rem;
  }
}

.layout.layout--full {
  /*.container {
      max-width: 100%;
    }*/
}

@media (min-width: 75rem) {
  .layout.layout--full .layout__content-wrapper {
    width: auto;
  }
}

@media (min-width: 90rem) {
  .layout.layout--full .layout__content-wrapper {
    width: 100%;
    max-width: 69.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 90rem) {
  .layout.layout--full .layout__content-wrapper--large {
    max-width: 87rem;
  }
}

.container {
  width: 100%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (min-width: 62rem) {
  .container {
    padding-left: calc(4.46429vw - 1.51786rem);
    padding-right: calc(4.46429vw - 1.51786rem);
  }
}

@media screen and (min-width: 90rem) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.container--full {
  max-width: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1005;
  transition: opacity 0.5s ease-in-out;
}

.overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.overlay--light .overlay__backdrop {
  background: rgba(226, 232, 240, 0.9);
}

.navbar {
  transition-duration: 0.3s;
  transition-property: height, box-shadow, background-color, -webkit-transform;
  transition-property: height, transform, box-shadow, background-color;
  transition-property: height, transform, box-shadow, background-color, -webkit-transform;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  background-color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  height: 4rem;
  /* &__social {
    &-item + &-item {
      margin-left: rem(16px);
    }
    &-link {
      color: color('title');
      display: flex;
      align-items: center;
      justify-content: center;
      padding: rem(8px) rem(12px);
      border-radius: rem($border-radius-small);
      font-size: rem(20px);
      width: initial;
      height: initial;

      &:hover {
        color: color('title');
        background-color: color('primary-lighter');
      }
    }
  } */
}

@media screen and (min-width: 62rem) {
  .navbar {
    height: calc(3.57143vw + 1.78571rem);
  }
}

@media screen and (min-width: 90rem) {
  .navbar {
    height: 5rem;
  }
}

.navbar::before {
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.3s;
}

.navbar__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.navbar__logo {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-right: auto;
}

.navbar__logo-badge {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  min-height: 0.875rem;
  font-size: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #1e295b;
  color: #fff;
  padding: 0 0.375rem;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 2;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1.5rem;
  letter-spacing: 0.15em;
  margin-left: 0.25rem;
}

.navbar__logo--shape .navbar__logo-img {
  height: 2.25rem;
  width: 2.25rem;
}

@media screen and (min-width: 48rem) {
  .navbar__logo--shape .navbar__logo-img {
    height: calc(0.92593vw + 1.80556rem);
    width: calc(0.92593vw + 1.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .navbar__logo--shape .navbar__logo-img {
    height: 2.5rem;
    width: 2.5rem;
  }
}

.navbar__logo--shape .navbar__logo-img.is-loaded {
  opacity: 1 !important;
}

.navbar__logo-img {
  height: 2.25rem;
  width: auto;
}

@media screen and (min-width: 48rem) {
  .navbar__logo-img {
    height: calc(0.92593vw + 1.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .navbar__logo-img {
    height: 2.5rem;
  }
}

.navbar__logo-img--light {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
}

.navbar__logo-wrapper {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: auto;
}

.navbar__logo-wrapper .navbar__logo {
  min-width: initial !important;
}

.navbar__seperator {
  width: 1px;
  height: 1.5rem;
  margin: 0 0.65625rem;
  background-color: #e2e8f0;
  -ms-flex-item-align: center;
  align-self: center;
}

.navbar__switch {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 575px) {
  .navbar__switch {
    position: static;
  }
}

.navbar__switch-toggle {
  transition-duration: 0.3s;
  transition-property: border-color, background-color, color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #e2e8f0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 2rem;
  padding: 0.25rem 0.65625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #020617;
  border-radius: 0.625rem;
}

.navbar__switch-toggle-icon {
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.25rem;
  font-size: 1.25rem;
  margin-right: -0.25rem;
}

.navbar__switch-dropdown {
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transform: translateY(0.75rem);
  transform: translateY(0.75rem);
  width: 21.875rem;
  border-radius: 1rem;
  box-shadow: 0px 16px 32px -4px rgba(10, 13, 20, 0.1);
  background-color: #fff;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 575px) {
  .navbar__switch-dropdown {
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
  }
}

.navbar__switch-dropdown-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  min-height: 2.875rem;
  padding: 0.125rem 1.25rem;
}

.navbar__switch-dropdown-header-title {
  color: #020617;
}

.navbar__switch-dropdown-header-link {
  transition: 0.3s color;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  color: #286cf6;
  font-weight: 600;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
}

.navbar__switch-dropdown-header-link-icon {
  font-size: 0.875rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.navbar__switch-dropdown-header-link:hover {
  color: #020617;
}

.navbar__switch-dropdown-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 0.65625rem;
}

.navbar__switch-dropdown-link {
  transition-duration: 0.3s;
  transition-property: color, background-color;
  display: -ms-flexbox;
  display: flex;
  min-height: 3.5rem;
  padding: 0.5rem 0.65625rem;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #020617;
  margin: 0.25rem 0;
  border-radius: 0.5rem;
}

.navbar__switch-dropdown-link:hover {
  background-color: #f1f5f9;
  color: #020617;
}

.navbar__switch-dropdown-link:hover .navbar__switch-dropdown-link-arrow {
  color: #334155;
}

.navbar__switch-dropdown-link-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: #fff;
  font-size: 1.5rem;
  color: #286cf6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.65625rem;
  width: 2.5rem;
  height: 2.5rem;
}

.navbar__switch-dropdown-link-label {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.navbar__switch-dropdown-link-arrow {
  transition: 0.3s color;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
  font-size: 1rem;
  color: #64748b;
}

.navbar__switch-dropdown-link.is-active {
  background-color: #e2e8f0;
  font-weight: 600;
  color: #020617;
}

.navbar__switch.is-active .navbar__switch-toggle {
  background-color: #f1f5f9;
  border-color: transparent;
}

.navbar__switch.is-active .navbar__switch-toggle-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.navbar__switch.is-active .navbar__switch-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
}

.navbar__content {
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid transparent;
}

@media (max-width: 1199px) {
  .navbar__content {
    transition-duration: 0.3s;
    transition-property: max-height, height, visibility, padding, border-color;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    position: absolute;
    -webkit-transform: initial;
    transform: initial;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0.75rem;
    max-height: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
  }
}

@media (max-width: 575px) {
  .navbar__content--wrapper {
    overflow-y: auto !important;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .navbar__content--wrapper .navbar__menu {
    overflow: initial;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.navbar__menu {
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .navbar__menu {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

@media (min-width: 75rem) {
  .navbar__menu:not(.navbar__menu--session) {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .navbar__menu:not(.navbar__menu--session) {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 75rem) and (max-width: 100rem) {
  .navbar__menu:not(.navbar__menu--session) {
    width: 100%;
    max-width: 62.5rem;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.navbar__menu-item {
  margin-left: 0.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

@media screen and (min-width: 48rem) {
  .navbar__menu-item {
    margin-left: calc(0.92593vw - 0.19444rem);
  }
}

@media screen and (min-width: 75rem) {
  .navbar__menu-item {
    margin-left: 0.5rem;
  }
}

@media (max-width: 1199px) {
  .navbar__menu-item {
    margin-left: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (max-width: 575px) {
  .navbar__menu-item {
    -ms-flex-positive: initial;
    flex-grow: initial;
    padding: 0 0.5rem;
  }
}

@media (max-width: 1199px) {
  .navbar__menu-item {
    opacity: 0;
  }

  .navbar__menu-item:nth-child(1) {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    transition: opacity 0.3345s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.15s, transform 0.4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.108s, -webkit-transform 0.4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.108s;
  }

  .navbar__menu-item:nth-child(2) {
    -webkit-transform: translateY(-36px);
    transform: translateY(-36px);
    transition: opacity 0.30573s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.13667s, transform 0.45552s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.09933s, -webkit-transform 0.45552s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.09933s;
  }

  .navbar__menu-item:nth-child(3) {
    -webkit-transform: translateY(-32px);
    transform: translateY(-32px);
    transition: opacity 0.28122s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.12333s, transform 0.44574s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.09067s, -webkit-transform 0.44574s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.09067s;
  }

  .navbar__menu-item:nth-child(4) {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    transition: opacity 0.26098s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.11s, transform 0.43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.082s, -webkit-transform 0.43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.082s;
  }

  .navbar__menu-item:nth-child(5) {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    transition: opacity 0.24499s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.09667s, transform 0.43097s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.07333s, -webkit-transform 0.43097s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.07333s;
  }

  .navbar__menu-item:nth-child(6) {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: opacity 0.23327s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.08333s, transform 0.42598s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.06467s, -webkit-transform 0.42598s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.06467s;
  }

  .navbar__menu-item:nth-child(7) {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    transition: opacity 0.23327s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.08333s, transform 0.42598s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.06467s, -webkit-transform 0.42598s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.06467s;
  }

  .navbar__menu-item:nth-child(8) {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }

  .navbar__menu-item:nth-child(9) {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  .navbar__menu-item:nth-child(10) {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@media (max-width: 767px) {
  .navbar__menu-item + .navbar__menu-item {
    margin-top: 0.25rem;
  }
}

.navbar__menu-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 1rem;
  line-height: 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
}

@media screen and (min-width: 62rem) {
  .navbar__menu-link {
    padding-left: calc(1.78571vw - 0.60714rem);
    padding-right: calc(1.78571vw - 0.60714rem);
  }
}

@media screen and (min-width: 90rem) {
  .navbar__menu-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 48rem) {
  .navbar__menu-link {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .navbar__menu-link {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
  }
}

@media (max-width: 575px) {
  .navbar__menu-link {
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 0.375rem;
  }
}

@media (min-width: 100rem) {
  .navbar__menu-link {
    white-space: nowrap;
  }
}

.navbar__menu-link-icon {
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  font-size: 1rem;
  opacity: 0.8;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
  margin-right: -0.375rem;
}

.navbar__menu-link:not(.button) {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  color: #020617;
}

.navbar__menu-link.is-active {
  color: #286cf6;
}

.navbar__menu-dropdown {
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform, -webkit-transform;
  background-color: #fff;
  border-radius: 0.625rem;
  position: absolute;
  width: 13.75rem;
  min-width: 13.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 100%;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem 0;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  z-index: 1000;
  border-top: 0;
}

@media (min-width: 48rem) {
  .navbar__menu-dropdown {
    max-height: initial !important;
    left: -0.75rem;
  }
}

@media (min-width: 75rem) {
  .navbar__menu-dropdown::before {
    content: '';
    width: 100%;
    height: 0.75rem;
    position: absolute;
    left: 0;
    bottom: 100%;
  }
}

@media (min-width: 75rem) {
  .navbar__menu-dropdown::after {
    content: '';
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 0.125rem;
    position: absolute;
    left: 2rem;
    bottom: 100%;
    -webkit-transform: translateY(60%) rotate(-45deg);
    transform: translateY(60%) rotate(-45deg);
    background-color: #fff;
  }
}

@media (max-width: 1199px) {
  .navbar__menu-dropdown {
    min-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 0;
    left: 0;
  }
}

@media (max-width: 767px) {
  .navbar__menu-dropdown {
    transition-duration: 0.4s;
    transition-property: max-height, padding-top, border-color;
    position: initial;
    max-height: 0;
    overflow: hidden;
    box-sizing: content-box;
    box-shadow: inherit;
    width: 100%;
    background-color: #eff4fa;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: initial !important;
    transform: initial !important;
    pointer-events: auto !important;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
}

.navbar__menu-dropdown-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767px) {
  .navbar__menu-dropdown-item {
    padding: 0.25rem 0.5rem;
  }
}

.navbar__menu-dropdown-link {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 1rem 1.5rem;
  color: #020617;
}

@media (min-width: 48rem) {
  .navbar__menu-dropdown-link {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .navbar__menu-dropdown-link {
    border-radius: 0.375rem;
    padding: 0.75rem;
  }
}

.navbar__menu-dropdown-link:hover {
  color: #286cf6;
  background-color: #f1f5f9;
}

@media (max-width: 767px) {
  .navbar__menu-dropdown-link:hover {
    background-color: #fff;
  }
}

.navbar__menu-item:hover {
  z-index: 5;
}

.navbar__menu-item:hover .navbar__menu-link:not(.button) {
  color: #171f44 !important;
  background-color: #eff4fa;
}

@media (max-width: 575px) {
  .navbar__menu-item:hover .navbar__menu-link:not(.button) {
    background-color: #e3ebf3 !important;
    color: #171f44 !important;
  }
}

.navbar__menu-item:hover .navbar__menu-link-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 1;
}

.navbar__menu-item:hover .navbar__menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 75rem) {
  .navbar__menu-item:hover .navbar__menu-dropdown {
    -webkit-transform: translateY(0.75rem);
    transform: translateY(0.75rem);
  }
}

.navbar__menu-item.is-active .navbar__menu-link:not(.button),
.navbar__menu-item.is-opened .navbar__menu-link:not(.button) {
  background-color: #e3ebf3 !important;
  color: #171f44 !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.navbar__menu-item.is-active .navbar__menu-link-icon,
.navbar__menu-item.is-opened .navbar__menu-link-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 1;
}

@media (max-width: 767px) {
  .navbar__menu-item.is-active .navbar__menu-dropdown,
  .navbar__menu-item.is-opened .navbar__menu-dropdown {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.navbar__menu-item.is-active .navbar__menu-dropdown {
  max-height: initial;
}

@media (max-width: 1199px) {
  .navbar__menu--session {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}

@media (min-width: 75rem) {
  .navbar__menu--session .navbar__menu-item {
    margin-left: 0.75rem;
  }
}

@media (max-width: 1199px) {
  .navbar__menu--session .navbar__menu-item {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (max-width: 1199px) {
  .navbar__menu--session .navbar__menu-item + .navbar__menu-item {
    margin-left: 1.25rem;
  }
}

@media (max-width: 1199px) {
  .navbar__menu--session .navbar__menu-link:not(.button) {
    background-color: #bdefef;
    text-align: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .navbar__menu--session .navbar__menu-link:not(.button):hover {
    background-color: #39d0d0;
  }
}

.navbar__search {
  z-index: 3 !important;
  /*&.is-opened {
      @include breakpoint-up('xlarge') {
        min-width: rem(300px);
      }
      @include breakpoint-up('xxlarge') {
        min-width: rem(360px);
      }
    }*/
}

@media (min-width: 48rem) {
  .navbar__search {
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 62rem) {
  .navbar__search {
    margin-bottom: 0;
    position: absolute !important;
    bottom: 100%;
    min-width: 20rem;
    left: 16.5rem;
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    top: initial !important;
  }
}

@media (min-width: 75rem) {
  .navbar__search {
    transition: 0.3s min-width;
    min-width: 12.5rem;
    position: relative !important;
    left: initial;
    bottom: initial;
    -webkit-transform: initial;
    transform: initial;
  }
}

@media (min-width: 90rem) {
  .navbar__search {
    min-width: 17.5rem;
  }
}

@media (max-width: 575px) {
  .navbar__search {
    -ms-flex-order: -2;
    order: -2;
  }
}

@media (max-width: 991px) {
  .navbar__search {
    height: 100%;
    top: 0;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

@media (max-width: 575px) {
  .navbar__search ~ .navbar__buttons--session {
    margin-top: 1rem;
  }
}

@media (min-width: 62rem) {
  .navbar__search + .navbar__menu {
    position: relative;
    top: initial;
    left: initial;
    -webkit-transform: initial;
    transform: initial;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 1rem;
  }
}

@media (min-width: 61.9375rem) and (max-width: 75rem) {
  .navbar__search .overlay {
    width: 625rem;
    left: -312.5rem;
    top: -6.25rem;
    height: calc(100vh + 6.25rem);
  }
}

.navbar__hamburger {
  width: 2.5rem;
  height: 2.5rem;
}

.navbar__hamburger.has-toggle,
.has-toggle > .navbar__hamburger {
  color: #020617;
}

.navbar__overlay {
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0.3s;
  display: none;
}

@media (max-width: 1199px) {
  .navbar__overlay {
    display: block;
  }
}

.navbar__buttons-dropdown,
.navbar__user-dropdown {
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform, -webkit-transform;
  position: absolute;
  background-color: #fff;
  right: 0;
  top: 100%;
  min-width: 100%;
  width: 15rem;
  border-radius: 0.375rem;
  padding: 0.5rem 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0px 94px 114px rgba(7, 7, 62, 0.06);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.625rem);
  transform: translateY(0.625rem);
  pointer-events: none;
  margin-top: 0.75rem;
}

@media (max-width: 1199px) {
  .navbar__buttons-dropdown,
  .navbar__user-dropdown {
    z-index: 51;
  }
}

@media (max-width: 575px) {
  .navbar__buttons-dropdown,
  .navbar__user-dropdown {
    top: auto;
    max-width: initial;
    bottom: 100%;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 -12px 56px 0 rgba(0, 0, 0, 0.08);
  }
}

.navbar__buttons-dropdown::before,
.navbar__user-dropdown::before {
  content: '';
  width: 100%;
  height: 0.75rem;
  position: absolute;
  left: 0;
  bottom: 100%;
}

.navbar__buttons-dropdown-item,
.navbar__user-dropdown-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.navbar__buttons-dropdown-item--seperator:not(:first-child),
.navbar__user-dropdown-item--seperator:not(:first-child) {
  border-top: 1px solid #e2e8f0;
}

.navbar__buttons-dropdown-item--seperator:first-child,
.navbar__user-dropdown-item--seperator:first-child {
  border-bottom: 1px solid #e2e8f0;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.navbar__buttons-dropdown-item--seperator + .navbar__user-dropdown-item .navbar__user-dropdown-item-title,
.navbar__user-dropdown-item--seperator + .navbar__user-dropdown-item .navbar__user-dropdown-item-title {
  border-top: 0 !important;
  padding-top: 0 !important;
}

.navbar__buttons-dropdown-item-title,
.navbar__user-dropdown-item-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #64748b;
  margin-top: 0.5rem;
  padding: 0 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 1199px) {
  .navbar__buttons-dropdown-item-title,
  .navbar__user-dropdown-item-title {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.navbar__buttons-dropdown-item:not(:first-child) .navbar__buttons-dropdown-item-title:first-child,
.navbar__user-dropdown-item:not(:first-child) .navbar__buttons-dropdown-item-title:first-child,
.navbar__buttons-dropdown-item:not(:first-child) .navbar__user-dropdown-item-title:first-child,
.navbar__user-dropdown-item:not(:first-child) .navbar__user-dropdown-item-title:first-child {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.navbar__buttons-dropdown-header,
.navbar__user-dropdown-header {
  padding: 1rem 1.25rem;
  line-height: 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 75rem) and (max-height: 57.1875rem) {
  .navbar__buttons-dropdown-header,
  .navbar__user-dropdown-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

@media (max-width: 1199px) {
  .navbar__buttons-dropdown-header,
  .navbar__user-dropdown-header {
    padding: 0.75rem 1.75rem;
  }
}

.navbar__buttons-dropdown-header-icon,
.navbar__user-dropdown-header-icon {
  width: 2.625rem;
  height: 2.625rem;
  background-color: #eff4fa;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 0.75rem;
  color: #001ba3;
  font-size: 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.navbar__buttons-dropdown-header-content,
.navbar__user-dropdown-header-content {
  min-width: 0;
}

.navbar__buttons-dropdown-content,
.navbar__user-dropdown-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 1.25rem;
}

.navbar__buttons-dropdown-footer,
.navbar__user-dropdown-footer {
  padding: 0.75rem 1.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-top: 1px solid #e2e8f0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.navbar__buttons-dropdown-footer:last-child,
.navbar__user-dropdown-footer:last-child {
  margin-bottom: -0.5rem;
}

.navbar__buttons-dropdown-type,
.navbar__user-dropdown-type {
  background-color: #f1f5f9;
  padding: 0.5rem 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  font-size: 0.875rem;
}

.navbar__buttons-dropdown-link,
.navbar__user-dropdown-link {
  transition-duration: 0.3s;
  transition-property: color, background-color;
  padding: 0.875rem 1.25rem;
  color: #1f2937;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (max-width: 1199px) {
  .navbar__buttons-dropdown-link,
  .navbar__user-dropdown-link {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    font-weight: 500;
  }
}

.navbar__buttons-dropdown-link-icon,
.navbar__user-dropdown-link-icon {
  font-size: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.5rem;
  color: #9ca3af;
}

.navbar__buttons-dropdown-link.is-disabled,
.navbar__user-dropdown-link.is-disabled {
  color: #1f2937;
}

.navbar__buttons-dropdown-link.is-active,
.navbar__user-dropdown-link.is-active {
  color: #286cf6;
}

.navbar__buttons-dropdown-link:hover:not(.is-active),
.navbar__user-dropdown-link:hover:not(.is-active) {
  background-color: #e2e8f0;
  color: #020617;
}

.navbar__buttons-dropdown-link--highlighted,
.navbar__user-dropdown-link--highlighted {
  color: #d03c12;
}

.navbar__buttons-dropdown-link--highlighted:hover,
.navbar__user-dropdown-link--highlighted:hover {
  background-color: #ffedeb;
  color: #830d0d;
}

@media (max-width: 575px) {
  .navbar__button--job {
    border-radius: 0.375rem !important;
    margin: 0 !important;
  }
}

@media (max-width: 1199px) {
  .navbar__container > .navbar__button:last-child {
    margin-right: -0.75rem;
  }
}

.navbar__user {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 0.875rem;
  z-index: 20;
  /*@include breakpoint-down('xlarge') {
      margin: 0 rem(-12px) rem(-24px);
      border-top: 1px solid color('border');
    }*/
}

@media (max-width: 575px) {
  .navbar__user {
    position: initial;
  }
}

.navbar__user-toggle {
  transition-duration: 0.3s;
  transition-property: background-color, box-shadow;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border: 0;
  border-radius: 0.375rem;
  /*@include breakpoint-down('xlarge') {
        padding: rem(12px) rem(12px + 16px);
      }*/
}

@media (max-width: 575px) {
  .navbar__user-toggle {
    background-color: #e6edf4;
    padding: 0.5rem 0.75rem;
  }
}

.navbar__user-toggle-avatar {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  border: 2px solid #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  overflow-x: hidden;
  position: relative;
  font-weight: 500;
  background-color: #eff4fa;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .navbar__user-toggle-avatar {
    width: calc(1.85185vw + 1.11111rem);
    height: calc(1.85185vw + 1.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .navbar__user-toggle-avatar {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .navbar__user-toggle-avatar {
    font-size: calc(0vw + 1rem);
  }
}

@media screen and (min-width: 75rem) {
  .navbar__user-toggle-avatar {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .navbar__user-toggle-avatar {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.navbar__user-toggle-avatar-letter {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.navbar__user-toggle-label {
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .navbar__user-toggle-label {
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: left;
    font-size: 1rem;
    margin-left: 0.75rem;
  }
}

.navbar__user-toggle-icon {
  transition-duration: 0.3s;
  transition-property: color, -webkit-transform;
  transition-property: transform, color;
  transition-property: transform, color, -webkit-transform;
  font-size: 1.25rem;
  margin-left: 0.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #475569;
}

.navbar__user-toggle:hover:not(.is-opened) {
  background-color: #e2e8f0;
}

@media (max-width: 575px) {
  .navbar__user-toggle:hover:not(.is-opened) {
    background-color: #d8e3ee;
  }
}

@media (max-width: 575px) {
  .navbar__user-toggle:active:not(.is-opened) {
    box-shadow: 0 0 0 0.1875rem #f1f5f9;
    background-color: #d5dde9;
  }
}

@media (min-width: 75rem) {
  .navbar__user-dropdown {
    max-height: calc(100vh - 4.9375rem);
    overflow-y: auto;
  }
}

@media (max-width: 1199px) {
  .navbar__user-dropdown {
    box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
  }
}

@media (max-width: 575px) {
  .navbar__user-dropdown {
    transition-duration: 0.4s;
    transition-property: max-height, padding-top;
    position: initial;
    max-height: 0;
    overflow: hidden;
    box-sizing: content-box;
    box-shadow: inherit;
    background-color: #e2e8f0;
    border-radius: 0 0 0.375rem 0.375rem;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
}

.navbar__user-dropdown-link:hover:not(.is-active) {
  background-color: #fff;
  color: #286cf6;
}

.navbar__user-dropdown-link {
  position: relative;
}

.navbar__user-dropdown-link-badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.25rem;
  line-height: 1;
  min-height: 1rem;
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 600;
  background-color: #e73323;
  color: #fff;
  border-radius: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.navbar__user-dropdown-link-label {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 75rem) and (max-height: 57.1875rem) {
  .navbar__user-dropdown-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.navbar__user-dropdown-link.is-unread {
  padding-left: 2.125rem;
}

@media (max-width: 1199px) {
  .navbar__user-dropdown-link.is-unread {
    padding-left: 2.625rem;
  }
}

.navbar__user-dropdown-link.is-unread::after {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: #e73323;
  border-radius: 50%;
  position: absolute;
  left: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .navbar__user-dropdown-link.is-unread::after {
    left: 1.75rem;
  }
}

.navbar__user.is-active .navbar__user-toggle,
.navbar__user.is-opened .navbar__user-toggle {
  background-color: #e2e8f0;
}

@media (max-width: 575px) {
  .navbar__user.is-active .navbar__user-toggle,
  .navbar__user.is-opened .navbar__user-toggle {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.navbar__user.is-active .navbar__user-toggle-icon,
.navbar__user.is-opened .navbar__user-toggle-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.navbar__user.is-active .navbar__user-dropdown,
.navbar__user.is-opened .navbar__user-dropdown {
  pointer-events: auto;
}

@media (max-width: 575px) {
  .navbar__user.is-active .navbar__user-dropdown,
  .navbar__user.is-opened .navbar__user-dropdown {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    box-shadow: initial;
  }
}

.navbar__user.is-active .navbar__user-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 575px) {
  .navbar__user.is-active .navbar__user-dropdown {
    max-height: initial;
  }
}

.navbar__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .navbar__buttons {
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    position: absolute;
    right: 5.625rem;
    top: -3.125rem;
  }
}

@media (max-width: 575px) {
  .navbar__buttons {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.75rem;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    position: initial;
  }
}

.navbar__buttons-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 575px) {
  .navbar__buttons-item {
    position: initial;
  }
}

.navbar__buttons-link {
  min-width: 2.5rem;
  position: relative;
}

.navbar__buttons-link:not(.navbar__buttons-link--normal) {
  padding-left: 0;
  padding-right: 0;
  border-radius: 50%;
}

.navbar__buttons-link:not(.button--gray):not(.button--primary):hover {
  color: #171f44 !important;
  background-color: #e2e8f0 !important;
}

.navbar__buttons-link[data-badge]::after {
  content: attr(data-badge);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.125rem;
  line-height: 1;
  min-height: 1rem;
  min-width: 1rem;
  text-align: center;
  font-size: 0.5625rem;
  font-weight: 600;
  border: 0.09375rem solid #fff;
  background-color: #e73323;
  color: #fff;
  border-radius: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: absolute;
  left: 48%;
  top: 0.3125rem;
}

.navbar__buttons-link-icon {
  font-size: 1.25rem !important;
}

.navbar__buttons-item:not(:first-child) {
  margin-left: 0.5rem;
}

@media (max-width: 1199px) {
  .navbar__buttons--session {
    top: -3.4375rem;
    z-index: 10;
  }
}

@media (max-width: 575px) {
  .navbar__buttons--session {
    -ms-flex-order: -1;
    order: -1;
    top: initial;
    border-top: 0;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 0;
    padding-bottom: 0.75rem;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-pack: initial;
    justify-content: initial;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 -0.75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 575px) {
  .navbar__buttons--session .navbar__buttons-item {
    margin-left: 0 !important;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

@media (max-width: 575px) {
  .navbar__buttons:not(.navbar__buttons--session) .navbar__buttons-item {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

@media (max-width: 575px) {
  .navbar__buttons:not(.navbar__buttons--session) .navbar__buttons-link {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (max-width: 575px) {
  .navbar__buttons:not(.navbar__buttons--session) .navbar__buttons-link.button--plain {
    background-color: #e3ebf3;
  }
}

@media (min-width: 62rem) {
  .navbar__buttons-dropdown--notifications {
    width: 25rem;
  }
}

@media (min-width: 75rem) {
  .navbar__buttons-dropdown--notifications {
    max-height: calc(100vh - 4.9375rem);
  }
}

.navbar__buttons-dropdown--notifications .notifications__card + .notifications__card {
  margin-top: 0.25rem;
}

.navbar__buttons-dropdown--notifications .navbar__buttons-dropdown-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.navbar__buttons-dropdown--notifications .navbar__buttons-dropdown-header {
  border-bottom: 1px solid #e2e8f0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar__buttons-dropdown--notifications .navbar__buttons-dropdown-read-all {
  font-size: 0.8125rem;
}

.navbar__buttons-dropdown--notifications .navbar__buttons-dropdown-read-all:not(:hover):not(:active):not(:focus) {
  color: #475569;
}

@media (min-width: 75rem) {
  .navbar__buttons-dropdown--notifications-mobile {
    display: none;
  }
}

@media (max-width: 1199px) {
  .navbar__buttons-dropdown--notifications-mobile {
    width: 100%;
    bottom: initial;
    top: 100%;
    height: calc(100vh - 4rem);
    margin-top: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: initial;
    border-top: 1px solid #e2e8f0;
  }
}

@media (max-width: 991px) {
@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .navbar__buttons-dropdown--notifications-mobile .navbar__buttons-dropdown-footer {
      padding-bottom: calc((constant(safe-area-inset-bottom)) + 12px);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .navbar__buttons-dropdown--notifications-mobile .navbar__buttons-dropdown-footer {
      padding-bottom: calc((env(safe-area-inset-bottom)) + 12px);
    }
}
}

.navbar--bordered {
  border-bottom: 1px solid #e2e8f0;
}

.navbar.is-opened::before,
.navbar.is-opened .navbar__overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.navbar.is-opened .navbar__overlay {
  pointer-events: auto;
  transition-delay: 0.2s;
}

@media (max-width: 1199px) {
  .navbar.is-opened .navbar__content {
    max-height: 37.5rem;
    height: auto;
    visibility: visible;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    z-index: 50;
    pointer-events: auto;
    overflow: visible;
    border-top-color: #e2e8f0;
  }
}

@media (max-width: 767px) {
@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .navbar.is-opened .navbar__content {
      padding-bottom: calc((constant(safe-area-inset-bottom)) + 0.75rem);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .navbar.is-opened .navbar__content {
      padding-bottom: calc((env(safe-area-inset-bottom)) + 0.75rem);
    }
}
}

@media (max-width: 575px) {
  .navbar.is-opened .navbar__content {
    max-height: calc(100vh - 4rem);
    max-height: calc(var(--vh) - 4rem);
    height: calc(100vh - 4rem);
    height: calc(var(--vh) - 4rem);
  }
}

@media (min-width: 36rem) {
  .navbar.is-opened .navbar__container > .navbar__buttons-link {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 1199px) {
  .navbar.is-opened .navbar__buttons {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: opacity 0.34923s cubic-bezier(0.32, 0.08, 0.24, 1) 0.09667s, transform 0.40508s cubic-bezier(0.32, 0.08, 0.24, 1) 0.08667s, -webkit-transform 0.40508s cubic-bezier(0.32, 0.08, 0.24, 1) 0.08667s;
  }
}

@media (max-width: 1199px) {
  .navbar.is-opened .navbar__menu-item {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .navbar.is-opened .navbar__menu-item:nth-child(1) {
    transition: opacity 0.3091s cubic-bezier(0.32, 0.08, 0.24, 1) 0.03s, transform 0.3455s cubic-bezier(0.32, 0.08, 0.24, 1) 0.02s, -webkit-transform 0.3455s cubic-bezier(0.32, 0.08, 0.24, 1) 0.02s;
  }

  .navbar.is-opened .navbar__menu-item:nth-child(2) {
    transition: opacity 0.31812s cubic-bezier(0.32, 0.08, 0.24, 1) 0.04333s, transform 0.35351s cubic-bezier(0.32, 0.08, 0.24, 1) 0.03333s, -webkit-transform 0.35351s cubic-bezier(0.32, 0.08, 0.24, 1) 0.03333s;
  }

  .navbar.is-opened .navbar__menu-item:nth-child(3) {
    transition: opacity 0.32664s cubic-bezier(0.32, 0.08, 0.24, 1) 0.05667s, transform 0.36347s cubic-bezier(0.32, 0.08, 0.24, 1) 0.04667s, -webkit-transform 0.36347s cubic-bezier(0.32, 0.08, 0.24, 1) 0.04667s;
  }

  .navbar.is-opened .navbar__menu-item:nth-child(4) {
    transition: opacity 0.33467s cubic-bezier(0.32, 0.08, 0.24, 1) 0.07s, transform 0.37539s cubic-bezier(0.32, 0.08, 0.24, 1) 0.06s, -webkit-transform 0.37539s cubic-bezier(0.32, 0.08, 0.24, 1) 0.06s;
  }

  .navbar.is-opened .navbar__menu-item:nth-child(5) {
    transition: opacity 0.3422s cubic-bezier(0.32, 0.08, 0.24, 1) 0.08333s, transform 0.38926s cubic-bezier(0.32, 0.08, 0.24, 1) 0.07333s, -webkit-transform 0.38926s cubic-bezier(0.32, 0.08, 0.24, 1) 0.07333s;
  }

  .navbar.is-opened .navbar__menu-item:nth-child(6) {
    transition: opacity 0.34923s cubic-bezier(0.32, 0.08, 0.24, 1) 0.09667s, transform 0.40508s cubic-bezier(0.32, 0.08, 0.24, 1) 0.08667s, -webkit-transform 0.40508s cubic-bezier(0.32, 0.08, 0.24, 1) 0.08667s;
  }
}

.navbar--full {
  height: 4rem !important;
  border-bottom-color: transparent;
}

.navbar--full::after {
  height: 0.25rem;
  position: absolute;
  top: 100%;
  right: 0px;
  left: 0px;
  background: linear-gradient(rgba(9, 30, 66, 0.13) 0px, rgba(9, 30, 66, 0.13) 1px, rgba(9, 30, 66, 0.08) 1px, rgba(9, 30, 66, 0) 4px);
  content: '';
}

.navbar--full .navbar__container {
  max-width: initial;
}

@media (min-width: 36rem) {
  .navbar--full .navbar__logo {
    min-width: 13.25rem;
  }
}

@media (min-width: 36rem) {
  .navbar--full .navbar__logo .navbar__logo-badge {
    left: 70%;
  }
}

@media (min-width: 75rem) {
  .navbar--full .navbar__content {
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 1.5rem;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.navbar--full .navbar__logo-img {
  height: 2.25rem;
  width: auto;
}

@media screen and (min-width: 48rem) {
  .navbar--full .navbar__logo-img {
    height: calc(0vw + 2.25rem);
  }
}

@media screen and (min-width: 75rem) {
  .navbar--full .navbar__logo-img {
    height: 2.25rem;
  }
}

.navbar--full .navbar__user-dropdown,
.navbar--full .navbar__buttons-dropdown--notifications {
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.navbar .is-active > .navbar__buttons-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}

.navbar .is-active > .navbar__buttons-link {
  background-color: #e2e8f0;
}

.footer {
  display: -ms-flexbox;
  display: flex;
  background-color: #001441;
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  font-size: 0.875rem;
}

.footer a:not(.button):not(.footer__link) {
  color: #fff;
}

.footer a:not(.button):not(.footer__link):hover {
  color: #286cf6;
}

.footer__container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 48rem) {
  .footer__container {
    padding-top: calc(3.7037vw + 0.22222rem);
    padding-bottom: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .footer__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.footer__bottom {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  font-size: 0.8125rem;
}

@media screen and (min-width: 48rem) {
  .footer__bottom {
    margin-top: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .footer__bottom {
    margin-top: 2rem;
  }
}

@media (max-width: 991px) {
@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .footer__bottom {
      padding-bottom: constant(safe-area-inset-bottom);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer__bottom {
      padding-bottom: env(safe-area-inset-bottom);
    }
}
}

.footer__bottom p {
  margin: 0;
}

@media (min-width: 62rem) {
  .footer__bottom {
    text-align: left;
  }
}

.footer__certificate {
  transition: 0.3s opacity;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.8;
}

.footer__certificate-item {
  max-height: 2.5rem;
  width: auto;
  max-width: 100%;
  max-height: 2.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 48rem) {
  .footer__certificate-item {
    max-height: calc(2.31481vw + 1.38889rem);
  }
}

@media screen and (min-width: 75rem) {
  .footer__certificate-item {
    max-height: 3.125rem;
  }
}

.footer__certificate:hover {
  opacity: 1;
}

.footer__logo {
  display: -ms-flexbox;
  display: flex;
}

.footer__logo-img {
  height: 2rem;
  width: auto;
}

@media screen and (min-width: 48rem) {
  .footer__logo-img {
    height: calc(2.31481vw + 0.88889rem);
  }
}

@media screen and (min-width: 75rem) {
  .footer__logo-img {
    height: 2.625rem;
  }
}

.footer__contact {
  font-weight: 500;
}

.footer__contact-item + .footer__contact-item {
  margin-top: 0.75rem !important;
}

.footer__contact-item-link {
  color: #fff !important;
}

.footer__contact-item-link:hover {
  color: #286cf6 !important;
}

.footer__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 500;
}

@media (min-width: 62rem) {
  .footer__nav--grid-2 {
    display: grid;
    rid-gap: 0.5rem 1.25rem;
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 0.75rem 1.5rem;
  }
}

@media (min-width: 62rem) {
  .footer__nav--grid-2 .footer__nav-item:not(:first-child) {
    margin-top: 0;
  }
}

.footer__nav-item:not(:first-child) {
  margin-top: 0.75rem;
}

.footer__title {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-size: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.1em;
}

.footer__form {
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  width: 100%;
  position: relative;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 48rem) {
  .footer__form {
    margin-right: 4rem;
    width: auto;
  }
}

@media (min-width: 48rem) {
  .footer__form::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    right: -2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.footer__form-input {
  height: initial;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-radius: 0;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  min-width: 15rem;
  padding: 0.5rem 3rem 0.5rem 0;
}

.footer__form-input:disabled,
.footer__form-input[readonly] {
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  background-color: transparent !important;
}

.footer__form-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.footer__form-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.footer__form-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.footer__form-input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.footer__form-input:focus {
  border-bottom-color: #fff;
  color: #fff;
}

.footer__form-submit {
  transition: 0.3s color;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.25rem;
  z-index: 3;
}

.footer__form-submit:not(:disabled):hover {
  color: #286cf6;
}

.footer__form-submit:disabled {
  pointer-events: none;
}

.footer__social-link {
  font-size: 1.25rem !important;
}

.footer__social-link:not(:hover) {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer__link {
  color: rgba(255, 255, 255, 0.75);
  display: -ms-flexbox;
  display: flex;
  padding: 0.25rem 0;
  line-height: 1rem;
  font-weight: 500;
}

.footer__link:hover {
  color: #fff;
}

.footer__sponsor {
  display: -ms-flexbox;
  display: flex;
}

.footer__sponsor-img {
  width: auto;
  height: 5rem;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__form-label {
  color: #fff !important;
}

.section {
  z-index: 2;
}

.section.sticky {
  z-index: 10;
  top: 0;
}

.section__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 62rem) {
  .section__container {
    padding-top: calc(17.85714vw - 8.07143rem);
    padding-bottom: calc(17.85714vw - 8.07143rem);
  }
}

@media screen and (min-width: 90rem) {
  .section__container {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section__container--bordered {
  border-top: 1px solid #e2e8f0;
}

.section__container--background {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 48rem) {
  .section__container--background {
    padding-top: calc(11.60714vw - 3.57143rem);
    padding-bottom: calc(11.60714vw - 3.57143rem);
  }
}

@media screen and (min-width: 90rem) {
  .section__container--background {
    padding-top: 6.875rem;
    padding-bottom: 6.875rem;
  }
}

.section__image {
  border-radius: 0.375rem;
  position: relative;
}

@media screen and (min-width: 48rem) {
  .section__image {
    border-radius: calc(1.38889vw - 0.29167rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__image {
    border-radius: 0.75rem;
  }
}

.section__image--shadowed {
  box-shadow: 0 0 0 0.3125rem #fff, 0px 94px 114px rgba(7, 7, 62, 0.06);
}

.section__image--bordered {
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 0 0 0.3125rem #fff;
}

.section__image-hover {
  transition-duration: 0.3s;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  width: 3rem;
  height: 3rem;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  font-size: 1.5rem;
  background-color: #1e295b;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  box-shadow: 0px 12px 36px rgba(7, 7, 62, 0.09);
  -webkit-transform-origin: center;
  transform-origin: center;
  z-index: 3;
}

@media screen and (min-width: 48rem) {
  .section__image-hover {
    width: calc(3.7037vw + 1.22222rem);
    height: calc(3.7037vw + 1.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__image-hover {
    width: 4rem;
    height: 4rem;
  }
}

@media screen and (min-width: 48rem) {
  .section__image-hover {
    margin-left: calc(-1.85185vw - 0.61111rem);
    margin-top: calc(-1.85185vw - 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__image-hover {
    margin-left: -2rem;
    margin-top: -2rem;
  }
}

@media screen and (min-width: 48rem) {
  .section__image-hover {
    font-size: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__image-hover {
    font-size: 2rem;
  }
}

.section a.section__image,
.section figure.section__image {
  cursor: pointer;
}

.section a.section__image:hover .section__image-hover,
.section figure.section__image:hover .section__image-hover {
  -webkit-transform: scale(1.12, 1.12);
  transform: scale(1.12, 1.12);
  background-color: #286cf6;
}

.section__image-wrapper {
  position: relative;
  z-index: 2;
}

.section__image-wrapper::before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.section__image-wrapper .section__image,
.section__image-wrapper .section__image-group {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.section__image-wrapper .section__image-group {
  display: -ms-flexbox;
  display: flex;
}

.section__image-wrapper .section__image-group .section__image {
  -webkit-transform: initial;
  transform: initial;
  position: relative;
  left: initial;
  top: initial;
  box-shadow: 0 0 0 0.3125rem #fff, 0px 94px 114px rgba(7, 7, 62, 0.06);
}

.section__image-wrapper .section__image-group .section__image + .section__image {
  margin-left: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .section__image-wrapper .section__image-group .section__image + .section__image {
    margin-left: calc(2.77778vw - 0.58333rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__image-wrapper .section__image-group .section__image + .section__image {
    margin-left: 1.5rem;
  }
}

.section__image-wrapper::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background-color: rgba(40, 108, 246, 0.08);
  z-index: 2;
  pointer-events: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0.9375rem 0 0 rgba(0, 27, 163, 0.12), 0.9375rem 1.5rem 0 0 rgba(27, 89, 213, 0.07), -0.4375rem -0.5rem 0 0 rgba(27, 89, 213, 0.19);
}

.section__image-shape {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

@media (max-width: 767px) {
  .section__image-shape {
    max-width: 17.5rem;
  }
}

.section__image-slider {
  border-radius: 0.375rem;
  overflow: hidden;
}

@media screen and (min-width: 48rem) {
  .section__image-slider {
    border-radius: calc(1.38889vw - 0.29167rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__image-slider {
    border-radius: 0.75rem;
  }
}

.section__subtitle {
  margin-bottom: 0.25rem;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .section__subtitle {
    margin-bottom: calc(0.92593vw - 0.19444rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__subtitle {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 62rem) {
  .section__flow {
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 62rem) {
  .section__flow::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 15%;
    bottom: 15%;
    background-color: rgba(226, 232, 240, 0.5);
    border-radius: 1.5rem;
    pointer-events: none;
    z-index: -1;
  }
}

.section__toggle {
  margin-bottom: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e2e8f0;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
  border-radius: 3.125rem;
}

@media screen and (min-width: 48rem) {
  .section__toggle {
    margin-bottom: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__toggle {
    margin-bottom: 3rem;
  }
}

.section__toggle-item {
  transition-duration: 0.3s;
  transition-property: box-shadow, background-color, color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #64748b;
}

.section__toggle-item:hover {
  color: #020617;
}

.section__toggle-item.is-active {
  background-color: #fff;
  color: #020617;
  box-shadow: 0px 2px 4px rgba(163, 163, 163, 0.08), 0px 2px 4px rgba(163, 163, 163, 0.08), 0px 2px 4px rgba(163, 163, 163, 0.08);
}

.section__title {
  margin-bottom: 2rem;
}

@media screen and (min-width: 48rem) {
  .section__title {
    margin-bottom: calc(5.55556vw - 0.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__title {
    margin-bottom: 3.5rem;
  }
}

.section__title strong {
  color: #286cf6;
}

.section__title strong.primary {
  color: #030712;
}

.section__title-label {
  z-index: 2;
  position: relative;
  display: inline;
}

.section__title-shape {
  font-size: 3.25em;
  position: absolute;
  left: 100%;
  top: 0.75rem;
  margin-left: -0.088em;
  z-index: -1;
  color: #eff4fa;
  pointer-events: none;
}

.section__title-shape--indent {
  margin-left: -0.32em;
}

@media (min-width: 62rem) {
  .section__title-shape {
    -webkit-animation: 4s shapemoveUp ease-in-out infinite;
    animation: 4s shapemoveUp ease-in-out infinite;
  }
}

@media (max-width: 991px) {
  .section__title-shape {
    display: none;
  }
}

.section__title + .section__subtitle {
  margin-top: 0.25rem;
  margin-bottom: 0;
}

@media screen and (min-width: 48rem) {
  .section__title + .section__subtitle {
    margin-top: calc(0.92593vw - 0.19444rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__title + .section__subtitle {
    margin-top: 0.5rem;
  }
}

@media (min-width: 62rem) {
@supports (position: sticky) {
    .section__title--sticky {
      top: 1.5rem;
      position: sticky;
      background-color: #fff;
    }
}
}

.section__caption:not(:first-child) {
  margin-top: 1rem;
}

@media screen and (min-width: 48rem) {
  .section__caption:not(:first-child) {
    margin-top: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__caption:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.section__header {
  margin-bottom: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

@media screen and (min-width: 48rem) {
  .section__header {
    margin-bottom: calc(5.55556vw - 0.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__header {
    margin-bottom: 3.5rem;
  }
}

.section__header .section__title {
  margin-bottom: initial !important;
}

.section__header--seperated {
  padding-bottom: 1.1875rem;
}

@media screen and (min-width: 48rem) {
  .section__header--seperated {
    padding-bottom: calc(4.39815vw - 0.92361rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__header--seperated {
    padding-bottom: 2.375rem;
  }
}

.section__header--seperated::after {
  width: 5rem;
  height: 0.1875rem;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #286cf6;
  border-radius: 0.5rem;
}

@media screen and (min-width: 48rem) {
  .section__header--seperated::after {
    width: calc(6.94444vw + 1.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__header--seperated::after {
    width: 6.875rem;
  }
}

@media screen and (min-width: 48rem) {
  .section__header--seperated::after {
    height: calc(0.46296vw - 0.03472rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__header--seperated::after {
    height: 0.3125rem;
  }
}

.section__tab {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .section__tab {
    margin-bottom: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__tab {
    margin-bottom: 3rem;
  }
}

.section__tab-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.5rem;
}

@media (max-width: 991px) {
  .section__tab-wrapper {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 0;
  }

  .section__tab-wrapper::-webkit-scrollbar {
    display: none;
  }
}

.section__tab-item {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 3.125rem;
  font-weight: 500;
  color: #1f2937;
}

.section__tab-item.is-active {
  background-color: #286cf6;
  color: #fff;
}

@media (min-width: 62rem) {
  .section__tab-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section__tab-item + .section__tab-item {
  margin-left: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .section__tab-item + .section__tab-item {
    margin-left: calc(2.77778vw - 0.58333rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__tab-item + .section__tab-item {
    margin-left: 1.5rem;
  }
}

.section__tab--basic {
  margin-bottom: 0;
}

.section__tab--basic .section__tab-item {
  border-radius: 0;
  padding: 0.5rem;
}

.section__tab--basic .section__tab-item.is-active {
  color: #286cf6;
  background-color: transparent;
}

@media (min-width: 62rem) {
  .section__tab--button .section__tab-wrapper {
    overflow: visible;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -0.5rem -0.75rem;
  }
}

.section__tab--button .section__tab-item {
  transition-duration: 0.3s;
  transition-property: background-color, color, border-color;
  border-radius: 3.125rem;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 1rem;
  color: #1f2937;
}

@media (min-width: 62rem) {
  .section__tab--button .section__tab-item {
    padding: 0.75rem 1.5rem;
    min-width: 8.75rem;
    text-align: center;
    margin: 0.5rem 0.75rem;
  }
}

.section__tab--button .section__tab-item:hover {
  background-color: #eaf0f6;
  border-color: transparent;
  color: #1f2937;
}

.section__tab--button .section__tab-item:active {
  background-color: #e6edf4;
  border-color: transparent;
  color: #1f2937;
}

.section__tab--button .section__tab-item.is-active {
  color: #020617;
  background-color: #cbd5e1;
}

@media (min-width: 62rem) {
  .section__tab--small .section__tab-item {
    font-size: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin: 0.5rem;
  }
}

.section__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section__content p:not(.card__caption) {
  margin-top: 0;
  margin-bottom: 0;
}

.section__content p:not(.card__caption):not(:first-child) {
  margin-top: 1rem;
}

@media (min-width: 62rem) {
  .section__content-wrapper {
    padding: 4.5rem;
  }
}

.section__content--flow {
  position: relative;
  z-index: 2;
}

@media (min-width: 62rem) {
  .section__content--flow {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section__content--flow::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 62rem) {
  .section__content--flow--right::after {
    width: auto;
    left: 0;
    right: 17.1875rem;
  }
}

@media (min-width: 62rem) {
  .section__content--flow--left::after {
    width: auto;
    right: 0;
    left: 17.1875rem;
  }
}

.section__button-back {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  margin-right: auto;
}

.section__button-back-icon {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.section__button {
  margin-top: 1.5rem;
}

.section__button:not(.section__button--centered) {
  margin-right: auto;
}

.section__button:not(.flex-grow-1) {
  min-width: 11.25rem;
}

@media (min-width: 36rem) {
  .section__button.flex-grow-1 {
    min-width: 11.25rem;
  }
}

@media screen and (min-width: 36rem) {
  .section__button {
    margin-top: calc(12.5vw - 3rem);
  }
}

@media screen and (min-width: 48rem) {
  .section__button {
    margin-top: 3rem;
  }
}

.section__button--centered {
  margin-top: 1.5rem;
}

@media screen and (min-width: 36rem) {
  .section__button--centered {
    margin-top: calc(13.54167vw - 3.375rem);
  }
}

@media screen and (min-width: 48rem) {
  .section__button--centered {
    margin-top: 3.125rem;
  }
}

.section__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  z-index: -1;
  pointer-events: none;
}

.section__background--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 48rem) {
  .section__background--fill {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.section__background--1 {
  -o-object-position: right top;
  object-position: right top;
}

@media (max-width: 767px) {
  .section__background--1 {
    -o-object-position: 60% top;
    object-position: 60% top;
  }
}

.section__background--2 {
  -o-object-position: left top;
  object-position: left top;
}

@media (max-width: 767px) {
  .section__background--2 {
    -o-object-position: 30% top;
    object-position: 30% top;
  }
}

.section__background--3 {
  -o-object-position: right bottom;
  object-position: right bottom;
}

@media (max-width: 767px) {
  .section__background--3 {
    -o-object-position: 2% bottom;
    object-position: 2% bottom;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .section__background--4 {
    height: 37.5rem;
  }
}

@media (min-width: 48rem) {
  .section__background--4 {
    -o-object-position: right top;
    object-position: right top;
    height: 68.25rem;
  }
}

.section__lottie {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 62rem) {
  .section__lottie {
    max-width: 30rem;
  }
}

@media (max-width: 767px) {
  .section__lottie--full-mobile {
    max-width: 85%;
  }
}

.section__list {
  text-align: left;
}

.section__list-title {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.section__clients {
  transition: 0.4s max-height;
  max-height: 13rem;
}

@media (min-width: 36rem) {
  .section__clients {
    max-height: 13.5rem;
  }
}

.section__clients-item {
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.section__clients-item:nth-child(-n + 4),
.section__clients-item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 36rem) {
  .section__clients-item:nth-child(-n + 6) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (min-width: 62rem) {
  .section__clients-item:nth-child(-n + 8) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (min-width: 75rem) {
  .section__clients-item:nth-child(-n + 12) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.section__clients-toggle {
  transition-duration: 0.3s;
  transition-property: box-shadow, background-color, color, opacity, visibility;
}

.section__clients-toggle.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.section__map {
  min-height: 22.5rem;
  background-color: #f3f4f6;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.section__map-item {
  height: initial !important;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
}

.section__banner {
  display: -ms-flexbox;
  display: flex;
}

.section__banner-image {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .section__filter-dropdown,
  .section__filter-button {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 22.5rem) and (max-width: 35.9375rem) {
  .section__filter-dropdown,
  .section__filter-button {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

@media (max-width: 767px) {
  .section__filter-button {
    background-color: #e2e8f0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: initial !important;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 3rem;
  }

  .section__filter-button .button__label {
    -ms-flex-positive: 0;
    flex-grow: 0;
  }

  .section__filter-button:hover {
    background-color: #e2e8f0 !important;
  }

  .section__filter-button:active {
    background-color: rgba(148, 163, 184, 0.4) !important;
  }
}

@media (max-width: 767px) {
  .section__filter-button:first-child {
    border-top-left-radius: 3.125rem !important;
    border-bottom-left-radius: 3.125rem !important;
  }
}

@media (max-width: 767px) {
  .section__filter-button:last-child {
    position: relative;
    border-top-right-radius: 3.125rem !important;
    border-bottom-right-radius: 3.125rem !important;
  }
}

@media (max-width: 767px) {
  .section__filter-button:last-child::before {
    transition: 0.3s opacity;
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #e2e8f0;
  }
}

.section__filter-button:hover::before {
  opacity: 0;
}

.section__package-period {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
  position: relative;
}

@media screen and (min-width: 48rem) {
  .section__package-period {
    margin-top: calc(8.33333vw - 3.25rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__package-period {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .section__package-period {
    margin-bottom: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .section__package-period {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .section__package-period {
    padding-top: 3rem;
  }
}

.section__package-period-switch {
  margin: 0 0.75rem;
}

.section__package-period-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 4.1875rem;
}

.section__package-period-label:first-child {
  text-align: right;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.section__package-period-label:last-child {
  text-align: left;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.section__package-period-label.is-active {
  color: #020617;
  font-weight: 600;
}

.section__package-period-save {
  position: absolute;
  left: 103%;
  bottom: 60%;
  color: #286cf6;
}

@media (max-width: 767px) {
  .section__package-period-save {
    bottom: initial;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0;
  }
}

.section__package-period-save-shape {
  width: 4.375rem;
  height: auto;
}

@media (max-width: 767px) {
  .section__package-period-save-shape {
    display: none;
  }
}

.section__package-period-badge {
  position: absolute;
  white-space: nowrap;
  bottom: 100%;
  left: 100%;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

@media (max-width: 767px) {
  .section__package-period-badge {
    position: static;
  }
}

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

@media (min-width: 62rem) {
  .section--centered .section__header,
  .section--centered .section__title {
    margin-bottom: 4.5rem;
  }
}

.section--centered .section__title,
.section--centered .section__caption,
.section--centered .section__subtitle {
  text-align: center;
}

.section--centered .section__title-shape {
  top: -2rem;
  margin-left: -0.8em;
}

.section--centered .section__title-label {
  display: inline-block;
  vertical-align: top;
}

.section--centered .section__header {
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section--centered .section__header--seperated::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section--centered .section__button {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 62rem) {
  .section--centered [class*='col-lg'] {
    text-align: left;
  }
}

@media (min-width: 62rem) {
  .section--centered [class*='col-lg'] .section__header {
    -ms-flex-align: initial;
    align-items: initial;
    text-align: initial;
  }
}

.section--centered .card:not(.card--centered) {
  text-align: left;
}

@media (min-width: 62rem) {
  .section--centered-desktop {
    text-align: center;
  }
}

@media (min-width: 62rem) and (min-width: 62rem) {
  .section--centered-desktop .section__header,
  .section--centered-desktop .section__title {
    margin-bottom: 4.5rem;
  }
}

@media (min-width: 62rem) {
  .section--centered-desktop .section__title,
  .section--centered-desktop .section__caption,
  .section--centered-desktop .section__subtitle {
    text-align: center;
  }

  .section--centered-desktop .section__title-shape {
    top: -2rem;
    margin-left: -0.8em;
  }

  .section--centered-desktop .section__title-label {
    display: inline-block;
    vertical-align: top;
  }

  .section--centered-desktop .section__header {
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section--centered-desktop .section__header--seperated::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .section--centered-desktop .section__button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 62rem) and (min-width: 62rem) {
  .section--centered-desktop [class*='col-lg'] {
    text-align: left;
  }
}

@media (min-width: 62rem) and (min-width: 62rem) {
  .section--centered-desktop [class*='col-lg'] .section__header {
    -ms-flex-align: initial;
    align-items: initial;
    text-align: initial;
  }
}

@media (min-width: 62rem) {
  .section--centered-desktop .card:not(.card--centered) {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .section--centered-mobile {
    text-align: center;
  }
}

@media (max-width: 991px) and (min-width: 62rem) {
  .section--centered-mobile .section__header,
  .section--centered-mobile .section__title {
    margin-bottom: 4.5rem;
  }
}

@media (max-width: 991px) {
  .section--centered-mobile .section__title,
  .section--centered-mobile .section__caption,
  .section--centered-mobile .section__subtitle {
    text-align: center;
  }

  .section--centered-mobile .section__title-shape {
    top: -2rem;
    margin-left: -0.8em;
  }

  .section--centered-mobile .section__title-label {
    display: inline-block;
    vertical-align: top;
  }

  .section--centered-mobile .section__header {
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section--centered-mobile .section__header--seperated::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .section--centered-mobile .section__button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) and (min-width: 62rem) {
  .section--centered-mobile [class*='col-lg'] {
    text-align: left;
  }
}

@media (max-width: 991px) and (min-width: 62rem) {
  .section--centered-mobile [class*='col-lg'] .section__header {
    -ms-flex-align: initial;
    align-items: initial;
    text-align: initial;
  }
}

@media (max-width: 991px) {
  .section--centered-mobile .card:not(.card--centered) {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .section--centered-mobile-md {
    text-align: center;
  }
}

@media (max-width: 767px) and (min-width: 62rem) {
  .section--centered-mobile-md .section__header,
  .section--centered-mobile-md .section__title {
    margin-bottom: 4.5rem;
  }
}

@media (max-width: 767px) {
  .section--centered-mobile-md .section__title,
  .section--centered-mobile-md .section__caption,
  .section--centered-mobile-md .section__subtitle {
    text-align: center;
  }

  .section--centered-mobile-md .section__title-shape {
    top: -2rem;
    margin-left: -0.8em;
  }

  .section--centered-mobile-md .section__title-label {
    display: inline-block;
    vertical-align: top;
  }

  .section--centered-mobile-md .section__header {
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section--centered-mobile-md .section__header--seperated::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .section--centered-mobile-md .section__button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) and (min-width: 62rem) {
  .section--centered-mobile-md [class*='col-lg'] {
    text-align: left;
  }
}

@media (max-width: 767px) and (min-width: 62rem) {
  .section--centered-mobile-md [class*='col-lg'] .section__header {
    -ms-flex-align: initial;
    align-items: initial;
    text-align: initial;
  }
}

@media (max-width: 767px) {
  .section--centered-mobile-md .card:not(.card--centered) {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .section--centered-mobile-sm {
    text-align: center;
  }
}

@media (max-width: 575px) and (min-width: 62rem) {
  .section--centered-mobile-sm .section__header,
  .section--centered-mobile-sm .section__title {
    margin-bottom: 4.5rem;
  }
}

@media (max-width: 575px) {
  .section--centered-mobile-sm .section__title,
  .section--centered-mobile-sm .section__caption,
  .section--centered-mobile-sm .section__subtitle {
    text-align: center;
  }

  .section--centered-mobile-sm .section__title-shape {
    top: -2rem;
    margin-left: -0.8em;
  }

  .section--centered-mobile-sm .section__title-label {
    display: inline-block;
    vertical-align: top;
  }

  .section--centered-mobile-sm .section__header {
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section--centered-mobile-sm .section__header--seperated::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .section--centered-mobile-sm .section__button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) and (min-width: 62rem) {
  .section--centered-mobile-sm [class*='col-lg'] {
    text-align: left;
  }
}

@media (max-width: 575px) and (min-width: 62rem) {
  .section--centered-mobile-sm [class*='col-lg'] .section__header {
    -ms-flex-align: initial;
    align-items: initial;
    text-align: initial;
  }
}

@media (max-width: 575px) {
  .section--centered-mobile-sm .card:not(.card--centered) {
    text-align: left;
  }
}

@media (min-width: 82.5rem) {
  .section--flow[class*='section--background'] {
    background-color: transparent;
  }
}

@media (min-width: 82.5rem) {
  .section--flow .section__container {
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 82.5rem) {
  .section--flow .section__container::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 57.5rem;
    left: 50%;
    top: 0;
    z-index: -1;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 1.5rem;
  }
}

@media (min-width: 82.5rem) {
  .section--flow-2 .section__container::before {
    height: auto;
    top: 0;
    bottom: 15.125rem;
    max-width: 80rem;
  }
}

@media (min-width: 82.5rem) {
  .section--flow-3 .section__container::before {
    height: auto;
    top: 7.3125rem;
    bottom: 15.0625rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 25rem;
    margin-left: -11.25rem;
  }
}

@media (min-width: 62rem) {
  .section--flow-lg[class*='section--background'] {
    background-color: transparent;
  }
}

@media (min-width: 62rem) {
  .section--flow-lg + .section--flow-lg .section__container {
    padding-top: 0 !important;
  }
}

.section--background-white {
  background-color: #fff;
  /*&.section--flow {
          @include breakpoint-up('container') {
            background-color: transparent;
            overflow: hidden;
          }

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

          .section__container::before {
            @include breakpoint-up('container') {
              content: '';
              position: absolute;
              top: 0;
              bottom: 0;
              left: calc(8.59375% + 2.0625rem);
              right: calc(8.59375% + 2.0625rem);
              z-index: -1;
              background-color: $color;
            }
          }
        }*/
}

@media (min-width: 82.5rem) {
  .section--background-white.section--flow .section__container::before {
    background-color: #fff;
  }
}

@media (min-width: 82.5rem) {
  .section--background-white.section--flow .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

@media (min-width: 62rem) {
  .section--background-white.section--flow-lg .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

.section--background-white .collapsable-entry__wrapper::after {
  background-image: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
}

.section--background-white:not([class*='section--flow']) + .section--background-white .section__container {
  padding-top: 0;
}

@media (max-width: 991px) {
  .section--background-white[class*='section--flow'] + .section--background-white .section__container {
    padding-top: 0;
  }
}

.section--background-dark {
  background-color: #171f44;
  color: rgba(241, 245, 249, 0.7);
  /*&.section--flow {
          @include breakpoint-up('container') {
            background-color: transparent;
            overflow: hidden;
          }

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

          .section__container::before {
            @include breakpoint-up('container') {
              content: '';
              position: absolute;
              top: 0;
              bottom: 0;
              left: calc(8.59375% + 2.0625rem);
              right: calc(8.59375% + 2.0625rem);
              z-index: -1;
              background-color: $color;
            }
          }
        }*/
}

.section--background-dark.section--bordered,
.section--background-dark.section--bordered-bottom {
  border-color: rgba(255, 255, 255, 0.15);
}

.section--background-dark .section__title,
.section--background-dark h1,
.section--background-dark h2,
.section--background-dark h3,
.section--background-dark h4,
.section--background-dark h5,
.section--background-dark h6,
.section--background-dark .card--badge-single:not(:hover) .card__badge,
.section--background-dark blockquote p,
.section--background-dark blockquote small strong {
  color: #fff;
}

.section--background-dark .section__subtitle {
  color: inherit;
}

.section--background-dark .button--plain:not(:hover):not(:active):not(:focus) {
  color: #fff;
}

.section--background-dark .card .card__title,
.section--background-dark .card .card__badge {
  transition: 0.3s color;
}

.section--background-dark .card:not(:hover) {
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: initial;
}

.section--background-dark .card:not(:hover) .card__icon {
  color: inherit;
}

.section--background-dark .card:hover {
  color: #1f2937;
  box-shadow: initial;
}

.section--background-dark .card:hover .card__title {
  color: #020617;
}

.section--background-dark .card--collapse:not(:hover) {
  background-color: transparent;
}

.section--background-dark .card--bordered:not(:hover) {
  border-color: rgba(255, 255, 255, 0.12);
}

.section--background-dark .card--bordered.card--list:not(:hover) {
  border-color: #292555;
}

.section--background-dark .list {
  color: inherit;
}

.section--background-dark .list--bordered .list__item {
  border-color: rgba(31, 41, 55, 0.32);
}

.section--background-dark .list--bordered .list__item:hover {
  background-color: rgba(31, 41, 55, 0.32);
  color: #d1d5db;
}

.section--background-dark .section__title-shape {
  color: #1f2937;
  opacity: 0.48;
}

@media (min-width: 82.5rem) {
  .section--background-dark.section--flow .section__container::before {
    background-color: #171f44;
  }
}

@media (min-width: 82.5rem) {
  .section--background-dark.section--flow .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

@media (min-width: 62rem) {
  .section--background-dark.section--flow-lg .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

.section--background-dark .collapsable-entry__wrapper::after {
  background-image: linear-gradient(to top, #171f44 0%, rgba(23, 31, 68, 0) 100%);
}

.section--background-dark:not([class*='section--flow']) + .section--background-dark .section__container {
  padding-top: 0;
}

@media (max-width: 991px) {
  .section--background-dark[class*='section--flow'] + .section--background-dark .section__container {
    padding-top: 0;
  }
}

.section--background-dark-2 {
  background-color: #001441;
  color: rgba(241, 245, 249, 0.7);
  /*&.section--flow {
          @include breakpoint-up('container') {
            background-color: transparent;
            overflow: hidden;
          }

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

          .section__container::before {
            @include breakpoint-up('container') {
              content: '';
              position: absolute;
              top: 0;
              bottom: 0;
              left: calc(8.59375% + 2.0625rem);
              right: calc(8.59375% + 2.0625rem);
              z-index: -1;
              background-color: $color;
            }
          }
        }*/
}

.section--background-dark-2.section--bordered,
.section--background-dark-2.section--bordered-bottom {
  border-color: rgba(255, 255, 255, 0.15);
}

.section--background-dark-2 .section__title,
.section--background-dark-2 h1,
.section--background-dark-2 h2,
.section--background-dark-2 h3,
.section--background-dark-2 h4,
.section--background-dark-2 h5,
.section--background-dark-2 h6,
.section--background-dark-2 .card--badge-single:not(:hover) .card__badge,
.section--background-dark-2 blockquote p,
.section--background-dark-2 blockquote small strong {
  color: #fff;
}

.section--background-dark-2 .section__subtitle {
  color: inherit;
}

.section--background-dark-2 .button--plain:not(:hover):not(:active):not(:focus) {
  color: #fff;
}

.section--background-dark-2 .card .card__title,
.section--background-dark-2 .card .card__badge {
  transition: 0.3s color;
}

.section--background-dark-2 .card:not(:hover) {
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: initial;
}

.section--background-dark-2 .card:not(:hover) .card__icon {
  color: inherit;
}

.section--background-dark-2 .card:hover {
  color: #1f2937;
  box-shadow: initial;
}

.section--background-dark-2 .card:hover .card__title {
  color: #020617;
}

.section--background-dark-2 .card--collapse:not(:hover) {
  background-color: transparent;
}

.section--background-dark-2 .card--bordered:not(:hover) {
  border-color: rgba(255, 255, 255, 0.12);
}

.section--background-dark-2 .card--bordered.card--list:not(:hover) {
  border-color: #292555;
}

.section--background-dark-2 .list {
  color: inherit;
}

.section--background-dark-2 .list--bordered .list__item {
  border-color: rgba(31, 41, 55, 0.32);
}

.section--background-dark-2 .list--bordered .list__item:hover {
  background-color: rgba(31, 41, 55, 0.32);
  color: #d1d5db;
}

.section--background-dark-2 .section__title-shape {
  color: #1f2937;
  opacity: 0.48;
}

@media (min-width: 82.5rem) {
  .section--background-dark-2.section--flow .section__container::before {
    background-color: #001441;
  }
}

@media (min-width: 82.5rem) {
  .section--background-dark-2.section--flow .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

@media (min-width: 62rem) {
  .section--background-dark-2.section--flow-lg .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

.section--background-dark-2 .collapsable-entry__wrapper::after {
  background-image: linear-gradient(to top, #001441 0%, rgba(0, 20, 65, 0) 100%);
}

.section--background-dark-2:not([class*='section--flow']) + .section--background-dark-2 .section__container {
  padding-top: 0;
}

@media (max-width: 991px) {
  .section--background-dark-2[class*='section--flow'] + .section--background-dark-2 .section__container {
    padding-top: 0;
  }
}

.section--background-primary {
  background-color: #eff4fa;
  /*&.section--flow {
          @include breakpoint-up('container') {
            background-color: transparent;
            overflow: hidden;
          }

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

          .section__container::before {
            @include breakpoint-up('container') {
              content: '';
              position: absolute;
              top: 0;
              bottom: 0;
              left: calc(8.59375% + 2.0625rem);
              right: calc(8.59375% + 2.0625rem);
              z-index: -1;
              background-color: $color;
            }
          }
        }*/
}

@media (min-width: 82.5rem) {
  .section--background-primary.section--flow .section__container::before {
    background-color: #eff4fa;
  }
}

@media (min-width: 82.5rem) {
  .section--background-primary.section--flow .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

@media (min-width: 62rem) {
  .section--background-primary.section--flow-lg .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

.section--background-primary .collapsable-entry__wrapper::after {
  background-image: linear-gradient(to top, #eff4fa 0%, rgba(239, 244, 250, 0) 100%);
}

.section--background-primary:not([class*='section--flow']) + .section--background-primary .section__container {
  padding-top: 0;
}

@media (max-width: 991px) {
  .section--background-primary[class*='section--flow'] + .section--background-primary .section__container {
    padding-top: 0;
  }
}

.section--background-primary-dark {
  background-color: #001ba3;
  color: rgba(241, 245, 249, 0.7);
  /*&.section--flow {
          @include breakpoint-up('container') {
            background-color: transparent;
            overflow: hidden;
          }

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

          .section__container::before {
            @include breakpoint-up('container') {
              content: '';
              position: absolute;
              top: 0;
              bottom: 0;
              left: calc(8.59375% + 2.0625rem);
              right: calc(8.59375% + 2.0625rem);
              z-index: -1;
              background-color: $color;
            }
          }
        }*/
}

.section--background-primary-dark.section--bordered,
.section--background-primary-dark.section--bordered-bottom {
  border-color: rgba(255, 255, 255, 0.15);
}

.section--background-primary-dark .section__title,
.section--background-primary-dark h1,
.section--background-primary-dark h2,
.section--background-primary-dark h3,
.section--background-primary-dark h4,
.section--background-primary-dark h5,
.section--background-primary-dark h6,
.section--background-primary-dark .card--badge-single:not(:hover) .card__badge,
.section--background-primary-dark blockquote p,
.section--background-primary-dark blockquote small strong {
  color: #fff;
}

.section--background-primary-dark .section__subtitle {
  color: inherit;
}

.section--background-primary-dark .button--plain:not(:hover):not(:active):not(:focus) {
  color: #fff;
}

.section--background-primary-dark .card .card__title,
.section--background-primary-dark .card .card__badge {
  transition: 0.3s color;
}

.section--background-primary-dark .card:not(:hover) {
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: initial;
}

.section--background-primary-dark .card:not(:hover) .card__icon {
  color: inherit;
}

.section--background-primary-dark .card:hover {
  color: #1f2937;
  box-shadow: initial;
}

.section--background-primary-dark .card:hover .card__title {
  color: #020617;
}

.section--background-primary-dark .card--collapse:not(:hover) {
  background-color: transparent;
}

.section--background-primary-dark .card--bordered:not(:hover) {
  border-color: rgba(255, 255, 255, 0.12);
}

.section--background-primary-dark .card--bordered.card--list:not(:hover) {
  border-color: #292555;
}

.section--background-primary-dark .list {
  color: inherit;
}

.section--background-primary-dark .list--bordered .list__item {
  border-color: rgba(31, 41, 55, 0.32);
}

.section--background-primary-dark .list--bordered .list__item:hover {
  background-color: rgba(31, 41, 55, 0.32);
  color: #d1d5db;
}

.section--background-primary-dark .section__title-shape {
  color: #1f2937;
  opacity: 0.48;
}

@media (min-width: 82.5rem) {
  .section--background-primary-dark.section--flow .section__container::before {
    background-color: #001ba3;
  }
}

@media (min-width: 82.5rem) {
  .section--background-primary-dark.section--flow .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

@media (min-width: 62rem) {
  .section--background-primary-dark.section--flow-lg .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

.section--background-primary-dark .collapsable-entry__wrapper::after {
  background-image: linear-gradient(to top, #001ba3 0%, rgba(0, 27, 163, 0) 100%);
}

.section--background-primary-dark:not([class*='section--flow']) + .section--background-primary-dark .section__container {
  padding-top: 0;
}

@media (max-width: 991px) {
  .section--background-primary-dark[class*='section--flow'] + .section--background-primary-dark .section__container {
    padding-top: 0;
  }
}

.section--background-gray {
  background-color: #f5f8fb;
  /*&.section--flow {
          @include breakpoint-up('container') {
            background-color: transparent;
            overflow: hidden;
          }

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

          .section__container::before {
            @include breakpoint-up('container') {
              content: '';
              position: absolute;
              top: 0;
              bottom: 0;
              left: calc(8.59375% + 2.0625rem);
              right: calc(8.59375% + 2.0625rem);
              z-index: -1;
              background-color: $color;
            }
          }
        }*/
}

.section--background-gray .map {
  background-color: #fff;
}

@media (min-width: 82.5rem) {
  .section--background-gray.section--flow .section__container::before {
    background-color: #f5f8fb;
  }
}

@media (min-width: 82.5rem) {
  .section--background-gray.section--flow .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

@media (min-width: 62rem) {
  .section--background-gray.section--flow-lg .section__content--flow::after {
    background-color: #f1f5f9;
  }
}

.section--background-gray .collapsable-entry__wrapper::after {
  background-image: linear-gradient(to top, #f5f8fb 0%, rgba(245, 248, 251, 0) 100%);
}

.section--background-gray:not([class*='section--flow']) + .section--background-gray .section__container {
  padding-top: 0;
}

@media (max-width: 991px) {
  .section--background-gray[class*='section--flow'] + .section--background-gray .section__container {
    padding-top: 0;
  }
}

.section--background-image {
  position: relative;
  z-index: 2;
}

.section--background-image .section__background {
  z-index: -1;
  pointer-events: none;
}

.section--background-image .section__background.is-loaded {
  opacity: 0.2;
}

.section--tab {
  font-size: 0.875rem;
  border-bottom: 1px solid #e2e8f0;
  background-color: #fff;
}

@media (min-width: 62rem) {
  .section--tab {
    border-top-color: #e2e8f0;
  }
}

.section--tab .section__container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 48rem) {
  .section--tab .section__container {
    padding-top: calc(1.85185vw - 0.38889rem);
    padding-bottom: calc(1.85185vw - 0.38889rem);
  }
}

@media screen and (min-width: 75rem) {
  .section--tab .section__container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@supports (position: sticky) {
  .section--tab {
    transition-duration: 0.3s;
    transition-property: height, top, border-color;
    border-top: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 1001;
  }
}

.section--tab .section__tab {
  -ms-flex-pack: center;
  justify-content: center;
}

.section.section--space-xs .section__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section.section--space-xs-t .section__container {
  padding-top: 3rem;
}

.section.section--space-xs-b .section__container {
  padding-bottom: 3rem;
}

.section.section--space-s .section__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-s .section__container {
    padding-top: calc(6.66667vw - 2rem);
    padding-bottom: calc(6.66667vw - 2rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-s .section__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section.section--space-s-t .section__container {
  padding-top: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-s-t .section__container {
    padding-top: calc(6.66667vw - 2rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-s-t .section__container {
    padding-top: 4rem;
  }
}

.section.section--space-s-b .section__container {
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-s-b .section__container {
    padding-bottom: calc(6.66667vw - 2rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-s-b .section__container {
    padding-bottom: 4rem;
  }
}

.section.section--space-m .section__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-m .section__container {
    padding-top: calc(10vw - 4.5rem);
    padding-bottom: calc(10vw - 4.5rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-m .section__container {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.section.section--space-m-t .section__container {
  padding-top: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-m-t .section__container {
    padding-top: calc(10vw - 4.5rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-m-t .section__container {
    padding-top: 4.5rem;
  }
}

.section.section--space-m-b .section__container {
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-m-b .section__container {
    padding-bottom: calc(10vw - 4.5rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-m-b .section__container {
    padding-bottom: 4.5rem;
  }
}

.section.section--space-l .section__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-l .section__container {
    padding-top: calc(20vw - 12rem);
    padding-bottom: calc(20vw - 12rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-l .section__container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section.section--space-l-t .section__container {
  padding-top: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-l-t .section__container {
    padding-top: calc(20vw - 12rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-l-t .section__container {
    padding-top: 6rem;
  }
}

.section.section--space-l-b .section__container {
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-l-b .section__container {
    padding-bottom: calc(20vw - 12rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-l-b .section__container {
    padding-bottom: 6rem;
  }
}

.section.section--space-xl .section__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-xl .section__container {
    padding-top: calc(41.66667vw - 28.25rem);
    padding-bottom: calc(41.66667vw - 28.25rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-xl .section__container {
    padding-top: 9.25rem;
    padding-bottom: 9.25rem;
  }
}

.section.section--space-xl-t .section__container {
  padding-top: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-xl-t .section__container {
    padding-top: calc(41.66667vw - 28.25rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-xl-t .section__container {
    padding-top: 9.25rem;
  }
}

.section.section--space-xl-b .section__container {
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-xl-b .section__container {
    padding-bottom: calc(41.66667vw - 28.25rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-xl-b .section__container {
    padding-bottom: 9.25rem;
  }
}

.section.section--space-2xl .section__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-2xl .section__container {
    padding-top: calc(46.66667vw - 32rem);
    padding-bottom: calc(46.66667vw - 32rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-2xl .section__container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.section.section--space-2xl-t .section__container {
  padding-top: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-2xl-t .section__container {
    padding-top: calc(46.66667vw - 32rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-2xl-t .section__container {
    padding-top: 10rem;
  }
}

.section.section--space-2xl-b .section__container {
  padding-bottom: 3rem;
}

@media screen and (min-width: 75rem) {
  .section.section--space-2xl-b .section__container {
    padding-bottom: calc(46.66667vw - 32rem);
  }
}

@media screen and (min-width: 90rem) {
  .section.section--space-2xl-b .section__container {
    padding-bottom: 10rem;
  }
}

.section--hidden {
  overflow: hidden;
  position: relative;
}

@media (max-width: 991px) {
  .section--hidden-mobile {
    overflow: hidden;
    position: relative;
  }
}

.section--boxed .section__container {
  padding-top: 0;
  padding-bottom: 0;
}

.section--boxed .section__wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media screen and (min-width: 48rem) {
  .section--boxed .section__wrapper {
    padding-top: calc(3.7037vw + 0.22222rem);
    padding-bottom: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .section--boxed .section__wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 62rem) {
  .section--boxed .section__wrapper {
    padding-left: calc(9.82143vw - 4.83929rem);
    padding-right: calc(9.82143vw - 4.83929rem);
  }
}

@media screen and (min-width: 90rem) {
  .section--boxed .section__wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (min-width: 62rem) {
  .section--boxed .section__wrapper {
    margin-left: calc(-9.82143vw + 4.83929rem);
    margin-right: calc(-9.82143vw + 4.83929rem);
  }
}

@media screen and (min-width: 90rem) {
  .section--boxed .section__wrapper {
    margin-left: -4rem;
    margin-right: -4rem;
  }
}

@media (min-width: 82.5rem) {
  .section--boxed .section__wrapper {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0.75rem;
  }
}

.section--boxed .section__wrapper .section__background.is-loaded {
  opacity: 0.2;
}

.section--bordered {
  border-top: 1px solid #e2e8f0;
}

.section--bordered-bottom {
  border-bottom: 1px solid #e2e8f0;
}

.section--no-seperator + .section--bordered {
  border-top: 0;
}

@media (max-width: 767px) {
  .section--no-seperator + .section--bordered .section__container {
    padding-top: 0;
  }
}

.section--index {
  z-index: 1002;
  position: relative;
}

.section--app {
  min-height: 23.9375rem;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 55% auto;
}

.section--app .section__container {
  min-height: 23.9375rem;
}

@media (max-width: 991px) {
  .section--app {
    background-position: 50% bottom;
    background-size: 100%;
    padding-bottom: 20%;
  }
}

@media (min-width: 137.5rem) {
  .section--app {
    background-size: auto 100%;
    background-position: 80% bottom;
  }
}

.section:not([class*=' section--background']):not(.section--keep):not(.section--tab) + .section:not([class*=' section--background']):not([class*=' section--bordered']) .section__container:not([class*=' section--background']):not([class*=' section--bordered']) {
  padding-top: initial;
}

.section--background-primary + .breadcrumb {
  background-color: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.hero {
  min-height: 22.5rem;
  position: relative;
  background-color: #030712;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  z-index: 3;
}

@media screen and (min-width: 75rem) {
  .hero {
    min-height: calc(33.33333vw - 2.5rem);
  }
}

@media screen and (min-width: 120rem) {
  .hero {
    min-height: 37.5rem;
  }
}

.hero::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 10, 58, 0.7);
}

.hero__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.hero__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 3;
  /*&::before {
      @include breakpoint-up('large') {
        content: '';
        width: rem(1200px);
        height: rem(1200px);
        position: absolute;
        top: 50%;
        z-index: -1;
        pointer-events: inherit;
        background-color: color('primary-lighter');
        border-radius: 50%;
        opacity: 0.03;
      }
    }

    &::before {
      left: -40%;
      top: -25%;
    }*/
  /*&::after {
      background-color: color('primary');
      opacity: 0.07;
      right: -25%;
      top: 60%;
      width: rem(1600px);
      height: rem(1600px);
    }*/
}

@media screen and (min-width: 62rem) {
  .hero__container {
    padding-top: calc(7.75862vw - 1.81034rem);
    padding-bottom: calc(7.75862vw - 1.81034rem);
  }
}

@media screen and (min-width: 120rem) {
  .hero__container {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.hero__title,
.hero__caption {
  color: inherit;
  text-align: center;
}

.hero__box {
  box-shadow: 0px 52px 72px -16px rgba(82, 82, 82, 0.08);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

@media screen and (min-width: 48rem) {
  .hero__box {
    padding-left: calc(7.40741vw - 2.05556rem);
    padding-right: calc(7.40741vw - 2.05556rem);
  }
}

@media screen and (min-width: 75rem) {
  .hero__box {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .hero__box {
    padding-bottom: calc(5.55556vw - 0.66667rem);
    padding-top: calc(5.55556vw - 0.66667rem);
  }
}

@media screen and (min-width: 75rem) {
  .hero__box {
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
  }
}

@media (min-width: 62rem) {
  .hero__box {
    border-radius: 0.75rem;
  }
}

.hero__categories {
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  margin-top: -4.78125rem;
}

.hero--new {
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero--new .hero__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 62rem) {
  .hero--new .hero__container {
    padding-top: calc(16.37931vw - 7.15517rem);
    padding-bottom: calc(16.37931vw - 7.15517rem);
  }
}

@media screen and (min-width: 120rem) {
  .hero--new .hero__container {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
}

.hero--new::before {
  background: linear-gradient(to bottom, rgba(22, 32, 78, 0.92) 0%, rgba(3, 7, 18, 0) 300%);
}

.hero--new .hero__title {
  color: #020617;
}

@media (min-width: 48rem) {
  .hero--new .hero__title {
    text-align: left;
  }
}

.hero--new .card--category {
  border: 1px solid #fff;
  box-shadow: initial !important;
}

.hero--new .card--category:not(:hover) {
  color: #fff;
  background-color: transparent;
}

.hero--2024 .hero__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 62rem) {
  .hero--2024 .hero__container {
    padding-top: calc(5.17241vw - 0.2069rem);
    padding-bottom: calc(5.17241vw - 0.2069rem);
  }
}

@media screen and (min-width: 120rem) {
  .hero--2024 .hero__container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 62rem) {
  .hero--2024 .hero__box {
    border-radius: 1.5rem;
  }
}

.hero--search .hero__container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .hero--search .hero__container {
    padding-top: calc(5.55556vw - 1.16667rem);
    padding-bottom: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .hero--search .hero__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.hero--static {
  min-height: 0;
}

.search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

@media (min-width: 48rem) {
  .search {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.search__close {
  padding: 0;
  border: 0;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  color: #334155;
  display: none;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1006;
}

.search__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.search__wrapper {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1006;
}

@media (min-width: 48rem) {
  .search__wrapper {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.search__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.search__item + .search__item {
  /*.search__input,
      .select {
        @include breakpoint-up('medium') {
          border-left: 0;
        }
      }*/
}

@media (max-width: 767px) {
  .search__item + .search__item {
    margin-top: 0.75rem;
  }
}

@media (min-width: 48rem) {
  .search__item--submit {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    min-width: 7.5rem;
  }
}

@media (min-width: 48rem) {
  .search__item--small {
    width: 12.5rem;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}

.search__results {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  font-size: 0.875rem;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 0;
  border-radius: 0 0 0.625rem 0.625rem !important;
  z-index: 1006;
}

.search__results-title {
  padding: 0 1.5rem;
  margin: 0.25rem 0;
  text-transform: uppercase;
  color: #475569;
}

.search__results:not(.d-none) + .search__input {
  border-bottom-left-radius: 0 !important;
}

.search__results-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.search__results-list {
  z-index: 20;
  padding: 0.5rem;
  position: relative;
  max-height: 32rem;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}

@media (max-width: 991px) {
  .search__results-list {
    max-height: initial;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.search__results-data {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 0;
}

@media (max-width: 991px) {
  .search__results-data {
    padding-top: 1rem;
  }
}

.search__results-nearby,
.search__results-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.search__results-nearby-link,
.search__results-bottom-link {
  border-radius: 0 !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

@media (max-width: 991px) {
  .search__results-nearby + .search__results-data,
  .search__results-bottom + .search__results-data {
    padding-top: 0;
  }
}

.search__results-bottom {
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .search__results-bottom {
      padding-bottom: constant(safe-area-inset-bottom);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .search__results-bottom {
      padding-bottom: env(safe-area-inset-bottom);
    }
}
}

.search__results-bottom .search__results-bottom-link {
  border-radius: 0;
  margin-top: -1px;
}

@media (min-width: 62rem) {
  .search__results-bottom .search__results-bottom-link {
    margin-bottom: -1rem;
  }
}

.search__results-item {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  color: #1f2937;
}

.search__results-item-link {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  color: #1f2937;
}

.search__results-item-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.search__results-item-title {
  font-weight: 600;
  color: #020617;
}

.search__results-item-caption {
  font-size: 0.75rem;
  color: #64748b;
}

.search__results-item-icon {
  transition-duration: 0.3s;
  transition-property: color, background-color, border-color;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #cbd5e1;
  margin-right: 0.75rem;
  color: #020617;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  background-color: #fff;
}

.search__results-item-badge {
  transition: 0.3s background-color;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-left: 0.5rem;
  padding: 0.125rem 0.5rem;
  min-height: 0;
}

.search__results-item-link:hover {
  background-color: #e2e8f0;
  color: #020617;
}

.search__results-item-link:hover .search__results-item-icon {
  border-color: transparent;
  color: #286cf6;
}

.search__results-item-link:hover .search__results-item-badge {
  background-color: #fff;
}

.search__input,
.search .select,
.search .select2-selection {
  height: 2.75rem;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 48rem) {
  .search__input,
  .search .select,
  .search .select2-selection {
    height: calc(3.7037vw + 0.97222rem);
  }
}

@media screen and (min-width: 75rem) {
  .search__input,
  .search .select,
  .search .select2-selection {
    height: 3.75rem;
  }
}

.search__input:not(.button),
.search__input:not(.button):focus,
.search .select:not(.button),
.search .select2-selection:not(.button),
.search .select:not(.button):focus,
.search .select2-selection:not(.button):focus {
  border-color: #e2e8f0;
}

.search__input:not(.button):focus,
.search .select:not(.button):focus,
.search .select2-selection:not(.button):focus {
  background-color: #f1f5f9;
}

.search__input[disabled],
.search .select[disabled],
.search .select2-selection[disabled] {
  opacity: 1;
}

.search__overlay {
  transition: none;
  pointer-events: none;
  opacity: 0;
}

.search-modal {
  display: none;
}

@media (min-width: 62rem) {
  .search-modal {
    left: 0;
    position: fixed;
    right: 0;
    top: 20vh;
    z-index: 1500;
  }
}

@media (min-width: 62rem) {
  .search-modal .search {
    max-width: 47.5rem;
    margin: 0 auto !important;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
  }
}

@media (min-width: 48rem) {
  .search:not(.search--seperated) .search__item:not(:last-child) .search__input,
  .search:not(.search--seperated) .search__item:not(:last-child) .select {
    border-right-width: 0;
  }
}

@media (max-width: 991px) {
  .search:not(.search--seperated).search--new .search__item--submit {
    display: none;
  }
}

@media (min-width: 48rem) {
  .search:not(.search--seperated) .search__item:not(:first-child):not(:last-child) .search__input,
  .search:not(.search--seperated) .search__item:not(:first-child):not(:last-child) .select,
  .search:not(.search--seperated) .search__item:not(:first-child):not(:last-child) .select2-selection {
    border-radius: 0;
  }
}

@media (min-width: 48rem) {
  .search:not(.search--seperated) .search__item:first-child .search__input,
  .search:not(.search--seperated) .search__item:first-child .select,
  .search:not(.search--seperated) .search__item:first-child .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (min-width: 48rem) {
  .search:not(.search--seperated) .search__item:last-child .search__input,
  .search:not(.search--seperated) .search__item:last-child .select,
  .search:not(.search--seperated) .search__item:last-child .select2-selection {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.search:not(.search--seperated) .select2-container--focus .select2-selection {
  border-color: transparent !important;
  border-left-color: #e2e8f0 !important;
}

.search:not(.search--seperated) .select2-container--open .select2-selection {
  border-color: transparent !important;
  border-left-color: #e2e8f0 !important;
}

.search:not(.search--seperated) .choices.is-open .choices__inner {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
}

.search--small .search__input,
.search--small .select,
.search--small .select2-selection {
  height: 3rem !important;
  font-size: 0.875rem !important;
}

.search--new {
  position: relative;
  z-index: 1005;
}

.search--new .search__input,
.search--new .select,
.search--new .select2-selection {
  border-radius: 6.25rem !important;
  border-right-width: 1px !important;
}

.search--new .search__item:not(.search__item--submit) .search__input,
.search--new .search__item:not(.search__item--submit) .select,
.search--new .search__item:not(.search__item--submit) .select2-selection {
  background-color: #e2e8f0 !important;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.03);
}

.search--new .search__item:not(.search__item--submit) .search__input::-webkit-input-placeholder,
.search--new .search__item:not(.search__item--submit) .select::-webkit-input-placeholder,
.search--new .search__item:not(.search__item--submit) .select2-selection::-webkit-input-placeholder {
  color: #334155;
}

.search--new .search__item:not(.search__item--submit) .search__input:-ms-input-placeholder,
.search--new .search__item:not(.search__item--submit) .select:-ms-input-placeholder,
.search--new .search__item:not(.search__item--submit) .select2-selection:-ms-input-placeholder {
  color: #334155;
}

.search--new .search__item:not(.search__item--submit) .search__input::-ms-input-placeholder,
.search--new .search__item:not(.search__item--submit) .select::-ms-input-placeholder,
.search--new .search__item:not(.search__item--submit) .select2-selection::-ms-input-placeholder {
  color: #334155;
}

.search--new .search__item:not(.search__item--submit) .search__input::placeholder,
.search--new .search__item:not(.search__item--submit) .select::placeholder,
.search--new .search__item:not(.search__item--submit) .select2-selection::placeholder {
  color: #334155;
}

.search--new .search__results {
  position: relative;
  top: initial;
  left: initial;
  border-radius: 0 0 0.75rem 0.75rem !important;
}

.search--new:not(.search--seperated) {
  height: 4rem;
}

@media (min-width: 48rem) {
  .search--new:not(.search--seperated) {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 62rem) {
  .search--new:not(.search--seperated) .search__item:not(.search__item--submit) .search__input:not(select) {
    padding-right: 7.5rem;
  }
}

.search--new .search__item:not(.search__item--submit) .search__input,
.search--new .search__item:not(.search__item--submit) .select,
.search--new .search__item:not(.search__item--submit) .select2-selection {
  height: 3.5rem;
  border-width: 1px;
  font-size: 0.875rem;
}

.search--new .search__item:not(.search__item--submit) .search__input:focus,
.search--new .search__item:not(.search__item--submit) .select:focus,
.search--new .search__item:not(.search__item--submit) .select2-selection:focus {
  border-color: #cbd5e1;
}

@media (min-width: 48rem) {
  .search--new .search__item:not(.search__item--submit) .search__input,
  .search--new .search__item:not(.search__item--submit) .select,
  .search--new .search__item:not(.search__item--submit) .select2-selection {
    font-size: 1rem;
    height: 4rem;
  }
}

.search--new .search__item--submit {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  margin-top: 0 !important;
}

@media (min-width: 48rem) {
  .search--new .search__item--submit {
    right: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
  }
}

@media (min-width: 62rem) {
  .search--new .search__item--submit {
    min-width: 8.75rem;
  }
}

.search--new .search__item--submit .search__input {
  border-radius: 6.25rem;
}

@media (min-width: 48rem) {
  .search--new .search__item--submit .search__input {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .search--new .search__item--submit .search__input {
    min-height: 2.25rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.search--new .search__item--ai {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  margin-top: 0 !important;
}

@media (min-width: 62rem) {
  .search--new .search__item--ai {
    top: 0.5rem;
    bottom: 0.5rem;
  }
}

@media (min-width: 62rem) {
  .search--new .search__item--submit ~ .search__item--ai {
    right: 9.75rem;
  }
}

.search--new .select2-container--focus .select2-selection {
  border-color: #cbd5e1 !important;
  border-left-color: #cbd5e1 !important;
}

.search--new .select2-container--open .select2-selection {
  border-color: #cbd5e1 !important;
  border-left-color: #cbd5e1 !important;
  border-radius: 0.625rem 0.625rem 0 0 !important;
  border-bottom-color: transparent !important;
}

.search--new .choices.is-open .choices__inner {
  background-color: #fff;
  border-color: #e2e8f0;
}

.search--new.search--small .search__input,
.search--new.search--small .select,
.search--new.search--small .select2-selection {
  border-width: 1px !important;
}

.search--new.search--small .search__item--submit {
  top: 0.375rem;
  right: 0.375rem;
}

.search--seperated .search__item:not(:first-child) {
  margin-top: 1rem;
}

@media (min-width: 48rem) {
  .search--seperated .search__item:not(:first-child) {
    margin-left: 1rem;
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .search--seperated .search__item:not(.search__item--submit) .search__input {
    padding-right: 1.5rem;
  }
}

.search--seperated .search__item--submit {
  position: initial;
  margin-top: 1rem !important;
}

@media (min-width: 48rem) {
  .search--seperated .search__item--submit {
    position: initial;
    margin-top: 0 !important;
  }
}

.search--navbar {
  height: initial !important;
}

.search--navbar .search__input,
.search--navbar .select,
.search--navbar .select2-selection {
  height: 2.5rem !important;
  font-size: 0.875rem !important;
  padding-right: 1rem !important;
}

.search--navbar .search__item:not(.search__item--submit) .search__input,
.search--navbar .search__item:not(.search__item--submit) .select,
.search--navbar .search__item:not(.search__item--submit) .select2-selection {
  background-color: #fff !important;
  border-color: #cbd5e1;
  box-shadow: initial !important;
}

.search--navbar .search__results {
  position: absolute !important;
  left: 0 !important;
  top: 100% !important;
  padding: 0 !important;
}

@media (max-width: 575px) {
  .search--navbar .search__results {
    height: calc(100vh - 3.5rem);
  }
}

@media (min-width: 62rem) {
  .search--navbar .search__results-list {
    max-height: 25.5rem;
  }
}

.search--navbar .search__results-item-link {
  padding: 0.5rem;
  line-height: 1.5;
}

.search--navbar .search__results-bottom-link {
  margin-bottom: 0;
  min-height: 2.5rem;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 62rem) {
  .search--navbar .search__results-bottom-link {
    border-bottom-left-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
}

.search--navbar .search__results-bottom-link:hover {
  background-color: rgba(203, 216, 243, 0.4);
  color: #286cf6;
}

.search--navbar .search__results-bottom-link .search__results-item-icon {
  display: none;
}

.search.is-opened .search__container {
  z-index: 1007;
  box-shadow: 0px 16px 32px rgba(22, 26, 64, 0.08);
}

.search.is-opened .search__results {
  display: -ms-flexbox;
  display: flex;
}

.search.is-opened .search__overlay {
  transition-duration: 0.2s;
  transition-property: opacity, visibility;
  pointer-events: auto;
  opacity: 1;
}

@media (max-width: 991px) {
  .search.is-opened .search__close {
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 991px) {
  .search.is-opened.search--new {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    height: var(--vh);
    margin: 0 !important;
    border-radius: 0 !important;
    z-index: 1500 !important;
  }
}

.search.is-opened.search--new .search__container {
  border-radius: 0.75rem;
}

@media (max-width: 991px) {
  .search.is-opened.search--new .search__container {
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 0;
  }
}

@media (max-width: 991px) {
  .search.is-opened.search--new .search__results {
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 0 !important;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 991px) {
  .search.is-opened.search--new .search__results-wrapper {
    min-height: 0;
  }
}

.search.is-opened.search--new .search__item:not(.search__item--submit) .search__input {
  border-color: transparent;
  border-bottom-color: #e2e8f0;
  border-radius: 0.75rem 0.75rem 0 0 !important;
  background-color: #fff !important;
  box-shadow: initial !important;
}

@media (max-width: 991px) {
  .search.is-opened.search--new .search__item:not(.search__item--submit) .search__input {
    border-radius: 0 !important;
    height: 3.5rem !important;
  }
}

.search.is-opened.search--new .search__item--submit .search__input:not(:hover),
.search.is-opened.search--new .search__item--submit .search__input:disabled {
  background-color: #cbd5e1;
  color: #334155;
}

.search-modal.is-opened {
  display: block;
}

.single {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.single__header {
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  /*&-category {
      display: flex;
      align-items: center;
      font-weight: 500;
      font-size: rem(14px);

      a:not(:hover) {
        color: color('title');
      }

      @include breakpoint-up('small') {
        border-left: 1px solid color('neutral-200');
        padding-left: rem(16px);
      }

      &-icon {
        font-size: rem(20px);
        flex-shrink: 0;
        margin-right: rem(8px);
        color: color('primary');
      }
    }*/
}

@media screen and (min-width: 48rem) {
  .single__header {
    padding-top: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header {
    padding-top: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .single__header {
    margin-bottom: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header {
    margin-bottom: 3rem;
  }
}

.single__header--no-tab {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .single__header--no-tab {
    margin-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header--no-tab {
    margin-bottom: 2rem;
  }
}

.single__header-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .single__header-title {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: initial;
    align-items: initial;
  }
}

.single__header-title--icon ~ .single__rating {
  margin-left: 2rem;
}

@media screen and (min-width: 48rem) {
  .single__header-title--icon ~ .single__rating {
    margin-left: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header-title--icon ~ .single__rating {
    margin-left: 3rem;
  }
}

.single__header-title .badge {
  margin-left: 0.5rem;
}

@media (max-width: 575px) {
  .single__header-title .badge {
    margin-left: 0;
    margin-top: 0.25rem;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

.single__header-title .badge--danger .badge__icon {
  font-size: 1rem;
}

@media (max-width: 575px) {
  .single__header-title .badge--claimed {
    padding-top: 0.1875rem;
    padding-bottom: 0.1875rem;
  }
}

@media (max-width: 575px) {
  .single__header-title .badge--claimed .badge__icon {
    font-size: 1rem !important;
  }
}

.single__header-title-icon {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  color: #286cf6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .single__header-title-icon {
    font-size: calc(2.77778vw - 0.08333rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header-title-icon {
    font-size: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .single__header-title-icon {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header-title-icon {
    margin-right: 1rem;
  }
}

.single__header-image {
  max-width: 3rem;
  -ms-flex-preferred-size: 3rem;
  flex-basis: 3rem;
  margin-right: 0.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  border-radius: 0.625rem;
  width: 100%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border: 1px solid #e2e8f0;
}

@media screen and (min-width: 36rem) {
  .single__header-image {
    max-width: calc(8.33333vw + 0rem);
    -ms-flex-preferred-size: calc(8.33333vw + 0rem);
    flex-basis: calc(8.33333vw + 0rem);
  }
}

@media screen and (min-width: 48rem) {
  .single__header-image {
    max-width: 4rem;
    -ms-flex-preferred-size: 4rem;
    flex-basis: 4rem;
  }
}

@media screen and (min-width: 48rem) {
  .single__header-image {
    margin-right: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header-image {
    margin-right: 1rem;
  }
}

.single__header-image--logo {
  max-width: 4rem;
  -ms-flex-preferred-size: 4rem;
  flex-basis: 4rem;
  font-size: 1.25rem;
  border: 1px solid #e2e8f0;
}

@media screen and (min-width: 36rem) {
  .single__header-image--logo {
    max-width: calc(16.66667vw - 2rem);
    -ms-flex-preferred-size: calc(16.66667vw - 2rem);
    flex-basis: calc(16.66667vw - 2rem);
  }
}

@media screen and (min-width: 48rem) {
  .single__header-image--logo {
    max-width: 6rem;
    -ms-flex-preferred-size: 6rem;
    flex-basis: 6rem;
  }
}

@media screen and (min-width: 48rem) {
  .single__header-image--logo {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header-image--logo {
    font-size: 1.5rem;
  }
}

.single__header-image--logo .image-ratio {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(100, 116, 139, 0.7);
}

.single__header-image--flag {
  max-width: 3rem;
  -ms-flex-preferred-size: 3rem;
  flex-basis: 3rem;
}

@media screen and (min-width: 36rem) {
  .single__header-image--flag {
    max-width: calc(8.33333vw + 0rem);
    -ms-flex-preferred-size: calc(8.33333vw + 0rem);
    flex-basis: calc(8.33333vw + 0rem);
  }
}

@media screen and (min-width: 48rem) {
  .single__header-image--flag {
    max-width: 4rem;
    -ms-flex-preferred-size: 4rem;
    flex-basis: 4rem;
  }
}

.single__header a.badge {
  font-weight: 600 !important;
}

.single__header a.badge:not(.badge--primary):not(.badge--dark) {
  color: #020617;
}

.single__header + .single__tab {
  margin-top: -1.5rem;
}

@media screen and (min-width: 48rem) {
  .single__header + .single__tab {
    margin-top: calc(-5.55556vw + 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__header + .single__tab {
    margin-top: -3rem;
  }
}

.single__tab {
  background-color: #fff;
  font-size: 0.875rem;
}

.single__tab:not(.not-sticky) {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 48rem) {
  .single__tab:not(.not-sticky) {
    padding-top: calc(3.7037vw - 0.77778rem);
    padding-bottom: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__tab:not(.not-sticky) {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 62rem) {
@supports (position: sticky) {
    .single__tab:not(.not-sticky) {
      transition-duration: 0.3s;
      transition-property: top, box-shadow, padding-top;
      border-top: 1px solid transparent;
      position: sticky;
      top: 0;
      z-index: 1001;
    }
}
}

.single__tab-container {
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .single__tab-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

.single__tab-item {
  padding-left: 1rem;
  padding-right: 1rem;
  transition-duration: 0.3s;
  transition-property: background-color, color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #020617;
  font-weight: 500;
  background-color: #f1f5f9;
  /*& + & {
        @include interpolate(margin-left, rem(12px), rem(24px));
      }*/
}

@media screen and (min-width: 48rem) {
  .single__tab-item {
    padding-left: calc(1.85185vw + 0.11111rem);
    padding-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__tab-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 991px) {
  .single__tab-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.single__tab-item:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.single__tab-item:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.single__tab-item-count {
  margin-left: 0.5rem;
  min-width: 1.25rem;
  height: 1rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  border-radius: 3.125rem;
  background-color: #fff;
  color: #171f44;
  font-size: 0.6875rem;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.single__tab-item:hover {
  color: #286cf6;
}

.single__tab-item.is-active {
  background-color: #286cf6;
  color: #fff;
}

.single__tab--small .single__tab-item {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .single__tab--small .single__tab-item {
    padding-left: calc(0.92593vw + 0.55556rem);
    padding-right: calc(0.92593vw + 0.55556rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__tab--small .single__tab-item {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 75rem) {
  .single__tab--grow .single__tab-item {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (max-width: 767px) {
  .single__tab.not-sticky {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .single__tab.not-sticky .single__tab-container {
    border-radius: 0;
    background-color: #f1f5f9;
    margin: 0 -1.25rem;
    padding: 0.5rem;
  }
}

@media (max-width: 767px) {
  .single__tab.not-sticky .single__tab-item {
    background-color: transparent !important;
    padding: 0.5rem 0.75rem;
  }

  .single__tab.not-sticky .single__tab-item.is-active {
    color: #286cf6;
  }
}

.single__rating {
  margin-top: 0.25rem;
  /*&-item {
      @include breakpoint-up('large') {
        font-size: rem(24px);
      }
    }*/
}

.d-flex.align-items-center > .single__rating {
  margin-top: 0;
}

.single__image {
  overflow: hidden;
}

.single__image:not(.single__image--full) {
  border-radius: 0.375rem;
}

.single__map {
  display: -ms-flexbox;
  display: flex;
}

.single__map--inline {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 62rem) {
  .single__map--inline .single__map-item {
    height: initial;
  }
}

.single__content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .single__content {
    padding-top: calc(5.55556vw - 1.16667rem);
    padding-bottom: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .single__content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.single__content + .single__content {
  padding-top: 0;
}

.single__content + .box {
  margin-top: 0 !important;
}

.single__content--seperator {
  border-top: 1px solid #e2e8f0;
}

.single__info {
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.125rem -0.5rem;
}

@media (min-width: 48rem) {
  .single__info {
    width: 17.5rem;
  }
}

.single__info-item {
  padding: 0.125rem 0.5rem;
}

@media (min-width: 48rem) {
  .single__info-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.single__info-item + .single__info-item {
  margin-top: 0 !important;
}

.single__info-item-icon {
  margin-top: 0.125rem;
  font-size: 1rem !important;
  margin-right: 0.25rem !important;
}

.modal {
  /*&--body-scrollable {
    @include breakpoint-up('medium') {
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      padding: rem(24px) 0;
    }
    .modal__wrapper,
    .modal__container {
      @include breakpoint-up('medium') {
        max-height: initial;
        height: initial;
        flex-shrink: 0;
      }
    }
    .modal__content {
      @include breakpoint-up('medium') {
        flex-shrink: 0;
        flex-grow: initial;
        overflow: initial;
      }
    }

    .modal__bottom {
      @include breakpoint-up('medium') {
        position: initial;
      }
    }

    .modal__overlay {
      @include breakpoint-up('medium') {
        pointer-events: none !important;
      }
    }

    &.is-show {
      @include breakpoint-up('medium') {
        display: flex !important;
      }
    }
  }*/
}

.modal:not(.modal--mobile) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  display: none;
  min-height: 0;
}

@media (max-width: 991px) {
  .modal--mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: none;
    min-height: 0;
  }
}

@media (min-width: 62rem) {
  .modal--mobile .modal__container {
    pointer-events: auto;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    margin: 0;
    position: initial;
    z-index: initial;
  }
}

@media (min-width: 62rem) {
  .modal--mobile .modal__wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: initial !important;
    transform: initial !important;
    height: auto !important;
    max-height: initial !important;
    max-width: initial !important;
    margin: 0 !important;
  }
}

.modal__wrapper {
  transition-duration: 0.3s;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, transform;
  transition-property: opacity, visibility, transform, -webkit-transform;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  height: 100%;
  max-height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

@media (min-width: 48rem) {
  .modal__wrapper {
    transition-duration: 0.4s;
    -webkit-transform: translateY(-30px) scale(0.9);
    transform: translateY(-30px) scale(0.9);
    max-width: 41.25rem;
    margin: 0 auto;
    height: 100%;
    max-height: 100%;
  }
}

.modal__container {
  width: 100%;
  max-height: 100%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 9999;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 575px) {
  .modal__container {
    height: 100%;
  }
}

@media (min-width: 48rem) {
  .modal__container {
    border-radius: 0.75rem;
  }
}

@media screen and (min-width: 48rem) {
  .modal__container {
    padding-left: calc(6.48148vw - 1.86111rem);
    padding-right: calc(6.48148vw - 1.86111rem);
  }
}

@media screen and (min-width: 75rem) {
  .modal__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .modal__container {
    padding-top: calc(5.55556vw - 1.16667rem);
    padding-bottom: calc(5.55556vw - 1.16667rem);
  }
}

@media screen and (min-width: 75rem) {
  .modal__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.modal__overlay {
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.modal__overlay:not([data-modal-close]) {
  pointer-events: none;
}

.modal__map {
  min-height: 20rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (min-width: 48rem) {
  .modal__map {
    min-height: calc(37.03704vw + 2.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .modal__map {
    min-height: 30rem;
  }
}

.modal__close {
  transition-duration: 0.3s;
  transition-property: color, background-color, box-shadow;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  color: #64748b;
  font-size: 1.5rem;
  top: 1.25rem;
  right: 1rem;
  z-index: 10;
}

@media (min-width: 48rem) {
  .modal__close {
    width: 3.125rem;
    height: 3.125rem;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
  }
}

.modal__close:hover {
  background-color: #eff4fa;
  color: #286cf6;
}

.modal__content {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.modal__header {
  padding: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
}

.modal__header--no-seperator {
  border-bottom: 0;
}

.modal__title,
.modal__header {
  margin-bottom: 2rem;
}

@media screen and (min-width: 48rem) {
  .modal__title,
  .modal__header {
    margin-bottom: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .modal__title,
  .modal__header {
    margin-bottom: 3rem;
  }
}

.modal__subtitle {
  margin-top: 0.25rem;
}

.modal__header .modal__title {
  margin-bottom: 0;
}

.modal__image {
  border-radius: 0.375rem;
}

.modal__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #e04646;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.modal__icon--warning {
  color: #edb45b;
}

.modal__icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  font-size: 1.5rem;
  border-radius: 50%;
  color: #286cf6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.modal__icon-wrapper .modal__icon {
  font-size: inherit;
  margin: 0;
  color: inherit;
}

.modal__icon-wrapper .modal__icon--warning {
  color: #ff7e05;
}

.modal__bottom {
  background-color: #fff;
  z-index: 5;
  position: sticky;
  width: 100%;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  margin-top: 1rem;
}

@media (min-width: 62rem) {
  .modal__bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (min-width: 62rem) {
  .modal__bottom--no-seperator {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 991px) {
@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .modal__bottom {
      padding-bottom: constant(safe-area-inset-bottom);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .modal__bottom {
      padding-bottom: env(safe-area-inset-bottom);
    }
}
}

.modal__package {
  border-radius: 1rem;
  background-color: rgba(40, 108, 246, 0.13);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: start;
  padding: 0.75rem 1rem;
}

.modal__package-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.06);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.75rem;
  border-radius: 3rem;
}

.modal__package-icon {
  font-size: 1.5rem;
  color: #286cf6;
}

.modal__package-title {
  line-height: 1.5rem;
}

.modal__package-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal__embed {
  width: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: block;
  border: 0;
}

@media (min-width: 48rem) {
  .modal__embed {
    border-radius: 0.75rem;
  }
}

@media (min-width: 48rem) {
  .modal--large .modal__wrapper {
    max-width: 62.5rem;
  }
}

@media (min-width: 82.5rem) {
  .modal--xlarge .modal__wrapper {
    max-width: 80rem;
  }
}

@media (min-width: 36rem) {
  .modal--small .modal__wrapper {
    max-width: 25rem;
  }
}

@media (max-width: 575px) {
  .modal--confirm .modal__container {
    height: auto;
  }
}

@media (max-width: 1319px) {
  .modal--confirm .modal__container {
    border-radius: 0.75rem;
  }
}

.modal--confirm .modal__wrapper {
  max-width: 30rem;
}

@media (max-width: 767px) {
  .modal--confirm .modal__wrapper {
    margin: 0 auto;
    padding: 0 1.25rem;
  }
}

.modal--centered .modal__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.modal--centered .modal__icon-wrapper {
  margin-right: 0;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .modal--filter {
    padding: 0 !important;
  }
}

@media (max-width: 991px) {
  .modal--filter .modal__container {
    padding: 0;
  }
}

@media (min-width: 48rem) {
  .modal--filter .modal__wrapper {
    max-width: 100%;
  }
}

@media (min-width: 62rem) {
  .modal--filter .modal__content {
    overflow: inherit;
  }
}

.modal--filter .modal__bottom {
  padding: 1.5rem;
}

@media (max-width: 991px) {
  .modal--filter .filter__column.d-none + .filter__column {
    border-top-width: 0 !important;
  }
}

@media (min-width: 48rem) {
  .modal--space-m .modal__container {
    padding: 2rem;
  }
}

@media (min-width: 48rem) {
  .modal--space-l .modal__container {
    padding: 2rem;
  }
}

@media screen and (min-width: 48rem) and (min-width: 48rem) {
  .modal--space-l .modal__container {
    padding: calc(1.85185vw + 1.11111rem);
  }
}

@media screen and (min-width: 48rem) and (min-width: 75rem) {
  .modal--space-l .modal__container {
    padding: 2.5rem;
  }
}

@media (min-width: 36rem) {
  .modal--payment .modal__wrapper {
    max-width: 35rem;
  }
}

@media (min-width: 36rem) {
  .modal--buy .modal__wrapper {
    max-width: 57.5rem;
  }
}

.modal--new .modal__container {
  padding: 0;
}

.modal--new .modal__header {
  margin-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.modal--new .modal__header .modal__close {
  width: 2.5rem;
  height: 2.5rem;
}

.modal--new .modal__content {
  padding: 1.5rem;
}

.modal--new .modal__bottom {
  padding: 1rem 1.5rem;
}

@media (min-width: 48rem) {
  .modal--new .modal__bottom {
    border-radius: 0 0 0.75rem 0.75rem;
  }
}

.modal--new .modal__package:first-child {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  margin-top: -1.5rem;
  border-radius: 0;
}

.modal--show,
.modal.is-show {
  display: block !important;
}

.modal--show .modal__overlay,
.modal.is-show .modal__overlay {
  display: block !important;
}

.modal--opened,
.modal.is-opened {
  pointer-events: auto !important;
}

.modal--opened .modal__overlay,
.modal.is-opened .modal__overlay {
  opacity: 1 !important;
  visibility: visible !important;
}

.modal--opened .modal__wrapper,
.modal.is-opened .modal__wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateY(0) scale(1) !important;
  transform: translateY(0) scale(1) !important;
}

.modal--opened .modal__container,
.modal.is-opened .modal__container {
  pointer-events: auto !important;
}

.modal--chat .modal__overlay-backdrop {
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-backdrop-filter;
  transition-property: backdrop-filter, opacity;
  transition-property: backdrop-filter, opacity, -webkit-backdrop-filter;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(0.375rem);
  backdrop-filter: blur(0.375rem);
}

@media (min-width: 36rem) {
  .modal--chat .modal__wrapper {
    max-width: 90%;
  }
}

@media (min-width: 36rem) {
  .modal--chat .modal__container {
    height: 90vh;
  }
}

@media (min-width: 48rem) {
  .modal--chat .modal__container {
    padding: 0.1875rem;
    background: conic-gradient(from var(--gradient-angle, 45deg), #0065ff 10%, #0469ff 30%, #bf63f3 50%, #ffa900 70%, #0065ff 90%);
    -webkit-animation: rotate-gradient 5s linear infinite;
    animation: rotate-gradient 5s linear infinite;
    box-shadow: 12px 12px 24px rgba(0, 101, 255, 0.12), 16px 8px 32px rgba(191, 99, 243, 0.08), 20px 14px 20px rgba(255, 169, 0, 0.08);
  }
}

.modal--chat .modal__content {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 48rem) {
  .modal--chat .modal__content {
    background-color: #fff;
    border-radius: 0.75rem;
  }
}

.modal .iti.iti--allow-dropdown {
  width: 100%;
}

@media (min-width: 48rem) {
  .modal:has([data-button-dynamic-provider]):has([data-modal-step='2']:not(.d-none)) .modal__wrapper {
    max-width: 31.25rem;
  }
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@-webkit-keyframes rotate-gradient {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes rotate-gradient {
  to {
    --gradient-angle: 360deg;
  }
}

.page {
  position: relative;
  z-index: 3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  /*&--viewport {
    display: flex;
    flex-direction: column;

    // Calculate height values based on navbar heights
    $min-height: calc(100vh - 4rem);
    $max-height: calc(100vh - 5rem);

    // Usage of mixin with precomputed values
    @include interpolate(height, $min-height, $max-height);
  }*/
}

.page__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 48rem) {
  .page__container {
    padding-top: calc(1.38889vw + 2.33333rem);
    padding-bottom: calc(1.38889vw + 2.33333rem);
  }
}

@media screen and (min-width: 120rem) {
  .page__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.page__container + .page__container {
  padding-top: 0;
}

.page__container .page__container {
  padding-top: 0;
  padding-bottom: 0;
}

.page__title,
.page__header {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .page__title,
  .page__header {
    margin-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .page__title,
  .page__header {
    margin-bottom: 2rem;
  }
}

.page__header .page__title {
  margin-bottom: 0;
}

.page__header--seperated {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .page__header--seperated {
    padding-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .page__header--seperated {
    padding-bottom: 2rem;
  }
}

.page__header .page__tab:last-child {
  margin-bottom: -1.5625rem;
}

@media screen and (min-width: 48rem) {
  .page__header .page__tab:last-child {
    margin-bottom: calc(-1.85185vw - 0.67361rem);
  }
}

@media screen and (min-width: 75rem) {
  .page__header .page__tab:last-child {
    margin-bottom: -2.0625rem;
  }
}

.page__content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  /*> .entry {
      @include breakpoint-up('large') {
        max-width: rem(960px);
        margin-left: auto;
        margin-right: auto;
      }
    }*/
}

.page__meta {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1rem;
  margin: -0.25rem -0.5rem;
  color: #334155;
  line-height: 1.5rem;
  font-size: 0.875rem;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 36rem) {
  .page__meta {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .page__meta {
    padding: 1rem;
  }
}

@media (min-width: 62rem) {
  .page__meta {
    font-size: inherit;
  }
}

.page__meta-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0.25rem 0.5rem;
}

@media (min-width: 48rem) {
  .page__meta-item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: initial;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
  }
}

.page__meta-item-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 48rem) {
  .page__meta-item-icon {
    font-size: calc(0.92593vw + 0.80556rem);
  }
}

@media screen and (min-width: 75rem) {
  .page__meta-item-icon {
    font-size: 1.5rem;
  }
}

.page__meta-item-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.page__meta-item-link.badge {
  font-size: inherit;
}

.page__meta-item-link.badge:hover {
  color: #020617;
}

@media (min-width: 62rem) {
  .page__meta-item + .page__meta-item::before {
    content: '';
    width: 1px;
    height: 1.5rem;
    background-color: #e2e8f0;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.page__meta--inline {
  border: 0;
  overflow: hidden;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin: -0.75rem;
  padding: 0;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.page__meta--inline .page__meta-item {
  padding: 0.75rem;
  -ms-flex: initial;
  flex: initial;
  width: initial;
  color: #4b5563;
}

.page__meta--inline .page__meta-item::before {
  content: none;
}

.page__map {
  min-height: 13.75rem;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 48rem) {
  .page__map {
    min-height: calc(41.66667vw - 6.25rem);
  }
}

@media screen and (min-width: 75rem) {
  .page__map {
    min-height: 25rem;
  }
}

.page__map-item {
  height: initial;
}

@media (min-width: 62rem) {
  .page__map--large {
    min-height: 37.5rem;
  }
}

@media (min-width: 62rem) {
  .page__map--fill {
    min-height: 18.75rem;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 62rem) {
  .page__map + .page__container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.page__featured-image {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 62rem) {
  .page__featured-image {
    margin-bottom: calc(5.35714vw - 1.82143rem);
  }
}

@media screen and (min-width: 90rem) {
  .page__featured-image {
    margin-bottom: 3rem;
  }
}

@media (min-width: 48rem) {
  .page__featured-image {
    position: relative;
    overflow: hidden;
  }
}

.page__featured-image-item {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 6px;
}

@media (min-width: 48rem) {
  .page__featured-image--limit .page__featured-image-item {
    max-height: 31.25rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.page__tab {
  display: -ms-flexbox;
  display: flex;
}

.page__tab-wrapper {
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.page__tab-wrapper::-webkit-scrollbar {
  display: none;
}

.page__tab-item {
  transition-duration: 0.3s;
  transition-property: color, box-shadow;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #1f2937;
  font-weight: 500;
  min-height: 3rem;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page__tab-item:not(.is-disabled):hover {
  color: #020617;
  box-shadow: inset 0 -0.1875rem 0 0 #e2e8f0;
}

.page__tab-item.is-active {
  font-weight: 600;
  color: #020617;
  box-shadow: inset 0 -0.1875rem 0 0 #286cf6 !important;
}

.page__tab-item.is-disabled {
  color: #1f2937;
  opacity: 0.5;
  cursor: no-drop;
}

.page__tab-item-count {
  margin-left: 0.5rem;
  min-width: 1.25rem;
  height: 1rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  border-radius: 3.125rem;
  background-color: #eeeff3;
  color: #171f44;
  font-size: 0.6875rem;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page__tab-item + .page__tab-item {
  margin-left: 0.25rem;
}

@media screen and (min-width: 48rem) {
  .page__tab-item + .page__tab-item {
    margin-left: calc(2.77778vw - 1.08333rem);
  }
}

@media screen and (min-width: 75rem) {
  .page__tab-item + .page__tab-item {
    margin-left: 1rem;
  }
}

.page__tab--inline {
  border-bottom: 1px solid #e2e8f0;
}

.page__tab--inline .page__tab-item {
  padding-left: 0;
  padding-right: 0;
}

.page__tab--inline .page__tab-item + .page__tab-item {
  margin-left: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .page__tab--inline .page__tab-item + .page__tab-item {
    margin-left: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .page__tab--inline .page__tab-item + .page__tab-item {
    margin-left: 2rem;
  }
}

.page__tab--inline:not(.page__tab--small) .page__tab-item {
  font-size: inherit;
}

.page__search-wrapper {
  border-bottom: 1px solid #e2e8f0;
  background-color: #fff;
}

.page__search-wrapper .page__container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.page__search-wrapper .page__tab {
  margin-top: 0.5rem;
  margin-bottom: -1.5625rem;
}

.page:not([class*=' section--background']):not(.page--columns) + .section:not([class*=' section--background']):not([class*=' section--keep']) .section__container:not([class*=' section__container--background']):not(
[class*=' section__container--bordered']) {
  padding-top: initial;
}

.page--full {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.page--full .map {
  border-radius: 0;
}

@supports (position: sticky) {
@media (min-width: 48rem) {
    .page--full .page__map--fill {
      height: calc(100vh - 8.625rem);
      position: sticky;
      top: 8.625rem;
    }
}

@media (min-width: 75rem) {
    .page--full .page__map--fill {
      height: calc(100vh - 9.08875rem);
      top: 9.08875rem;
    }
}

@media (min-width: 90rem) {
    .page--full .page__map--fill {
      height: calc(100vh - 9.625rem);
      top: 9.625rem;
    }
}
}

.reviews__header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .reviews__header {
    padding-bottom: calc(3.7037vw - 0.77778rem);
    margin-bottom: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .reviews__header {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

.reviews__score + .reviews__count {
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 1rem;
  border-left: 1px solid #e2e8f0;
  margin-left: 1rem;
}

.questions__header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .questions__header {
    padding-bottom: calc(3.7037vw - 0.77778rem);
    margin-bottom: calc(3.7037vw - 0.77778rem);
  }
}

@media screen and (min-width: 75rem) {
  .questions__header {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

.questions__item {
  font-size: 0.875rem;
}

.questions__item + .questions__item {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

@media screen and (min-width: 48rem) {
  .questions__item + .questions__item {
    margin-top: calc(0.92593vw + 0.30556rem);
    padding-top: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .questions__item + .questions__item {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

.questions__item-title,
.questions__item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.questions__item-title-title,
.questions__item-content-title {
  display: none;
}

@media (min-width: 48rem) {
  .questions__item-title-title,
  .questions__item-content-title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 7.5rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 1rem;
  }
}

@media (min-width: 48rem) {
  .questions__item-title-title::after,
  .questions__item-content-title::after {
    content: ':';
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: auto;
  }
}

.questions__item-title-title,
.questions__item-title-label {
  line-height: 1.5rem;
}

.questions__item-title-label {
  display: block;
}

.questions__item-content {
  margin-top: 0.5rem;
}

.filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 62rem) {
  .filter {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
  }
}

.filter__column {
  transition: 0.3s background-color;
  padding: 1rem 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767px) {
  .filter__column {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.filter__column-title,
.filter__column a.filter__column-title:hover {
  color: #020617;
}

.filter__column-title-wrapper {
  display: -ms-flexbox;
  display: flex;
  min-height: 2rem;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  margin: -1rem -1.25rem;
}

@media (max-width: 767px) {
  .filter__column-title-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}

.filter__column-title-wrapper[data-accordion-toggle] {
  transition: 0.3s background-color;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter__column-title-wrapper .filter__column-title {
  margin-bottom: 0;
}

.filter__column-title {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

.filter__column-title--icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.filter__column-title-icon {
  color: #286cf6;
  font-size: 1.25rem;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.filter__column-title-info {
  transition: 0.3s color;
  cursor: pointer;
  font-size: 1.125rem;
  display: inline-block;
  line-height: 1.5rem;
  vertical-align: top;
  margin-left: 0.125rem;
  color: #64748b;
}

.filter__column-title-info:hover {
  color: #020617;
}

.filter__column-toggle {
  transition-duration: 0.3s;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  font-size: 1.25rem;
  border: 0;
  padding: 0;
  margin-left: 0.5rem;
  color: #020617;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.filter__column-toggle:hover {
  background-color: #e2e8f0;
}

.filter__column-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}

.filter__column-content[data-accordion-content] {
  max-height: 0;
  overflow: hidden;
  box-sizing: content-box;
}

.filter__column-content > * {
  box-sizing: border-box;
}

.filter__column-content--flow {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.filter__column-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.filter__column-wrapper[data-filter-column-limit] {
  overflow: hidden;
  transition: 0.3s max-height;
}

.filter__column-wrapper[data-filter-column-limit='3'] {
  max-height: 92px;
}

.filter__column-wrapper[data-filter-column-limit] {
  overflow: hidden;
  transition: 0.3s max-height;
}

.filter__column-wrapper[data-filter-column-limit='4'] {
  max-height: 128px;
}

.filter__column-wrapper[data-filter-column-limit] {
  overflow: hidden;
  transition: 0.3s max-height;
}

.filter__column-wrapper[data-filter-column-limit='5'] {
  max-height: 164px;
}

.filter__column-wrapper[data-filter-column-limit] {
  overflow: hidden;
  transition: 0.3s max-height;
}

.filter__column-wrapper[data-filter-column-limit='6'] {
  max-height: 200px;
}

.filter__column-wrapper[data-filter-column-limit] {
  overflow: hidden;
  transition: 0.3s max-height;
}

.filter__column-wrapper[data-filter-column-limit='7'] {
  max-height: 236px;
}

.filter__column-wrapper[data-filter-column-limit] {
  overflow: hidden;
  transition: 0.3s max-height;
}

.filter__column-wrapper[data-filter-column-limit='8'] {
  max-height: 272px;
}

.filter__column-search {
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-bottom: 1rem;
  position: relative;
}

.filter__column-search-input {
  padding-right: 3rem;
  border-width: 0.125rem;
  border-radius: 0.375rem;
  background-color: rgba(241, 245, 249, 0.7);
  height: 2.25rem;
  padding-left: 0.75rem;
}

.filter__column-search-close {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  width: 1.5rem;
  height: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
}

.filter__column-search-close:hover {
  color: #020617;
}

.filter__column-inputs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-right: 3px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
  max-height: 15.125rem;
}

.filter__column-inputs .checkbox + .checkbox,
.filter__column-inputs .radio + .radio {
  margin-top: 0.625rem;
}

.filter__column-more {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.filter__column-more-icon {
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  margin-left: 0.25rem;
  font-size: 1.25rem;
}

.filter__column-more.is-active .filter__column-more-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media (min-width: 62rem) {
  .filter__column:first-child {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }
}

@media (min-width: 62rem) {
  .filter__column:last-child {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
}

.filter__column + .filter__column {
  border-top: 1px solid #e2e8f0;
}

.filter__column .filter__preview {
  margin: -0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.filter__column .list--nav {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.filter__column .list--nav:first-child {
  margin-top: -0.5rem;
}

.filter__column.is-animate .filter__column-content {
  transition-duration: 0.4s;
  transition-property: max-height, padding-top, margin-top, border-color;
}

.filter__column.is-active .filter__column-toggle,
.filter__column.is-opened .filter__column-toggle {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.filter__column.is-active .filter__column-content,
.filter__column.is-opened .filter__column-content {
  padding-top: 1rem;
  padding-bottom: 0.25rem;
}

.filter__column.is-active .filter__column-content {
  max-height: initial;
}

.filter__column:not(.is-active):not(.is-opened):not(.filter__column--static):not(.filter__column--preview):hover {
  background-color: #f1f5f9;
}

.filter__preview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.filter__preview-item {
  transition: 0.3s background-color;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #020617;
  line-height: 1.5rem;
}

.filter__preview-item:hover {
  background-color: #f1f5f9;
}

.filter__preview-item strong {
  font-weight: 500;
}

.filter__preview-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.filter__preview-content > span {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #64748b;
}

.filter__preview-content-more {
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
}

.filter__preview-content-more:hover {
  text-decoration: underline;
  color: #020617;
}

.filter__preview-remove {
  margin-left: 0.5rem;
  font-size: 1.125rem;
  padding: 0.25rem;
  -ms-flex-item-align: center;
  align-self: center;
  min-height: 0;
  min-width: 0 !important;
}

.filter__preview-remove:not(:hover):not(:active):not(:focus) {
  background-color: transparent !important;
}

.filter__preview-remove:hover,
.filter__preview-remove:active,
.filter__preview-remove:focus {
  background-color: #fff !important;
}

.product__detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

@media (min-width: 62rem) {
  .product__detail {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 75rem) {
  .product__detail {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .product__detail {
    margin-top: -2rem;
  }
}

@media screen and (max-width: 991px) and (min-width: 48rem) {
  .product__detail {
    margin-top: calc(-3.7037vw - 0.22222rem);
  }
}

@media screen and (max-width: 991px) and (min-width: 75rem) {
  .product__detail {
    margin-top: -3rem;
  }
}

.product__image {
  min-width: 0;
}

@media (min-width: 62rem) {
  .product__image {
    -ms-flex: 0 0 48.15%;
    flex: 0 0 48.15%;
    max-width: 48.15%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 62rem) {
  .product__image + .product__content {
    border-left-width: 0;
  }
}

@media (min-width: 62rem) {
  .product__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border: 1px solid #e2e8f0;
    border-bottom-right-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
  }
}

.product__content-block {
  padding: 1.5rem 1.25rem;
}

@media (max-width: 991px) {
  .product__content-block {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}

@media (min-width: 62rem) {
  .product__content-block {
    padding: 2rem;
  }
}

.product__content-block + .product__content-block {
  border-top: 1px solid #e2e8f0;
}

.product__content-block--top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.product__content-block--top strong {
  font-weight: 600;
  color: #1e293b;
}

.product__content-block--top .product__content-block-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.product__content-block--top .product__content-block-item + .product__content-block-item {
  margin-left: 1rem;
}

.product__content-block--top .product__content-block-item-icon {
  font-size: 1rem;
  color: #64748b;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.product__content-block--top .product__content-block-item:first-child {
  margin-right: auto;
}

@media (min-width: 62rem) {
  .product__share {
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #e2e8f0;
    border-left-width: 0;
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 75rem) {
  .product__share {
    right: auto;
    left: 100%;
    min-height: 18.4375rem;
  }
}

@media (max-width: 991px) {
  .product__share {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
  }
}

.product__owner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.25rem;
  padding-top: 0.5rem;
}

.product__owner-badge {
  transition-duration: 0.3s;
  transition-property: color, background-color;
  border-radius: 3.125rem;
  padding: 0.25rem 1rem;
  margin: 0.25rem;
  border-width: 0;
  font-size: 0.875rem !important;
}

.product__owner-badge:not(.badge--verified):not(.badge--danger) {
  background-color: #e2e8f0;
  color: #64748b;
}

.product__owner a.product__owner-badge:hover {
  background-color: #cbd5e1;
  color: #020617;
}

.product__price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #475569;
}

.product__price-item strong {
  display: inline;
  font-weight: bold;
  color: #286cf6;
}

.product__price-item + .product__price-item {
  margin-top: 0.25rem;
}

.product__social {
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 575px) {
  .product__social {
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

@media (min-width: 62rem) {
  .product__social {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 62rem) {
  .product__social-item + .product__social-item {
    margin-left: 0 !important;
    margin-top: 1.25rem;
  }
}

.product__badge {
  margin-right: auto;
}

@media (min-width: 62rem) {
  .product__process {
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.product__process-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.product__process-title-preview {
  color: #94a3b8;
}

.product__discount {
  border: 1px solid #e2e8f0;
  background-color: #475569;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 1rem 1.25rem;
}

@media (max-width: 991px) {
  .product__discount {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}

@media (min-width: 62rem) {
  .product__discount {
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 0.625rem;
  }
}

@media (min-width: 75rem) {
  .product__discount {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.product__discount-label {
  margin-right: 1rem;
}

@media screen and (min-width: 48rem) {
  .product__discount-label {
    margin-right: calc(1.85185vw + 0.11111rem);
  }
}

@media screen and (min-width: 75rem) {
  .product__discount-label {
    margin-right: 1.5rem;
  }
}

@media (max-width: 991px) {
  .product__description {
    border-left: 0;
    border-right: 0;
    margin: 0 -1.25rem;
    padding: 2rem 1.25rem;
    border-radius: 0;
  }
}

@media (max-width: 991px) {
  .product__description-header {
    border-radius: 0;
    margin: -0.5rem -1.25rem 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.secret-area {
  position: absolute;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.6);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 1.25rem;
  text-align: center;
  left: -0.4375rem;
  top: -0.4375rem;
  right: -0.4375rem;
  bottom: -0.4375rem;
}

.secret-area ~ * {
  -webkit-filter: blur(7px);
  filter: blur(7px);
  pointer-events: none;
}

.secret-area__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #286cf6;
}

@media screen and (min-width: 48rem) {
  .secret-area__icon {
    font-size: calc(3.7037vw + 0.22222rem);
  }
}

@media screen and (min-width: 75rem) {
  .secret-area__icon {
    font-size: 3rem;
  }
}

@media screen and (min-width: 48rem) {
  .secret-area__icon {
    margin-bottom: calc(1.85185vw + 0.61111rem);
  }
}

@media screen and (min-width: 75rem) {
  .secret-area__icon {
    margin-bottom: 2rem;
  }
}

.secret-area__button {
  margin-top: 1.5rem;
  min-width: 7.5rem;
}

.secret-area__button.button--light {
  box-shadow: 0 2px 16px -2px rgba(0, 0, 0, 0.12);
}

.secret-area--warning .secret-area__icon {
  color: #ff7e05;
}

.secret-area--small .secret-area__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 62rem) {
  [class*='col-lg-4'] .secret-area__text,
  [class*='col-lg-3'] .secret-area__text {
    font-size: 0.875rem;
  }
}

[class*='col-lg-4'] .secret-area__icon,
[class*='col-lg-3'] .secret-area__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.sidebar {
  padding: 1.5rem 0 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.sidebar__user {
  padding: 0.75rem 1rem;
  background-color: rgba(2, 6, 23, 0.03);
  border-radius: 0.375rem;
  margin: 0 0.5rem 1rem;
}

.sidebar__user-title {
  line-height: 1.25rem;
}

.sidebar__title {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 0 1.5rem;
  margin-bottom: 0.25rem;
  color: #020617;
}

.sidebar__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0.5rem;
  font-size: 0.875rem;
  letter-spacing: initial;
}

.sidebar__menu-item,
.sidebar__menu-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar__menu-link {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: row;
  flex-direction: row;
}

.sidebar__menu-link-label {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.sidebar__menu-link-icon {
  font-size: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.5rem;
  color: #9ca3af;
}

.sidebar__menu-link-badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.25rem;
  line-height: 1;
  min-height: 1rem;
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 600;
  background-color: #e73323;
  color: #fff;
  border-radius: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.sidebar__menu-link.is-disabled {
  color: #1f2937;
}

.sidebar__menu-link.is-unread {
  padding-left: 1.875rem;
}

.sidebar__menu-link.is-unread::after {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: #e73323;
  border-radius: 50%;
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar__menu-link:not(.is-active):not(.is-disabled):hover {
  background-color: rgba(203, 216, 243, 0.4);
  color: #001ba3;
}

.sidebar__menu-link:not(.is-active):not(.is-disabled):active {
  background-color: rgba(203, 216, 243, 0.8);
  color: #000a3a;
}

.sidebar__menu-link.is-active {
  background-color: #fff;
  color: #286cf6;
  font-weight: 500;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.sidebar__menu-link.is-active::before {
  content: '';
  width: 0.1875rem;
  background-color: #286cf6;
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  border-radius: 0 0.625rem 0.625rem 0;
}

.sidebar__content-column:not(:first-child) {
  margin-top: 2rem;
}

@media (min-width: 62rem) {
  .sidebar__content {
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.sidebar__footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-top: 1px solid #cbd5e1;
}

.notifications__group + .notifications__group {
  margin-top: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .notifications__group + .notifications__group {
    margin-top: calc(0.92593vw + 0.30556rem);
  }
}

@media screen and (min-width: 75rem) {
  .notifications__group + .notifications__group {
    margin-top: 1rem;
  }
}

.notifications__group-title {
  margin-bottom: 0.25rem;
  color: #475569;
}

.notifications__card {
  transition-duration: 0.3s;
  transition-property: background-color, color, box-shadow;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  margin: 0 -0.75rem;
  color: #1f2937;
  font-weight: 500;
}

.notifications__card:hover {
  background-color: #f1f5f9;
  color: #1f2937;
}

.notifications__card:active {
  background-color: #dbe3ed;
  box-shadow: 0 0 0 0.1875rem rgba(2, 6, 23, 0.03);
}

.notifications__card-avatar {
  width: 2.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  box-shadow: 0px 2px 4px 0px rgba(57, 68, 86, 0.03), 0 0 0 0.1875rem #fff;
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
}

.notifications__card-avatar-letter,
.notifications__card-avatar-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 1.25rem;
  color: #286cf6;
}

.notifications__card-avatar-letter {
  color: #001ba3;
  font-size: 0.875rem;
  font-weight: 600;
}

.notifications__card-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.notifications__card-content strong {
  color: #020617;
}

.notifications__card-text {
  line-height: 1.5;
}

.notifications__card-date {
  color: #475569;
  line-height: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.125rem;
}

.notifications__card + .notifications__card {
  margin-top: 0.375rem;
}

.notifications__card.is-success,
.notifications__card.is-warning,
.notifications__card.is-error {
  font-weight: 600;
}

.notifications__card.is-success .notifications__card-avatar-letter,
.notifications__card.is-success .notifications__card-avatar-icon,
.notifications__card.is-warning .notifications__card-avatar-letter,
.notifications__card.is-warning .notifications__card-avatar-icon,
.notifications__card.is-error .notifications__card-avatar-letter,
.notifications__card.is-error .notifications__card-avatar-icon {
  color: inherit;
  font-size: 1.25rem;
}

.notifications__card.is-success .text-style--medium,
.notifications__card.is-warning .text-style--medium,
.notifications__card.is-error .text-style--medium {
  font-weight: bold;
}

.notifications__card.is-unread::after {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: #e73323;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 1rem;
  box-shadow: 0 0 0 0.125rem #fff;
}

.notifications__card.is-success {
  background-color: rgba(56, 186, 134, 0.07) !important;
}

.notifications__card.is-success .notifications__card-avatar {
  background-color: rgba(56, 186, 134, 0.15) !important;
  color: #0f8a38;
}

.notifications__card.is-error {
  background-color: rgba(255, 237, 235, 0.5) !important;
}

.notifications__card.is-error .notifications__card-avatar {
  background-color: #ffedeb !important;
  color: #d03c12;
}

.notifications__card.is-warning {
  background-color: rgba(255, 126, 5, 0.07) !important;
}

.notifications__card.is-warning .notifications__card-avatar {
  background-color: rgba(255, 126, 5, 0.13) !important;
  color: #b85900;
}

.notifications a.notifications__card:hover.is-success {
  background-color: rgba(56, 186, 134, 0.15) !important;
}

.notifications a.notifications__card:hover.is-warning {
  background-color: rgba(255, 126, 5, 0.12) !important;
}

.notifications a.notifications__card:hover.is-error {
  background-color: rgba(255, 237, 235, 0.65) !important;
}

.notifications__loader {
  position: relative;
  min-height: 150px;
  height: initial;
}