.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}

@keyframes shake-7 {

  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90% {
    transform: translateX(7%);
  }

  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75%,
  85%,
  95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }

  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-ccw-1turn;
}

@keyframes spin-ccw-1turn {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {

  40%,
  50%,
  60% {
    transform: rotate(7deg);
  }

  35%,
  45%,
  55%,
  65% {
    transform: rotate(-7deg);
  }

  0%,
  30%,
  70%,
  100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BlackItalic.woff2") format("woff2"), url("../fonts/Montserrat-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-LightItalic.woff2") format("woff2"), url("../fonts/Montserrat-LightItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap
}

@media print,
screen and (min-width: 40em) {

  .reveal.large,
  .reveal.small,
  .reveal.tiny,
  .reveal {
    right: auto;
    left: auto;
    margin: 0 auto
  }
}

.select2-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  -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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -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 {
  -webkit-box-sizing: border-box;
  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;
  -webkit-box-sizing: border-box;
  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;
  -moz-user-select: none;
  -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%;
  -webkit-box-sizing: border-box;
  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--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em
}

.select2-container--default .select2-results__option--group {
  padding: 0
}

.select2-container--default .select2-results__option--disabled {
  color: #999
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
  border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
  padding: 0
}

.select2-container--classic .select2-results__option--disabled {
  color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

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

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

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

a {
  background-color: rgba(0, 0, 0, 0)
}

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

b,
strong {
  font-weight: bolder
}

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

small {
  font-size: 80%
}

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

sub {
  bottom: -0.25em
}

sup {
  top: -0.5em
}

img {
  border-style: none
}

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

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button
}

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

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

fieldset {
  padding: .35em .75em .625em
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

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

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

details {
  display: block
}

summary {
  display: list-item
}

template {
  display: none
}

[hidden] {
  display: none
}

[data-whatintent=mouse] *,
[data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none
}

[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=60em&xlarge=75em&xxlarge=84.375em&xxxlarge=120em"
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px
}

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

body {
  margin: 0;
  padding: 0;
  background: #0e0e0e;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  line-height: 1.68;
  color: #e6e6e6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 1.5714285714rem
}

select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-radius: 1.5714285714rem
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important
}

button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 1.5714285714rem;
  background: rgba(0, 0, 0, 0);
  line-height: 1;
  cursor: auto
}

[data-whatinput=mouse] button {
  outline: 0
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit
}

.is-visible {
  display: block !important
}

.is-hidden {
  display: none !important
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility
}

em,
i {
  font-style: italic;
  line-height: inherit
}

strong,
b {
  font-weight: 700;
  line-height: inherit
}

small {
  font-size: 80%;
  line-height: inherit
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #f47f26;
  text-rendering: optimizeLegibility
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
  line-height: 0;
  color: #cacaca
}

h1,
.h1 {
  font-size: 1.7142857143rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .5rem
}

h2,
.h2 {
  font-size: 1.4285714286rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .5rem
}

h3,
.h3 {
  font-size: 1.3571428571rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .5rem
}

h4,
.h4 {
  font-size: 1.2857142857rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .5rem
}

h5,
.h5 {
  font-size: 1.2142857143rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .5rem
}

h6,
.h6 {
  font-size: 1.1428571429rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .5rem
}

@media print,
screen and (min-width: 40em) {

  h1,
  .h1 {
    font-size: 3.4285714286rem
  }

  h2,
  .h2 {
    font-size: 2.8571428571rem
  }

  h3,
  .h3 {
    font-size: 2.2142857143rem
  }

  h4,
  .h4 {
    font-size: 1.7857142857rem
  }

  h5,
  .h5 {
    font-size: 1.4285714286rem
  }

  h6,
  .h6 {
    font-size: 1.1428571429rem
  }
}

a {
  line-height: inherit;
  color: #e97924;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer
}

a:hover,
a:focus {
  color: rgb(210.2218257261, 102.711120332, 21.1181742739)
}

a img {
  border: 0
}

hr {
  clear: both;
  max-width: 96.7142857143rem;
  height: 0;
  margin: 1.4285714286rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6
}

li {
  font-size: inherit
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc
}

ol {
  margin-left: 1.25rem
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0
}

dl {
  margin-bottom: 1rem
}

dl dt {
  margin-bottom: .3rem;
  font-weight: 700
}

blockquote {
  margin: 0 0 1rem;
  padding: .6428571429rem 1.4285714286rem 0 1.3571428571rem;
  border-left: 1px solid #cacaca
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #1f1f1f
}

abbr,
abbr[title] {
  border-bottom: 1px dotted #0e0e0e;
  cursor: help;
  -webkit-text-decoration: none;
  text-decoration: none
}

figure {
  margin: 0
}

kbd {
  margin: 0;
  padding: .1428571429rem .2857142857rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0e0e0e;
  border-radius: 1.5714285714rem
}

.subheader {
  margin-top: .2rem;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1f1f1f
}

.lead {
  font-size: 17.5px;
  line-height: 1.6
}

.stat {
  font-size: 2.5rem;
  line-height: 1
}

p+.stat {
  margin-top: -1rem
}

ul.no-bullet,
ol.no-bullet {
  margin-left: 0;
  list-style: none
}

.cite-block,
cite {
  display: block;
  color: #1f1f1f;
  font-size: .9285714286rem
}

.cite-block:before,
cite:before {
  content: "— "
}

.code-inline,
code {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 500;
  color: #0e0e0e;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: .1428571429rem .3571428571rem .0714285714rem
}

.code-block {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 500;
  color: #0e0e0e;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem
}

.text-left {
  text-align: left
}

.text-right {
  text-align: right
}

.text-center {
  text-align: center
}

.text-justify {
  text-align: justify
}

@media print,
screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left
  }

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

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

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

@media print,
screen and (min-width: 60em) {
  .large-text-left {
    text-align: left
  }

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

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

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

@media screen and (min-width: 75em) {
  .xlarge-text-left {
    text-align: left
  }

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

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

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

@media screen and (min-width: 84.375em) {
  .xxlarge-text-left {
    text-align: left
  }

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

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

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

.show-for-print {
  display: none !important
}

@media print {
  * {
    background: rgba(0, 0, 0, 0) !important;
    color: #000 !important;
    -webkit-print-color-adjust: economy;
    print-color-adjust: economy;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important
  }

  .show-for-print {
    display: block !important
  }

  .hide-for-print {
    display: none !important
  }

  table.show-for-print {
    display: table !important
  }

  thead.show-for-print {
    display: table-header-group !important
  }

  tbody.show-for-print {
    display: table-row-group !important
  }

  tr.show-for-print {
    display: table-row !important
  }

  td.show-for-print {
    display: table-cell !important
  }

  th.show-for-print {
    display: table-cell !important
  }

  a,
  a:visited {
    -webkit-text-decoration: underline;
    text-decoration: underline
  }

  a[href]:after {
    content: " (" attr(href) ")"
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""
  }

  abbr[title]:after {
    content: " (" attr(title) ")"
  }

  pre,
  blockquote {
    border: 1px solid #1f1f1f;
    page-break-inside: avoid
  }

  thead {
    display: table-header-group
  }

  tr,
  img {
    page-break-inside: avoid
  }

  img {
    max-width: 100% !important
  }

  @page {
    margin: .5cm
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3
  }

  h2,
  h3 {
    page-break-after: avoid
  }

  .print-break-inside {
    page-break-inside: auto
  }
}

.grid-container {
  max-width: 96.7142857143rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.7142857143rem;
  padding-left: 0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-container {
    padding-right: 0.7142857143rem;
    padding-left: 0.7142857143rem
  }
}

.grid-container.fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.7142857143rem;
  padding-left: 0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 0.7142857143rem;
    padding-left: 0.7142857143rem
  }
}

.grid-container.full {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  padding-left: 0
}

.grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap
}

.cell {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%
}

.cell.auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0
}

.cell.shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.grid-x>.auto {
  width: auto
}

.grid-x>.shrink {
  width: auto
}

.grid-x>.small-shrink,
.grid-x>.small-full,
.grid-x>.small-1,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12,
.grid-x>.small-13,
.grid-x>.small-14,
.grid-x>.small-15,
.grid-x>.small-16,
.grid-x>.small-17,
.grid-x>.small-18,
.grid-x>.small-19,
.grid-x>.small-20,
.grid-x>.small-21,
.grid-x>.small-22,
.grid-x>.small-23,
.grid-x>.small-24 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto
}

@media print,
screen and (min-width: 40em) {

  .grid-x>.medium-shrink,
  .grid-x>.medium-full,
  .grid-x>.medium-1,
  .grid-x>.medium-2,
  .grid-x>.medium-3,
  .grid-x>.medium-4,
  .grid-x>.medium-5,
  .grid-x>.medium-6,
  .grid-x>.medium-7,
  .grid-x>.medium-8,
  .grid-x>.medium-9,
  .grid-x>.medium-10,
  .grid-x>.medium-11,
  .grid-x>.medium-12,
  .grid-x>.medium-13,
  .grid-x>.medium-14,
  .grid-x>.medium-15,
  .grid-x>.medium-16,
  .grid-x>.medium-17,
  .grid-x>.medium-18,
  .grid-x>.medium-19,
  .grid-x>.medium-20,
  .grid-x>.medium-21,
  .grid-x>.medium-22,
  .grid-x>.medium-23,
  .grid-x>.medium-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

@media print,
screen and (min-width: 60em) {

  .grid-x>.large-shrink,
  .grid-x>.large-full,
  .grid-x>.large-1,
  .grid-x>.large-2,
  .grid-x>.large-3,
  .grid-x>.large-4,
  .grid-x>.large-5,
  .grid-x>.large-6,
  .grid-x>.large-7,
  .grid-x>.large-8,
  .grid-x>.large-9,
  .grid-x>.large-10,
  .grid-x>.large-11,
  .grid-x>.large-12,
  .grid-x>.large-13,
  .grid-x>.large-14,
  .grid-x>.large-15,
  .grid-x>.large-16,
  .grid-x>.large-17,
  .grid-x>.large-18,
  .grid-x>.large-19,
  .grid-x>.large-20,
  .grid-x>.large-21,
  .grid-x>.large-22,
  .grid-x>.large-23,
  .grid-x>.large-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

@media screen and (min-width: 75em) {

  .grid-x>.xlarge-shrink,
  .grid-x>.xlarge-full,
  .grid-x>.xlarge-1,
  .grid-x>.xlarge-2,
  .grid-x>.xlarge-3,
  .grid-x>.xlarge-4,
  .grid-x>.xlarge-5,
  .grid-x>.xlarge-6,
  .grid-x>.xlarge-7,
  .grid-x>.xlarge-8,
  .grid-x>.xlarge-9,
  .grid-x>.xlarge-10,
  .grid-x>.xlarge-11,
  .grid-x>.xlarge-12,
  .grid-x>.xlarge-13,
  .grid-x>.xlarge-14,
  .grid-x>.xlarge-15,
  .grid-x>.xlarge-16,
  .grid-x>.xlarge-17,
  .grid-x>.xlarge-18,
  .grid-x>.xlarge-19,
  .grid-x>.xlarge-20,
  .grid-x>.xlarge-21,
  .grid-x>.xlarge-22,
  .grid-x>.xlarge-23,
  .grid-x>.xlarge-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

@media screen and (min-width: 84.375em) {

  .grid-x>.xxlarge-shrink,
  .grid-x>.xxlarge-full,
  .grid-x>.xxlarge-1,
  .grid-x>.xxlarge-2,
  .grid-x>.xxlarge-3,
  .grid-x>.xxlarge-4,
  .grid-x>.xxlarge-5,
  .grid-x>.xxlarge-6,
  .grid-x>.xxlarge-7,
  .grid-x>.xxlarge-8,
  .grid-x>.xxlarge-9,
  .grid-x>.xxlarge-10,
  .grid-x>.xxlarge-11,
  .grid-x>.xxlarge-12,
  .grid-x>.xxlarge-13,
  .grid-x>.xxlarge-14,
  .grid-x>.xxlarge-15,
  .grid-x>.xxlarge-16,
  .grid-x>.xxlarge-17,
  .grid-x>.xxlarge-18,
  .grid-x>.xxlarge-19,
  .grid-x>.xxlarge-20,
  .grid-x>.xxlarge-21,
  .grid-x>.xxlarge-22,
  .grid-x>.xxlarge-23,
  .grid-x>.xxlarge-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

.grid-x>.small-24,
.grid-x>.small-23,
.grid-x>.small-22,
.grid-x>.small-21,
.grid-x>.small-20,
.grid-x>.small-19,
.grid-x>.small-18,
.grid-x>.small-17,
.grid-x>.small-16,
.grid-x>.small-15,
.grid-x>.small-14,
.grid-x>.small-13,
.grid-x>.small-12,
.grid-x>.small-11,
.grid-x>.small-10,
.grid-x>.small-9,
.grid-x>.small-8,
.grid-x>.small-7,
.grid-x>.small-6,
.grid-x>.small-5,
.grid-x>.small-4,
.grid-x>.small-3,
.grid-x>.small-2,
.grid-x>.small-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.grid-x>.small-1 {
  width: 4.1666666667%
}

.grid-x>.small-2 {
  width: 8.3333333333%
}

.grid-x>.small-3 {
  width: 12.5%
}

.grid-x>.small-4 {
  width: 16.6666666667%
}

.grid-x>.small-5 {
  width: 20.8333333333%
}

.grid-x>.small-6 {
  width: 25%
}

.grid-x>.small-7 {
  width: 29.1666666667%
}

.grid-x>.small-8 {
  width: 33.3333333333%
}

.grid-x>.small-9 {
  width: 37.5%
}

.grid-x>.small-10 {
  width: 41.6666666667%
}

.grid-x>.small-11 {
  width: 45.8333333333%
}

.grid-x>.small-12 {
  width: 50%
}

.grid-x>.small-13 {
  width: 54.1666666667%
}

.grid-x>.small-14 {
  width: 58.3333333333%
}

.grid-x>.small-15 {
  width: 62.5%
}

.grid-x>.small-16 {
  width: 66.6666666667%
}

.grid-x>.small-17 {
  width: 70.8333333333%
}

.grid-x>.small-18 {
  width: 75%
}

.grid-x>.small-19 {
  width: 79.1666666667%
}

.grid-x>.small-20 {
  width: 83.3333333333%
}

.grid-x>.small-21 {
  width: 87.5%
}

.grid-x>.small-22 {
  width: 91.6666666667%
}

.grid-x>.small-23 {
  width: 95.8333333333%
}

.grid-x>.small-24 {
  width: 100%
}

@media print,
screen and (min-width: 40em) {
  .grid-x>.medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: auto
  }

  .grid-x>.medium-24,
  .grid-x>.medium-23,
  .grid-x>.medium-22,
  .grid-x>.medium-21,
  .grid-x>.medium-20,
  .grid-x>.medium-19,
  .grid-x>.medium-18,
  .grid-x>.medium-17,
  .grid-x>.medium-16,
  .grid-x>.medium-15,
  .grid-x>.medium-14,
  .grid-x>.medium-13,
  .grid-x>.medium-12,
  .grid-x>.medium-11,
  .grid-x>.medium-10,
  .grid-x>.medium-9,
  .grid-x>.medium-8,
  .grid-x>.medium-7,
  .grid-x>.medium-6,
  .grid-x>.medium-5,
  .grid-x>.medium-4,
  .grid-x>.medium-3,
  .grid-x>.medium-2,
  .grid-x>.medium-1,
  .grid-x>.medium-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-x>.medium-shrink {
    width: auto
  }

  .grid-x>.medium-1 {
    width: 4.1666666667%
  }

  .grid-x>.medium-2 {
    width: 8.3333333333%
  }

  .grid-x>.medium-3 {
    width: 12.5%
  }

  .grid-x>.medium-4 {
    width: 16.6666666667%
  }

  .grid-x>.medium-5 {
    width: 20.8333333333%
  }

  .grid-x>.medium-6 {
    width: 25%
  }

  .grid-x>.medium-7 {
    width: 29.1666666667%
  }

  .grid-x>.medium-8 {
    width: 33.3333333333%
  }

  .grid-x>.medium-9 {
    width: 37.5%
  }

  .grid-x>.medium-10 {
    width: 41.6666666667%
  }

  .grid-x>.medium-11 {
    width: 45.8333333333%
  }

  .grid-x>.medium-12 {
    width: 50%
  }

  .grid-x>.medium-13 {
    width: 54.1666666667%
  }

  .grid-x>.medium-14 {
    width: 58.3333333333%
  }

  .grid-x>.medium-15 {
    width: 62.5%
  }

  .grid-x>.medium-16 {
    width: 66.6666666667%
  }

  .grid-x>.medium-17 {
    width: 70.8333333333%
  }

  .grid-x>.medium-18 {
    width: 75%
  }

  .grid-x>.medium-19 {
    width: 79.1666666667%
  }

  .grid-x>.medium-20 {
    width: 83.3333333333%
  }

  .grid-x>.medium-21 {
    width: 87.5%
  }

  .grid-x>.medium-22 {
    width: 91.6666666667%
  }

  .grid-x>.medium-23 {
    width: 95.8333333333%
  }

  .grid-x>.medium-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-x>.large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: auto
  }

  .grid-x>.large-24,
  .grid-x>.large-23,
  .grid-x>.large-22,
  .grid-x>.large-21,
  .grid-x>.large-20,
  .grid-x>.large-19,
  .grid-x>.large-18,
  .grid-x>.large-17,
  .grid-x>.large-16,
  .grid-x>.large-15,
  .grid-x>.large-14,
  .grid-x>.large-13,
  .grid-x>.large-12,
  .grid-x>.large-11,
  .grid-x>.large-10,
  .grid-x>.large-9,
  .grid-x>.large-8,
  .grid-x>.large-7,
  .grid-x>.large-6,
  .grid-x>.large-5,
  .grid-x>.large-4,
  .grid-x>.large-3,
  .grid-x>.large-2,
  .grid-x>.large-1,
  .grid-x>.large-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-x>.large-shrink {
    width: auto
  }

  .grid-x>.large-1 {
    width: 4.1666666667%
  }

  .grid-x>.large-2 {
    width: 8.3333333333%
  }

  .grid-x>.large-3 {
    width: 12.5%
  }

  .grid-x>.large-4 {
    width: 16.6666666667%
  }

  .grid-x>.large-5 {
    width: 20.8333333333%
  }

  .grid-x>.large-6 {
    width: 25%
  }

  .grid-x>.large-7 {
    width: 29.1666666667%
  }

  .grid-x>.large-8 {
    width: 33.3333333333%
  }

  .grid-x>.large-9 {
    width: 37.5%
  }

  .grid-x>.large-10 {
    width: 41.6666666667%
  }

  .grid-x>.large-11 {
    width: 45.8333333333%
  }

  .grid-x>.large-12 {
    width: 50%
  }

  .grid-x>.large-13 {
    width: 54.1666666667%
  }

  .grid-x>.large-14 {
    width: 58.3333333333%
  }

  .grid-x>.large-15 {
    width: 62.5%
  }

  .grid-x>.large-16 {
    width: 66.6666666667%
  }

  .grid-x>.large-17 {
    width: 70.8333333333%
  }

  .grid-x>.large-18 {
    width: 75%
  }

  .grid-x>.large-19 {
    width: 79.1666666667%
  }

  .grid-x>.large-20 {
    width: 83.3333333333%
  }

  .grid-x>.large-21 {
    width: 87.5%
  }

  .grid-x>.large-22 {
    width: 91.6666666667%
  }

  .grid-x>.large-23 {
    width: 95.8333333333%
  }

  .grid-x>.large-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .grid-x>.xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: auto
  }

  .grid-x>.xlarge-24,
  .grid-x>.xlarge-23,
  .grid-x>.xlarge-22,
  .grid-x>.xlarge-21,
  .grid-x>.xlarge-20,
  .grid-x>.xlarge-19,
  .grid-x>.xlarge-18,
  .grid-x>.xlarge-17,
  .grid-x>.xlarge-16,
  .grid-x>.xlarge-15,
  .grid-x>.xlarge-14,
  .grid-x>.xlarge-13,
  .grid-x>.xlarge-12,
  .grid-x>.xlarge-11,
  .grid-x>.xlarge-10,
  .grid-x>.xlarge-9,
  .grid-x>.xlarge-8,
  .grid-x>.xlarge-7,
  .grid-x>.xlarge-6,
  .grid-x>.xlarge-5,
  .grid-x>.xlarge-4,
  .grid-x>.xlarge-3,
  .grid-x>.xlarge-2,
  .grid-x>.xlarge-1,
  .grid-x>.xlarge-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-x>.xlarge-shrink {
    width: auto
  }

  .grid-x>.xlarge-1 {
    width: 4.1666666667%
  }

  .grid-x>.xlarge-2 {
    width: 8.3333333333%
  }

  .grid-x>.xlarge-3 {
    width: 12.5%
  }

  .grid-x>.xlarge-4 {
    width: 16.6666666667%
  }

  .grid-x>.xlarge-5 {
    width: 20.8333333333%
  }

  .grid-x>.xlarge-6 {
    width: 25%
  }

  .grid-x>.xlarge-7 {
    width: 29.1666666667%
  }

  .grid-x>.xlarge-8 {
    width: 33.3333333333%
  }

  .grid-x>.xlarge-9 {
    width: 37.5%
  }

  .grid-x>.xlarge-10 {
    width: 41.6666666667%
  }

  .grid-x>.xlarge-11 {
    width: 45.8333333333%
  }

  .grid-x>.xlarge-12 {
    width: 50%
  }

  .grid-x>.xlarge-13 {
    width: 54.1666666667%
  }

  .grid-x>.xlarge-14 {
    width: 58.3333333333%
  }

  .grid-x>.xlarge-15 {
    width: 62.5%
  }

  .grid-x>.xlarge-16 {
    width: 66.6666666667%
  }

  .grid-x>.xlarge-17 {
    width: 70.8333333333%
  }

  .grid-x>.xlarge-18 {
    width: 75%
  }

  .grid-x>.xlarge-19 {
    width: 79.1666666667%
  }

  .grid-x>.xlarge-20 {
    width: 83.3333333333%
  }

  .grid-x>.xlarge-21 {
    width: 87.5%
  }

  .grid-x>.xlarge-22 {
    width: 91.6666666667%
  }

  .grid-x>.xlarge-23 {
    width: 95.8333333333%
  }

  .grid-x>.xlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .grid-x>.xxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: auto
  }

  .grid-x>.xxlarge-24,
  .grid-x>.xxlarge-23,
  .grid-x>.xxlarge-22,
  .grid-x>.xxlarge-21,
  .grid-x>.xxlarge-20,
  .grid-x>.xxlarge-19,
  .grid-x>.xxlarge-18,
  .grid-x>.xxlarge-17,
  .grid-x>.xxlarge-16,
  .grid-x>.xxlarge-15,
  .grid-x>.xxlarge-14,
  .grid-x>.xxlarge-13,
  .grid-x>.xxlarge-12,
  .grid-x>.xxlarge-11,
  .grid-x>.xxlarge-10,
  .grid-x>.xxlarge-9,
  .grid-x>.xxlarge-8,
  .grid-x>.xxlarge-7,
  .grid-x>.xxlarge-6,
  .grid-x>.xxlarge-5,
  .grid-x>.xxlarge-4,
  .grid-x>.xxlarge-3,
  .grid-x>.xxlarge-2,
  .grid-x>.xxlarge-1,
  .grid-x>.xxlarge-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-x>.xxlarge-shrink {
    width: auto
  }

  .grid-x>.xxlarge-1 {
    width: 4.1666666667%
  }

  .grid-x>.xxlarge-2 {
    width: 8.3333333333%
  }

  .grid-x>.xxlarge-3 {
    width: 12.5%
  }

  .grid-x>.xxlarge-4 {
    width: 16.6666666667%
  }

  .grid-x>.xxlarge-5 {
    width: 20.8333333333%
  }

  .grid-x>.xxlarge-6 {
    width: 25%
  }

  .grid-x>.xxlarge-7 {
    width: 29.1666666667%
  }

  .grid-x>.xxlarge-8 {
    width: 33.3333333333%
  }

  .grid-x>.xxlarge-9 {
    width: 37.5%
  }

  .grid-x>.xxlarge-10 {
    width: 41.6666666667%
  }

  .grid-x>.xxlarge-11 {
    width: 45.8333333333%
  }

  .grid-x>.xxlarge-12 {
    width: 50%
  }

  .grid-x>.xxlarge-13 {
    width: 54.1666666667%
  }

  .grid-x>.xxlarge-14 {
    width: 58.3333333333%
  }

  .grid-x>.xxlarge-15 {
    width: 62.5%
  }

  .grid-x>.xxlarge-16 {
    width: 66.6666666667%
  }

  .grid-x>.xxlarge-17 {
    width: 70.8333333333%
  }

  .grid-x>.xxlarge-18 {
    width: 75%
  }

  .grid-x>.xxlarge-19 {
    width: 79.1666666667%
  }

  .grid-x>.xxlarge-20 {
    width: 83.3333333333%
  }

  .grid-x>.xxlarge-21 {
    width: 87.5%
  }

  .grid-x>.xxlarge-22 {
    width: 91.6666666667%
  }

  .grid-x>.xxlarge-23 {
    width: 95.8333333333%
  }

  .grid-x>.xxlarge-24 {
    width: 100%
  }
}

.grid-margin-x:not(.grid-x)>.cell {
  width: auto
}

.grid-margin-y:not(.grid-y)>.cell {
  height: auto
}

.grid-margin-x {
  margin-left: -0.7142857143rem;
  margin-right: -0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: -0.7142857143rem;
    margin-right: -0.7142857143rem
  }
}

.grid-margin-x>.cell {
  width: calc(100% - 1.4285714286rem);
  margin-left: 0.7142857143rem;
  margin-right: 0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-x>.cell {
    width: calc(100% - 1.4285714286rem);
    margin-left: 0.7142857143rem;
    margin-right: 0.7142857143rem
  }
}

.grid-margin-x>.auto {
  width: auto
}

.grid-margin-x>.shrink {
  width: auto
}

.grid-margin-x>.small-1 {
  width: calc(4.1666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-2 {
  width: calc(8.3333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-3 {
  width: calc(12.5% - 1.4285714286rem)
}

.grid-margin-x>.small-4 {
  width: calc(16.6666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-5 {
  width: calc(20.8333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-6 {
  width: calc(25% - 1.4285714286rem)
}

.grid-margin-x>.small-7 {
  width: calc(29.1666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-8 {
  width: calc(33.3333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-9 {
  width: calc(37.5% - 1.4285714286rem)
}

.grid-margin-x>.small-10 {
  width: calc(41.6666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-11 {
  width: calc(45.8333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-12 {
  width: calc(50% - 1.4285714286rem)
}

.grid-margin-x>.small-13 {
  width: calc(54.1666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-14 {
  width: calc(58.3333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-15 {
  width: calc(62.5% - 1.4285714286rem)
}

.grid-margin-x>.small-16 {
  width: calc(66.6666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-17 {
  width: calc(70.8333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-18 {
  width: calc(75% - 1.4285714286rem)
}

.grid-margin-x>.small-19 {
  width: calc(79.1666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-20 {
  width: calc(83.3333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-21 {
  width: calc(87.5% - 1.4285714286rem)
}

.grid-margin-x>.small-22 {
  width: calc(91.6666666667% - 1.4285714286rem)
}

.grid-margin-x>.small-23 {
  width: calc(95.8333333333% - 1.4285714286rem)
}

.grid-margin-x>.small-24 {
  width: calc(100% - 1.4285714286rem)
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-x>.auto {
    width: auto
  }

  .grid-margin-x>.shrink {
    width: auto
  }

  .grid-margin-x>.small-1 {
    width: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-2 {
    width: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-3 {
    width: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-x>.small-4 {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-5 {
    width: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-6 {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x>.small-7 {
    width: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-8 {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-9 {
    width: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-x>.small-10 {
    width: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-11 {
    width: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-12 {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x>.small-13 {
    width: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-14 {
    width: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-15 {
    width: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-x>.small-16 {
    width: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-17 {
    width: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-18 {
    width: calc(75% - 1.4285714286rem)
  }

  .grid-margin-x>.small-19 {
    width: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-20 {
    width: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-21 {
    width: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-x>.small-22 {
    width: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.small-23 {
    width: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.small-24 {
    width: calc(100% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-auto {
    width: auto
  }

  .grid-margin-x>.medium-shrink {
    width: auto
  }

  .grid-margin-x>.medium-1 {
    width: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-2 {
    width: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-3 {
    width: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-4 {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-5 {
    width: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-6 {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-7 {
    width: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-8 {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-9 {
    width: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-10 {
    width: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-11 {
    width: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-12 {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-13 {
    width: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-14 {
    width: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-15 {
    width: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-16 {
    width: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-17 {
    width: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-18 {
    width: calc(75% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-19 {
    width: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-20 {
    width: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-21 {
    width: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-22 {
    width: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-23 {
    width: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.medium-24 {
    width: calc(100% - 1.4285714286rem)
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-margin-x>.large-auto {
    width: auto
  }

  .grid-margin-x>.large-shrink {
    width: auto
  }

  .grid-margin-x>.large-1 {
    width: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-2 {
    width: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-3 {
    width: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-x>.large-4 {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-5 {
    width: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-6 {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x>.large-7 {
    width: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-8 {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-9 {
    width: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-x>.large-10 {
    width: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-11 {
    width: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-12 {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x>.large-13 {
    width: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-14 {
    width: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-15 {
    width: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-x>.large-16 {
    width: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-17 {
    width: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-18 {
    width: calc(75% - 1.4285714286rem)
  }

  .grid-margin-x>.large-19 {
    width: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-20 {
    width: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-21 {
    width: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-x>.large-22 {
    width: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.large-23 {
    width: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.large-24 {
    width: calc(100% - 1.4285714286rem)
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-x>.xlarge-auto {
    width: auto
  }

  .grid-margin-x>.xlarge-shrink {
    width: auto
  }

  .grid-margin-x>.xlarge-1 {
    width: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-2 {
    width: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-3 {
    width: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-4 {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-5 {
    width: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-6 {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-7 {
    width: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-8 {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-9 {
    width: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-10 {
    width: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-11 {
    width: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-12 {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-13 {
    width: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-14 {
    width: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-15 {
    width: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-16 {
    width: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-17 {
    width: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-18 {
    width: calc(75% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-19 {
    width: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-20 {
    width: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-21 {
    width: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-22 {
    width: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-23 {
    width: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xlarge-24 {
    width: calc(100% - 1.4285714286rem)
  }
}

@media screen and (min-width: 84.375em) {
  .grid-margin-x>.xxlarge-auto {
    width: auto
  }

  .grid-margin-x>.xxlarge-shrink {
    width: auto
  }

  .grid-margin-x>.xxlarge-1 {
    width: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-2 {
    width: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-3 {
    width: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-4 {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-5 {
    width: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-6 {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-7 {
    width: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-8 {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-9 {
    width: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-10 {
    width: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-11 {
    width: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-12 {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-13 {
    width: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-14 {
    width: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-15 {
    width: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-16 {
    width: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-17 {
    width: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-18 {
    width: calc(75% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-19 {
    width: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-20 {
    width: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-21 {
    width: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-22 {
    width: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-23 {
    width: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-x>.xxlarge-24 {
    width: calc(100% - 1.4285714286rem)
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.7142857143rem;
  margin-left: -0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.7142857143rem;
    margin-left: -0.7142857143rem
  }
}

.grid-container:not(.full)>.grid-padding-x {
  margin-right: -0.7142857143rem;
  margin-left: -0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-container:not(.full)>.grid-padding-x {
    margin-right: -0.7142857143rem;
    margin-left: -0.7142857143rem
  }
}

.grid-padding-x>.cell {
  padding-right: 0.7142857143rem;
  padding-left: 0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-padding-x>.cell {
    padding-right: 0.7142857143rem;
    padding-left: 0.7142857143rem
  }
}

.small-up-1>.cell {
  width: 100%
}

.small-up-2>.cell {
  width: 50%
}

.small-up-3>.cell {
  width: 33.3333333333%
}

.small-up-4>.cell {
  width: 25%
}

.small-up-5>.cell {
  width: 20%
}

.small-up-6>.cell {
  width: 16.6666666667%
}

.small-up-7>.cell {
  width: 14.2857142857%
}

.small-up-8>.cell {
  width: 12.5%
}

@media print,
screen and (min-width: 40em) {
  .medium-up-1>.cell {
    width: 100%
  }

  .medium-up-2>.cell {
    width: 50%
  }

  .medium-up-3>.cell {
    width: 33.3333333333%
  }

  .medium-up-4>.cell {
    width: 25%
  }

  .medium-up-5>.cell {
    width: 20%
  }

  .medium-up-6>.cell {
    width: 16.6666666667%
  }

  .medium-up-7>.cell {
    width: 14.2857142857%
  }

  .medium-up-8>.cell {
    width: 12.5%
  }
}

@media print,
screen and (min-width: 60em) {
  .large-up-1>.cell {
    width: 100%
  }

  .large-up-2>.cell {
    width: 50%
  }

  .large-up-3>.cell {
    width: 33.3333333333%
  }

  .large-up-4>.cell {
    width: 25%
  }

  .large-up-5>.cell {
    width: 20%
  }

  .large-up-6>.cell {
    width: 16.6666666667%
  }

  .large-up-7>.cell {
    width: 14.2857142857%
  }

  .large-up-8>.cell {
    width: 12.5%
  }
}

@media screen and (min-width: 75em) {
  .xlarge-up-1>.cell {
    width: 100%
  }

  .xlarge-up-2>.cell {
    width: 50%
  }

  .xlarge-up-3>.cell {
    width: 33.3333333333%
  }

  .xlarge-up-4>.cell {
    width: 25%
  }

  .xlarge-up-5>.cell {
    width: 20%
  }

  .xlarge-up-6>.cell {
    width: 16.6666666667%
  }

  .xlarge-up-7>.cell {
    width: 14.2857142857%
  }

  .xlarge-up-8>.cell {
    width: 12.5%
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-up-1>.cell {
    width: 100%
  }

  .xxlarge-up-2>.cell {
    width: 50%
  }

  .xxlarge-up-3>.cell {
    width: 33.3333333333%
  }

  .xxlarge-up-4>.cell {
    width: 25%
  }

  .xxlarge-up-5>.cell {
    width: 20%
  }

  .xxlarge-up-6>.cell {
    width: 16.6666666667%
  }

  .xxlarge-up-7>.cell {
    width: 14.2857142857%
  }

  .xxlarge-up-8>.cell {
    width: 12.5%
  }
}

.grid-margin-x.small-up-1>.cell {
  width: calc(100% - 1.4285714286rem)
}

.grid-margin-x.small-up-2>.cell {
  width: calc(50% - 1.4285714286rem)
}

.grid-margin-x.small-up-3>.cell {
  width: calc(33.3333333333% - 1.4285714286rem)
}

.grid-margin-x.small-up-4>.cell {
  width: calc(25% - 1.4285714286rem)
}

.grid-margin-x.small-up-5>.cell {
  width: calc(20% - 1.4285714286rem)
}

.grid-margin-x.small-up-6>.cell {
  width: calc(16.6666666667% - 1.4285714286rem)
}

.grid-margin-x.small-up-7>.cell {
  width: calc(14.2857142857% - 1.4285714286rem)
}

.grid-margin-x.small-up-8>.cell {
  width: calc(12.5% - 1.4285714286rem)
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-x.small-up-1>.cell {
    width: calc(100% - 1.4285714286rem)
  }

  .grid-margin-x.small-up-2>.cell {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x.small-up-3>.cell {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x.small-up-4>.cell {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x.small-up-5>.cell {
    width: calc(20% - 1.4285714286rem)
  }

  .grid-margin-x.small-up-6>.cell {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x.small-up-7>.cell {
    width: calc(14.2857142857% - 1.4285714286rem)
  }

  .grid-margin-x.small-up-8>.cell {
    width: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-1>.cell {
    width: calc(100% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-2>.cell {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-3>.cell {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-4>.cell {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-5>.cell {
    width: calc(20% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-6>.cell {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-7>.cell {
    width: calc(14.2857142857% - 1.4285714286rem)
  }

  .grid-margin-x.medium-up-8>.cell {
    width: calc(12.5% - 1.4285714286rem)
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-margin-x.large-up-1>.cell {
    width: calc(100% - 1.4285714286rem)
  }

  .grid-margin-x.large-up-2>.cell {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x.large-up-3>.cell {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x.large-up-4>.cell {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x.large-up-5>.cell {
    width: calc(20% - 1.4285714286rem)
  }

  .grid-margin-x.large-up-6>.cell {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x.large-up-7>.cell {
    width: calc(14.2857142857% - 1.4285714286rem)
  }

  .grid-margin-x.large-up-8>.cell {
    width: calc(12.5% - 1.4285714286rem)
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-x.xlarge-up-1>.cell {
    width: calc(100% - 1.4285714286rem)
  }

  .grid-margin-x.xlarge-up-2>.cell {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x.xlarge-up-3>.cell {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x.xlarge-up-4>.cell {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x.xlarge-up-5>.cell {
    width: calc(20% - 1.4285714286rem)
  }

  .grid-margin-x.xlarge-up-6>.cell {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x.xlarge-up-7>.cell {
    width: calc(14.2857142857% - 1.4285714286rem)
  }

  .grid-margin-x.xlarge-up-8>.cell {
    width: calc(12.5% - 1.4285714286rem)
  }
}

@media screen and (min-width: 84.375em) {
  .grid-margin-x.xxlarge-up-1>.cell {
    width: calc(100% - 1.4285714286rem)
  }

  .grid-margin-x.xxlarge-up-2>.cell {
    width: calc(50% - 1.4285714286rem)
  }

  .grid-margin-x.xxlarge-up-3>.cell {
    width: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-x.xxlarge-up-4>.cell {
    width: calc(25% - 1.4285714286rem)
  }

  .grid-margin-x.xxlarge-up-5>.cell {
    width: calc(20% - 1.4285714286rem)
  }

  .grid-margin-x.xxlarge-up-6>.cell {
    width: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-x.xxlarge-up-7>.cell {
    width: calc(14.2857142857% - 1.4285714286rem)
  }

  .grid-margin-x.xxlarge-up-8>.cell {
    width: calc(12.5% - 1.4285714286rem)
  }
}

.small-margin-collapse {
  margin-right: 0;
  margin-left: 0
}

.small-margin-collapse>.cell {
  margin-right: 0;
  margin-left: 0
}

.small-margin-collapse>.small-1 {
  width: 4.1666666667%
}

.small-margin-collapse>.small-2 {
  width: 8.3333333333%
}

.small-margin-collapse>.small-3 {
  width: 12.5%
}

.small-margin-collapse>.small-4 {
  width: 16.6666666667%
}

.small-margin-collapse>.small-5 {
  width: 20.8333333333%
}

.small-margin-collapse>.small-6 {
  width: 25%
}

.small-margin-collapse>.small-7 {
  width: 29.1666666667%
}

.small-margin-collapse>.small-8 {
  width: 33.3333333333%
}

.small-margin-collapse>.small-9 {
  width: 37.5%
}

.small-margin-collapse>.small-10 {
  width: 41.6666666667%
}

.small-margin-collapse>.small-11 {
  width: 45.8333333333%
}

.small-margin-collapse>.small-12 {
  width: 50%
}

.small-margin-collapse>.small-13 {
  width: 54.1666666667%
}

.small-margin-collapse>.small-14 {
  width: 58.3333333333%
}

.small-margin-collapse>.small-15 {
  width: 62.5%
}

.small-margin-collapse>.small-16 {
  width: 66.6666666667%
}

.small-margin-collapse>.small-17 {
  width: 70.8333333333%
}

.small-margin-collapse>.small-18 {
  width: 75%
}

.small-margin-collapse>.small-19 {
  width: 79.1666666667%
}

.small-margin-collapse>.small-20 {
  width: 83.3333333333%
}

.small-margin-collapse>.small-21 {
  width: 87.5%
}

.small-margin-collapse>.small-22 {
  width: 91.6666666667%
}

.small-margin-collapse>.small-23 {
  width: 95.8333333333%
}

.small-margin-collapse>.small-24 {
  width: 100%
}

@media print,
screen and (min-width: 40em) {
  .small-margin-collapse>.medium-1 {
    width: 4.1666666667%
  }

  .small-margin-collapse>.medium-2 {
    width: 8.3333333333%
  }

  .small-margin-collapse>.medium-3 {
    width: 12.5%
  }

  .small-margin-collapse>.medium-4 {
    width: 16.6666666667%
  }

  .small-margin-collapse>.medium-5 {
    width: 20.8333333333%
  }

  .small-margin-collapse>.medium-6 {
    width: 25%
  }

  .small-margin-collapse>.medium-7 {
    width: 29.1666666667%
  }

  .small-margin-collapse>.medium-8 {
    width: 33.3333333333%
  }

  .small-margin-collapse>.medium-9 {
    width: 37.5%
  }

  .small-margin-collapse>.medium-10 {
    width: 41.6666666667%
  }

  .small-margin-collapse>.medium-11 {
    width: 45.8333333333%
  }

  .small-margin-collapse>.medium-12 {
    width: 50%
  }

  .small-margin-collapse>.medium-13 {
    width: 54.1666666667%
  }

  .small-margin-collapse>.medium-14 {
    width: 58.3333333333%
  }

  .small-margin-collapse>.medium-15 {
    width: 62.5%
  }

  .small-margin-collapse>.medium-16 {
    width: 66.6666666667%
  }

  .small-margin-collapse>.medium-17 {
    width: 70.8333333333%
  }

  .small-margin-collapse>.medium-18 {
    width: 75%
  }

  .small-margin-collapse>.medium-19 {
    width: 79.1666666667%
  }

  .small-margin-collapse>.medium-20 {
    width: 83.3333333333%
  }

  .small-margin-collapse>.medium-21 {
    width: 87.5%
  }

  .small-margin-collapse>.medium-22 {
    width: 91.6666666667%
  }

  .small-margin-collapse>.medium-23 {
    width: 95.8333333333%
  }

  .small-margin-collapse>.medium-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .small-margin-collapse>.large-1 {
    width: 4.1666666667%
  }

  .small-margin-collapse>.large-2 {
    width: 8.3333333333%
  }

  .small-margin-collapse>.large-3 {
    width: 12.5%
  }

  .small-margin-collapse>.large-4 {
    width: 16.6666666667%
  }

  .small-margin-collapse>.large-5 {
    width: 20.8333333333%
  }

  .small-margin-collapse>.large-6 {
    width: 25%
  }

  .small-margin-collapse>.large-7 {
    width: 29.1666666667%
  }

  .small-margin-collapse>.large-8 {
    width: 33.3333333333%
  }

  .small-margin-collapse>.large-9 {
    width: 37.5%
  }

  .small-margin-collapse>.large-10 {
    width: 41.6666666667%
  }

  .small-margin-collapse>.large-11 {
    width: 45.8333333333%
  }

  .small-margin-collapse>.large-12 {
    width: 50%
  }

  .small-margin-collapse>.large-13 {
    width: 54.1666666667%
  }

  .small-margin-collapse>.large-14 {
    width: 58.3333333333%
  }

  .small-margin-collapse>.large-15 {
    width: 62.5%
  }

  .small-margin-collapse>.large-16 {
    width: 66.6666666667%
  }

  .small-margin-collapse>.large-17 {
    width: 70.8333333333%
  }

  .small-margin-collapse>.large-18 {
    width: 75%
  }

  .small-margin-collapse>.large-19 {
    width: 79.1666666667%
  }

  .small-margin-collapse>.large-20 {
    width: 83.3333333333%
  }

  .small-margin-collapse>.large-21 {
    width: 87.5%
  }

  .small-margin-collapse>.large-22 {
    width: 91.6666666667%
  }

  .small-margin-collapse>.large-23 {
    width: 95.8333333333%
  }

  .small-margin-collapse>.large-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .small-margin-collapse>.xlarge-1 {
    width: 4.1666666667%
  }

  .small-margin-collapse>.xlarge-2 {
    width: 8.3333333333%
  }

  .small-margin-collapse>.xlarge-3 {
    width: 12.5%
  }

  .small-margin-collapse>.xlarge-4 {
    width: 16.6666666667%
  }

  .small-margin-collapse>.xlarge-5 {
    width: 20.8333333333%
  }

  .small-margin-collapse>.xlarge-6 {
    width: 25%
  }

  .small-margin-collapse>.xlarge-7 {
    width: 29.1666666667%
  }

  .small-margin-collapse>.xlarge-8 {
    width: 33.3333333333%
  }

  .small-margin-collapse>.xlarge-9 {
    width: 37.5%
  }

  .small-margin-collapse>.xlarge-10 {
    width: 41.6666666667%
  }

  .small-margin-collapse>.xlarge-11 {
    width: 45.8333333333%
  }

  .small-margin-collapse>.xlarge-12 {
    width: 50%
  }

  .small-margin-collapse>.xlarge-13 {
    width: 54.1666666667%
  }

  .small-margin-collapse>.xlarge-14 {
    width: 58.3333333333%
  }

  .small-margin-collapse>.xlarge-15 {
    width: 62.5%
  }

  .small-margin-collapse>.xlarge-16 {
    width: 66.6666666667%
  }

  .small-margin-collapse>.xlarge-17 {
    width: 70.8333333333%
  }

  .small-margin-collapse>.xlarge-18 {
    width: 75%
  }

  .small-margin-collapse>.xlarge-19 {
    width: 79.1666666667%
  }

  .small-margin-collapse>.xlarge-20 {
    width: 83.3333333333%
  }

  .small-margin-collapse>.xlarge-21 {
    width: 87.5%
  }

  .small-margin-collapse>.xlarge-22 {
    width: 91.6666666667%
  }

  .small-margin-collapse>.xlarge-23 {
    width: 95.8333333333%
  }

  .small-margin-collapse>.xlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .small-margin-collapse>.xxlarge-1 {
    width: 4.1666666667%
  }

  .small-margin-collapse>.xxlarge-2 {
    width: 8.3333333333%
  }

  .small-margin-collapse>.xxlarge-3 {
    width: 12.5%
  }

  .small-margin-collapse>.xxlarge-4 {
    width: 16.6666666667%
  }

  .small-margin-collapse>.xxlarge-5 {
    width: 20.8333333333%
  }

  .small-margin-collapse>.xxlarge-6 {
    width: 25%
  }

  .small-margin-collapse>.xxlarge-7 {
    width: 29.1666666667%
  }

  .small-margin-collapse>.xxlarge-8 {
    width: 33.3333333333%
  }

  .small-margin-collapse>.xxlarge-9 {
    width: 37.5%
  }

  .small-margin-collapse>.xxlarge-10 {
    width: 41.6666666667%
  }

  .small-margin-collapse>.xxlarge-11 {
    width: 45.8333333333%
  }

  .small-margin-collapse>.xxlarge-12 {
    width: 50%
  }

  .small-margin-collapse>.xxlarge-13 {
    width: 54.1666666667%
  }

  .small-margin-collapse>.xxlarge-14 {
    width: 58.3333333333%
  }

  .small-margin-collapse>.xxlarge-15 {
    width: 62.5%
  }

  .small-margin-collapse>.xxlarge-16 {
    width: 66.6666666667%
  }

  .small-margin-collapse>.xxlarge-17 {
    width: 70.8333333333%
  }

  .small-margin-collapse>.xxlarge-18 {
    width: 75%
  }

  .small-margin-collapse>.xxlarge-19 {
    width: 79.1666666667%
  }

  .small-margin-collapse>.xxlarge-20 {
    width: 83.3333333333%
  }

  .small-margin-collapse>.xxlarge-21 {
    width: 87.5%
  }

  .small-margin-collapse>.xxlarge-22 {
    width: 91.6666666667%
  }

  .small-margin-collapse>.xxlarge-23 {
    width: 95.8333333333%
  }

  .small-margin-collapse>.xxlarge-24 {
    width: 100%
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0
}

.small-padding-collapse>.cell {
  padding-right: 0;
  padding-left: 0
}

@media print,
screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .medium-margin-collapse>.cell {
    margin-right: 0;
    margin-left: 0
  }
}

@media print,
screen and (min-width: 40em) {
  .medium-margin-collapse>.small-1 {
    width: 4.1666666667%
  }

  .medium-margin-collapse>.small-2 {
    width: 8.3333333333%
  }

  .medium-margin-collapse>.small-3 {
    width: 12.5%
  }

  .medium-margin-collapse>.small-4 {
    width: 16.6666666667%
  }

  .medium-margin-collapse>.small-5 {
    width: 20.8333333333%
  }

  .medium-margin-collapse>.small-6 {
    width: 25%
  }

  .medium-margin-collapse>.small-7 {
    width: 29.1666666667%
  }

  .medium-margin-collapse>.small-8 {
    width: 33.3333333333%
  }

  .medium-margin-collapse>.small-9 {
    width: 37.5%
  }

  .medium-margin-collapse>.small-10 {
    width: 41.6666666667%
  }

  .medium-margin-collapse>.small-11 {
    width: 45.8333333333%
  }

  .medium-margin-collapse>.small-12 {
    width: 50%
  }

  .medium-margin-collapse>.small-13 {
    width: 54.1666666667%
  }

  .medium-margin-collapse>.small-14 {
    width: 58.3333333333%
  }

  .medium-margin-collapse>.small-15 {
    width: 62.5%
  }

  .medium-margin-collapse>.small-16 {
    width: 66.6666666667%
  }

  .medium-margin-collapse>.small-17 {
    width: 70.8333333333%
  }

  .medium-margin-collapse>.small-18 {
    width: 75%
  }

  .medium-margin-collapse>.small-19 {
    width: 79.1666666667%
  }

  .medium-margin-collapse>.small-20 {
    width: 83.3333333333%
  }

  .medium-margin-collapse>.small-21 {
    width: 87.5%
  }

  .medium-margin-collapse>.small-22 {
    width: 91.6666666667%
  }

  .medium-margin-collapse>.small-23 {
    width: 95.8333333333%
  }

  .medium-margin-collapse>.small-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 40em) {
  .medium-margin-collapse>.medium-1 {
    width: 4.1666666667%
  }

  .medium-margin-collapse>.medium-2 {
    width: 8.3333333333%
  }

  .medium-margin-collapse>.medium-3 {
    width: 12.5%
  }

  .medium-margin-collapse>.medium-4 {
    width: 16.6666666667%
  }

  .medium-margin-collapse>.medium-5 {
    width: 20.8333333333%
  }

  .medium-margin-collapse>.medium-6 {
    width: 25%
  }

  .medium-margin-collapse>.medium-7 {
    width: 29.1666666667%
  }

  .medium-margin-collapse>.medium-8 {
    width: 33.3333333333%
  }

  .medium-margin-collapse>.medium-9 {
    width: 37.5%
  }

  .medium-margin-collapse>.medium-10 {
    width: 41.6666666667%
  }

  .medium-margin-collapse>.medium-11 {
    width: 45.8333333333%
  }

  .medium-margin-collapse>.medium-12 {
    width: 50%
  }

  .medium-margin-collapse>.medium-13 {
    width: 54.1666666667%
  }

  .medium-margin-collapse>.medium-14 {
    width: 58.3333333333%
  }

  .medium-margin-collapse>.medium-15 {
    width: 62.5%
  }

  .medium-margin-collapse>.medium-16 {
    width: 66.6666666667%
  }

  .medium-margin-collapse>.medium-17 {
    width: 70.8333333333%
  }

  .medium-margin-collapse>.medium-18 {
    width: 75%
  }

  .medium-margin-collapse>.medium-19 {
    width: 79.1666666667%
  }

  .medium-margin-collapse>.medium-20 {
    width: 83.3333333333%
  }

  .medium-margin-collapse>.medium-21 {
    width: 87.5%
  }

  .medium-margin-collapse>.medium-22 {
    width: 91.6666666667%
  }

  .medium-margin-collapse>.medium-23 {
    width: 95.8333333333%
  }

  .medium-margin-collapse>.medium-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .medium-margin-collapse>.large-1 {
    width: 4.1666666667%
  }

  .medium-margin-collapse>.large-2 {
    width: 8.3333333333%
  }

  .medium-margin-collapse>.large-3 {
    width: 12.5%
  }

  .medium-margin-collapse>.large-4 {
    width: 16.6666666667%
  }

  .medium-margin-collapse>.large-5 {
    width: 20.8333333333%
  }

  .medium-margin-collapse>.large-6 {
    width: 25%
  }

  .medium-margin-collapse>.large-7 {
    width: 29.1666666667%
  }

  .medium-margin-collapse>.large-8 {
    width: 33.3333333333%
  }

  .medium-margin-collapse>.large-9 {
    width: 37.5%
  }

  .medium-margin-collapse>.large-10 {
    width: 41.6666666667%
  }

  .medium-margin-collapse>.large-11 {
    width: 45.8333333333%
  }

  .medium-margin-collapse>.large-12 {
    width: 50%
  }

  .medium-margin-collapse>.large-13 {
    width: 54.1666666667%
  }

  .medium-margin-collapse>.large-14 {
    width: 58.3333333333%
  }

  .medium-margin-collapse>.large-15 {
    width: 62.5%
  }

  .medium-margin-collapse>.large-16 {
    width: 66.6666666667%
  }

  .medium-margin-collapse>.large-17 {
    width: 70.8333333333%
  }

  .medium-margin-collapse>.large-18 {
    width: 75%
  }

  .medium-margin-collapse>.large-19 {
    width: 79.1666666667%
  }

  .medium-margin-collapse>.large-20 {
    width: 83.3333333333%
  }

  .medium-margin-collapse>.large-21 {
    width: 87.5%
  }

  .medium-margin-collapse>.large-22 {
    width: 91.6666666667%
  }

  .medium-margin-collapse>.large-23 {
    width: 95.8333333333%
  }

  .medium-margin-collapse>.large-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .medium-margin-collapse>.xlarge-1 {
    width: 4.1666666667%
  }

  .medium-margin-collapse>.xlarge-2 {
    width: 8.3333333333%
  }

  .medium-margin-collapse>.xlarge-3 {
    width: 12.5%
  }

  .medium-margin-collapse>.xlarge-4 {
    width: 16.6666666667%
  }

  .medium-margin-collapse>.xlarge-5 {
    width: 20.8333333333%
  }

  .medium-margin-collapse>.xlarge-6 {
    width: 25%
  }

  .medium-margin-collapse>.xlarge-7 {
    width: 29.1666666667%
  }

  .medium-margin-collapse>.xlarge-8 {
    width: 33.3333333333%
  }

  .medium-margin-collapse>.xlarge-9 {
    width: 37.5%
  }

  .medium-margin-collapse>.xlarge-10 {
    width: 41.6666666667%
  }

  .medium-margin-collapse>.xlarge-11 {
    width: 45.8333333333%
  }

  .medium-margin-collapse>.xlarge-12 {
    width: 50%
  }

  .medium-margin-collapse>.xlarge-13 {
    width: 54.1666666667%
  }

  .medium-margin-collapse>.xlarge-14 {
    width: 58.3333333333%
  }

  .medium-margin-collapse>.xlarge-15 {
    width: 62.5%
  }

  .medium-margin-collapse>.xlarge-16 {
    width: 66.6666666667%
  }

  .medium-margin-collapse>.xlarge-17 {
    width: 70.8333333333%
  }

  .medium-margin-collapse>.xlarge-18 {
    width: 75%
  }

  .medium-margin-collapse>.xlarge-19 {
    width: 79.1666666667%
  }

  .medium-margin-collapse>.xlarge-20 {
    width: 83.3333333333%
  }

  .medium-margin-collapse>.xlarge-21 {
    width: 87.5%
  }

  .medium-margin-collapse>.xlarge-22 {
    width: 91.6666666667%
  }

  .medium-margin-collapse>.xlarge-23 {
    width: 95.8333333333%
  }

  .medium-margin-collapse>.xlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .medium-margin-collapse>.xxlarge-1 {
    width: 4.1666666667%
  }

  .medium-margin-collapse>.xxlarge-2 {
    width: 8.3333333333%
  }

  .medium-margin-collapse>.xxlarge-3 {
    width: 12.5%
  }

  .medium-margin-collapse>.xxlarge-4 {
    width: 16.6666666667%
  }

  .medium-margin-collapse>.xxlarge-5 {
    width: 20.8333333333%
  }

  .medium-margin-collapse>.xxlarge-6 {
    width: 25%
  }

  .medium-margin-collapse>.xxlarge-7 {
    width: 29.1666666667%
  }

  .medium-margin-collapse>.xxlarge-8 {
    width: 33.3333333333%
  }

  .medium-margin-collapse>.xxlarge-9 {
    width: 37.5%
  }

  .medium-margin-collapse>.xxlarge-10 {
    width: 41.6666666667%
  }

  .medium-margin-collapse>.xxlarge-11 {
    width: 45.8333333333%
  }

  .medium-margin-collapse>.xxlarge-12 {
    width: 50%
  }

  .medium-margin-collapse>.xxlarge-13 {
    width: 54.1666666667%
  }

  .medium-margin-collapse>.xxlarge-14 {
    width: 58.3333333333%
  }

  .medium-margin-collapse>.xxlarge-15 {
    width: 62.5%
  }

  .medium-margin-collapse>.xxlarge-16 {
    width: 66.6666666667%
  }

  .medium-margin-collapse>.xxlarge-17 {
    width: 70.8333333333%
  }

  .medium-margin-collapse>.xxlarge-18 {
    width: 75%
  }

  .medium-margin-collapse>.xxlarge-19 {
    width: 79.1666666667%
  }

  .medium-margin-collapse>.xxlarge-20 {
    width: 83.3333333333%
  }

  .medium-margin-collapse>.xxlarge-21 {
    width: 87.5%
  }

  .medium-margin-collapse>.xxlarge-22 {
    width: 91.6666666667%
  }

  .medium-margin-collapse>.xxlarge-23 {
    width: 95.8333333333%
  }

  .medium-margin-collapse>.xxlarge-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .medium-padding-collapse>.cell {
    padding-right: 0;
    padding-left: 0
  }
}

@media print,
screen and (min-width: 60em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .large-margin-collapse>.cell {
    margin-right: 0;
    margin-left: 0
  }
}

@media print,
screen and (min-width: 60em) {
  .large-margin-collapse>.small-1 {
    width: 4.1666666667%
  }

  .large-margin-collapse>.small-2 {
    width: 8.3333333333%
  }

  .large-margin-collapse>.small-3 {
    width: 12.5%
  }

  .large-margin-collapse>.small-4 {
    width: 16.6666666667%
  }

  .large-margin-collapse>.small-5 {
    width: 20.8333333333%
  }

  .large-margin-collapse>.small-6 {
    width: 25%
  }

  .large-margin-collapse>.small-7 {
    width: 29.1666666667%
  }

  .large-margin-collapse>.small-8 {
    width: 33.3333333333%
  }

  .large-margin-collapse>.small-9 {
    width: 37.5%
  }

  .large-margin-collapse>.small-10 {
    width: 41.6666666667%
  }

  .large-margin-collapse>.small-11 {
    width: 45.8333333333%
  }

  .large-margin-collapse>.small-12 {
    width: 50%
  }

  .large-margin-collapse>.small-13 {
    width: 54.1666666667%
  }

  .large-margin-collapse>.small-14 {
    width: 58.3333333333%
  }

  .large-margin-collapse>.small-15 {
    width: 62.5%
  }

  .large-margin-collapse>.small-16 {
    width: 66.6666666667%
  }

  .large-margin-collapse>.small-17 {
    width: 70.8333333333%
  }

  .large-margin-collapse>.small-18 {
    width: 75%
  }

  .large-margin-collapse>.small-19 {
    width: 79.1666666667%
  }

  .large-margin-collapse>.small-20 {
    width: 83.3333333333%
  }

  .large-margin-collapse>.small-21 {
    width: 87.5%
  }

  .large-margin-collapse>.small-22 {
    width: 91.6666666667%
  }

  .large-margin-collapse>.small-23 {
    width: 95.8333333333%
  }

  .large-margin-collapse>.small-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .large-margin-collapse>.medium-1 {
    width: 4.1666666667%
  }

  .large-margin-collapse>.medium-2 {
    width: 8.3333333333%
  }

  .large-margin-collapse>.medium-3 {
    width: 12.5%
  }

  .large-margin-collapse>.medium-4 {
    width: 16.6666666667%
  }

  .large-margin-collapse>.medium-5 {
    width: 20.8333333333%
  }

  .large-margin-collapse>.medium-6 {
    width: 25%
  }

  .large-margin-collapse>.medium-7 {
    width: 29.1666666667%
  }

  .large-margin-collapse>.medium-8 {
    width: 33.3333333333%
  }

  .large-margin-collapse>.medium-9 {
    width: 37.5%
  }

  .large-margin-collapse>.medium-10 {
    width: 41.6666666667%
  }

  .large-margin-collapse>.medium-11 {
    width: 45.8333333333%
  }

  .large-margin-collapse>.medium-12 {
    width: 50%
  }

  .large-margin-collapse>.medium-13 {
    width: 54.1666666667%
  }

  .large-margin-collapse>.medium-14 {
    width: 58.3333333333%
  }

  .large-margin-collapse>.medium-15 {
    width: 62.5%
  }

  .large-margin-collapse>.medium-16 {
    width: 66.6666666667%
  }

  .large-margin-collapse>.medium-17 {
    width: 70.8333333333%
  }

  .large-margin-collapse>.medium-18 {
    width: 75%
  }

  .large-margin-collapse>.medium-19 {
    width: 79.1666666667%
  }

  .large-margin-collapse>.medium-20 {
    width: 83.3333333333%
  }

  .large-margin-collapse>.medium-21 {
    width: 87.5%
  }

  .large-margin-collapse>.medium-22 {
    width: 91.6666666667%
  }

  .large-margin-collapse>.medium-23 {
    width: 95.8333333333%
  }

  .large-margin-collapse>.medium-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .large-margin-collapse>.large-1 {
    width: 4.1666666667%
  }

  .large-margin-collapse>.large-2 {
    width: 8.3333333333%
  }

  .large-margin-collapse>.large-3 {
    width: 12.5%
  }

  .large-margin-collapse>.large-4 {
    width: 16.6666666667%
  }

  .large-margin-collapse>.large-5 {
    width: 20.8333333333%
  }

  .large-margin-collapse>.large-6 {
    width: 25%
  }

  .large-margin-collapse>.large-7 {
    width: 29.1666666667%
  }

  .large-margin-collapse>.large-8 {
    width: 33.3333333333%
  }

  .large-margin-collapse>.large-9 {
    width: 37.5%
  }

  .large-margin-collapse>.large-10 {
    width: 41.6666666667%
  }

  .large-margin-collapse>.large-11 {
    width: 45.8333333333%
  }

  .large-margin-collapse>.large-12 {
    width: 50%
  }

  .large-margin-collapse>.large-13 {
    width: 54.1666666667%
  }

  .large-margin-collapse>.large-14 {
    width: 58.3333333333%
  }

  .large-margin-collapse>.large-15 {
    width: 62.5%
  }

  .large-margin-collapse>.large-16 {
    width: 66.6666666667%
  }

  .large-margin-collapse>.large-17 {
    width: 70.8333333333%
  }

  .large-margin-collapse>.large-18 {
    width: 75%
  }

  .large-margin-collapse>.large-19 {
    width: 79.1666666667%
  }

  .large-margin-collapse>.large-20 {
    width: 83.3333333333%
  }

  .large-margin-collapse>.large-21 {
    width: 87.5%
  }

  .large-margin-collapse>.large-22 {
    width: 91.6666666667%
  }

  .large-margin-collapse>.large-23 {
    width: 95.8333333333%
  }

  .large-margin-collapse>.large-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .large-margin-collapse>.xlarge-1 {
    width: 4.1666666667%
  }

  .large-margin-collapse>.xlarge-2 {
    width: 8.3333333333%
  }

  .large-margin-collapse>.xlarge-3 {
    width: 12.5%
  }

  .large-margin-collapse>.xlarge-4 {
    width: 16.6666666667%
  }

  .large-margin-collapse>.xlarge-5 {
    width: 20.8333333333%
  }

  .large-margin-collapse>.xlarge-6 {
    width: 25%
  }

  .large-margin-collapse>.xlarge-7 {
    width: 29.1666666667%
  }

  .large-margin-collapse>.xlarge-8 {
    width: 33.3333333333%
  }

  .large-margin-collapse>.xlarge-9 {
    width: 37.5%
  }

  .large-margin-collapse>.xlarge-10 {
    width: 41.6666666667%
  }

  .large-margin-collapse>.xlarge-11 {
    width: 45.8333333333%
  }

  .large-margin-collapse>.xlarge-12 {
    width: 50%
  }

  .large-margin-collapse>.xlarge-13 {
    width: 54.1666666667%
  }

  .large-margin-collapse>.xlarge-14 {
    width: 58.3333333333%
  }

  .large-margin-collapse>.xlarge-15 {
    width: 62.5%
  }

  .large-margin-collapse>.xlarge-16 {
    width: 66.6666666667%
  }

  .large-margin-collapse>.xlarge-17 {
    width: 70.8333333333%
  }

  .large-margin-collapse>.xlarge-18 {
    width: 75%
  }

  .large-margin-collapse>.xlarge-19 {
    width: 79.1666666667%
  }

  .large-margin-collapse>.xlarge-20 {
    width: 83.3333333333%
  }

  .large-margin-collapse>.xlarge-21 {
    width: 87.5%
  }

  .large-margin-collapse>.xlarge-22 {
    width: 91.6666666667%
  }

  .large-margin-collapse>.xlarge-23 {
    width: 95.8333333333%
  }

  .large-margin-collapse>.xlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .large-margin-collapse>.xxlarge-1 {
    width: 4.1666666667%
  }

  .large-margin-collapse>.xxlarge-2 {
    width: 8.3333333333%
  }

  .large-margin-collapse>.xxlarge-3 {
    width: 12.5%
  }

  .large-margin-collapse>.xxlarge-4 {
    width: 16.6666666667%
  }

  .large-margin-collapse>.xxlarge-5 {
    width: 20.8333333333%
  }

  .large-margin-collapse>.xxlarge-6 {
    width: 25%
  }

  .large-margin-collapse>.xxlarge-7 {
    width: 29.1666666667%
  }

  .large-margin-collapse>.xxlarge-8 {
    width: 33.3333333333%
  }

  .large-margin-collapse>.xxlarge-9 {
    width: 37.5%
  }

  .large-margin-collapse>.xxlarge-10 {
    width: 41.6666666667%
  }

  .large-margin-collapse>.xxlarge-11 {
    width: 45.8333333333%
  }

  .large-margin-collapse>.xxlarge-12 {
    width: 50%
  }

  .large-margin-collapse>.xxlarge-13 {
    width: 54.1666666667%
  }

  .large-margin-collapse>.xxlarge-14 {
    width: 58.3333333333%
  }

  .large-margin-collapse>.xxlarge-15 {
    width: 62.5%
  }

  .large-margin-collapse>.xxlarge-16 {
    width: 66.6666666667%
  }

  .large-margin-collapse>.xxlarge-17 {
    width: 70.8333333333%
  }

  .large-margin-collapse>.xxlarge-18 {
    width: 75%
  }

  .large-margin-collapse>.xxlarge-19 {
    width: 79.1666666667%
  }

  .large-margin-collapse>.xxlarge-20 {
    width: 83.3333333333%
  }

  .large-margin-collapse>.xxlarge-21 {
    width: 87.5%
  }

  .large-margin-collapse>.xxlarge-22 {
    width: 91.6666666667%
  }

  .large-margin-collapse>.xxlarge-23 {
    width: 95.8333333333%
  }

  .large-margin-collapse>.xxlarge-24 {
    width: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .large-padding-collapse>.cell {
    padding-right: 0;
    padding-left: 0
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .xlarge-margin-collapse>.cell {
    margin-right: 0;
    margin-left: 0
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse>.small-1 {
    width: 4.1666666667%
  }

  .xlarge-margin-collapse>.small-2 {
    width: 8.3333333333%
  }

  .xlarge-margin-collapse>.small-3 {
    width: 12.5%
  }

  .xlarge-margin-collapse>.small-4 {
    width: 16.6666666667%
  }

  .xlarge-margin-collapse>.small-5 {
    width: 20.8333333333%
  }

  .xlarge-margin-collapse>.small-6 {
    width: 25%
  }

  .xlarge-margin-collapse>.small-7 {
    width: 29.1666666667%
  }

  .xlarge-margin-collapse>.small-8 {
    width: 33.3333333333%
  }

  .xlarge-margin-collapse>.small-9 {
    width: 37.5%
  }

  .xlarge-margin-collapse>.small-10 {
    width: 41.6666666667%
  }

  .xlarge-margin-collapse>.small-11 {
    width: 45.8333333333%
  }

  .xlarge-margin-collapse>.small-12 {
    width: 50%
  }

  .xlarge-margin-collapse>.small-13 {
    width: 54.1666666667%
  }

  .xlarge-margin-collapse>.small-14 {
    width: 58.3333333333%
  }

  .xlarge-margin-collapse>.small-15 {
    width: 62.5%
  }

  .xlarge-margin-collapse>.small-16 {
    width: 66.6666666667%
  }

  .xlarge-margin-collapse>.small-17 {
    width: 70.8333333333%
  }

  .xlarge-margin-collapse>.small-18 {
    width: 75%
  }

  .xlarge-margin-collapse>.small-19 {
    width: 79.1666666667%
  }

  .xlarge-margin-collapse>.small-20 {
    width: 83.3333333333%
  }

  .xlarge-margin-collapse>.small-21 {
    width: 87.5%
  }

  .xlarge-margin-collapse>.small-22 {
    width: 91.6666666667%
  }

  .xlarge-margin-collapse>.small-23 {
    width: 95.8333333333%
  }

  .xlarge-margin-collapse>.small-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse>.medium-1 {
    width: 4.1666666667%
  }

  .xlarge-margin-collapse>.medium-2 {
    width: 8.3333333333%
  }

  .xlarge-margin-collapse>.medium-3 {
    width: 12.5%
  }

  .xlarge-margin-collapse>.medium-4 {
    width: 16.6666666667%
  }

  .xlarge-margin-collapse>.medium-5 {
    width: 20.8333333333%
  }

  .xlarge-margin-collapse>.medium-6 {
    width: 25%
  }

  .xlarge-margin-collapse>.medium-7 {
    width: 29.1666666667%
  }

  .xlarge-margin-collapse>.medium-8 {
    width: 33.3333333333%
  }

  .xlarge-margin-collapse>.medium-9 {
    width: 37.5%
  }

  .xlarge-margin-collapse>.medium-10 {
    width: 41.6666666667%
  }

  .xlarge-margin-collapse>.medium-11 {
    width: 45.8333333333%
  }

  .xlarge-margin-collapse>.medium-12 {
    width: 50%
  }

  .xlarge-margin-collapse>.medium-13 {
    width: 54.1666666667%
  }

  .xlarge-margin-collapse>.medium-14 {
    width: 58.3333333333%
  }

  .xlarge-margin-collapse>.medium-15 {
    width: 62.5%
  }

  .xlarge-margin-collapse>.medium-16 {
    width: 66.6666666667%
  }

  .xlarge-margin-collapse>.medium-17 {
    width: 70.8333333333%
  }

  .xlarge-margin-collapse>.medium-18 {
    width: 75%
  }

  .xlarge-margin-collapse>.medium-19 {
    width: 79.1666666667%
  }

  .xlarge-margin-collapse>.medium-20 {
    width: 83.3333333333%
  }

  .xlarge-margin-collapse>.medium-21 {
    width: 87.5%
  }

  .xlarge-margin-collapse>.medium-22 {
    width: 91.6666666667%
  }

  .xlarge-margin-collapse>.medium-23 {
    width: 95.8333333333%
  }

  .xlarge-margin-collapse>.medium-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse>.large-1 {
    width: 4.1666666667%
  }

  .xlarge-margin-collapse>.large-2 {
    width: 8.3333333333%
  }

  .xlarge-margin-collapse>.large-3 {
    width: 12.5%
  }

  .xlarge-margin-collapse>.large-4 {
    width: 16.6666666667%
  }

  .xlarge-margin-collapse>.large-5 {
    width: 20.8333333333%
  }

  .xlarge-margin-collapse>.large-6 {
    width: 25%
  }

  .xlarge-margin-collapse>.large-7 {
    width: 29.1666666667%
  }

  .xlarge-margin-collapse>.large-8 {
    width: 33.3333333333%
  }

  .xlarge-margin-collapse>.large-9 {
    width: 37.5%
  }

  .xlarge-margin-collapse>.large-10 {
    width: 41.6666666667%
  }

  .xlarge-margin-collapse>.large-11 {
    width: 45.8333333333%
  }

  .xlarge-margin-collapse>.large-12 {
    width: 50%
  }

  .xlarge-margin-collapse>.large-13 {
    width: 54.1666666667%
  }

  .xlarge-margin-collapse>.large-14 {
    width: 58.3333333333%
  }

  .xlarge-margin-collapse>.large-15 {
    width: 62.5%
  }

  .xlarge-margin-collapse>.large-16 {
    width: 66.6666666667%
  }

  .xlarge-margin-collapse>.large-17 {
    width: 70.8333333333%
  }

  .xlarge-margin-collapse>.large-18 {
    width: 75%
  }

  .xlarge-margin-collapse>.large-19 {
    width: 79.1666666667%
  }

  .xlarge-margin-collapse>.large-20 {
    width: 83.3333333333%
  }

  .xlarge-margin-collapse>.large-21 {
    width: 87.5%
  }

  .xlarge-margin-collapse>.large-22 {
    width: 91.6666666667%
  }

  .xlarge-margin-collapse>.large-23 {
    width: 95.8333333333%
  }

  .xlarge-margin-collapse>.large-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse>.xlarge-1 {
    width: 4.1666666667%
  }

  .xlarge-margin-collapse>.xlarge-2 {
    width: 8.3333333333%
  }

  .xlarge-margin-collapse>.xlarge-3 {
    width: 12.5%
  }

  .xlarge-margin-collapse>.xlarge-4 {
    width: 16.6666666667%
  }

  .xlarge-margin-collapse>.xlarge-5 {
    width: 20.8333333333%
  }

  .xlarge-margin-collapse>.xlarge-6 {
    width: 25%
  }

  .xlarge-margin-collapse>.xlarge-7 {
    width: 29.1666666667%
  }

  .xlarge-margin-collapse>.xlarge-8 {
    width: 33.3333333333%
  }

  .xlarge-margin-collapse>.xlarge-9 {
    width: 37.5%
  }

  .xlarge-margin-collapse>.xlarge-10 {
    width: 41.6666666667%
  }

  .xlarge-margin-collapse>.xlarge-11 {
    width: 45.8333333333%
  }

  .xlarge-margin-collapse>.xlarge-12 {
    width: 50%
  }

  .xlarge-margin-collapse>.xlarge-13 {
    width: 54.1666666667%
  }

  .xlarge-margin-collapse>.xlarge-14 {
    width: 58.3333333333%
  }

  .xlarge-margin-collapse>.xlarge-15 {
    width: 62.5%
  }

  .xlarge-margin-collapse>.xlarge-16 {
    width: 66.6666666667%
  }

  .xlarge-margin-collapse>.xlarge-17 {
    width: 70.8333333333%
  }

  .xlarge-margin-collapse>.xlarge-18 {
    width: 75%
  }

  .xlarge-margin-collapse>.xlarge-19 {
    width: 79.1666666667%
  }

  .xlarge-margin-collapse>.xlarge-20 {
    width: 83.3333333333%
  }

  .xlarge-margin-collapse>.xlarge-21 {
    width: 87.5%
  }

  .xlarge-margin-collapse>.xlarge-22 {
    width: 91.6666666667%
  }

  .xlarge-margin-collapse>.xlarge-23 {
    width: 95.8333333333%
  }

  .xlarge-margin-collapse>.xlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .xlarge-margin-collapse>.xxlarge-1 {
    width: 4.1666666667%
  }

  .xlarge-margin-collapse>.xxlarge-2 {
    width: 8.3333333333%
  }

  .xlarge-margin-collapse>.xxlarge-3 {
    width: 12.5%
  }

  .xlarge-margin-collapse>.xxlarge-4 {
    width: 16.6666666667%
  }

  .xlarge-margin-collapse>.xxlarge-5 {
    width: 20.8333333333%
  }

  .xlarge-margin-collapse>.xxlarge-6 {
    width: 25%
  }

  .xlarge-margin-collapse>.xxlarge-7 {
    width: 29.1666666667%
  }

  .xlarge-margin-collapse>.xxlarge-8 {
    width: 33.3333333333%
  }

  .xlarge-margin-collapse>.xxlarge-9 {
    width: 37.5%
  }

  .xlarge-margin-collapse>.xxlarge-10 {
    width: 41.6666666667%
  }

  .xlarge-margin-collapse>.xxlarge-11 {
    width: 45.8333333333%
  }

  .xlarge-margin-collapse>.xxlarge-12 {
    width: 50%
  }

  .xlarge-margin-collapse>.xxlarge-13 {
    width: 54.1666666667%
  }

  .xlarge-margin-collapse>.xxlarge-14 {
    width: 58.3333333333%
  }

  .xlarge-margin-collapse>.xxlarge-15 {
    width: 62.5%
  }

  .xlarge-margin-collapse>.xxlarge-16 {
    width: 66.6666666667%
  }

  .xlarge-margin-collapse>.xxlarge-17 {
    width: 70.8333333333%
  }

  .xlarge-margin-collapse>.xxlarge-18 {
    width: 75%
  }

  .xlarge-margin-collapse>.xxlarge-19 {
    width: 79.1666666667%
  }

  .xlarge-margin-collapse>.xxlarge-20 {
    width: 83.3333333333%
  }

  .xlarge-margin-collapse>.xxlarge-21 {
    width: 87.5%
  }

  .xlarge-margin-collapse>.xxlarge-22 {
    width: 91.6666666667%
  }

  .xlarge-margin-collapse>.xxlarge-23 {
    width: 95.8333333333%
  }

  .xlarge-margin-collapse>.xxlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 75em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .xlarge-padding-collapse>.cell {
    padding-right: 0;
    padding-left: 0
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .xxlarge-margin-collapse>.cell {
    margin-right: 0;
    margin-left: 0
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-margin-collapse>.small-1 {
    width: 4.1666666667%
  }

  .xxlarge-margin-collapse>.small-2 {
    width: 8.3333333333%
  }

  .xxlarge-margin-collapse>.small-3 {
    width: 12.5%
  }

  .xxlarge-margin-collapse>.small-4 {
    width: 16.6666666667%
  }

  .xxlarge-margin-collapse>.small-5 {
    width: 20.8333333333%
  }

  .xxlarge-margin-collapse>.small-6 {
    width: 25%
  }

  .xxlarge-margin-collapse>.small-7 {
    width: 29.1666666667%
  }

  .xxlarge-margin-collapse>.small-8 {
    width: 33.3333333333%
  }

  .xxlarge-margin-collapse>.small-9 {
    width: 37.5%
  }

  .xxlarge-margin-collapse>.small-10 {
    width: 41.6666666667%
  }

  .xxlarge-margin-collapse>.small-11 {
    width: 45.8333333333%
  }

  .xxlarge-margin-collapse>.small-12 {
    width: 50%
  }

  .xxlarge-margin-collapse>.small-13 {
    width: 54.1666666667%
  }

  .xxlarge-margin-collapse>.small-14 {
    width: 58.3333333333%
  }

  .xxlarge-margin-collapse>.small-15 {
    width: 62.5%
  }

  .xxlarge-margin-collapse>.small-16 {
    width: 66.6666666667%
  }

  .xxlarge-margin-collapse>.small-17 {
    width: 70.8333333333%
  }

  .xxlarge-margin-collapse>.small-18 {
    width: 75%
  }

  .xxlarge-margin-collapse>.small-19 {
    width: 79.1666666667%
  }

  .xxlarge-margin-collapse>.small-20 {
    width: 83.3333333333%
  }

  .xxlarge-margin-collapse>.small-21 {
    width: 87.5%
  }

  .xxlarge-margin-collapse>.small-22 {
    width: 91.6666666667%
  }

  .xxlarge-margin-collapse>.small-23 {
    width: 95.8333333333%
  }

  .xxlarge-margin-collapse>.small-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-margin-collapse>.medium-1 {
    width: 4.1666666667%
  }

  .xxlarge-margin-collapse>.medium-2 {
    width: 8.3333333333%
  }

  .xxlarge-margin-collapse>.medium-3 {
    width: 12.5%
  }

  .xxlarge-margin-collapse>.medium-4 {
    width: 16.6666666667%
  }

  .xxlarge-margin-collapse>.medium-5 {
    width: 20.8333333333%
  }

  .xxlarge-margin-collapse>.medium-6 {
    width: 25%
  }

  .xxlarge-margin-collapse>.medium-7 {
    width: 29.1666666667%
  }

  .xxlarge-margin-collapse>.medium-8 {
    width: 33.3333333333%
  }

  .xxlarge-margin-collapse>.medium-9 {
    width: 37.5%
  }

  .xxlarge-margin-collapse>.medium-10 {
    width: 41.6666666667%
  }

  .xxlarge-margin-collapse>.medium-11 {
    width: 45.8333333333%
  }

  .xxlarge-margin-collapse>.medium-12 {
    width: 50%
  }

  .xxlarge-margin-collapse>.medium-13 {
    width: 54.1666666667%
  }

  .xxlarge-margin-collapse>.medium-14 {
    width: 58.3333333333%
  }

  .xxlarge-margin-collapse>.medium-15 {
    width: 62.5%
  }

  .xxlarge-margin-collapse>.medium-16 {
    width: 66.6666666667%
  }

  .xxlarge-margin-collapse>.medium-17 {
    width: 70.8333333333%
  }

  .xxlarge-margin-collapse>.medium-18 {
    width: 75%
  }

  .xxlarge-margin-collapse>.medium-19 {
    width: 79.1666666667%
  }

  .xxlarge-margin-collapse>.medium-20 {
    width: 83.3333333333%
  }

  .xxlarge-margin-collapse>.medium-21 {
    width: 87.5%
  }

  .xxlarge-margin-collapse>.medium-22 {
    width: 91.6666666667%
  }

  .xxlarge-margin-collapse>.medium-23 {
    width: 95.8333333333%
  }

  .xxlarge-margin-collapse>.medium-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-margin-collapse>.large-1 {
    width: 4.1666666667%
  }

  .xxlarge-margin-collapse>.large-2 {
    width: 8.3333333333%
  }

  .xxlarge-margin-collapse>.large-3 {
    width: 12.5%
  }

  .xxlarge-margin-collapse>.large-4 {
    width: 16.6666666667%
  }

  .xxlarge-margin-collapse>.large-5 {
    width: 20.8333333333%
  }

  .xxlarge-margin-collapse>.large-6 {
    width: 25%
  }

  .xxlarge-margin-collapse>.large-7 {
    width: 29.1666666667%
  }

  .xxlarge-margin-collapse>.large-8 {
    width: 33.3333333333%
  }

  .xxlarge-margin-collapse>.large-9 {
    width: 37.5%
  }

  .xxlarge-margin-collapse>.large-10 {
    width: 41.6666666667%
  }

  .xxlarge-margin-collapse>.large-11 {
    width: 45.8333333333%
  }

  .xxlarge-margin-collapse>.large-12 {
    width: 50%
  }

  .xxlarge-margin-collapse>.large-13 {
    width: 54.1666666667%
  }

  .xxlarge-margin-collapse>.large-14 {
    width: 58.3333333333%
  }

  .xxlarge-margin-collapse>.large-15 {
    width: 62.5%
  }

  .xxlarge-margin-collapse>.large-16 {
    width: 66.6666666667%
  }

  .xxlarge-margin-collapse>.large-17 {
    width: 70.8333333333%
  }

  .xxlarge-margin-collapse>.large-18 {
    width: 75%
  }

  .xxlarge-margin-collapse>.large-19 {
    width: 79.1666666667%
  }

  .xxlarge-margin-collapse>.large-20 {
    width: 83.3333333333%
  }

  .xxlarge-margin-collapse>.large-21 {
    width: 87.5%
  }

  .xxlarge-margin-collapse>.large-22 {
    width: 91.6666666667%
  }

  .xxlarge-margin-collapse>.large-23 {
    width: 95.8333333333%
  }

  .xxlarge-margin-collapse>.large-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-margin-collapse>.xlarge-1 {
    width: 4.1666666667%
  }

  .xxlarge-margin-collapse>.xlarge-2 {
    width: 8.3333333333%
  }

  .xxlarge-margin-collapse>.xlarge-3 {
    width: 12.5%
  }

  .xxlarge-margin-collapse>.xlarge-4 {
    width: 16.6666666667%
  }

  .xxlarge-margin-collapse>.xlarge-5 {
    width: 20.8333333333%
  }

  .xxlarge-margin-collapse>.xlarge-6 {
    width: 25%
  }

  .xxlarge-margin-collapse>.xlarge-7 {
    width: 29.1666666667%
  }

  .xxlarge-margin-collapse>.xlarge-8 {
    width: 33.3333333333%
  }

  .xxlarge-margin-collapse>.xlarge-9 {
    width: 37.5%
  }

  .xxlarge-margin-collapse>.xlarge-10 {
    width: 41.6666666667%
  }

  .xxlarge-margin-collapse>.xlarge-11 {
    width: 45.8333333333%
  }

  .xxlarge-margin-collapse>.xlarge-12 {
    width: 50%
  }

  .xxlarge-margin-collapse>.xlarge-13 {
    width: 54.1666666667%
  }

  .xxlarge-margin-collapse>.xlarge-14 {
    width: 58.3333333333%
  }

  .xxlarge-margin-collapse>.xlarge-15 {
    width: 62.5%
  }

  .xxlarge-margin-collapse>.xlarge-16 {
    width: 66.6666666667%
  }

  .xxlarge-margin-collapse>.xlarge-17 {
    width: 70.8333333333%
  }

  .xxlarge-margin-collapse>.xlarge-18 {
    width: 75%
  }

  .xxlarge-margin-collapse>.xlarge-19 {
    width: 79.1666666667%
  }

  .xxlarge-margin-collapse>.xlarge-20 {
    width: 83.3333333333%
  }

  .xxlarge-margin-collapse>.xlarge-21 {
    width: 87.5%
  }

  .xxlarge-margin-collapse>.xlarge-22 {
    width: 91.6666666667%
  }

  .xxlarge-margin-collapse>.xlarge-23 {
    width: 95.8333333333%
  }

  .xxlarge-margin-collapse>.xlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-margin-collapse>.xxlarge-1 {
    width: 4.1666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-2 {
    width: 8.3333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-3 {
    width: 12.5%
  }

  .xxlarge-margin-collapse>.xxlarge-4 {
    width: 16.6666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-5 {
    width: 20.8333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-6 {
    width: 25%
  }

  .xxlarge-margin-collapse>.xxlarge-7 {
    width: 29.1666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-8 {
    width: 33.3333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-9 {
    width: 37.5%
  }

  .xxlarge-margin-collapse>.xxlarge-10 {
    width: 41.6666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-11 {
    width: 45.8333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-12 {
    width: 50%
  }

  .xxlarge-margin-collapse>.xxlarge-13 {
    width: 54.1666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-14 {
    width: 58.3333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-15 {
    width: 62.5%
  }

  .xxlarge-margin-collapse>.xxlarge-16 {
    width: 66.6666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-17 {
    width: 70.8333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-18 {
    width: 75%
  }

  .xxlarge-margin-collapse>.xxlarge-19 {
    width: 79.1666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-20 {
    width: 83.3333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-21 {
    width: 87.5%
  }

  .xxlarge-margin-collapse>.xxlarge-22 {
    width: 91.6666666667%
  }

  .xxlarge-margin-collapse>.xxlarge-23 {
    width: 95.8333333333%
  }

  .xxlarge-margin-collapse>.xxlarge-24 {
    width: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0
  }

  .xxlarge-padding-collapse>.cell {
    padding-right: 0;
    padding-left: 0
  }
}

.small-offset-0 {
  margin-left: 0%
}

.grid-margin-x>.small-offset-0 {
  margin-left: calc(0% + 1.4285714286rem / 2)
}

.small-offset-1 {
  margin-left: 4.1666666667%
}

.grid-margin-x>.small-offset-1 {
  margin-left: calc(4.1666666667% + 1.4285714286rem / 2)
}

.small-offset-2 {
  margin-left: 8.3333333333%
}

.grid-margin-x>.small-offset-2 {
  margin-left: calc(8.3333333333% + 1.4285714286rem / 2)
}

.small-offset-3 {
  margin-left: 12.5%
}

.grid-margin-x>.small-offset-3 {
  margin-left: calc(12.5% + 1.4285714286rem / 2)
}

.small-offset-4 {
  margin-left: 16.6666666667%
}

.grid-margin-x>.small-offset-4 {
  margin-left: calc(16.6666666667% + 1.4285714286rem / 2)
}

.small-offset-5 {
  margin-left: 20.8333333333%
}

.grid-margin-x>.small-offset-5 {
  margin-left: calc(20.8333333333% + 1.4285714286rem / 2)
}

.small-offset-6 {
  margin-left: 25%
}

.grid-margin-x>.small-offset-6 {
  margin-left: calc(25% + 1.4285714286rem / 2)
}

.small-offset-7 {
  margin-left: 29.1666666667%
}

.grid-margin-x>.small-offset-7 {
  margin-left: calc(29.1666666667% + 1.4285714286rem / 2)
}

.small-offset-8 {
  margin-left: 33.3333333333%
}

.grid-margin-x>.small-offset-8 {
  margin-left: calc(33.3333333333% + 1.4285714286rem / 2)
}

.small-offset-9 {
  margin-left: 37.5%
}

.grid-margin-x>.small-offset-9 {
  margin-left: calc(37.5% + 1.4285714286rem / 2)
}

.small-offset-10 {
  margin-left: 41.6666666667%
}

.grid-margin-x>.small-offset-10 {
  margin-left: calc(41.6666666667% + 1.4285714286rem / 2)
}

.small-offset-11 {
  margin-left: 45.8333333333%
}

.grid-margin-x>.small-offset-11 {
  margin-left: calc(45.8333333333% + 1.4285714286rem / 2)
}

.small-offset-12 {
  margin-left: 50%
}

.grid-margin-x>.small-offset-12 {
  margin-left: calc(50% + 1.4285714286rem / 2)
}

.small-offset-13 {
  margin-left: 54.1666666667%
}

.grid-margin-x>.small-offset-13 {
  margin-left: calc(54.1666666667% + 1.4285714286rem / 2)
}

.small-offset-14 {
  margin-left: 58.3333333333%
}

.grid-margin-x>.small-offset-14 {
  margin-left: calc(58.3333333333% + 1.4285714286rem / 2)
}

.small-offset-15 {
  margin-left: 62.5%
}

.grid-margin-x>.small-offset-15 {
  margin-left: calc(62.5% + 1.4285714286rem / 2)
}

.small-offset-16 {
  margin-left: 66.6666666667%
}

.grid-margin-x>.small-offset-16 {
  margin-left: calc(66.6666666667% + 1.4285714286rem / 2)
}

.small-offset-17 {
  margin-left: 70.8333333333%
}

.grid-margin-x>.small-offset-17 {
  margin-left: calc(70.8333333333% + 1.4285714286rem / 2)
}

.small-offset-18 {
  margin-left: 75%
}

.grid-margin-x>.small-offset-18 {
  margin-left: calc(75% + 1.4285714286rem / 2)
}

.small-offset-19 {
  margin-left: 79.1666666667%
}

.grid-margin-x>.small-offset-19 {
  margin-left: calc(79.1666666667% + 1.4285714286rem / 2)
}

.small-offset-20 {
  margin-left: 83.3333333333%
}

.grid-margin-x>.small-offset-20 {
  margin-left: calc(83.3333333333% + 1.4285714286rem / 2)
}

.small-offset-21 {
  margin-left: 87.5%
}

.grid-margin-x>.small-offset-21 {
  margin-left: calc(87.5% + 1.4285714286rem / 2)
}

.small-offset-22 {
  margin-left: 91.6666666667%
}

.grid-margin-x>.small-offset-22 {
  margin-left: calc(91.6666666667% + 1.4285714286rem / 2)
}

.small-offset-23 {
  margin-left: 95.8333333333%
}

.grid-margin-x>.small-offset-23 {
  margin-left: calc(95.8333333333% + 1.4285714286rem / 2)
}

@media print,
screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%
  }

  .grid-margin-x>.medium-offset-0 {
    margin-left: calc(0% + 1.4285714286rem / 2)
  }

  .medium-offset-1 {
    margin-left: 4.1666666667%
  }

  .grid-margin-x>.medium-offset-1 {
    margin-left: calc(4.1666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-2 {
    margin-left: 8.3333333333%
  }

  .grid-margin-x>.medium-offset-2 {
    margin-left: calc(8.3333333333% + 1.4285714286rem / 2)
  }

  .medium-offset-3 {
    margin-left: 12.5%
  }

  .grid-margin-x>.medium-offset-3 {
    margin-left: calc(12.5% + 1.4285714286rem / 2)
  }

  .medium-offset-4 {
    margin-left: 16.6666666667%
  }

  .grid-margin-x>.medium-offset-4 {
    margin-left: calc(16.6666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-5 {
    margin-left: 20.8333333333%
  }

  .grid-margin-x>.medium-offset-5 {
    margin-left: calc(20.8333333333% + 1.4285714286rem / 2)
  }

  .medium-offset-6 {
    margin-left: 25%
  }

  .grid-margin-x>.medium-offset-6 {
    margin-left: calc(25% + 1.4285714286rem / 2)
  }

  .medium-offset-7 {
    margin-left: 29.1666666667%
  }

  .grid-margin-x>.medium-offset-7 {
    margin-left: calc(29.1666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-8 {
    margin-left: 33.3333333333%
  }

  .grid-margin-x>.medium-offset-8 {
    margin-left: calc(33.3333333333% + 1.4285714286rem / 2)
  }

  .medium-offset-9 {
    margin-left: 37.5%
  }

  .grid-margin-x>.medium-offset-9 {
    margin-left: calc(37.5% + 1.4285714286rem / 2)
  }

  .medium-offset-10 {
    margin-left: 41.6666666667%
  }

  .grid-margin-x>.medium-offset-10 {
    margin-left: calc(41.6666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-11 {
    margin-left: 45.8333333333%
  }

  .grid-margin-x>.medium-offset-11 {
    margin-left: calc(45.8333333333% + 1.4285714286rem / 2)
  }

  .medium-offset-12 {
    margin-left: 50%
  }

  .grid-margin-x>.medium-offset-12 {
    margin-left: calc(50% + 1.4285714286rem / 2)
  }

  .medium-offset-13 {
    margin-left: 54.1666666667%
  }

  .grid-margin-x>.medium-offset-13 {
    margin-left: calc(54.1666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-14 {
    margin-left: 58.3333333333%
  }

  .grid-margin-x>.medium-offset-14 {
    margin-left: calc(58.3333333333% + 1.4285714286rem / 2)
  }

  .medium-offset-15 {
    margin-left: 62.5%
  }

  .grid-margin-x>.medium-offset-15 {
    margin-left: calc(62.5% + 1.4285714286rem / 2)
  }

  .medium-offset-16 {
    margin-left: 66.6666666667%
  }

  .grid-margin-x>.medium-offset-16 {
    margin-left: calc(66.6666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-17 {
    margin-left: 70.8333333333%
  }

  .grid-margin-x>.medium-offset-17 {
    margin-left: calc(70.8333333333% + 1.4285714286rem / 2)
  }

  .medium-offset-18 {
    margin-left: 75%
  }

  .grid-margin-x>.medium-offset-18 {
    margin-left: calc(75% + 1.4285714286rem / 2)
  }

  .medium-offset-19 {
    margin-left: 79.1666666667%
  }

  .grid-margin-x>.medium-offset-19 {
    margin-left: calc(79.1666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-20 {
    margin-left: 83.3333333333%
  }

  .grid-margin-x>.medium-offset-20 {
    margin-left: calc(83.3333333333% + 1.4285714286rem / 2)
  }

  .medium-offset-21 {
    margin-left: 87.5%
  }

  .grid-margin-x>.medium-offset-21 {
    margin-left: calc(87.5% + 1.4285714286rem / 2)
  }

  .medium-offset-22 {
    margin-left: 91.6666666667%
  }

  .grid-margin-x>.medium-offset-22 {
    margin-left: calc(91.6666666667% + 1.4285714286rem / 2)
  }

  .medium-offset-23 {
    margin-left: 95.8333333333%
  }

  .grid-margin-x>.medium-offset-23 {
    margin-left: calc(95.8333333333% + 1.4285714286rem / 2)
  }
}

@media print,
screen and (min-width: 60em) {
  .large-offset-0 {
    margin-left: 0%
  }

  .grid-margin-x>.large-offset-0 {
    margin-left: calc(0% + 1.4285714286rem / 2)
  }

  .large-offset-1 {
    margin-left: 4.1666666667%
  }

  .grid-margin-x>.large-offset-1 {
    margin-left: calc(4.1666666667% + 1.4285714286rem / 2)
  }

  .large-offset-2 {
    margin-left: 8.3333333333%
  }

  .grid-margin-x>.large-offset-2 {
    margin-left: calc(8.3333333333% + 1.4285714286rem / 2)
  }

  .large-offset-3 {
    margin-left: 12.5%
  }

  .grid-margin-x>.large-offset-3 {
    margin-left: calc(12.5% + 1.4285714286rem / 2)
  }

  .large-offset-4 {
    margin-left: 16.6666666667%
  }

  .grid-margin-x>.large-offset-4 {
    margin-left: calc(16.6666666667% + 1.4285714286rem / 2)
  }

  .large-offset-5 {
    margin-left: 20.8333333333%
  }

  .grid-margin-x>.large-offset-5 {
    margin-left: calc(20.8333333333% + 1.4285714286rem / 2)
  }

  .large-offset-6 {
    margin-left: 25%
  }

  .grid-margin-x>.large-offset-6 {
    margin-left: calc(25% + 1.4285714286rem / 2)
  }

  .large-offset-7 {
    margin-left: 29.1666666667%
  }

  .grid-margin-x>.large-offset-7 {
    margin-left: calc(29.1666666667% + 1.4285714286rem / 2)
  }

  .large-offset-8 {
    margin-left: 33.3333333333%
  }

  .grid-margin-x>.large-offset-8 {
    margin-left: calc(33.3333333333% + 1.4285714286rem / 2)
  }

  .large-offset-9 {
    margin-left: 37.5%
  }

  .grid-margin-x>.large-offset-9 {
    margin-left: calc(37.5% + 1.4285714286rem / 2)
  }

  .large-offset-10 {
    margin-left: 41.6666666667%
  }

  .grid-margin-x>.large-offset-10 {
    margin-left: calc(41.6666666667% + 1.4285714286rem / 2)
  }

  .large-offset-11 {
    margin-left: 45.8333333333%
  }

  .grid-margin-x>.large-offset-11 {
    margin-left: calc(45.8333333333% + 1.4285714286rem / 2)
  }

  .large-offset-12 {
    margin-left: 50%
  }

  .grid-margin-x>.large-offset-12 {
    margin-left: calc(50% + 1.4285714286rem / 2)
  }

  .large-offset-13 {
    margin-left: 54.1666666667%
  }

  .grid-margin-x>.large-offset-13 {
    margin-left: calc(54.1666666667% + 1.4285714286rem / 2)
  }

  .large-offset-14 {
    margin-left: 58.3333333333%
  }

  .grid-margin-x>.large-offset-14 {
    margin-left: calc(58.3333333333% + 1.4285714286rem / 2)
  }

  .large-offset-15 {
    margin-left: 62.5%
  }

  .grid-margin-x>.large-offset-15 {
    margin-left: calc(62.5% + 1.4285714286rem / 2)
  }

  .large-offset-16 {
    margin-left: 66.6666666667%
  }

  .grid-margin-x>.large-offset-16 {
    margin-left: calc(66.6666666667% + 1.4285714286rem / 2)
  }

  .large-offset-17 {
    margin-left: 70.8333333333%
  }

  .grid-margin-x>.large-offset-17 {
    margin-left: calc(70.8333333333% + 1.4285714286rem / 2)
  }

  .large-offset-18 {
    margin-left: 75%
  }

  .grid-margin-x>.large-offset-18 {
    margin-left: calc(75% + 1.4285714286rem / 2)
  }

  .large-offset-19 {
    margin-left: 79.1666666667%
  }

  .grid-margin-x>.large-offset-19 {
    margin-left: calc(79.1666666667% + 1.4285714286rem / 2)
  }

  .large-offset-20 {
    margin-left: 83.3333333333%
  }

  .grid-margin-x>.large-offset-20 {
    margin-left: calc(83.3333333333% + 1.4285714286rem / 2)
  }

  .large-offset-21 {
    margin-left: 87.5%
  }

  .grid-margin-x>.large-offset-21 {
    margin-left: calc(87.5% + 1.4285714286rem / 2)
  }

  .large-offset-22 {
    margin-left: 91.6666666667%
  }

  .grid-margin-x>.large-offset-22 {
    margin-left: calc(91.6666666667% + 1.4285714286rem / 2)
  }

  .large-offset-23 {
    margin-left: 95.8333333333%
  }

  .grid-margin-x>.large-offset-23 {
    margin-left: calc(95.8333333333% + 1.4285714286rem / 2)
  }
}

@media screen and (min-width: 75em) {
  .xlarge-offset-0 {
    margin-left: 0%
  }

  .grid-margin-x>.xlarge-offset-0 {
    margin-left: calc(0% + 1.4285714286rem / 2)
  }

  .xlarge-offset-1 {
    margin-left: 4.1666666667%
  }

  .grid-margin-x>.xlarge-offset-1 {
    margin-left: calc(4.1666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-2 {
    margin-left: 8.3333333333%
  }

  .grid-margin-x>.xlarge-offset-2 {
    margin-left: calc(8.3333333333% + 1.4285714286rem / 2)
  }

  .xlarge-offset-3 {
    margin-left: 12.5%
  }

  .grid-margin-x>.xlarge-offset-3 {
    margin-left: calc(12.5% + 1.4285714286rem / 2)
  }

  .xlarge-offset-4 {
    margin-left: 16.6666666667%
  }

  .grid-margin-x>.xlarge-offset-4 {
    margin-left: calc(16.6666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-5 {
    margin-left: 20.8333333333%
  }

  .grid-margin-x>.xlarge-offset-5 {
    margin-left: calc(20.8333333333% + 1.4285714286rem / 2)
  }

  .xlarge-offset-6 {
    margin-left: 25%
  }

  .grid-margin-x>.xlarge-offset-6 {
    margin-left: calc(25% + 1.4285714286rem / 2)
  }

  .xlarge-offset-7 {
    margin-left: 29.1666666667%
  }

  .grid-margin-x>.xlarge-offset-7 {
    margin-left: calc(29.1666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-8 {
    margin-left: 33.3333333333%
  }

  .grid-margin-x>.xlarge-offset-8 {
    margin-left: calc(33.3333333333% + 1.4285714286rem / 2)
  }

  .xlarge-offset-9 {
    margin-left: 37.5%
  }

  .grid-margin-x>.xlarge-offset-9 {
    margin-left: calc(37.5% + 1.4285714286rem / 2)
  }

  .xlarge-offset-10 {
    margin-left: 41.6666666667%
  }

  .grid-margin-x>.xlarge-offset-10 {
    margin-left: calc(41.6666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-11 {
    margin-left: 45.8333333333%
  }

  .grid-margin-x>.xlarge-offset-11 {
    margin-left: calc(45.8333333333% + 1.4285714286rem / 2)
  }

  .xlarge-offset-12 {
    margin-left: 50%
  }

  .grid-margin-x>.xlarge-offset-12 {
    margin-left: calc(50% + 1.4285714286rem / 2)
  }

  .xlarge-offset-13 {
    margin-left: 54.1666666667%
  }

  .grid-margin-x>.xlarge-offset-13 {
    margin-left: calc(54.1666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-14 {
    margin-left: 58.3333333333%
  }

  .grid-margin-x>.xlarge-offset-14 {
    margin-left: calc(58.3333333333% + 1.4285714286rem / 2)
  }

  .xlarge-offset-15 {
    margin-left: 62.5%
  }

  .grid-margin-x>.xlarge-offset-15 {
    margin-left: calc(62.5% + 1.4285714286rem / 2)
  }

  .xlarge-offset-16 {
    margin-left: 66.6666666667%
  }

  .grid-margin-x>.xlarge-offset-16 {
    margin-left: calc(66.6666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-17 {
    margin-left: 70.8333333333%
  }

  .grid-margin-x>.xlarge-offset-17 {
    margin-left: calc(70.8333333333% + 1.4285714286rem / 2)
  }

  .xlarge-offset-18 {
    margin-left: 75%
  }

  .grid-margin-x>.xlarge-offset-18 {
    margin-left: calc(75% + 1.4285714286rem / 2)
  }

  .xlarge-offset-19 {
    margin-left: 79.1666666667%
  }

  .grid-margin-x>.xlarge-offset-19 {
    margin-left: calc(79.1666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-20 {
    margin-left: 83.3333333333%
  }

  .grid-margin-x>.xlarge-offset-20 {
    margin-left: calc(83.3333333333% + 1.4285714286rem / 2)
  }

  .xlarge-offset-21 {
    margin-left: 87.5%
  }

  .grid-margin-x>.xlarge-offset-21 {
    margin-left: calc(87.5% + 1.4285714286rem / 2)
  }

  .xlarge-offset-22 {
    margin-left: 91.6666666667%
  }

  .grid-margin-x>.xlarge-offset-22 {
    margin-left: calc(91.6666666667% + 1.4285714286rem / 2)
  }

  .xlarge-offset-23 {
    margin-left: 95.8333333333%
  }

  .grid-margin-x>.xlarge-offset-23 {
    margin-left: calc(95.8333333333% + 1.4285714286rem / 2)
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-offset-0 {
    margin-left: 0%
  }

  .grid-margin-x>.xxlarge-offset-0 {
    margin-left: calc(0% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-1 {
    margin-left: 4.1666666667%
  }

  .grid-margin-x>.xxlarge-offset-1 {
    margin-left: calc(4.1666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-2 {
    margin-left: 8.3333333333%
  }

  .grid-margin-x>.xxlarge-offset-2 {
    margin-left: calc(8.3333333333% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-3 {
    margin-left: 12.5%
  }

  .grid-margin-x>.xxlarge-offset-3 {
    margin-left: calc(12.5% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-4 {
    margin-left: 16.6666666667%
  }

  .grid-margin-x>.xxlarge-offset-4 {
    margin-left: calc(16.6666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-5 {
    margin-left: 20.8333333333%
  }

  .grid-margin-x>.xxlarge-offset-5 {
    margin-left: calc(20.8333333333% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-6 {
    margin-left: 25%
  }

  .grid-margin-x>.xxlarge-offset-6 {
    margin-left: calc(25% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-7 {
    margin-left: 29.1666666667%
  }

  .grid-margin-x>.xxlarge-offset-7 {
    margin-left: calc(29.1666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-8 {
    margin-left: 33.3333333333%
  }

  .grid-margin-x>.xxlarge-offset-8 {
    margin-left: calc(33.3333333333% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-9 {
    margin-left: 37.5%
  }

  .grid-margin-x>.xxlarge-offset-9 {
    margin-left: calc(37.5% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-10 {
    margin-left: 41.6666666667%
  }

  .grid-margin-x>.xxlarge-offset-10 {
    margin-left: calc(41.6666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-11 {
    margin-left: 45.8333333333%
  }

  .grid-margin-x>.xxlarge-offset-11 {
    margin-left: calc(45.8333333333% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-12 {
    margin-left: 50%
  }

  .grid-margin-x>.xxlarge-offset-12 {
    margin-left: calc(50% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-13 {
    margin-left: 54.1666666667%
  }

  .grid-margin-x>.xxlarge-offset-13 {
    margin-left: calc(54.1666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-14 {
    margin-left: 58.3333333333%
  }

  .grid-margin-x>.xxlarge-offset-14 {
    margin-left: calc(58.3333333333% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-15 {
    margin-left: 62.5%
  }

  .grid-margin-x>.xxlarge-offset-15 {
    margin-left: calc(62.5% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-16 {
    margin-left: 66.6666666667%
  }

  .grid-margin-x>.xxlarge-offset-16 {
    margin-left: calc(66.6666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-17 {
    margin-left: 70.8333333333%
  }

  .grid-margin-x>.xxlarge-offset-17 {
    margin-left: calc(70.8333333333% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-18 {
    margin-left: 75%
  }

  .grid-margin-x>.xxlarge-offset-18 {
    margin-left: calc(75% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-19 {
    margin-left: 79.1666666667%
  }

  .grid-margin-x>.xxlarge-offset-19 {
    margin-left: calc(79.1666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-20 {
    margin-left: 83.3333333333%
  }

  .grid-margin-x>.xxlarge-offset-20 {
    margin-left: calc(83.3333333333% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-21 {
    margin-left: 87.5%
  }

  .grid-margin-x>.xxlarge-offset-21 {
    margin-left: calc(87.5% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-22 {
    margin-left: 91.6666666667%
  }

  .grid-margin-x>.xxlarge-offset-22 {
    margin-left: calc(91.6666666667% + 1.4285714286rem / 2)
  }

  .xxlarge-offset-23 {
    margin-left: 95.8333333333%
  }

  .grid-margin-x>.xxlarge-offset-23 {
    margin-left: calc(95.8333333333% + 1.4285714286rem / 2)
  }
}

.grid-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap
}

.grid-y>.cell {
  height: auto;
  max-height: none
}

.grid-y>.auto {
  height: auto
}

.grid-y>.shrink {
  height: auto
}

.grid-y>.small-shrink,
.grid-y>.small-full,
.grid-y>.small-1,
.grid-y>.small-2,
.grid-y>.small-3,
.grid-y>.small-4,
.grid-y>.small-5,
.grid-y>.small-6,
.grid-y>.small-7,
.grid-y>.small-8,
.grid-y>.small-9,
.grid-y>.small-10,
.grid-y>.small-11,
.grid-y>.small-12,
.grid-y>.small-13,
.grid-y>.small-14,
.grid-y>.small-15,
.grid-y>.small-16,
.grid-y>.small-17,
.grid-y>.small-18,
.grid-y>.small-19,
.grid-y>.small-20,
.grid-y>.small-21,
.grid-y>.small-22,
.grid-y>.small-23,
.grid-y>.small-24 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto
}

@media print,
screen and (min-width: 40em) {

  .grid-y>.medium-shrink,
  .grid-y>.medium-full,
  .grid-y>.medium-1,
  .grid-y>.medium-2,
  .grid-y>.medium-3,
  .grid-y>.medium-4,
  .grid-y>.medium-5,
  .grid-y>.medium-6,
  .grid-y>.medium-7,
  .grid-y>.medium-8,
  .grid-y>.medium-9,
  .grid-y>.medium-10,
  .grid-y>.medium-11,
  .grid-y>.medium-12,
  .grid-y>.medium-13,
  .grid-y>.medium-14,
  .grid-y>.medium-15,
  .grid-y>.medium-16,
  .grid-y>.medium-17,
  .grid-y>.medium-18,
  .grid-y>.medium-19,
  .grid-y>.medium-20,
  .grid-y>.medium-21,
  .grid-y>.medium-22,
  .grid-y>.medium-23,
  .grid-y>.medium-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

@media print,
screen and (min-width: 60em) {

  .grid-y>.large-shrink,
  .grid-y>.large-full,
  .grid-y>.large-1,
  .grid-y>.large-2,
  .grid-y>.large-3,
  .grid-y>.large-4,
  .grid-y>.large-5,
  .grid-y>.large-6,
  .grid-y>.large-7,
  .grid-y>.large-8,
  .grid-y>.large-9,
  .grid-y>.large-10,
  .grid-y>.large-11,
  .grid-y>.large-12,
  .grid-y>.large-13,
  .grid-y>.large-14,
  .grid-y>.large-15,
  .grid-y>.large-16,
  .grid-y>.large-17,
  .grid-y>.large-18,
  .grid-y>.large-19,
  .grid-y>.large-20,
  .grid-y>.large-21,
  .grid-y>.large-22,
  .grid-y>.large-23,
  .grid-y>.large-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

@media screen and (min-width: 75em) {

  .grid-y>.xlarge-shrink,
  .grid-y>.xlarge-full,
  .grid-y>.xlarge-1,
  .grid-y>.xlarge-2,
  .grid-y>.xlarge-3,
  .grid-y>.xlarge-4,
  .grid-y>.xlarge-5,
  .grid-y>.xlarge-6,
  .grid-y>.xlarge-7,
  .grid-y>.xlarge-8,
  .grid-y>.xlarge-9,
  .grid-y>.xlarge-10,
  .grid-y>.xlarge-11,
  .grid-y>.xlarge-12,
  .grid-y>.xlarge-13,
  .grid-y>.xlarge-14,
  .grid-y>.xlarge-15,
  .grid-y>.xlarge-16,
  .grid-y>.xlarge-17,
  .grid-y>.xlarge-18,
  .grid-y>.xlarge-19,
  .grid-y>.xlarge-20,
  .grid-y>.xlarge-21,
  .grid-y>.xlarge-22,
  .grid-y>.xlarge-23,
  .grid-y>.xlarge-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

@media screen and (min-width: 84.375em) {

  .grid-y>.xxlarge-shrink,
  .grid-y>.xxlarge-full,
  .grid-y>.xxlarge-1,
  .grid-y>.xxlarge-2,
  .grid-y>.xxlarge-3,
  .grid-y>.xxlarge-4,
  .grid-y>.xxlarge-5,
  .grid-y>.xxlarge-6,
  .grid-y>.xxlarge-7,
  .grid-y>.xxlarge-8,
  .grid-y>.xxlarge-9,
  .grid-y>.xxlarge-10,
  .grid-y>.xxlarge-11,
  .grid-y>.xxlarge-12,
  .grid-y>.xxlarge-13,
  .grid-y>.xxlarge-14,
  .grid-y>.xxlarge-15,
  .grid-y>.xxlarge-16,
  .grid-y>.xxlarge-17,
  .grid-y>.xxlarge-18,
  .grid-y>.xxlarge-19,
  .grid-y>.xxlarge-20,
  .grid-y>.xxlarge-21,
  .grid-y>.xxlarge-22,
  .grid-y>.xxlarge-23,
  .grid-y>.xxlarge-24 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

.grid-y>.small-24,
.grid-y>.small-23,
.grid-y>.small-22,
.grid-y>.small-21,
.grid-y>.small-20,
.grid-y>.small-19,
.grid-y>.small-18,
.grid-y>.small-17,
.grid-y>.small-16,
.grid-y>.small-15,
.grid-y>.small-14,
.grid-y>.small-13,
.grid-y>.small-12,
.grid-y>.small-11,
.grid-y>.small-10,
.grid-y>.small-9,
.grid-y>.small-8,
.grid-y>.small-7,
.grid-y>.small-6,
.grid-y>.small-5,
.grid-y>.small-4,
.grid-y>.small-3,
.grid-y>.small-2,
.grid-y>.small-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.grid-y>.small-1 {
  height: 4.1666666667%
}

.grid-y>.small-2 {
  height: 8.3333333333%
}

.grid-y>.small-3 {
  height: 12.5%
}

.grid-y>.small-4 {
  height: 16.6666666667%
}

.grid-y>.small-5 {
  height: 20.8333333333%
}

.grid-y>.small-6 {
  height: 25%
}

.grid-y>.small-7 {
  height: 29.1666666667%
}

.grid-y>.small-8 {
  height: 33.3333333333%
}

.grid-y>.small-9 {
  height: 37.5%
}

.grid-y>.small-10 {
  height: 41.6666666667%
}

.grid-y>.small-11 {
  height: 45.8333333333%
}

.grid-y>.small-12 {
  height: 50%
}

.grid-y>.small-13 {
  height: 54.1666666667%
}

.grid-y>.small-14 {
  height: 58.3333333333%
}

.grid-y>.small-15 {
  height: 62.5%
}

.grid-y>.small-16 {
  height: 66.6666666667%
}

.grid-y>.small-17 {
  height: 70.8333333333%
}

.grid-y>.small-18 {
  height: 75%
}

.grid-y>.small-19 {
  height: 79.1666666667%
}

.grid-y>.small-20 {
  height: 83.3333333333%
}

.grid-y>.small-21 {
  height: 87.5%
}

.grid-y>.small-22 {
  height: 91.6666666667%
}

.grid-y>.small-23 {
  height: 95.8333333333%
}

.grid-y>.small-24 {
  height: 100%
}

@media print,
screen and (min-width: 40em) {
  .grid-y>.medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    height: auto
  }

  .grid-y>.medium-24,
  .grid-y>.medium-23,
  .grid-y>.medium-22,
  .grid-y>.medium-21,
  .grid-y>.medium-20,
  .grid-y>.medium-19,
  .grid-y>.medium-18,
  .grid-y>.medium-17,
  .grid-y>.medium-16,
  .grid-y>.medium-15,
  .grid-y>.medium-14,
  .grid-y>.medium-13,
  .grid-y>.medium-12,
  .grid-y>.medium-11,
  .grid-y>.medium-10,
  .grid-y>.medium-9,
  .grid-y>.medium-8,
  .grid-y>.medium-7,
  .grid-y>.medium-6,
  .grid-y>.medium-5,
  .grid-y>.medium-4,
  .grid-y>.medium-3,
  .grid-y>.medium-2,
  .grid-y>.medium-1,
  .grid-y>.medium-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-y>.medium-shrink {
    height: auto
  }

  .grid-y>.medium-1 {
    height: 4.1666666667%
  }

  .grid-y>.medium-2 {
    height: 8.3333333333%
  }

  .grid-y>.medium-3 {
    height: 12.5%
  }

  .grid-y>.medium-4 {
    height: 16.6666666667%
  }

  .grid-y>.medium-5 {
    height: 20.8333333333%
  }

  .grid-y>.medium-6 {
    height: 25%
  }

  .grid-y>.medium-7 {
    height: 29.1666666667%
  }

  .grid-y>.medium-8 {
    height: 33.3333333333%
  }

  .grid-y>.medium-9 {
    height: 37.5%
  }

  .grid-y>.medium-10 {
    height: 41.6666666667%
  }

  .grid-y>.medium-11 {
    height: 45.8333333333%
  }

  .grid-y>.medium-12 {
    height: 50%
  }

  .grid-y>.medium-13 {
    height: 54.1666666667%
  }

  .grid-y>.medium-14 {
    height: 58.3333333333%
  }

  .grid-y>.medium-15 {
    height: 62.5%
  }

  .grid-y>.medium-16 {
    height: 66.6666666667%
  }

  .grid-y>.medium-17 {
    height: 70.8333333333%
  }

  .grid-y>.medium-18 {
    height: 75%
  }

  .grid-y>.medium-19 {
    height: 79.1666666667%
  }

  .grid-y>.medium-20 {
    height: 83.3333333333%
  }

  .grid-y>.medium-21 {
    height: 87.5%
  }

  .grid-y>.medium-22 {
    height: 91.6666666667%
  }

  .grid-y>.medium-23 {
    height: 95.8333333333%
  }

  .grid-y>.medium-24 {
    height: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-y>.large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    height: auto
  }

  .grid-y>.large-24,
  .grid-y>.large-23,
  .grid-y>.large-22,
  .grid-y>.large-21,
  .grid-y>.large-20,
  .grid-y>.large-19,
  .grid-y>.large-18,
  .grid-y>.large-17,
  .grid-y>.large-16,
  .grid-y>.large-15,
  .grid-y>.large-14,
  .grid-y>.large-13,
  .grid-y>.large-12,
  .grid-y>.large-11,
  .grid-y>.large-10,
  .grid-y>.large-9,
  .grid-y>.large-8,
  .grid-y>.large-7,
  .grid-y>.large-6,
  .grid-y>.large-5,
  .grid-y>.large-4,
  .grid-y>.large-3,
  .grid-y>.large-2,
  .grid-y>.large-1,
  .grid-y>.large-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-y>.large-shrink {
    height: auto
  }

  .grid-y>.large-1 {
    height: 4.1666666667%
  }

  .grid-y>.large-2 {
    height: 8.3333333333%
  }

  .grid-y>.large-3 {
    height: 12.5%
  }

  .grid-y>.large-4 {
    height: 16.6666666667%
  }

  .grid-y>.large-5 {
    height: 20.8333333333%
  }

  .grid-y>.large-6 {
    height: 25%
  }

  .grid-y>.large-7 {
    height: 29.1666666667%
  }

  .grid-y>.large-8 {
    height: 33.3333333333%
  }

  .grid-y>.large-9 {
    height: 37.5%
  }

  .grid-y>.large-10 {
    height: 41.6666666667%
  }

  .grid-y>.large-11 {
    height: 45.8333333333%
  }

  .grid-y>.large-12 {
    height: 50%
  }

  .grid-y>.large-13 {
    height: 54.1666666667%
  }

  .grid-y>.large-14 {
    height: 58.3333333333%
  }

  .grid-y>.large-15 {
    height: 62.5%
  }

  .grid-y>.large-16 {
    height: 66.6666666667%
  }

  .grid-y>.large-17 {
    height: 70.8333333333%
  }

  .grid-y>.large-18 {
    height: 75%
  }

  .grid-y>.large-19 {
    height: 79.1666666667%
  }

  .grid-y>.large-20 {
    height: 83.3333333333%
  }

  .grid-y>.large-21 {
    height: 87.5%
  }

  .grid-y>.large-22 {
    height: 91.6666666667%
  }

  .grid-y>.large-23 {
    height: 95.8333333333%
  }

  .grid-y>.large-24 {
    height: 100%
  }
}

@media screen and (min-width: 75em) {
  .grid-y>.xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    height: auto
  }

  .grid-y>.xlarge-24,
  .grid-y>.xlarge-23,
  .grid-y>.xlarge-22,
  .grid-y>.xlarge-21,
  .grid-y>.xlarge-20,
  .grid-y>.xlarge-19,
  .grid-y>.xlarge-18,
  .grid-y>.xlarge-17,
  .grid-y>.xlarge-16,
  .grid-y>.xlarge-15,
  .grid-y>.xlarge-14,
  .grid-y>.xlarge-13,
  .grid-y>.xlarge-12,
  .grid-y>.xlarge-11,
  .grid-y>.xlarge-10,
  .grid-y>.xlarge-9,
  .grid-y>.xlarge-8,
  .grid-y>.xlarge-7,
  .grid-y>.xlarge-6,
  .grid-y>.xlarge-5,
  .grid-y>.xlarge-4,
  .grid-y>.xlarge-3,
  .grid-y>.xlarge-2,
  .grid-y>.xlarge-1,
  .grid-y>.xlarge-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-y>.xlarge-shrink {
    height: auto
  }

  .grid-y>.xlarge-1 {
    height: 4.1666666667%
  }

  .grid-y>.xlarge-2 {
    height: 8.3333333333%
  }

  .grid-y>.xlarge-3 {
    height: 12.5%
  }

  .grid-y>.xlarge-4 {
    height: 16.6666666667%
  }

  .grid-y>.xlarge-5 {
    height: 20.8333333333%
  }

  .grid-y>.xlarge-6 {
    height: 25%
  }

  .grid-y>.xlarge-7 {
    height: 29.1666666667%
  }

  .grid-y>.xlarge-8 {
    height: 33.3333333333%
  }

  .grid-y>.xlarge-9 {
    height: 37.5%
  }

  .grid-y>.xlarge-10 {
    height: 41.6666666667%
  }

  .grid-y>.xlarge-11 {
    height: 45.8333333333%
  }

  .grid-y>.xlarge-12 {
    height: 50%
  }

  .grid-y>.xlarge-13 {
    height: 54.1666666667%
  }

  .grid-y>.xlarge-14 {
    height: 58.3333333333%
  }

  .grid-y>.xlarge-15 {
    height: 62.5%
  }

  .grid-y>.xlarge-16 {
    height: 66.6666666667%
  }

  .grid-y>.xlarge-17 {
    height: 70.8333333333%
  }

  .grid-y>.xlarge-18 {
    height: 75%
  }

  .grid-y>.xlarge-19 {
    height: 79.1666666667%
  }

  .grid-y>.xlarge-20 {
    height: 83.3333333333%
  }

  .grid-y>.xlarge-21 {
    height: 87.5%
  }

  .grid-y>.xlarge-22 {
    height: 91.6666666667%
  }

  .grid-y>.xlarge-23 {
    height: 95.8333333333%
  }

  .grid-y>.xlarge-24 {
    height: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .grid-y>.xxlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    height: auto
  }

  .grid-y>.xxlarge-24,
  .grid-y>.xxlarge-23,
  .grid-y>.xxlarge-22,
  .grid-y>.xxlarge-21,
  .grid-y>.xxlarge-20,
  .grid-y>.xxlarge-19,
  .grid-y>.xxlarge-18,
  .grid-y>.xxlarge-17,
  .grid-y>.xxlarge-16,
  .grid-y>.xxlarge-15,
  .grid-y>.xxlarge-14,
  .grid-y>.xxlarge-13,
  .grid-y>.xxlarge-12,
  .grid-y>.xxlarge-11,
  .grid-y>.xxlarge-10,
  .grid-y>.xxlarge-9,
  .grid-y>.xxlarge-8,
  .grid-y>.xxlarge-7,
  .grid-y>.xxlarge-6,
  .grid-y>.xxlarge-5,
  .grid-y>.xxlarge-4,
  .grid-y>.xxlarge-3,
  .grid-y>.xxlarge-2,
  .grid-y>.xxlarge-1,
  .grid-y>.xxlarge-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .grid-y>.xxlarge-shrink {
    height: auto
  }

  .grid-y>.xxlarge-1 {
    height: 4.1666666667%
  }

  .grid-y>.xxlarge-2 {
    height: 8.3333333333%
  }

  .grid-y>.xxlarge-3 {
    height: 12.5%
  }

  .grid-y>.xxlarge-4 {
    height: 16.6666666667%
  }

  .grid-y>.xxlarge-5 {
    height: 20.8333333333%
  }

  .grid-y>.xxlarge-6 {
    height: 25%
  }

  .grid-y>.xxlarge-7 {
    height: 29.1666666667%
  }

  .grid-y>.xxlarge-8 {
    height: 33.3333333333%
  }

  .grid-y>.xxlarge-9 {
    height: 37.5%
  }

  .grid-y>.xxlarge-10 {
    height: 41.6666666667%
  }

  .grid-y>.xxlarge-11 {
    height: 45.8333333333%
  }

  .grid-y>.xxlarge-12 {
    height: 50%
  }

  .grid-y>.xxlarge-13 {
    height: 54.1666666667%
  }

  .grid-y>.xxlarge-14 {
    height: 58.3333333333%
  }

  .grid-y>.xxlarge-15 {
    height: 62.5%
  }

  .grid-y>.xxlarge-16 {
    height: 66.6666666667%
  }

  .grid-y>.xxlarge-17 {
    height: 70.8333333333%
  }

  .grid-y>.xxlarge-18 {
    height: 75%
  }

  .grid-y>.xxlarge-19 {
    height: 79.1666666667%
  }

  .grid-y>.xxlarge-20 {
    height: 83.3333333333%
  }

  .grid-y>.xxlarge-21 {
    height: 87.5%
  }

  .grid-y>.xxlarge-22 {
    height: 91.6666666667%
  }

  .grid-y>.xxlarge-23 {
    height: 95.8333333333%
  }

  .grid-y>.xxlarge-24 {
    height: 100%
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.7142857143rem;
  margin-bottom: -0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.7142857143rem;
    margin-bottom: -0.7142857143rem
  }
}

.grid-padding-y>.cell {
  padding-top: 0.7142857143rem;
  padding-bottom: 0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-padding-y>.cell {
    padding-top: 0.7142857143rem;
    padding-bottom: 0.7142857143rem
  }
}

.grid-margin-y {
  margin-top: -0.7142857143rem;
  margin-bottom: -0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.7142857143rem;
    margin-bottom: -0.7142857143rem
  }
}

.grid-margin-y>.cell {
  height: calc(100% - 1.4285714286rem);
  margin-top: 0.7142857143rem;
  margin-bottom: 0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-y>.cell {
    height: calc(100% - 1.4285714286rem);
    margin-top: 0.7142857143rem;
    margin-bottom: 0.7142857143rem
  }
}

.grid-margin-y>.auto {
  height: auto
}

.grid-margin-y>.shrink {
  height: auto
}

.grid-margin-y>.small-1 {
  height: calc(4.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-2 {
  height: calc(8.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-3 {
  height: calc(12.5% - 1.4285714286rem)
}

.grid-margin-y>.small-4 {
  height: calc(16.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-5 {
  height: calc(20.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-6 {
  height: calc(25% - 1.4285714286rem)
}

.grid-margin-y>.small-7 {
  height: calc(29.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-8 {
  height: calc(33.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-9 {
  height: calc(37.5% - 1.4285714286rem)
}

.grid-margin-y>.small-10 {
  height: calc(41.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-11 {
  height: calc(45.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-12 {
  height: calc(50% - 1.4285714286rem)
}

.grid-margin-y>.small-13 {
  height: calc(54.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-14 {
  height: calc(58.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-15 {
  height: calc(62.5% - 1.4285714286rem)
}

.grid-margin-y>.small-16 {
  height: calc(66.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-17 {
  height: calc(70.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-18 {
  height: calc(75% - 1.4285714286rem)
}

.grid-margin-y>.small-19 {
  height: calc(79.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-20 {
  height: calc(83.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-21 {
  height: calc(87.5% - 1.4285714286rem)
}

.grid-margin-y>.small-22 {
  height: calc(91.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-23 {
  height: calc(95.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-24 {
  height: calc(100% - 1.4285714286rem)
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-y>.auto {
    height: auto
  }

  .grid-margin-y>.shrink {
    height: auto
  }

  .grid-margin-y>.small-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.small-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.small-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.small-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-24 {
    height: calc(100% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-auto {
    height: auto
  }

  .grid-margin-y>.medium-shrink {
    height: auto
  }

  .grid-margin-y>.medium-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-margin-y>.large-auto {
    height: auto
  }

  .grid-margin-y>.large-shrink {
    height: auto
  }

  .grid-margin-y>.large-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.large-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.large-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.large-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-y>.xlarge-auto {
    height: auto
  }

  .grid-margin-y>.xlarge-shrink {
    height: auto
  }

  .grid-margin-y>.xlarge-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

@media screen and (min-width: 84.375em) {
  .grid-margin-y>.xxlarge-auto {
    height: auto
  }

  .grid-margin-y>.xxlarge-shrink {
    height: auto
  }

  .grid-margin-y>.xxlarge-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100vw
}

.cell .grid-frame {
  width: 100%
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar
}

.cell-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%
}

.cell-block-container>.grid-x {
  max-height: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

@media print,
screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw
  }

  .cell .medium-grid-frame {
    width: 100%
  }

  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }

  .medium-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%
  }

  .medium-cell-block-container>.grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }

  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }
}

@media print,
screen and (min-width: 60em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw
  }

  .cell .large-grid-frame {
    width: 100%
  }

  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }

  .large-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%
  }

  .large-cell-block-container>.grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }

  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }
}

@media screen and (min-width: 75em) {
  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw
  }

  .cell .xlarge-grid-frame {
    width: 100%
  }

  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }

  .xlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%
  }

  .xlarge-cell-block-container>.grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }

  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw
  }

  .cell .xxlarge-grid-frame {
    width: 100%
  }

  .xxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }

  .xxlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%
  }

  .xxlarge-cell-block-container>.grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }

  .xxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
  }
}

.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100vh;
  width: auto
}

@media print,
screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
    width: auto
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
    width: auto
  }
}

@media screen and (min-width: 75em) {
  .grid-y.xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
    width: auto
  }
}

@media screen and (min-width: 84.375em) {
  .grid-y.xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
    width: auto
  }
}

.cell .grid-y.grid-frame {
  height: 100%
}

@media print,
screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%
  }
}

@media print,
screen and (min-width: 60em) {
  .cell .grid-y.large-grid-frame {
    height: 100%
  }
}

@media screen and (min-width: 75em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%
  }
}

@media screen and (min-width: 84.375em) {
  .cell .grid-y.xxlarge-grid-frame {
    height: 100%
  }
}

.grid-margin-y {
  margin-top: -0.7142857143rem;
  margin-bottom: -0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.7142857143rem;
    margin-bottom: -0.7142857143rem
  }
}

.grid-margin-y>.cell {
  height: calc(100% - 1.4285714286rem);
  margin-top: 0.7142857143rem;
  margin-bottom: 0.7142857143rem
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-y>.cell {
    height: calc(100% - 1.4285714286rem);
    margin-top: 0.7142857143rem;
    margin-bottom: 0.7142857143rem
  }
}

.grid-margin-y>.auto {
  height: auto
}

.grid-margin-y>.shrink {
  height: auto
}

.grid-margin-y>.small-1 {
  height: calc(4.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-2 {
  height: calc(8.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-3 {
  height: calc(12.5% - 1.4285714286rem)
}

.grid-margin-y>.small-4 {
  height: calc(16.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-5 {
  height: calc(20.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-6 {
  height: calc(25% - 1.4285714286rem)
}

.grid-margin-y>.small-7 {
  height: calc(29.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-8 {
  height: calc(33.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-9 {
  height: calc(37.5% - 1.4285714286rem)
}

.grid-margin-y>.small-10 {
  height: calc(41.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-11 {
  height: calc(45.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-12 {
  height: calc(50% - 1.4285714286rem)
}

.grid-margin-y>.small-13 {
  height: calc(54.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-14 {
  height: calc(58.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-15 {
  height: calc(62.5% - 1.4285714286rem)
}

.grid-margin-y>.small-16 {
  height: calc(66.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-17 {
  height: calc(70.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-18 {
  height: calc(75% - 1.4285714286rem)
}

.grid-margin-y>.small-19 {
  height: calc(79.1666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-20 {
  height: calc(83.3333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-21 {
  height: calc(87.5% - 1.4285714286rem)
}

.grid-margin-y>.small-22 {
  height: calc(91.6666666667% - 1.4285714286rem)
}

.grid-margin-y>.small-23 {
  height: calc(95.8333333333% - 1.4285714286rem)
}

.grid-margin-y>.small-24 {
  height: calc(100% - 1.4285714286rem)
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-y>.auto {
    height: auto
  }

  .grid-margin-y>.shrink {
    height: auto
  }

  .grid-margin-y>.small-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.small-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.small-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.small-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.small-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.small-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.small-24 {
    height: calc(100% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-auto {
    height: auto
  }

  .grid-margin-y>.medium-shrink {
    height: auto
  }

  .grid-margin-y>.medium-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.medium-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-margin-y>.large-auto {
    height: auto
  }

  .grid-margin-y>.large-shrink {
    height: auto
  }

  .grid-margin-y>.large-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.large-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.large-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.large-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.large-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.large-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.large-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-y>.xlarge-auto {
    height: auto
  }

  .grid-margin-y>.xlarge-shrink {
    height: auto
  }

  .grid-margin-y>.xlarge-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xlarge-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

@media screen and (min-width: 84.375em) {
  .grid-margin-y>.xxlarge-auto {
    height: auto
  }

  .grid-margin-y>.xxlarge-shrink {
    height: auto
  }

  .grid-margin-y>.xxlarge-1 {
    height: calc(4.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-2 {
    height: calc(8.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-3 {
    height: calc(12.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-4 {
    height: calc(16.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-5 {
    height: calc(20.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-6 {
    height: calc(25% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-7 {
    height: calc(29.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-8 {
    height: calc(33.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-9 {
    height: calc(37.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-10 {
    height: calc(41.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-11 {
    height: calc(45.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-12 {
    height: calc(50% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-13 {
    height: calc(54.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-14 {
    height: calc(58.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-15 {
    height: calc(62.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-16 {
    height: calc(66.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-17 {
    height: calc(70.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-18 {
    height: calc(75% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-19 {
    height: calc(79.1666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-20 {
    height: calc(83.3333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-21 {
    height: calc(87.5% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-22 {
    height: calc(91.6666666667% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-23 {
    height: calc(95.8333333333% - 1.4285714286rem)
  }

  .grid-margin-y>.xxlarge-24 {
    height: calc(100% - 1.4285714286rem)
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.4285714286rem)
}

@media print,
screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.4285714286rem)
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.4285714286rem)
  }
}

@media screen and (min-width: 75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.4285714286rem)
  }
}

@media screen and (min-width: 84.375em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.4285714286rem)
  }
}

@media print,
screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.4285714286rem)
  }
}

@media print,
screen and (min-width: 60em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.4285714286rem)
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 1.4285714286rem)
  }
}

@media screen and (min-width: 84.375em) {
  .grid-margin-y.xxlarge-grid-frame {
    height: calc(100vh + 1.4285714286rem)
  }
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 .25rem 0;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 1.5714285714rem;
  -webkit-transition: background-color .25s ease-out, color .25s ease-out;
  transition: background-color .25s ease-out, color .25s ease-out;
  font-family: inherit;
  font-size: .9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  padding: .85em 1em
}

[data-whatinput=mouse] .button {
  outline: 0
}

.button.tiny {
  font-size: .6rem
}

.button.small {
  font-size: .75rem
}

.button.large {
  font-size: 1.25rem
}

.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0
}

.button,
.button.disabled,
.button[disabled],
.button.disabled:hover,
.button[disabled]:hover,
.button.disabled:focus,
.button[disabled]:focus {
  background-color: #e97924;
  color: #fff
}

.button:hover,
.button:focus {
  background-color: rgb(207.7773858921, 101.5168049793, 20.8726141079);
  color: #fff
}

.button.primary,
.button.primary.disabled,
.button.primary[disabled],
.button.primary.disabled:hover,
.button.primary[disabled]:hover,
.button.primary.disabled:focus,
.button.primary[disabled]:focus {
  background-color: #e97924;
  color: #0e0e0e
}

.button.primary:hover,
.button.primary:focus {
  background-color: rgb(195.555186722, 95.5452282158, 19.644813278);
  color: #0e0e0e
}

.button.secondary,
.button.secondary.disabled,
.button.secondary[disabled],
.button.secondary.disabled:hover,
.button.secondary[disabled]:hover,
.button.secondary.disabled:focus,
.button.secondary[disabled]:focus {
  background-color: #fff;
  color: #0e0e0e
}

.button.secondary:hover,
.button.secondary:focus {
  background-color: #ccc;
  color: #0e0e0e
}

.button.success,
.button.success.disabled,
.button.success[disabled],
.button.success.disabled:hover,
.button.success[disabled]:hover,
.button.success.disabled:focus,
.button.success[disabled]:focus {
  background-color: #f47f26;
  color: #0e0e0e
}

.button.success:hover,
.button.success:focus {
  background-color: rgb(214.7157894737, 98.9473684211, 10.8842105263);
  color: #0e0e0e
}

.button.warning,
.button.warning.disabled,
.button.warning[disabled],
.button.warning.disabled:hover,
.button.warning[disabled]:hover,
.button.warning.disabled:focus,
.button.warning[disabled]:focus {
  background-color: #e97924;
  color: #0e0e0e
}

.button.warning:hover,
.button.warning:focus {
  background-color: rgb(195.555186722, 95.5452282158, 19.644813278);
  color: #0e0e0e
}

.button.alert,
.button.alert.disabled,
.button.alert[disabled],
.button.alert.disabled:hover,
.button.alert[disabled]:hover,
.button.alert.disabled:focus,
.button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #fff
}

.button.alert:hover,
.button.alert:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #fff
}

.button.hollow,
.button.hollow:hover,
.button.hollow:focus,
.button.hollow.disabled,
.button.hollow.disabled:hover,
.button.hollow.disabled:focus,
.button.hollow[disabled],
.button.hollow[disabled]:hover,
.button.hollow[disabled]:focus {
  background-color: rgba(0, 0, 0, 0)
}

.button.hollow,
.button.hollow.disabled,
.button.hollow[disabled],
.button.hollow.disabled:hover,
.button.hollow[disabled]:hover,
.button.hollow.disabled:focus,
.button.hollow[disabled]:focus {
  border: 1px solid #e97924;
  color: #e97924
}

.button.hollow:hover,
.button.hollow:focus {
  border-color: rgb(122.2219917012, 59.7157676349, 12.2780082988);
  color: rgb(122.2219917012, 59.7157676349, 12.2780082988)
}

.button.hollow.primary,
.button.hollow.primary.disabled,
.button.hollow.primary[disabled],
.button.hollow.primary.disabled:hover,
.button.hollow.primary[disabled]:hover,
.button.hollow.primary.disabled:focus,
.button.hollow.primary[disabled]:focus {
  border: 1px solid #e97924;
  color: #e97924
}

.button.hollow.primary:hover,
.button.hollow.primary:focus {
  border-color: rgb(122.2219917012, 59.7157676349, 12.2780082988);
  color: rgb(122.2219917012, 59.7157676349, 12.2780082988)
}

.button.hollow.secondary,
.button.hollow.secondary.disabled,
.button.hollow.secondary[disabled],
.button.hollow.secondary.disabled:hover,
.button.hollow.secondary[disabled]:hover,
.button.hollow.secondary.disabled:focus,
.button.hollow.secondary[disabled]:focus {
  border: 1px solid #fff;
  color: #fff
}

.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
  border-color: hsl(0, 0%, 50%);
  color: hsl(0, 0%, 50%)
}

.button.hollow.success,
.button.hollow.success.disabled,
.button.hollow.success[disabled],
.button.hollow.success.disabled:hover,
.button.hollow.success[disabled]:hover,
.button.hollow.success.disabled:focus,
.button.hollow.success[disabled]:focus {
  border: 1px solid #f47f26;
  color: #f47f26
}

.button.hollow.success:hover,
.button.hollow.success:focus {
  border-color: rgb(134.1973684211, 61.8421052632, 6.8026315789);
  color: rgb(134.1973684211, 61.8421052632, 6.8026315789)
}

.button.hollow.warning,
.button.hollow.warning.disabled,
.button.hollow.warning[disabled],
.button.hollow.warning.disabled:hover,
.button.hollow.warning[disabled]:hover,
.button.hollow.warning.disabled:focus,
.button.hollow.warning[disabled]:focus {
  border: 1px solid #e97924;
  color: #e97924
}

.button.hollow.warning:hover,
.button.hollow.warning:focus {
  border-color: rgb(122.2219917012, 59.7157676349, 12.2780082988);
  color: rgb(122.2219917012, 59.7157676349, 12.2780082988)
}

.button.hollow.alert,
.button.hollow.alert.disabled,
.button.hollow.alert[disabled],
.button.hollow.alert.disabled:hover,
.button.hollow.alert[disabled]:hover,
.button.hollow.alert.disabled:focus,
.button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37
}

.button.hollow.alert:hover,
.button.hollow.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004)
}

.button.clear,
.button.clear:hover,
.button.clear:focus,
.button.clear.disabled,
.button.clear.disabled:hover,
.button.clear.disabled:focus,
.button.clear[disabled],
.button.clear[disabled]:hover,
.button.clear[disabled]:focus {
  border-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0)
}

.button.clear,
.button.clear.disabled,
.button.clear[disabled],
.button.clear.disabled:hover,
.button.clear[disabled]:hover,
.button.clear.disabled:focus,
.button.clear[disabled]:focus {
  color: #e97924
}

.button.clear:hover,
.button.clear:focus {
  color: rgb(122.2219917012, 59.7157676349, 12.2780082988)
}

.button.clear.primary,
.button.clear.primary.disabled,
.button.clear.primary[disabled],
.button.clear.primary.disabled:hover,
.button.clear.primary[disabled]:hover,
.button.clear.primary.disabled:focus,
.button.clear.primary[disabled]:focus {
  color: #e97924
}

.button.clear.primary:hover,
.button.clear.primary:focus {
  color: rgb(122.2219917012, 59.7157676349, 12.2780082988)
}

.button.clear.secondary,
.button.clear.secondary.disabled,
.button.clear.secondary[disabled],
.button.clear.secondary.disabled:hover,
.button.clear.secondary[disabled]:hover,
.button.clear.secondary.disabled:focus,
.button.clear.secondary[disabled]:focus {
  color: #fff
}

.button.clear.secondary:hover,
.button.clear.secondary:focus {
  color: hsl(0, 0%, 50%)
}

.button.clear.success,
.button.clear.success.disabled,
.button.clear.success[disabled],
.button.clear.success.disabled:hover,
.button.clear.success[disabled]:hover,
.button.clear.success.disabled:focus,
.button.clear.success[disabled]:focus {
  color: #f47f26
}

.button.clear.success:hover,
.button.clear.success:focus {
  color: rgb(134.1973684211, 61.8421052632, 6.8026315789)
}

.button.clear.warning,
.button.clear.warning.disabled,
.button.clear.warning[disabled],
.button.clear.warning.disabled:hover,
.button.clear.warning[disabled]:hover,
.button.clear.warning.disabled:focus,
.button.clear.warning[disabled]:focus {
  color: #e97924
}

.button.clear.warning:hover,
.button.clear.warning:focus {
  color: rgb(122.2219917012, 59.7157676349, 12.2780082988)
}

.button.clear.alert,
.button.clear.alert.disabled,
.button.clear.alert[disabled],
.button.clear.alert.disabled:hover,
.button.clear.alert[disabled]:hover,
.button.clear.alert.disabled:focus,
.button.clear.alert[disabled]:focus {
  color: #cc4b37
}

.button.clear.alert:hover,
.button.clear.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004)
}

.button.disabled,
.button[disabled] {
  opacity: .25;
  cursor: not-allowed
}

.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .4em;
  content: "";
  border-bottom-width: 0;
  border-color: #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  position: relative;
  top: .4em;
  display: inline-block;
  float: right;
  margin-left: 1em
}

.button.dropdown.hollow::after,
.button.dropdown.clear::after {
  border-top-color: #e97924
}

.button.dropdown.hollow.primary::after,
.button.dropdown.clear.primary::after {
  border-top-color: #e97924
}

.button.dropdown.hollow.secondary::after,
.button.dropdown.clear.secondary::after {
  border-top-color: #fff
}

.button.dropdown.hollow.success::after,
.button.dropdown.clear.success::after {
  border-top-color: #f47f26
}

.button.dropdown.hollow.warning::after,
.button.dropdown.clear.warning::after {
  border-top-color: #e97924
}

.button.dropdown.hollow.alert::after,
.button.dropdown.clear.alert::after {
  border-top-color: #cc4b37
}

.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0
}

a.button:hover,
a.button:focus {
  -webkit-text-decoration: none;
  text-decoration: none
}

.close-button {
  position: absolute;
  z-index: 10;
  color: #1f1f1f;
  cursor: pointer
}

[data-whatinput=mouse] .close-button {
  outline: 0
}

.close-button:hover,
.close-button:focus {
  color: #0e0e0e
}

.close-button.small {
  right: .66rem;
  top: .33em;
  font-size: 1.5em;
  line-height: 1
}

.close-button.medium,
.close-button {
  right: 1rem;
  top: .5rem;
  font-size: 2em;
  line-height: 1
}

.label {
  display: inline-block;
  padding: .33333rem .5rem;
  border-radius: 1.5714285714rem;
  font-size: .8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #e97924;
  color: #fff
}

.label.primary {
  background: #e97924;
  color: #0e0e0e
}

.label.secondary {
  background: #fff;
  color: #0e0e0e
}

.label.success {
  background: #f47f26;
  color: #0e0e0e
}

.label.warning {
  background: #e97924;
  color: #0e0e0e
}

.label.alert {
  background: #cc4b37;
  color: #fff
}

.progress {
  height: 1rem;
  margin-bottom: .25rem;
  border-radius: 1.5714285714rem;
  background-color: #cacaca
}

.progress.primary .progress-meter {
  background-color: #e97924
}

.progress.secondary .progress-meter {
  background-color: #fff
}

.progress.success .progress-meter {
  background-color: #f47f26
}

.progress.warning .progress-meter {
  background-color: #e97924
}

.progress.alert .progress-meter {
  background-color: #cc4b37
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #e97924;
  border-radius: 1.5714285714rem
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: .75rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  border-radius: 1.5714285714rem
}

.slider {
  position: relative;
  height: .5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: .5rem;
  background-color: #cacaca;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.slider-fill.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear
}

.slider-handle {
  left: 0;
  z-index: 1;
  cursor: -webkit-grab;
  cursor: grab;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 1.5714285714rem;
  background-color: #e97924;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

[data-whatinput=mouse] .slider-handle {
  outline: 0
}

.slider-handle:hover {
  background-color: rgb(207.7773858921, 101.5168049793, 20.8726141079)
}

.slider-handle.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
  cursor: -webkit-grabbing;
  cursor: grabbing
}

.slider.disabled,
.slider[disabled] {
  opacity: .25;
  cursor: not-allowed
}

.slider.vertical {
  display: inline-block;
  width: .5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1)
}

.slider.vertical .slider-fill {
  top: 0;
  width: .5rem;
  max-height: 100%
}

.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.switch {
  position: relative;
  margin-bottom: .25rem;
  outline: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 2rem
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 1.5714285714rem;
  background: #cacaca;
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer
}

input+.switch-paddle {
  margin: 0
}

.switch-paddle::after {
  position: absolute;
  top: .25rem;
  left: .25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border-radius: 1.5714285714rem;
  background: #fff;
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
  content: ""
}

input:checked~.switch-paddle {
  background: #e97924
}

input:checked~.switch-paddle::after {
  left: 2.25rem
}

input:focus-visible~.switch-paddle {
  background: rgb(181.8, 181.8, 181.8)
}

input:focus-visible~.switch-paddle::after {
  background: #fff
}

input:checked:focus-visible~.switch-paddle {
  background: rgb(207.7773858921, 101.5168049793, 20.8726141079)
}

input:disabled~.switch-paddle {
  cursor: not-allowed;
  opacity: .5
}

[data-whatinput=mouse] input:focus~.switch-paddle {
  outline: 0
}

.switch-inactive,
.switch-active {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.switch-active {
  left: 8%;
  display: none
}

input:checked+label>.switch-active {
  display: block
}

.switch-inactive {
  right: 15%
}

input:checked+label>.switch-inactive {
  display: none
}

.switch.tiny {
  height: 1.5rem
}

.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: .7142857143rem
}

.switch.tiny .switch-paddle::after {
  top: .25rem;
  left: .25rem;
  width: 1rem;
  height: 1rem
}

.switch.tiny input:checked~.switch-paddle::after {
  left: 1.75rem
}

.switch.small {
  height: 1.75rem
}

.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: .8571428571rem
}

.switch.small .switch-paddle::after {
  top: .25rem;
  left: .25rem;
  width: 1.25rem;
  height: 1.25rem
}

.switch.small input:checked~.switch-paddle::after {
  left: 2rem
}

.switch.large {
  height: 2.5rem
}

.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1.1428571429rem
}

.switch.large .switch-paddle::after {
  top: .25rem;
  left: .25rem;
  width: 2rem;
  height: 2rem
}

.switch.large input:checked~.switch-paddle::after {
  left: 2.75rem
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: .25rem;
  border-radius: 1.5714285714rem
}

thead,
tbody,
tfoot {
  border: 1px solid hsl(0, 0%, 95%);
  background-color: #fff
}

caption {
  padding: .5714285714rem .7142857143rem .7142857143rem;
  font-weight: 700
}

thead {
  background: hsl(0, 0%, 97.5%);
  color: #e6e6e6
}

tfoot {
  background: hsl(0, 0%, 95%);
  color: #e6e6e6
}

thead tr,
tfoot tr {
  background: rgba(0, 0, 0, 0)
}

thead th,
thead td,
tfoot th,
tfoot td {
  padding: .5714285714rem .7142857143rem .7142857143rem;
  font-weight: 700;
  text-align: left
}

tbody th,
tbody td {
  padding: .5714285714rem .7142857143rem .7142857143rem
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: hsl(0, 0%, 95%)
}

table.unstriped tbody {
  background-color: #fff
}

table.unstriped tbody tr {
  border-bottom: 1px solid hsl(0, 0%, 95%);
  background-color: #fff
}

@media print,
screen and (max-width: 59.99875em) {
  table.stack thead {
    display: none
  }

  table.stack tfoot {
    display: none
  }

  table.stack tr,
  table.stack th,
  table.stack td {
    display: block
  }

  table.stack td {
    border-top: 0
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto
}

table.hover thead tr:hover {
  background-color: hsl(0, 0%, 95.5%)
}

table.hover tfoot tr:hover {
  background-color: hsl(0, 0%, 93%)
}

table.hover tbody tr:hover {
  background-color: hsl(0, 0%, 98%)
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: hsl(0, 0%, 93%)
}

.table-scroll {
  overflow-x: auto
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: .3em;
  border-radius: 50%;
  font-size: .6rem;
  text-align: center;
  background: #e97924;
  color: #fff
}

.badge.primary {
  background: #e97924;
  color: #0e0e0e
}

.badge.secondary {
  background: #fff;
  color: #0e0e0e
}

.badge.success {
  background: #f47f26;
  color: #0e0e0e
}

.badge.warning {
  background: #e97924;
  color: #0e0e0e
}

.badge.alert {
  background: #cc4b37;
  color: #fff
}

.breadcrumbs {
  margin: 0 0 .25rem 0;
  list-style: none
}

.breadcrumbs::before,
.breadcrumbs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.breadcrumbs::after {
  clear: both
}

.breadcrumbs li {
  float: left;
  font-size: .7857142857rem;
  color: #0e0e0e;
  cursor: default;
  text-transform: uppercase
}

.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 .75rem;
  opacity: 1;
  content: "/";
  color: #cacaca
}

.breadcrumbs a {
  color: #e97924
}

.breadcrumbs a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed
}

.callout {
  background-color: #fff;
  color: #0e0e0e;
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(14, 14, 14, .25);
  border-radius: 1.5714285714rem
}

.callout>:first-child {
  margin-top: 0
}

.callout>:last-child {
  margin-bottom: 0
}

.callout.primary {
  background-color: rgb(251.7, 234.9, 222.15);
  color: #0e0e0e
}

.callout.secondary {
  background-color: #fff;
  color: #0e0e0e
}

.callout.success {
  background-color: rgb(253.35, 235.8, 222.45);
  color: #0e0e0e
}

.callout.warning {
  background-color: rgb(251.7, 234.9, 222.15);
  color: #0e0e0e
}

.callout.alert {
  background-color: rgb(247.35, 228, 225);
  color: #0e0e0e
}

.callout.small {
  padding-top: .5rem;
  padding-right: .5rem;
  padding-bottom: .5rem;
  padding-left: .5rem
}

.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: .25rem;
  border: 1px solid #e6e6e6;
  border-radius: 1.5714285714rem;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  color: #e6e6e6
}

.card>:last-child {
  margin-bottom: 0
}

.card-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: .25rem;
  background: #e6e6e6
}

.card-divider>:last-child {
  margin-bottom: 0
}

.card-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: .25rem
}

.card-section>:last-child {
  margin-bottom: 0
}

.card-image {
  min-height: 1px
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 1.5714285714rem;
  background-color: #0e0e0e;
  font-size: 1rem
}

.dropdown-pane.is-opening {
  display: block
}

.dropdown-pane.is-open {
  display: block;
  visibility: visible
}

.dropdown-pane.tiny {
  width: 100px
}

.dropdown-pane.small {
  width: 200px
}

.dropdown-pane.large {
  width: 400px
}

.pagination {
  margin-left: 0;
  margin-bottom: .25rem
}

.pagination::before,
.pagination::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.pagination::after {
  clear: both
}

.pagination li {
  margin-right: .0714285714rem;
  border-radius: 1.5714285714rem;
  font-size: 1rem;
  display: none
}

.pagination li:last-child,
.pagination li:first-child {
  display: inline-block
}

@media print,
screen and (min-width: 40em) {
  .pagination li {
    display: inline-block
  }
}

.pagination a,
.pagination button {
  display: block;
  padding: .2142857143rem .7142857143rem;
  border-radius: 1.5714285714rem;
  color: #0e0e0e
}

.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6
}

.pagination .current {
  padding: .2142857143rem .7142857143rem;
  background: #e97924;
  color: #fff;
  cursor: default
}

.pagination .disabled {
  padding: .2142857143rem .7142857143rem;
  color: #cacaca;
  cursor: not-allowed
}

.pagination .disabled:hover {
  background: rgba(0, 0, 0, 0)
}

.pagination .ellipsis::after {
  padding: .2142857143rem .7142857143rem;
  content: "…";
  color: #0e0e0e
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: .5rem;
  content: "«"
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: .5rem;
  content: "»"
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #1f1f1f;
  font-weight: 700;
  cursor: inherit
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 14.2857142857rem;
  padding: .75rem;
  border-radius: 1.5714285714rem;
  background-color: #e6e6e6;
  font-size: .8571428571rem;
  color: #0e0e0e
}

.tooltip::before {
  position: absolute
}

.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .75rem;
  content: "";
  border-top-width: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e6e6e6;
  bottom: 100%
}

.tooltip.bottom.align-center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .75rem;
  content: "";
  border-bottom-width: 0;
  border-color: #e6e6e6 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  top: 100%;
  bottom: auto
}

.tooltip.top.align-center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .75rem;
  content: "";
  border-right-width: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e6e6e6;
  left: 100%
}

.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .75rem;
  content: "";
  border-left-width: 0;
  border-color: rgba(0, 0, 0, 0) #e6e6e6 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  right: 100%;
  left: auto
}

.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.tooltip.align-top::before {
  bottom: auto;
  top: 10%
}

.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto
}

.tooltip.align-left::before {
  left: 10%;
  right: auto
}

.tooltip.align-right::before {
  left: auto;
  right: 10%
}

.accordion {
  margin-left: 0;
  background: #fff;
  list-style-type: none
}

.accordion[disabled] .accordion-title {
  cursor: not-allowed
}

.accordion-item:first-child>:first-child {
  border-radius: 1.5714285714rem 1.5714285714rem 0 0
}

.accordion-item:last-child>:last-child {
  border-radius: 0 0 1.5714285714rem 1.5714285714rem
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: .8571428571rem;
  line-height: 1;
  color: #e97924
}

:last-child:not(.is-active)>.accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 1.5714285714rem 1.5714285714rem
}

.accordion-title:hover,
.accordion-title:focus {
  background-color: #e6e6e6
}

.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+"
}

.is-active>.accordion-title::before {
  content: "–"
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fff;
  color: #e6e6e6
}

:last-child>.accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6
}

.media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .25rem;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.media-object img {
  max-width: none
}

@media print,
screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.media-object-section {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto
}

.media-object-section:first-child {
  padding-right: .25rem
}

.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: .25rem
}

.media-object-section>:last-child {
  margin-bottom: 0
}

@media print,
screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: .25rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%
  }

  .stack-for-small .media-object-section img {
    width: 100%
  }
}

.media-object-section.main-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1.1428571429rem;
  padding-bottom: 75%;
  overflow: hidden
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fff;
  list-style-type: none
}

.tabs::before,
.tabs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.tabs::after {
  clear: both
}

.tabs.vertical>li {
  display: block;
  float: none;
  width: auto
}

.tabs.simple>li>a {
  padding: 0
}

.tabs.simple>li>a:hover {
  background: rgba(0, 0, 0, 0)
}

.tabs.primary {
  background: #e97924
}

.tabs.primary>li>a {
  color: #0e0e0e
}

.tabs.primary>li>a:hover,
.tabs.primary>li>a:focus {
  background: rgb(231.7721991701, 113.5215767635, 23.7778008299)
}

.tabs-title {
  float: left
}

.tabs-title>a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: .8571428571rem;
  line-height: 1;
  color: #e97924
}

[data-whatinput=mouse] .tabs-title>a {
  outline: 0
}

.tabs-title>a:hover {
  background: #fff;
  color: rgb(210.2218257261, 102.711120332, 21.1181742739)
}

.tabs-title>a:focus,
.tabs-title>a[aria-selected=true] {
  background: #e6e6e6;
  color: #e97924
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fff;
  color: #e6e6e6;
  -webkit-transition: all .5s ease;
  transition: all .5s ease
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0
}

.tabs-panel {
  display: none;
  padding: 1rem
}

.tabs-panel.is-active {
  display: block
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: .25rem;
  border: 4px solid #fff;
  border-radius: 1.5714285714rem;
  -webkit-box-shadow: 0 0 0 1px rgba(14, 14, 14, .2);
  box-shadow: 0 0 0 1px rgba(14, 14, 14, .2);
  line-height: 0
}

a.thumbnail {
  -webkit-transition: -webkit-box-shadow 200ms ease-out;
  transition: -webkit-box-shadow 200ms ease-out;
  transition: box-shadow 200ms ease-out;
  transition: box-shadow 200ms ease-out, -webkit-box-shadow 200ms ease-out
}

a.thumbnail:hover,
a.thumbnail:focus {
  -webkit-box-shadow: 0 0 6px 1px rgba(233, 121, 36, .5);
  box-shadow: 0 0 6px 1px rgba(233, 121, 36, .5)
}

a.thumbnail image {
  -webkit-box-shadow: none;
  box-shadow: none
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

[data-whatinput=mouse] .menu li {
  outline: 0
}

.menu a,
.menu .button {
  line-height: 1;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: block;
  padding: .7rem 1rem
}

.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0
}

.menu input {
  display: inline-block
}

.menu,
.menu.horizontal {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

.menu.vertical {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg,
.menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
  text-align: left
}

.menu.expanded li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px
}

.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg,
.menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
  text-align: left
}

.menu.simple {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.menu.simple li+li {
  margin-left: 1rem
}

.menu.simple a {
  padding: 0
}

@media print,
screen and (min-width: 40em) {
  .menu.medium-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .menu.medium-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .menu.medium-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }

  .menu.medium-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }
}

@media print,
screen and (min-width: 60em) {
  .menu.large-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .menu.large-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .menu.large-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }

  .menu.large-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }
}

@media screen and (min-width: 75em) {
  .menu.xlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .menu.xlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .menu.xlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }

  .menu.xlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }
}

@media screen and (min-width: 84.375em) {
  .menu.xxlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .menu.xxlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .menu.xxlarge-expanded li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }

  .menu.xxlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
  }
}

.menu.nested {
  margin-right: 0;
  margin-left: 1rem
}

.menu.icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.menu.icon-top a,
.menu.icon-right a,
.menu.icon-bottom a,
.menu.icon-left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.menu.icon-left li a,
.menu.nested.icon-left li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap
}

.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg,
.menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: .25rem
}

.menu.icon-right li a,
.menu.nested.icon-right li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap
}

.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg,
.menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: .25rem
}

.menu.icon-top li a,
.menu.nested.icon-top li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap
}

.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg,
.menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: .25rem;
  text-align: center
}

.menu.icon-bottom li a,
.menu.nested.icon-bottom li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap
}

.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg,
.menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: .25rem;
  text-align: center
}

.menu .is-active>a {
  background: #e97924;
  color: #0e0e0e
}

.menu .active>a {
  background: #e97924;
  color: #0e0e0e
}

.menu.align-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.menu.align-right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.menu.align-right li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.menu.align-right.vertical li {
  display: block;
  text-align: right
}

.menu.align-right.vertical li .submenu li {
  text-align: right
}

.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg,
.menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
  text-align: right
}

.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0
}

.menu.align-center li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.menu.align-center li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.menu .menu-text {
  padding: .7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit
}

.menu-centered>.menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.menu-centered>.menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.menu-centered>.menu li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.no-js [data-responsive-menu] ul {
  display: none
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer
}

.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
  box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
  content: ""
}

.menu-icon:hover::after {
  background: #cacaca;
  -webkit-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer
}

.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0e0e0e;
  -webkit-box-shadow: 0 7px 0 #0e0e0e, 0 14px 0 #0e0e0e;
  box-shadow: 0 7px 0 #0e0e0e, 0 14px 0 #0e0e0e;
  content: ""
}

.menu-icon.dark:hover::after {
  background: #1f1f1f;
  -webkit-box-shadow: 0 7px 0 #1f1f1f, 0 14px 0 #1f1f1f;
  box-shadow: 0 7px 0 #1f1f1f, 0 14px 0 #1f1f1f
}

.accordion-menu li {
  width: 100%
}

.accordion-menu a {
  padding: .7rem 1rem
}

.accordion-menu .is-accordion-submenu a {
  padding: .7rem 1rem
}

.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem
}

.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a {
  position: relative
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem
}

.accordion-menu.align-left .is-accordion-submenu-parent>a::after {
  right: 1rem;
  left: auto
}

.accordion-menu.align-right .is-accordion-submenu-parent>a::after {
  right: auto;
  left: 1rem
}

.accordion-menu .is-accordion-submenu-parent[aria-expanded=true]>a::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

.is-accordion-submenu-parent {
  position: relative
}

.has-submenu-toggle>a {
  margin-right: 40px
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer
}

.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  top: 0;
  bottom: 0;
  margin: auto
}

.submenu-toggle[aria-expanded=true]::after {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important
}

.is-drilldown {
  position: relative;
  overflow: hidden
}

.is-drilldown li {
  display: block
}

.is-drilldown.animate-height {
  -webkit-transition: height .5s;
  transition: height .5s
}

.drilldown a {
  padding: .7rem 1rem;
  background: #fff
}

.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fff;
  -webkit-transition: -webkit-transform .15s linear;
  transition: -webkit-transform .15s linear;
  transition: transform .15s linear;
  transition: transform .15s linear, -webkit-transform .15s linear
}

.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%)
}

.drilldown .is-drilldown-submenu.is-closing {
  -webkit-transform: translateX(100%);
  transform: translateX(100%)
}

.drilldown .is-drilldown-submenu a {
  padding: .7rem 1rem
}

.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0
}

.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%
}

.drilldown .is-drilldown-submenu-parent>a {
  position: relative
}

.drilldown .is-drilldown-submenu-parent>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem
}

.drilldown.align-left .is-drilldown-submenu-parent>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924;
  right: 1rem;
  left: auto
}

.drilldown.align-right .is-drilldown-submenu-parent>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  right: auto;
  left: 1rem
}

.drilldown .js-drilldown-back>a::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  display: inline-block;
  vertical-align: middle;
  margin-right: .75rem
}

.dropdown.menu>li.opens-left>.is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto
}

.dropdown.menu>li.opens-right>.is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0
}

.dropdown.menu>li.is-dropdown-submenu-parent>a {
  position: relative;
  padding-right: 1.5rem
}

.dropdown.menu>li.is-dropdown-submenu-parent>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  right: 5px;
  left: auto;
  margin-top: -3px
}

[data-whatinput=mouse] .dropdown.menu a {
  outline: 0
}

.dropdown.menu>li>a {
  padding: .7rem 1rem
}

.dropdown.menu>li.is-active>a {
  background: rgba(0, 0, 0, 0);
  color: #e97924
}

.no-js .dropdown.menu ul {
  display: none
}

.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0
}

.dropdown.menu.vertical>li .is-dropdown-submenu {
  top: 0
}

.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto
}

.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu {
  right: auto;
  left: 100%
}

.dropdown.menu.vertical>li>a::after {
  right: 14px
}

.dropdown.menu.vertical>li.opens-left>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  right: auto;
  left: 5px
}

.dropdown.menu.vertical>li.opens-right>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924
}

@media print,
screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto
  }

  .dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0
  }

  .dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a {
    position: relative;
    padding-right: 1.5rem
  }

  .dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: 5px;
    left: auto;
    margin-top: -3px
  }

  .dropdown.menu.medium-vertical>li .is-dropdown-submenu {
    top: 0
  }

  .dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto
  }

  .dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu {
    right: auto;
    left: 100%
  }

  .dropdown.menu.medium-vertical>li>a::after {
    right: 14px
  }

  .dropdown.menu.medium-vertical>li.opens-left>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: auto;
    left: 5px
  }

  .dropdown.menu.medium-vertical>li.opens-right>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924
  }
}

@media print,
screen and (min-width: 60em) {
  .dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto
  }

  .dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0
  }

  .dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a {
    position: relative;
    padding-right: 1.5rem
  }

  .dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: 5px;
    left: auto;
    margin-top: -3px
  }

  .dropdown.menu.large-vertical>li .is-dropdown-submenu {
    top: 0
  }

  .dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto
  }

  .dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu {
    right: auto;
    left: 100%
  }

  .dropdown.menu.large-vertical>li>a::after {
    right: 14px
  }

  .dropdown.menu.large-vertical>li.opens-left>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: auto;
    left: 5px
  }

  .dropdown.menu.large-vertical>li.opens-right>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924
  }
}

@media screen and (min-width: 75em) {
  .dropdown.menu.xlarge-horizontal>li.opens-left>.is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto
  }

  .dropdown.menu.xlarge-horizontal>li.opens-right>.is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0
  }

  .dropdown.menu.xlarge-horizontal>li.is-dropdown-submenu-parent>a {
    position: relative;
    padding-right: 1.5rem
  }

  .dropdown.menu.xlarge-horizontal>li.is-dropdown-submenu-parent>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: 5px;
    left: auto;
    margin-top: -3px
  }

  .dropdown.menu.xlarge-vertical>li .is-dropdown-submenu {
    top: 0
  }

  .dropdown.menu.xlarge-vertical>li.opens-left>.is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto
  }

  .dropdown.menu.xlarge-vertical>li.opens-right>.is-dropdown-submenu {
    right: auto;
    left: 100%
  }

  .dropdown.menu.xlarge-vertical>li>a::after {
    right: 14px
  }

  .dropdown.menu.xlarge-vertical>li.opens-left>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: auto;
    left: 5px
  }

  .dropdown.menu.xlarge-vertical>li.opens-right>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924
  }
}

@media screen and (min-width: 84.375em) {
  .dropdown.menu.xxlarge-horizontal>li.opens-left>.is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto
  }

  .dropdown.menu.xxlarge-horizontal>li.opens-right>.is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0
  }

  .dropdown.menu.xxlarge-horizontal>li.is-dropdown-submenu-parent>a {
    position: relative;
    padding-right: 1.5rem
  }

  .dropdown.menu.xxlarge-horizontal>li.is-dropdown-submenu-parent>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: 5px;
    left: auto;
    margin-top: -3px
  }

  .dropdown.menu.xxlarge-vertical>li .is-dropdown-submenu {
    top: 0
  }

  .dropdown.menu.xxlarge-vertical>li.opens-left>.is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto
  }

  .dropdown.menu.xxlarge-vertical>li.opens-right>.is-dropdown-submenu {
    right: auto;
    left: 100%
  }

  .dropdown.menu.xxlarge-vertical>li>a::after {
    right: 14px
  }

  .dropdown.menu.xxlarge-vertical>li.opens-left>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    right: auto;
    left: 5px
  }

  .dropdown.menu.xxlarge-vertical>li.opens-right>a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924
  }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto
}

.is-dropdown-menu.vertical {
  width: 100px
}

.is-dropdown-menu.vertical.align-right {
  float: right
}

.is-dropdown-submenu-parent {
  position: relative
}

.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px
}

.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu {
  top: 100%;
  left: auto
}

.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu {
  right: 100%;
  left: auto
}

.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu {
  right: auto;
  left: 100%
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fff
}

.dropdown .is-dropdown-submenu a {
  padding: .7rem 1rem
}

.is-dropdown-submenu .is-dropdown-submenu-parent>a::after {
  right: 14px
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: rgba(0, 0, 0, 0) #e97924 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  right: auto;
  left: 5px
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e97924
}

.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px
}

.is-dropdown-submenu>li {
  width: 100%
}

.is-dropdown-submenu.js-dropdown-active {
  display: block
}

.is-off-canvas-open {
  overflow: hidden
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity .5s ease, visibility .5s ease;
  transition: opacity .5s ease, visibility .5s ease;
  background: hsla(0, 0%, 100%, .25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden
}

.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible
}

.js-off-canvas-overlay.is-closable {
  cursor: pointer
}

.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute
}

.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden
}

.off-canvas {
  z-index: 12;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
  position: fixed
}

[data-whatinput=mouse] .off-canvas {
  outline: 0
}

.off-canvas.is-transition-push {
  z-index: 12
}

.off-canvas.is-closed {
  visibility: hidden
}

.off-canvas.is-transition-overlap {
  z-index: 13
}

.off-canvas.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(14, 14, 14, .7);
  box-shadow: 0 0 10px rgba(14, 14, 14, .7)
}

.off-canvas.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

.off-canvas-absolute {
  z-index: 12;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
  position: absolute
}

[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0
}

.off-canvas-absolute.is-transition-push {
  z-index: 12
}

.off-canvas-absolute.is-closed {
  visibility: hidden
}

.off-canvas-absolute.is-transition-overlap {
  z-index: 13
}

.off-canvas-absolute.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(14, 14, 14, .7);
  box-shadow: 0 0 10px rgba(14, 14, 14, .7)
}

.off-canvas-absolute.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px)
}

.off-canvas-content .off-canvas.position-left {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px)
}

.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

.off-canvas-content.is-open-left.has-transition-push {
  -webkit-transform: translateX(250px);
  transform: translateX(250px)
}

.position-left.is-transition-push {
  -webkit-box-shadow: inset -13px 0 20px -13px rgba(14, 14, 14, .25);
  box-shadow: inset -13px 0 20px -13px rgba(14, 14, 14, .25)
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  -webkit-transform: translateX(250px);
  transform: translateX(250px)
}

.off-canvas-content .off-canvas.position-right {
  -webkit-transform: translateX(250px);
  transform: translateX(250px)
}

.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

.off-canvas-content.is-open-right.has-transition-push {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px)
}

.position-right.is-transition-push {
  -webkit-box-shadow: inset 13px 0 20px -13px rgba(14, 14, 14, .25);
  box-shadow: inset 13px 0 20px -13px rgba(14, 14, 14, .25)
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 250px;
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px)
}

.off-canvas-content .off-canvas.position-top {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px)
}

.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

.off-canvas-content.is-open-top.has-transition-push {
  -webkit-transform: translateY(250px);
  transform: translateY(250px)
}

.position-top.is-transition-push {
  -webkit-box-shadow: inset 0 -13px 20px -13px rgba(14, 14, 14, .25);
  box-shadow: inset 0 -13px 20px -13px rgba(14, 14, 14, .25)
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 250px;
  -webkit-transform: translateY(250px);
  transform: translateY(250px)
}

.off-canvas-content .off-canvas.position-bottom {
  -webkit-transform: translateY(250px);
  transform: translateY(250px)
}

.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

.off-canvas-content.is-open-bottom.has-transition-push {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px)
}

.position-bottom.is-transition-push {
  -webkit-box-shadow: inset 0 13px 20px -13px rgba(14, 14, 14, .25);
  box-shadow: inset 0 13px 20px -13px rgba(14, 14, 14, .25)
}

.off-canvas-content {
  -webkit-transform: none;
  transform: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.off-canvas-content.has-transition-overlap,
.off-canvas-content.has-transition-push {
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease
}

.off-canvas-content.has-transition-push {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

.off-canvas-content .off-canvas.is-open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0)
}

@media print,
screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-left.reveal-for-medium .close-button {
    display: none
  }

  .off-canvas-content .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-left {
    margin-left: 250px
  }

  .position-left.reveal-for-medium~.off-canvas-content {
    margin-left: 250px
  }

  .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-right.reveal-for-medium .close-button {
    display: none
  }

  .off-canvas-content .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-right {
    margin-right: 250px
  }

  .position-right.reveal-for-medium~.off-canvas-content {
    margin-right: 250px
  }

  .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-top.reveal-for-medium .close-button {
    display: none
  }

  .off-canvas-content .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-top {
    margin-top: 250px
  }

  .position-top.reveal-for-medium~.off-canvas-content {
    margin-top: 250px
  }

  .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-bottom.reveal-for-medium .close-button {
    display: none
  }

  .off-canvas-content .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px
  }

  .position-bottom.reveal-for-medium~.off-canvas-content {
    margin-bottom: 250px
  }
}

@media print,
screen and (min-width: 60em) {
  .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-left.reveal-for-large .close-button {
    display: none
  }

  .off-canvas-content .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-left {
    margin-left: 250px
  }

  .position-left.reveal-for-large~.off-canvas-content {
    margin-left: 250px
  }

  .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-right.reveal-for-large .close-button {
    display: none
  }

  .off-canvas-content .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-right {
    margin-right: 250px
  }

  .position-right.reveal-for-large~.off-canvas-content {
    margin-right: 250px
  }

  .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-top.reveal-for-large .close-button {
    display: none
  }

  .off-canvas-content .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-top {
    margin-top: 250px
  }

  .position-top.reveal-for-large~.off-canvas-content {
    margin-top: 250px
  }

  .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-bottom.reveal-for-large .close-button {
    display: none
  }

  .off-canvas-content .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px
  }

  .position-bottom.reveal-for-large~.off-canvas-content {
    margin-bottom: 250px
  }
}

@media screen and (min-width: 75em) {
  .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-left.reveal-for-xlarge .close-button {
    display: none
  }

  .off-canvas-content .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-left {
    margin-left: 250px
  }

  .position-left.reveal-for-xlarge~.off-canvas-content {
    margin-left: 250px
  }

  .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-right.reveal-for-xlarge .close-button {
    display: none
  }

  .off-canvas-content .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-right {
    margin-right: 250px
  }

  .position-right.reveal-for-xlarge~.off-canvas-content {
    margin-right: 250px
  }

  .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-top.reveal-for-xlarge .close-button {
    display: none
  }

  .off-canvas-content .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-top {
    margin-top: 250px
  }

  .position-top.reveal-for-xlarge~.off-canvas-content {
    margin-top: 250px
  }

  .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-bottom.reveal-for-xlarge .close-button {
    display: none
  }

  .off-canvas-content .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px
  }

  .position-bottom.reveal-for-xlarge~.off-canvas-content {
    margin-bottom: 250px
  }
}

@media screen and (min-width: 84.375em) {
  .position-left.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-left.reveal-for-xxlarge .close-button {
    display: none
  }

  .off-canvas-content .position-left.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-left {
    margin-left: 250px
  }

  .position-left.reveal-for-xxlarge~.off-canvas-content {
    margin-left: 250px
  }

  .position-right.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-right.reveal-for-xxlarge .close-button {
    display: none
  }

  .off-canvas-content .position-right.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-right {
    margin-right: 250px
  }

  .position-right.reveal-for-xxlarge~.off-canvas-content {
    margin-right: 250px
  }

  .position-top.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-top.reveal-for-xxlarge .close-button {
    display: none
  }

  .off-canvas-content .position-top.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-top {
    margin-top: 250px
  }

  .position-top.reveal-for-xxlarge~.off-canvas-content {
    margin-top: 250px
  }

  .position-bottom.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible
  }

  .position-bottom.reveal-for-xxlarge .close-button {
    display: none
  }

  .off-canvas-content .position-bottom.reveal-for-xxlarge {
    -webkit-transform: none;
    transform: none
  }

  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px
  }

  .position-bottom.reveal-for-xxlarge~.off-canvas-content {
    margin-bottom: 250px
  }
}

@media print,
screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none
  }

  .off-canvas.in-canvas-for-medium.position-left,
  .off-canvas.in-canvas-for-medium.position-right,
  .off-canvas.in-canvas-for-medium.position-top,
  .off-canvas.in-canvas-for-medium.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none
  }

  .off-canvas.in-canvas-for-medium .close-button {
    display: none
  }
}

@media print,
screen and (min-width: 60em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none
  }

  .off-canvas.in-canvas-for-large.position-left,
  .off-canvas.in-canvas-for-large.position-right,
  .off-canvas.in-canvas-for-large.position-top,
  .off-canvas.in-canvas-for-large.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none
  }

  .off-canvas.in-canvas-for-large .close-button {
    display: none
  }
}

@media screen and (min-width: 75em) {
  .off-canvas.in-canvas-for-xlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none
  }

  .off-canvas.in-canvas-for-xlarge.position-left,
  .off-canvas.in-canvas-for-xlarge.position-right,
  .off-canvas.in-canvas-for-xlarge.position-top,
  .off-canvas.in-canvas-for-xlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none
  }

  .off-canvas.in-canvas-for-xlarge .close-button {
    display: none
  }
}

@media screen and (min-width: 84.375em) {
  .off-canvas.in-canvas-for-xxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none
  }

  .off-canvas.in-canvas-for-xxlarge.position-left,
  .off-canvas.in-canvas-for-xxlarge.position-right,
  .off-canvas.in-canvas-for-xxlarge.position-top,
  .off-canvas.in-canvas-for-xxlarge.position-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none
  }

  .off-canvas.in-canvas-for-xxlarge .close-button {
    display: none
  }
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden
}

html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}

html.is-reveal-open body {
  overflow-y: hidden
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(14, 14, 14, .45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.reveal {
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  padding: .25rem;
  border: 1px solid #cacaca;
  border-radius: 1.5714285714rem;
  background-color: #fff
}

[data-whatinput=mouse] .reveal {
  outline: 0
}

@media print,
screen and (min-width: 40em) {
  .reveal {
    min-height: 0
  }
}

.reveal .column {
  min-width: 0
}

.reveal>:last-child {
  margin-bottom: 0
}

@media print,
screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 96.7142857143rem
  }
}

.reveal.collapse {
  padding: 0
}

@media print,
screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 96.7142857143rem
  }
}

@media print,
screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 96.7142857143rem
  }
}

@media print,
screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 96.7142857143rem
  }
}

.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0
}

@media print,
screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0
  }
}

.reveal.without-overlay {
  position: fixed
}

.sticky-container {
  position: relative
}

.sticky {
  position: relative;
  z-index: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%
}

.sticky.is-stuck.is-at-top {
  top: 0
}

.sticky.is-stuck.is-at-bottom {
  bottom: 0
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto
}

.sticky.is-anchored.is-at-bottom {
  bottom: 0
}

.title-bar {
  padding: .5rem;
  background: #0e0e0e;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.title-bar .menu-icon {
  margin-left: .25rem;
  margin-right: .25rem
}

.title-bar-left,
.title-bar-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px
}

.title-bar-right {
  text-align: right
}

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold
}

.top-bar {
  padding: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.top-bar,
.top-bar ul {
  background-color: #e6e6e6
}

.top-bar input {
  max-width: 200px;
  margin-right: 1rem
}

.top-bar .input-group-field {
  width: 100%;
  margin-right: 0
}

.top-bar input.button {
  width: auto
}

.top-bar {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.top-bar .top-bar-left,
.top-bar .top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

@media print,
screen and (min-width: 40em) {
  .top-bar {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }

  .top-bar .top-bar-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: auto
  }

  .top-bar .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-left: auto
  }
}

@media print,
screen and (max-width: 59.99875em) {
  .top-bar.stacked-for-medium {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}

@media print,
screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}

@media print,
screen and (max-width: 84.37375em) {
  .top-bar.stacked-for-xlarge {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}

@media print,
screen and (max-width: 119.99875em) {
  .top-bar.stacked-for-xxlarge {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .top-bar.stacked-for-xxlarge .top-bar-left,
  .top-bar.stacked-for-xxlarge .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}

.top-bar-title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: .5rem 1rem .5rem 0
}

.top-bar-left,
.top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.float-left {
  float: left !important
}

.float-right {
  float: right !important
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto
}

.clearfix::before,
.clearfix::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.clearfix::after {
  clear: both
}

.align-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.align-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.align-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.align-spaced {
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.align-left.vertical.menu>li>a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.align-right.vertical.menu>li>a {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.align-center.vertical.menu>li>a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.align-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

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

.align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

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

.align-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

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

.align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

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

.align-center-middle {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center
}

.small-order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.small-order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2
}

.small-order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3
}

.small-order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4
}

.small-order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5
}

.small-order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6
}

@media print,
screen and (min-width: 40em) {
  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }

  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }

  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
  }

  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
  }
}

@media print,
screen and (min-width: 60em) {
  .large-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .large-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .large-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }

  .large-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }

  .large-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
  }

  .large-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
  }
}

@media screen and (min-width: 75em) {
  .xlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .xlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .xlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }

  .xlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }

  .xlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
  }

  .xlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .xxlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .xxlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }

  .xxlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }

  .xxlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
  }

  .xxlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
  }
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.flex-child-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.flex-child-grow {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto
}

.flex-child-shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto
}

.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

.flex-dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.flex-dir-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse
}

@media print,
screen and (min-width: 40em) {
  .medium-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .medium-flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
  }

  .medium-flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
  }

  .medium-flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
  }

  .medium-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .medium-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .medium-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .medium-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

@media print,
screen and (min-width: 60em) {
  .large-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .large-flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
  }

  .large-flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
  }

  .large-flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
  }

  .large-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .large-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .large-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .large-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

@media screen and (min-width: 75em) {
  .xlarge-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .xlarge-flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
  }

  .xlarge-flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
  }

  .xlarge-flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
  }

  .xlarge-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .xlarge-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .xlarge-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .xlarge-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

@media screen and (min-width: 84.375em) {
  .xxlarge-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .xxlarge-flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
  }

  .xxlarge-flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
  }

  .xxlarge-flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
  }

  .xxlarge-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .xxlarge-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .xxlarge-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .xxlarge-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

.hide {
  display: none !important
}

.invisible {
  visibility: hidden
}

.visible {
  visibility: visible
}

@media print,
screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important
  }
}

@media screen and (max-width: 0em),
screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important
  }
}

@media print,
screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important
  }
}

@media print,
screen and (min-width: 40em)and (max-width: 59.99875em) {
  .hide-for-medium-only {
    display: none !important
  }
}

@media screen and (max-width: 39.99875em),
screen and (min-width: 60em) {
  .show-for-medium-only {
    display: none !important
  }
}

@media print,
screen and (min-width: 60em) {
  .hide-for-large {
    display: none !important
  }
}

@media screen and (max-width: 59.99875em) {
  .show-for-large {
    display: none !important
  }
}

@media print,
screen and (min-width: 60em)and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important
  }
}

@media screen and (max-width: 59.99875em),
screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important
  }
}

@media screen and (min-width: 75em) {
  .hide-for-xlarge {
    display: none !important
  }
}

@media screen and (max-width: 74.99875em) {
  .show-for-xlarge {
    display: none !important
  }
}

@media screen and (min-width: 75em)and (max-width: 84.37375em) {
  .hide-for-xlarge-only {
    display: none !important
  }
}

@media screen and (max-width: 74.99875em),
screen and (min-width: 84.375em) {
  .show-for-xlarge-only {
    display: none !important
  }
}

@media screen and (min-width: 84.375em) {
  .hide-for-xxlarge {
    display: none !important
  }
}

@media screen and (max-width: 84.37375em) {
  .show-for-xxlarge {
    display: none !important
  }
}

@media screen and (min-width: 84.375em)and (max-width: 119.99875em) {
  .hide-for-xxlarge-only {
    display: none !important
  }
}

@media screen and (max-width: 84.37375em),
screen and (min-width: 120em) {
  .show-for-xxlarge-only {
    display: none !important
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important
}

.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important
}

@media screen and (orientation: landscape) {

  .show-for-landscape,
  .hide-for-portrait {
    display: block !important
  }
}

@media screen and (orientation: portrait) {

  .show-for-landscape,
  .hide-for-portrait {
    display: none !important
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important
}

@media screen and (orientation: landscape) {

  .hide-for-landscape,
  .show-for-portrait {
    display: none !important
  }
}

@media screen and (orientation: portrait) {

  .hide-for-landscape,
  .show-for-portrait {
    display: block !important
  }
}

.show-for-dark-mode {
  display: none
}

.hide-for-dark-mode {
  display: block
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important
  }

  .hide-for-dark-mode {
    display: none !important
  }
}

.show-for-ie {
  display: none
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important
  }

  .hide-for-ie {
    display: none !important
  }
}

.show-for-sticky {
  display: none
}

.is-stuck .show-for-sticky {
  display: block
}

.is-stuck .hide-for-sticky {
  display: none
}

.assist__block {
  margin-bottom: .8571428571rem
}

@media print,
screen and (max-width: 59.99875em) {
  .assist {
    margin-bottom: 2.2857142857rem
  }
}

.carousel-services {
  background: #e6e6e6;
  padding-top: 3rem
}

.carousel-services__text {
  margin-bottom: 1.5rem
}

.carousel-services__item {
  display: none
}

.carousel-services__item:first-child {
  display: block
}

.client__img {
  margin-bottom: 1.7142857143rem
}

.event {
  margin-bottom: 1.5rem;
  background: #fff
}

.event__date {
  font-weight: 700;
  margin-bottom: .2857142857rem
}

.event__place {
  color: #9bb3be;
  font-weight: 700
}

.event__block {
  padding: 1.5rem;
  border-radius: 1.5714285714rem;
  background: #fff
}

.event__block_main {
  background: #e6e6e6
}

.manager {
  text-align: center
}

.manager__img {
  width: 10.7142857143rem
}

.manager__text {
  font-size: .9285714286rem;
  font-weight: 700
}

.manager__block {
  font-size: 2rem;
  margin-bottom: 1.7142857143rem
}

.object {
  margin-bottom: 1.7142857143rem
}

.object__img {
  width: 5rem
}

.serve {
  background: #e6e6e6;
  padding-top: 3rem
}

.serve__text {
  margin-bottom: 1.5rem
}

.serve__item {
  display: none
}

.serve__item:first-child {
  display: block
}

.services {
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
  background: #e6e6e6;
  border-radius: 1.5714285714rem;
  margin-bottom: 2.8571428571rem
}

.services__title {
  margin-bottom: .7142857143rem
}

.services__img {
  max-width: 7rem
}

.services__block {
  margin-bottom: 1.5rem
}

.accordion-title {
  font-weight: 700
}

.accordion-item:last-child>a {
  border: .0714285714rem solid #e6e6e6
}

.badge_secondary {
  background: #fff
}

.badge_tel {
  position: absolute;
  left: 1.2857142857rem;
  top: -.2857142857rem
}

.breadcrumbs {
  margin-top: 2.2857142857rem;
  margin-bottom: 2.2857142857rem
}

.breadcrumbs a {
  color: #fff;
  font-size: .8571428571rem
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 1rem
}

.button-group .button {
  margin: 0 .0714285714rem .0714285714rem 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 .9285714286rem;
  border: 0 solid #e97924;
  -webkit-transition: all .25s ease-out, color .25s ease-out;
  transition: all .25s ease-out, color .25s ease-out;
  font-family: inherit;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  padding: 1.2857142857rem 2.2857142857rem 1.2142857143rem;
  border-radius: .2857142857rem;
  background: #e97924;
  font-size: 1.1428571429rem;
  font-weight: 600;
  color: #fff
}

.button:active,
.button:focus,
.button:hover {
  background-color: #c66114
}

.button:disabled {
  background: #6b340b
}

.button:disabled:hover {
  background: #6b340b
}

.button_disabled {
  opacity: .25;
  cursor: not-allowed
}

.button_tally {
  padding: 1.4285714286rem;
  width: 100%;
  margin-bottom: 0
}

.button_form {
  width: auto
}

.button_hollow {
  background-color: rgba(0, 0, 0, 0);
  color: #c66114;
  border: .0714285714rem solid #e97924
}

.button_distinct {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0);
  color: #fff
}

.button_expanded {
  display: block;
  width: 100%;
  padding-left: .5714285714rem;
  padding-right: .5714285714rem;
  margin-right: 0;
  margin-left: 0
}

.button_car-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  background-color: rgba(233, 121, 36, .6509803922);
  padding-right: 10%;
  padding-left: 31%;
  height: 11.2857142857rem;
  font-weight: 700;
  font-size: 2.5714285714rem;
  line-height: 1.22;
  font-style: italic;
  text-transform: uppercase;
  text-align: left
}

.button_car-slider:active,
.button_car-slider:focus,
.button_car-slider:hover {
  background-color: rgba(231, 111, 19, .7882352941)
}

.button_header {
  padding: .9285714286rem 3.2142857143rem;
  text-transform: uppercase;
  margin-bottom: 0
}

.button_search {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-image: url("../images/search.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 5.2142857143rem
}

.button_switch {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: url("../images/switch.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 2.0714285714rem;
  height: 1.1428571429rem;
  margin-left: auto;
  margin-bottom: .3571428571rem
}

.button_switch:active,
.button_switch:focus,
.button_switch:hover {
  background-color: rgba(0, 0, 0, 0);
  opacity: .8
}

.button_action {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.1428571429rem 6.0714285714rem;
  margin-bottom: 0
}

.button_excel {
  width: 2.8571428571rem;
  height: 3.2142857143rem;
  margin-bottom: 0;
  padding: .1428571429rem;
  background: none;
  border: none;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.button_excel img {
  max-height: 100%;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.button_excel:hover,
.button_excel:focus {
  background: #fff
}

.button_excel:hover img,
.button_excel:focus img {
  -webkit-filter: brightness(0) saturate(100%);
  filter: brightness(0) saturate(100%)
}

.button_excel:active {
  background: #fff
}

@media print,
screen and (max-width: 119.99875em) {
  .button_car-slider {
    padding-left: 30%;
    font-size: 2.2857142857rem
  }

  .button_action {
    padding: 1.1428571429rem 2.2857142857rem
  }
}

@media print,
screen and (max-width: 59.99875em) {
  .button {
    height: auto
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .button {
    font-size: 1rem;
    padding: 1.0714285714rem
  }
}

.callout {
  margin-bottom: 1.7142857143rem;
  padding: 1.5rem
}

.callout_st {
  width: 100%
}

.callout_alert {
  background-color: #f7e4e1
}

.callout_dd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%
}

.callout_success {
  background-color: #d7f7f6
}

.callout_light-gray {
  background-color: #e6e6e6;
  background-size: cover;
  background-position: center
}

.callout__unit {
  color: #e6e6e6;
  display: inline-block;
  margin-right: .5714285714rem
}

.callout__tag {
  display: inline-block;
  color: #1f1f1f;
  margin-right: .5714285714rem
}

.callout__link {
  display: inline-block;
  margin-right: .5714285714rem
}

.callout__rss {
  font-size: 1.7142857143rem;
  display: block;
  margin-bottom: 1.4285714286rem
}

.callout__donate {
  color: #cacaca
}

.callout__see {
  margin-left: .2857142857rem;
  color: #1f1f1f
}

.callout__date {
  margin-bottom: 1.5rem;
  color: #f47f26
}

.callout__bill {
  margin-bottom: 1.5rem;
  width: 100%;
  height: 11rem;
  font-weight: 700;
  background: #1f1f1f
}

.callout__report {
  margin-bottom: 1.4285714286rem;
  width: 100%;
  height: 10rem;
  background: #1f1f1f
}

.callout__label {
  margin-bottom: .7142857143rem
}

.callout__dark {
  color: #1f1f1f
}

.callout__include {
  font-style: italic;
  font-size: .7857142857rem
}

.callout__quest {
  color: #1f1f1f;
  margin-left: .2857142857rem
}

.callout__sum {
  font-size: 1.5rem
}

.callout__watch {
  display: inline-block;
  margin-right: .2857142857rem
}

.callout__info {
  margin-bottom: 1.4285714286rem
}

.callout__icon {
  max-height: 1.4285714286rem
}

.callout__strong {
  font-weight: 700
}

.callout__block {
  display: block
}

.close-button {
  outline: none;
  font-size: 3.4285714286rem;
  right: 1.6428571429rem;
  top: .9285714286rem;
  opacity: .25
}

.close-button:hover {
  opacity: .5
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.input-group-field {
  margin: 0;
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0
}

.input-group>:first-child,
.input-group>:first-child.input-group-button>*,
.input-group>:last-child,
.input-group>:last-child.input-group-button>* {
  border-radius: 0
}

.input-group-label {
  padding: 0 1rem;
  border: .0714285714rem solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

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

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0
}

.input-group-button a {
  margin: 0;
  padding-top: .5rem
}

.input-group-button button,
.input-group-button input,
.input-group-button label {
  white-space: nowrap;
  margin: 0
}

.label_success {
  color: #fff;
  background: #f47f26
}

.label_secondary {
  color: #fff;
  background: #fff
}

.label_warning {
  color: #0e0e0e;
  background: #e97924
}

.label_action {
  margin-right: .2857142857rem;
  color: #fff;
  background: #fff
}

.pagination {
  margin-bottom: 1.7142857143rem
}

.pagination .current {
  background: #fff
}

.reveal {
  padding: 4.2857142857rem 9.1428571429rem;
  outline: none;
  border-radius: .3571428571rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 70%;
  text-align: center
}

.reveal_big {
  border-radius: .2857142857rem
}

.reveal__title {
  color: #e97924;
  margin-bottom: 2.3571428571rem
}

.reveal__title_big {
  font-size: 2.5714285714rem;
  font-weight: 700;
  margin-bottom: 2.2142857143rem
}

.reveal__ul {
  margin-bottom: 0;
  margin-left: 0;
  list-style: none
}

.reveal__link {
  color: #0e0e0e;
  font-weight: 500;
  font-size: 1.2857142857rem;
  line-height: 2.7142857143rem
}

.reveal__link:hover {
  opacity: .7
}

.reveal__link__under {
  font-size: 1.1428571429rem;
  font-weight: 400;
  color: #888;
  border-bottom: .0714285714rem solid #888
}

.reveal__link__under:hover {
  color: #000
}

.reveal__link__under_primary {
  font-size: 1.1428571429rem;
  font-weight: 400;
  color: #e97924;
  border-bottom: .0714285714rem solid #e97924
}

.reveal__link__under_primary:hover {
  color: #c66114
}

.reveal__div {
  margin-bottom: 1.4285714286rem
}

.reveal__span {
  display: inline-block;
  font-size: 1.1428571429rem;
  color: #0e0e0e
}

.reveal__field {
  width: 34.6428571429rem
}

.reveal__let {
  padding-top: .8571428571rem
}

.reveal__contact {
  margin-bottom: 2.8571428571rem;
  margin-left: 26%
}

.reveal__contact_margin {
  margin-bottom: 3.2142857143rem
}

.reveal__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.reveal__contact-link:hover .reveal__contact-content {
  color: #e97924
}

.reveal__contact-icon {
  margin-right: .7142857143rem;
  width: 2.5714285714rem
}

.reveal__contact-name {
  font-size: 1rem;
  line-height: 1.2;
  color: #9c9fa3;
  text-align: left
}

.reveal__contact-content {
  font-size: 1.2857142857rem;
  line-height: 1.2;
  color: #0e0e0e;
  text-align: left;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out
}

.reveal__contact-content_line {
  -webkit-text-decoration: line-through;
  text-decoration: line-through
}

.reveal__help {
  font-size: 1.1428571429rem;
  line-height: 1.5;
  color: #0e0e0e;
  text-align: center
}

@media print,
screen and (max-width: 74.99875em) {
  .reveal_big {
    padding-right: 7.1428571429rem;
    padding-left: 7.1428571429rem
  }

  .reveal__menu {
    padding: .7142857143rem 0;
    background: #0e0e0e;
    text-align: left
  }

  .reveal__menu__list {
    margin-top: 1.4285714286rem
  }

  .reveal__menu .button {
    padding: .7142857143rem
  }

  .reveal__menu .close-button {
    color: #e6e6e6
  }
}

@media print,
screen and (max-width: 59.99875em) {
  .reveal {
    padding: 3.5714285714rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 42.8571428571rem
  }

  .reveal__field {
    width: auto;
    width: initial
  }

  .reveal__title_big {
    font-size: 2.1428571429rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .reveal {
    padding: 2.5rem 1.4285714286rem;
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }

  .reveal .close-button {
    top: .8571428571rem;
    right: .5714285714rem
  }

  .reveal__title {
    margin-top: 2.8571428571rem
  }

  .reveal__title_big {
    font-size: 1.7142857143rem
  }

  .reveal__ul {
    text-align: left
  }

  .reveal__span,
  .reveal__link,
  .reveal__link__under,
  .reveal__link__under_primary {
    font-size: 1rem
  }

  .reveal__contact {
    margin-left: 0
  }

  .reveal__contact-content {
    font-size: 1.1428571429rem
  }

  .reveal__contact-name {
    font-size: 1rem
  }

  .reveal__help {
    font-size: 1rem
  }
}

.sticky {
  padding-bottom: .0714285714rem
}

.sticky-container {
  margin-bottom: 1.5rem
}

.tabs {
  border: none;
  background: #0e0e0e;
  list-style-type: none
}

.tabs-content {
  border: none;
  background: #0e0e0e;
  color: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease
}

.tabs-panel {
  padding-left: 0;
  padding-right: 0
}

.tabs-title>a {
  padding: .5714285714rem;
  outline: none;
  border-radius: .2142857143rem;
  margin-right: .2142857143rem
}

.tabs-title>a:focus,
.tabs-title>a:hover,
.tabs-title>a[aria-selected=true] {
  background: #e97924;
  color: #fff
}

.youtube {
  margin-bottom: 1.4285714286rem
}

.youtube__img {
  cursor: pointer;
  position: absolute;
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: .7
}

.youtube__iframe {
  height: 100%;
  width: 100%;
  top: 0;
  border: 0;
  left: 0;
  position: absolute
}

.youtube__main {
  background-color: #000;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer
}

.youtube__button {
  padding: .3571428571rem 2.1428571429rem .3571428571rem 2.5rem;
  color: #fff;
  line-height: 1.3;
  background: rgba(0, 0, 0, .6);
  z-index: 1;
  top: 50%;
  font-size: 3.5714285714rem;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
  cursor: pointer
}

.art {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  list-style-type: none;
  margin-left: 0
}

.art__item_active {
  padding: .7142857143rem 1rem;
  font-weight: 700
}

.art__link {
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
  padding: .7142857143rem 1rem
}

.canv {
  margin-left: .2857142857rem
}

.carousel-main {
  text-align: center;
  background: #e6e6e6;
  margin-bottom: 2.8571428571rem
}

.carousel-main__photo {
  -ms-flex-item-align: center;
  align-self: center
}

.carousel-main__img {
  width: 100%;
  margin-bottom: 1.7142857143rem
}

.carousel-main__item {
  background: center no-repeat;
  background-size: cover;
  display: none;
  padding: 2rem 3rem;
  position: relative
}

.carousel-main__item:first-child {
  display: block
}

.carousel-main__text {
  font-size: 1.0714285714rem;
  margin-bottom: 1.5rem
}

.carousel-main__content {
  min-height: 28.5714285714rem
}

.carousel-main__content_white {
  color: #fff
}

.carousel-main__darken::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .3333333333)
}

@media print,
screen and (max-width: 59.99875em) {
  .carousel-main__content {
    min-height: 21.4285714286rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .carousel-main__img {
    display: none
  }

  .carousel-main__content {
    min-height: 0;
    min-height: initial
  }

  .carousel-main__item {
    padding: 2rem 0
  }
}

.cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0;
  list-style-type: none;
  padding: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
  font-weight: 700
}

.cat_top {
  margin-top: .3571428571rem
}

.cat__link {
  display: block;
  color: #fff;
  position: relative
}

.cat__link:active,
.cat__link:focus,
.cat__link:hover {
  color: #fff
}

.cat__link::after {
  content: " ";
  display: block;
  border-bottom: .1428571429rem solid #e97924;
  width: 0;
  position: absolute;
  left: 0;
  -webkit-transition: width .3s ease;
  transition: width .3s ease
}

.cat__item {
  padding-right: 2.1428571429rem;
  position: relative
}

.cat__item:last-child {
  padding-right: 0
}

.cat__item .cat {
  text-transform: none;
  font-weight: 400;
  display: none;
  position: absolute;
  margin: -.2142857143rem 0 0 -1rem;
  padding: .5rem 0;
  top: 100%;
  left: 0;
  width: 13rem;
  background: #f9f9f9;
  border-bottom: .1428571429rem solid #e97924
}

.cat__item .cat .cat {
  left: 100%;
  top: 0
}

.cat__item .cat__item {
  padding: 0;
  width: 100%
}

.cat__item .cat__item .cat__link {
  display: block;
  padding: .5rem 1rem;
  color: #fff
}

.cat__item .cat__item .cat__link::after {
  display: none
}

.cat__item .cat__item .cat__link:hover {
  color: #fff;
  background: #f2f2f2
}

.cat__item:hover>.cat {
  display: block
}

.cat__item:hover>.cat__link::after {
  width: 100%
}

.cat__item .cat .cat__item:hover>.cat {
  display: block
}

@media print,
screen and (max-width: 74.99875em) {
  .cat_top {
    margin-top: 0
  }

  .cat__item {
    padding-right: 1.0714285714rem;
    padding-top: .3571428571rem;
    padding-bottom: .3571428571rem
  }

  .cat__item .cat .cat__item:hover>.cat {
    display: none
  }
}

@media print,
screen and (max-width: 59.99875em) {
  .cat {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.5rem
  }

  .cat_top {
    margin-top: 0
  }

  .cat__item:hover>.cat {
    display: none
  }

  .cat__item:hover>.cat__link::after {
    width: 0
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .cat__item {
    width: 100%
  }
}

.cities-main-window-list-link {
  width: 50%;
  float: left;
  text-align: left;
  font-size: 1rem;
  line-height: 160%;
  padding-top: .3rem;
  padding-bottom: .3rem;
  padding-right: .7142857143rem
}

.cities {
  display: inline-block;
  margin-bottom: .3571428571rem
}

.cities-main-window-wrapperlist {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2
}

.cities-main-window {
  width: 100%
}

.cities-main-window-inner-search input {
  font-size: 1.2rem;
  color: #0e0e0e;
  width: 100%
}

.cities-main-window-inner {
  position: relative
}

.cities-main-window-inner-title {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #0e0e0e;
  font-weight: 400;
  display: inline-block
}

.cities__select {
  cursor: pointer;
  color: #fff;
  margin-right: .5rem
}

.cities__select_black {
  color: #0e0e0e
}

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

.cities-container {
  display: none;
  z-index: 101;
  text-align: left;
  position: absolute;
  right: 0;
  border-radius: .2rem;
  -webkit-box-shadow: 0 0 .7142857143rem #0e0e0e;
  box-shadow: 0 0 .7142857143rem #0e0e0e;
  top: 3rem;
  width: 35.7142857143rem;
  padding: 2rem;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: auto;
  min-width: 19rem
}

.cities-container__show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.cities-container-list {
  position: relative;
  -webkit-box-shadow: 0 .4rem .6rem rgba(0, 0, 0, .2666666667);
  box-shadow: 0 .4rem .6rem rgba(0, 0, 0, .2666666667)
}

.cities-container-list-link {
  float: left;
  width: 9rem;
  line-height: 2.4rem;
  font-size: 1rem;
  margin-right: 1rem
}

.cities-container-close {
  position: absolute;
  cursor: pointer;
  font-size: 2rem;
  opacity: .6;
  -webkit-transition: all .5s;
  transition: all .5s;
  right: 0;
  top: 0
}

.cities-container-close svg {
  display: block
}

.cities-container-close:hover {
  opacity: 1
}

.cities-container-region {
  display: none;
  z-index: 101;
  text-align: left;
  position: absolute;
  right: 0;
  border-radius: .2rem;
  width: 25rem;
  top: 3rem;
  padding: 2rem;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: auto
}

.cities-container-region-inner-city {
  display: block;
  font-size: 1.4285714286rem;
  margin-bottom: 1.25rem
}

.overlay_visible {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline;
  z-index: 101;
  background: rgba(0, 0, 0, .6)
}

.cities-container-region .button-cities-group {
  margin: 0
}

.cities-main-window .cities-message {
  margin: 0
}

@media print,
screen and (max-width: 59.99875em) {
  .cities-container {
    width: 22.1428571429rem;
    right: auto;
    left: 0
  }

  .cities-container-region {
    left: 0;
    right: auto
  }

  .cities-main-window-list-link {
    width: 100%
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .cities-container-region {
    width: 22.1428571429rem;
    padding-left: .7142857143rem;
    padding-right: .7142857143rem
  }

  .cities__select {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
  }

  .cities__select svg {
    margin-right: .2857142857rem
  }

  .cities__select i {
    width: .8571428571rem;
    height: 1.1428571429rem;
    margin-right: .2857142857rem
  }

  .cities__general {
    position: static
  }
}

.contacts {
  padding-top: .9285714286rem;
  padding-bottom: .5rem;
  background: #0e0bd8;
  font-size: .9285714286rem
}

.contacts__icon {
  margin-right: .2857142857rem;
  font-size: 1.2142857143rem;
  line-height: .75rem
}

.contacts__search {
  color: #fff;
  font-weight: 700
}

.contacts__search:active,
.contacts__search:focus,
.contacts__search:hover {
  color: #cacaca
}

.contacts__block {
  line-height: 1;
  font-size: 1.5714285714rem;
  margin-right: .5714285714rem
}

.contacts__link {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  margin-right: .7142857143rem
}

.contacts__link:active,
.contacts__link:focus,
.contacts__link:hover {
  color: #cacaca
}

.contacts__menu {
  color: #fff;
  cursor: pointer;
  width: 1.0714285714rem;
  height: 1.3571428571rem;
  display: none;
  margin-right: .7142857143rem
}

.contacts__cab {
  padding-bottom: .5rem
}

.contacts__info {
  padding-bottom: .5rem;
  text-align: right
}

@media print,
screen and (max-width: 59.99875em) {
  .contacts {
    text-align: center
  }

  .contacts__info {
    text-align: center
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .contacts {
    padding-bottom: .0714285714rem
  }

  .contacts__block_spec {
    display: inline-block;
    width: calc(100% - 1.875rem)
  }

  .contacts__icon {
    display: none
  }

  .contacts__menu {
    display: inline-block;
    height: 1.0714285714rem;
    margin-bottom: .4285714286rem
  }

  .contacts__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
  }
}

.dd {
  position: relative;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear .3s, opacity .3s linear;
  transition: visibility 0s linear .3s, opacity .3s linear
}

.dd_show {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

.dd__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #0e0e0e;
  background: #e6e6e6;
  padding: 1.5rem
}

.double {
  margin-right: .2857142857rem;
  margin-left: .2857142857rem
}

.fa-layers {
  vertical-align: middle
}

.footer {
  padding-top: 2.5714285714rem;
  padding-bottom: 2.2857142857rem;
  color: #fff;
  width: 100%;
  left: 0;
  background: #1f1f1f;
  position: relative;
  font-size: .8571428571rem
}

.footer__copy {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #fff;
  font-size: .8571428571rem
}

.header {
  margin-bottom: 4.0714285714rem
}

.header__tel {
  margin-left: 2.0714285714rem;
  display: block;
  font-weight: 800;
  color: #e97924;
  margin-top: 3.4285714286rem;
  font-size: 1.5714285714rem
}

.header__logo {
  margin-top: .2142857143rem;
  margin-left: -.7142857143rem;
  display: block
}

.header__logo:hover {
  opacity: .85
}

@media print,
screen and (max-width: 59.99875em) {
  .header__tel {
    margin-top: 1.1428571429rem;
    margin-left: 0
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .header__tel {
    font-size: 1.2142857143rem;
    margin-top: 1.6428571429rem
  }
}

.hr {
  margin-bottom: 2.8571428571rem
}

.info {
  margin-bottom: 1.7142857143rem
}

.info_top {
  padding-top: 1.7142857143rem
}

.info_65 {
  margin-bottom: 4.6428571429rem
}

.info__right {
  margin-top: .0714285714rem;
  margin-right: 1.0714285714rem
}

.info_null {
  margin-bottom: 1.7857142857rem
}

@media print,
screen and (max-width: 39.99875em) {
  .info_65 {
    margin-bottom: 1.4285714286rem
  }
}

.news {
  margin-bottom: 1.7142857143rem
}

.news__img {
  margin-bottom: 1.7142857143rem
}

.news__title {
  display: block;
  font-size: 1.2857142857rem;
  margin-bottom: .8571428571rem
}

.partners {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.partners .partners {
  margin-left: 1.4285714286rem
}

.partners__link {
  display: block;
  padding: .7142857143rem 1rem;
  -webkit-text-decoration: none;
  text-decoration: none;
  line-height: 1
}

.partners__link_active {
  background: #e97924;
  color: #fff
}

.partners__link_active:active,
.partners__link_active:focus,
.partners__link_active:hover {
  color: #fff
}

.picture {
  margin-right: .2857142857rem
}

.project {
  margin-bottom: 2.2857142857rem
}

.project__img {
  margin-bottom: 1.7142857143rem
}

.project__title {
  margin-bottom: .8571428571rem;
  font-size: 1.2857142857rem
}

.project__views {
  color: #1f1f1f;
  margin-left: .5714285714rem;
  margin-right: 1.1428571429rem
}

.project__icon {
  color: #1f1f1f
}

.project__info {
  padding-bottom: 1.4285714286rem
}

.project__text {
  margin-bottom: .8571428571rem
}

.project__cat {
  display: block;
  color: #1f1f1f;
  margin-bottom: .8571428571rem
}

.promo {
  background: #e97924;
  padding-top: 5rem;
  color: #fff;
  padding-bottom: 5rem;
  margin-bottom: 2.8571428571rem
}

.promo__img {
  width: 100%
}

@media print,
screen and (max-width: 39.99875em) {
  .promo {
    padding-top: 2.8571428571rem;
    padding-bottom: 1.4285714286rem
  }
}

.sect {
  margin-bottom: 1.7142857143rem
}

.sect_iframe {
  height: 25rem;
  width: 100%;
  border: 0
}

.sect_col {
  width: 50%
}

.sect_rect {
  margin-bottom: .8571428571rem
}

.sect_primary {
  color: #e97924
}

.sect_big {
  font-size: 1.2857142857rem
}

.sect_type {
  margin-bottom: .8571428571rem;
  font-weight: 700
}

.sect_date {
  font-weight: 700;
  color: #fff
}

.sect_time {
  margin-bottom: 0;
  color: #1f1f1f
}

.sect_main {
  background: #e6e6e6
}

.sect_dib {
  display: inline-block;
  margin-right: .5714285714rem
}

.sect_dark {
  color: #1f1f1f
}

.sect_place {
  color: #1f1f1f;
  padding-top: 2.4285714286rem;
  padding-bottom: 2.4285714286rem
}

.sect_link {
  margin-right: .5714285714rem
}

.sect_err {
  color: #cacaca;
  margin-right: .7142857143rem;
  font-size: 2.4285714286rem;
  display: inline-block;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1
}

.sect__date {
  color: #cacaca
}

.sect__svg {
  height: 5rem;
  width: 100%
}

.sect__svg use {
  fill: #48626f
}

.share {
  margin-bottom: 1.7142857143rem;
  font-size: 2rem
}

.share__text {
  color: #9bb3be;
  font-size: 1rem;
  margin-right: .5714285714rem
}

.share__enter {
  font-size: 1rem;
  margin-right: .5714285714rem
}

@media print,
screen and (max-width: 59.99875em) {
  .share__text {
    display: none
  }
}

.side__block {
  padding: 1.5rem;
  border-radius: 1.5714285714rem;
  background: #e6e6e6;
  margin-bottom: 1.7142857143rem
}

.side__city {
  font-weight: 700;
  margin-left: .2857142857rem;
  margin-right: .2857142857rem
}

.side__place {
  font-size: 1.0714285714rem;
  margin-bottom: 1.7142857143rem
}

.side__date {
  font-size: 1.5rem;
  margin-bottom: .8571428571rem;
  color: #fff
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  z-index: 0
}

.slick-list:focus {
  outline: none
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table
}

.slick-track::after {
  clear: both
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none !important;
  display: none
}

.slick-slide img {
  display: block
}

[dir=rtl] .slick-slide {
  float: right
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: .0714285714rem solid rgba(0, 0, 0, 0)
}

.slick-arrow.slick-hidden {
  display: none
}

.slick-slide a,
.slick-slide:focus {
  outline: none
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: none;
  transform: none;
  -webkit-transform: initial;
  transform: initial
}

.slick-prev {
  left: 1rem
}

.slick-next {
  right: 1rem
}

.slick-next,
.slick-prev {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  cursor: pointer;
  color: hsla(0, 0%, 100%, .5333333333);
  background: rgba(0, 0, 0, .1333333333);
  padding: 0;
  border: none;
  outline: none;
  width: 2.1428571429rem;
  height: 3.5714285714rem;
  border-radius: .3571428571rem;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%)
}

.slick-next svg,
.slick-prev svg {
  width: 1.7857142857rem;
  height: 3.0714285714rem
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  outline: none;
  color: hsla(0, 0%, 100%, .5333333333);
  background: rgba(0, 0, 0, .3333333333)
}

.slick-next.slick-disabled,
.slick-prev.slick-disabled {
  color: hsla(0, 0%, 100%, .5333333333);
  background: rgba(0, 0, 0, .0666666667)
}

.slick-dots {
  margin: 2rem 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  cursor: pointer
}

.slick-dots li.slick-active button {
  background: rgba(0, 0, 0, .2)
}

.slick-dots li button {
  border: 0;
  background: rgba(0, 0, 0, .0666666667);
  display: block;
  height: .7142857143rem;
  width: .7142857143rem;
  outline: none;
  line-height: 0;
  font-size: 0;
  margin: 1rem;
  padding: 0;
  border-radius: 50%;
  cursor: pointer
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none
}

.soc {
  color: #9bb3be
}

.soc_fb {
  color: #757575
}

.soc_vk {
  color: #757575
}

.soc_twi {
  color: #757575
}

.soc_insta {
  color: #000
}

.soc_ok {
  color: #757575
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.7142857143rem
}

.step__label {
  line-height: 1.3;
  margin-right: 0;
  background: url("../images/check.svg") no-repeat left .1428571429rem;
  margin-left: 0;
  padding-left: 1.4285714286rem
}

.step__input {
  margin-top: .1428571429rem;
  margin-bottom: 0;
  display: none
}

.step__input:checked+.step__label {
  background: url("../images/check-square.svg") no-repeat left .1428571429rem
}

.step__input:disabled+.step__label {
  opacity: .7;
  cursor: not-allowed
}

.traffic {
  text-align: center;
  background: #e6e6e6;
  visibility: hidden;
  margin-bottom: 2.8571428571rem
}

.traffic.slick-initialized {
  visibility: visible
}

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

.traffic__img {
  width: 100%;
  margin-bottom: 1.7142857143rem
}

.traffic__item {
  background: center no-repeat;
  background-size: cover;
  display: none;
  padding: 2rem 3rem;
  position: relative
}

.traffic__item:first-child {
  display: block
}

.traffic__text {
  font-size: 1.0714285714rem;
  margin-bottom: 1.5rem
}

.traffic__content {
  min-height: 28.5714285714rem
}

.traffic__content_white {
  color: #fff
}

.traffic__darken::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .3333333333)
}

@media print,
screen and (max-width: 59.99875em) {
  .traffic__content {
    min-height: 21.4285714286rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .traffic {
    height: 44.0714285714rem;
    overflow: hidden
  }

  .traffic.slick-initialized {
    height: auto;
    overflow: visible
  }

  .traffic__img {
    display: none
  }

  .traffic__content {
    min-height: 0;
    min-height: initial
  }

  .traffic__photo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .traffic__item {
    padding: 2rem 0
  }
}

.way {
  font-size: .7857142857rem;
  margin-bottom: 1.7142857143rem
}

.way__pole {
  margin-left: .2857142857rem;
  margin-right: .2857142857rem
}

.brand {
  background: #e6e6e6;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.capt__img {
  width: 100%;
  height: 4.2857142857rem
}

.checkbox-group {
  font-size: 0;
  margin-bottom: .5rem
}

.checkbox-group__label {
  font-size: 14px;
  padding: .83rem;
  margin: 0;
  min-width: 3rem;
  background: #fff;
  min-height: 2.7857142857rem;
  line-height: 1;
  display: inline-block;
  border: .0714285714rem solid #0e0e0e;
  border-right-width: 0;
  text-align: center
}

.checkbox-group__label:last-child {
  border-right-width: .0714285714rem
}

.checkbox-group__item {
  display: none
}

.checkbox-group__item:checked+.checkbox-group__label {
  -webkit-box-shadow: inset 0 0 .3571428571rem .1428571429rem rgba(0, 0, 0, .4);
  box-shadow: inset 0 0 .3571428571rem .1428571429rem rgba(0, 0, 0, .4)
}

.commodity__img {
  margin-bottom: 1.5rem
}

.commodity__title {
  font-size: 1.1428571429rem;
  margin-bottom: .7142857143rem;
  display: block
}

.commodity__old {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
  color: #1f1f1f
}

.commodity__cost {
  font-size: 1rem
}

.commodity__favor {
  color: #1f1f1f;
  margin-right: .5714285714rem
}

.commodity__small {
  font-size: .7857142857rem;
  display: block;
  margin-bottom: .2142857143rem
}

.commodity__price {
  font-weight: 700;
  font-size: 1.5rem
}

.commodity__price_cost {
  font-size: 1rem
}

.commodity__no {
  font-style: italic;
  color: #1f1f1f
}

.commodity__info {
  margin-bottom: 1.5rem
}

.commodity__cat {
  margin-bottom: .7142857143rem;
  display: block;
  color: #1f1f1f;
  font-size: .9285714286rem;
  font-weight: 400
}

@media print,
screen and (max-width: 59.99875em) {
  .commodity__small {
    margin-right: .5714285714rem;
    display: inline-block
  }

  .commodity__old {
    margin-bottom: .7142857143rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .commodity__cat {
    display: none
  }
}

.comp__tr {
  vertical-align: top
}

.comp__small {
  font-size: 1rem
}

.comp__clear {
  color: #1f1f1f;
  white-space: nowrap
}

.duct__img {
  margin-bottom: 1.5rem
}

.duct__title {
  font-size: 1.1428571429rem;
  margin-bottom: .7142857143rem;
  display: block
}

.duct__old {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
  color: #1f1f1f
}

.duct__cost {
  font-size: 1rem
}

.duct__favor {
  color: #1f1f1f;
  margin-right: .5714285714rem
}

.duct__small {
  font-size: .7857142857rem;
  display: block;
  margin-bottom: .2142857143rem
}

.duct__price {
  font-weight: 700;
  font-size: 1.5rem
}

.duct__price_cost {
  font-size: 1rem
}

.duct__no {
  font-style: italic;
  color: #1f1f1f
}

.duct__info {
  margin-bottom: 1.5rem
}

.duct__cat {
  margin-bottom: .7142857143rem;
  display: block;
  color: #1f1f1f;
  font-size: .9285714286rem;
  font-weight: 400
}

@media print,
screen and (max-width: 59.99875em) {
  .duct__small {
    margin-right: .5714285714rem;
    display: inline-block
  }

  .duct__old {
    margin-bottom: .7142857143rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .duct__cat {
    display: none
  }
}

.growth__img {
  margin-bottom: 1.5rem
}

.growth__title {
  font-size: 1.1428571429rem;
  margin-bottom: .7142857143rem;
  display: block
}

.growth__old {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
  color: #1f1f1f
}

.growth__cost {
  font-size: 1rem
}

.growth__favor {
  color: #1f1f1f;
  margin-right: .5714285714rem
}

.growth__small {
  font-size: .7857142857rem;
  display: block;
  margin-bottom: .2142857143rem
}

.growth__price {
  font-weight: 700;
  font-size: 1.5rem
}

.growth__price_cost {
  font-size: 1rem
}

.growth__no {
  font-style: italic;
  color: #1f1f1f
}

.growth__info {
  margin-bottom: 1.5rem
}

.growth__cat {
  margin-bottom: .7142857143rem;
  display: block;
  color: #1f1f1f;
  font-size: .9285714286rem;
  font-weight: 400
}

@media print,
screen and (max-width: 59.99875em) {
  .growth__small {
    margin-right: .5714285714rem;
    display: inline-block
  }

  .growth__old {
    margin-bottom: .7142857143rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .growth__cat {
    display: none
  }
}

.mark {
  color: #e97924;
  font-size: 1.2857142857rem;
  line-height: .75;
  margin-bottom: 1.5rem;
  vertical-align: -.0714285714rem
}

.menu-top {
  padding: 0;
  list-style-type: none;
  margin: 0;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap
}

.menu-top__hamburger {
  margin: 1.1428571429rem 0 1.1428571429rem
}

.menu-top__item {
  display: block;
  padding: 0 1rem;
  border: solid #e6e6e6;
  border-width: 0 0 0 .0714285714rem
}

.menu-top__item:first-child {
  border: 0;
  padding-left: 0
}

.menu-top__item:last-child {
  padding-right: 0
}

.menu-top__link {
  display: block;
  padding: 0;
  color: #fff
}

.menu-top__link:hover,
.menu-top__link_active {
  color: #eee
}

.menu-top__link_red {
  color: #e97924
}

@media print,
screen and (max-width: 59.99875em) {
  .menu-top {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .menu-top {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .menu-top__item {
    width: 100%;
    padding: 0;
    border-width: .0714285714rem 0 0
  }

  .menu-top__link {
    padding: .5rem 0
  }
}

.offspring__img {
  margin-bottom: 1.5rem
}

.offspring__title {
  font-size: 1.1428571429rem;
  margin-bottom: .7142857143rem;
  display: block
}

.offspring__old {
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
  color: #1f1f1f
}

.offspring__cost {
  font-size: 1rem
}

.offspring__favor {
  color: #1f1f1f;
  margin-right: .5714285714rem
}

.offspring__small {
  font-size: .7857142857rem;
  display: block;
  margin-bottom: .2142857143rem
}

.offspring__price {
  font-weight: 700;
  font-size: 1.5rem
}

.offspring__price_cost {
  font-size: 1rem
}

.offspring__no {
  font-style: italic;
  color: #1f1f1f
}

.offspring__info {
  margin-bottom: 1.5rem
}

.offspring__cat {
  margin-bottom: .7142857143rem;
  display: block;
  color: #1f1f1f;
  font-size: .9285714286rem;
  font-weight: 400
}

@media print,
screen and (max-width: 59.99875em) {
  .offspring__small {
    margin-right: .5714285714rem;
    display: inline-block
  }

  .offspring__old {
    margin-bottom: .7142857143rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .offspring__cat {
    display: none
  }
}

.order__meta {
  color: #888
}

.order__subtitle {
  font-size: .8571428571rem;
  font-weight: bold;
  letter-spacing: .05em;
  margin-bottom: .5714285714rem;
  text-transform: uppercase
}

.order__option-switch {
  position: absolute;
  visibility: hidden
}

.order__option-more {
  display: none
}

.order__option-item {
  position: relative;
  margin: 0 0 1.5rem;
  border: .0714285714rem solid rgba(68, 68, 68, .2666666667);
  border-radius: .25rem;
  background-color: #fff;
  color: #444;
  padding: 1.5rem
}

.order__option-item:hover,
.order__option-switch:checked+.order__option-item {
  border-color: #27bab5;
  -webkit-box-shadow: 0 0 0 .0714285714rem #27bab5 inset;
  box-shadow: 0 0 0 .0714285714rem #27bab5 inset
}

.order__option-switch:checked+.order__option-item .order__option-more {
  display: block
}

.order__option-title {
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: .2857142857rem
}

.order__option-title:hover {
  background-color: #f3f3f3
}

.prod {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.prod__info {
  margin-bottom: 1.7142857143rem
}

.prod__favor {
  color: #1f1f1f;
  margin-right: .7142857143rem
}

.prod__price {
  font-size: 1.0714285714rem;
  font-weight: 700;
  margin-right: .2857142857rem
}

.prod__old {
  font-size: .9285714286rem;
  color: #1f1f1f
}

.prod__cat {
  display: block;
  font-size: .9285714286rem;
  color: #1f1f1f
}

.prod__rub {
  margin-bottom: .8571428571rem
}

.prod__main {
  padding-bottom: .7142857143rem
}

.prod__img {
  margin-bottom: 1.7142857143rem
}

.quant {
  position: relative
}

.quant__input {
  border: .0714285714rem solid #cacaca;
  border-radius: 1.5714285714rem 0 0 1.5714285714rem;
  padding-left: 2.3571428571rem;
  height: 5rem;
  text-align: right
}

.quant__minus,
.quant__plus {
  width: 0;
  height: 0;
  border-left: .4285714286rem solid rgba(0, 0, 0, 0);
  border-right: .4285714286rem solid rgba(0, 0, 0, 0);
  border-bottom: .4285714286rem solid #0e0e0e;
  position: absolute;
  display: block;
  cursor: pointer;
  left: 1.1428571429rem;
  top: .5rem
}

.quant__minus {
  top: 1.7142857143rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.1428571429rem;
  margin-right: 1.5rem;
  cursor: pointer
}

.radio__label {
  line-height: 1.3;
  margin-right: 0;
  background: url("../images/r1.svg") no-repeat left 0;
  margin-left: 0;
  font-size: 1.1428571429rem;
  padding-top: .0714285714rem;
  font-weight: 500;
  color: #fff;
  padding-left: 2.4285714286rem
}

.radio__span {
  color: #9c9fa3
}

.radio__input {
  display: none
}

.radio__input:checked+.radio__label {
  background: url("../images/r2.svg") no-repeat left 0
}

.radio__input:disabled+.radio__label {
  opacity: .7;
  cursor: not-allowed
}

@media print,
screen and (max-width: 39.99875em) {
  .radio {
    margin-bottom: .8571428571rem;
    margin-right: 0
  }
}

.rating {
  display: inline-block;
  vertical-align: middle;
  margin-right: .2857142857rem
}

.rating::before,
.rating::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.rating::after {
  clear: both
}

.rating__star {
  float: right;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  position: relative
}

.rating__star:hover {
  cursor: pointer
}

.rating__solid {
  display: block;
  font-size: 1.35rem;
  color: #777;
  margin-right: .3571428571rem;
  position: relative
}

.rating__regular {
  font-size: 1.35rem;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  color: #eeb301
}

.rating__input {
  display: none
}

.rating:not(:hover) .rating__input:checked .rating__regular,
.rating:not(:hover) .rating__input:checked~.rating__star .rating__regular,
.rating__star:hover .rating__regular,
.rating__star:hover~.rating__star .rating__regular {
  display: block
}

.reg {
  line-height: 1.9;
  font-size: .7857142857rem
}

.search {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0
}

.search__input {
  width: 100%;
  border: 0;
  padding: .3571428571rem;
  line-height: 1.68;
  height: 5rem;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  border-radius: 1.5714285714rem 0 0 1.5714285714rem
}

.search__input:focus,
.search__input:hover {
  border: 0
}

.search__input_border {
  border: .0714285714rem solid #cacaca;
  border-right: 0
}

.search__input_border:focus,
.search__input_border:hover {
  border: .0714285714rem solid #0e0e0e;
  border-right: 0
}

.search__cont {
  white-space: nowrap;
  border-radius: 1.5714285714rem 1.5714285714rem 0 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.search__button {
  border: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  height: 5rem;
  width: 5rem;
  color: #634f8e;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 0;
  font-size: 1.1428571429rem
}

@media print,
screen and (max-width: 59.99875em) {
  .search {
    margin: 1.5rem 0 0
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .search {
    margin: 0
  }
}

.shipment__tell {
  margin-right: .5714285714rem;
  font-size: 1rem
}

.shipment__soc {
  font-size: 2rem;
  margin-bottom: 1.7142857143rem
}

.shipment__art {
  color: #1f1f1f
}

.shipment__no {
  color: #cacaca;
  margin-left: .2857142857rem
}

.shipment__num {
  color: #f47f26;
  margin-left: .2857142857rem
}

.shipment__low {
  color: #cc4b37;
  margin-left: .2857142857rem
}

.shipment__mark {
  font-style: italic;
  color: #1f1f1f
}

.shipment__old {
  color: #1f1f1f;
  display: block;
  -webkit-text-decoration: line-through;
  text-decoration: line-through
}

.shipment__compare {
  margin-right: .5714285714rem
}

.shipment__text {
  color: #1f1f1f
}

.shipment__price {
  font-size: 2.5rem
}

.tile {
  margin-bottom: .7142857143rem
}

.tile__title {
  margin-bottom: .7142857143rem;
  display: block
}

.tile__no {
  color: #1f1f1f
}

.tile__price {
  margin-bottom: .7142857143rem;
  font-weight: 700
}

.tile__link {
  display: block;
  margin-bottom: 1.5rem
}

.tile__img {
  height: 5.7142857143rem
}

.tile__clear {
  color: #1f1f1f;
  white-space: nowrap;
  display: block;
  margin-bottom: 1.5rem
}

.calendar {
  text-align: center
}

.calendar__holiday {
  color: #48626f
}

.calendar__strong {
  font-weight: 700
}

.car {
  position: relative;
  margin: 0 0 1rem;
  padding: 1.5rem;
  border: .0714285714rem solid rgba(68, 68, 68, .2666666667);
  border-radius: .2857142857rem;
  background-color: #fff
}

.car__anchor {
  margin-bottom: 1.5rem;
  display: block
}

.car__date {
  color: #cacaca;
  margin-right: .2857142857rem
}

.carousel-news {
  padding: 0 0 1.5rem
}

.carousel-news__item {
  min-height: 21.4285714286rem;
  background: #f3f3f3;
  color: #0e0e0e;
  background-size: cover;
  background-position: center;
  display: none;
  padding: 2rem;
  position: relative
}

.carousel-news__item_medium-gray {
  background: #cacaca
}

.carousel-news__item:first-child {
  display: block
}

.carousel-news__link {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: rgba(0, 0, 0, .3333333333)
}

.carousel-news__link:hover {
  color: #fff
}

.magazine {
  margin-bottom: 1.7142857143rem
}

.magazine__img {
  margin-bottom: .8571428571rem;
  width: 100%;
  height: 20rem;
  background: #f3f3f3
}

.rubric {
  padding-top: .7142857143rem;
  padding-bottom: .7142857143rem;
  background: #e6e6e6
}

.rubric__tgl {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer
}

.rubric__menu {
  margin-left: .2857142857rem;
  font-weight: 700;
  display: inline-block
}

@media print,
screen and (max-width: 39.99875em) {
  .rubric {
    padding-top: 0;
    padding-bottom: 0
  }
}

.user {
  margin-bottom: 1.7142857143rem
}

.user__img {
  background: #bbb;
  width: 3.2142857143rem
}

.user__title {
  color: #48626f;
  font-weight: 700
}

.user__date {
  color: #1f1f1f
}

a {
  font-size: 1.1428571429rem;
  line-height: 1.2;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  color: #e97924;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none
}

a:active,
a:focus,
a:hover {
  color: #d26715
}

body {
  overflow-x: hidden
}

::-webkit-search-cancel-button,
::-webkit-search-decoration,
::-webkit-search-results-button,
::-webkit-search-results-decoration {
  display: none
}

input::-webkit-calendar-picker-indicator {
  cursor: pointer
}

fieldset {
  margin-bottom: 1.4285714286rem
}

::-ms-clear {
  display: none
}

hr {
  margin: 0 auto 2.3571428571rem;
  border-bottom: .0714285714rem solid hsla(0, 0%, 100%, .1607843137)
}

label {
  line-height: 1.5
}

table {
  margin-bottom: .6428571429rem;
  border-collapse: collapse;
  width: 100%;
  border-radius: .3571428571rem
}

dl {
  line-height: 1.82;
  margin-bottom: 1.7142857143rem
}

ul {
  line-height: 1.82;
  margin-bottom: 2.4285714286rem
}

ul li {
  margin-bottom: .4285714286rem
}

ul li::marker {
  color: #e97924
}

.ul_serv {
  font-size: 1.1428571429rem;
  font-weight: 400;
  line-height: 1.5
}

.ul_serv li {
  margin-bottom: 2.1428571429rem
}

p {
  font-size: 1.1428571429rem;
  margin-bottom: 2.4285714286rem
}

ol {
  line-height: 1.82;
  margin-bottom: 2.4285714286rem
}

ol li {
  margin-bottom: .4285714286rem
}

blockquote {
  border-left: .1428571429rem solid #e97924
}

blockquote,
blockquote p {
  padding: 0 1rem
}

tr {
  border: 0
}

tbody {
  background: none;
  border: 0
}

tbody th {
  color: #fff;
  text-align: left;
  padding: .5714285714rem .3571428571rem .5714285714rem 0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  background: none;
  line-height: normal;
  vertical-align: bottom
}

th:first-child {
  width: 4rem
}

tbody td {
  color: #fff;
  font-size: 1.1428571429rem;
  font-style: normal;
  font-weight: 400;
  padding: 0 .0714285714rem .5714285714rem 0;
  line-height: normal
}

tbody tr:nth-child(even) {
  background: #1f1f1f;
  border: 0
}

td:first-child {
  padding-left: 0
}

input,
textarea {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 1.5rem;
  padding: 1.1428571429rem;
  border: none;
  outline: #dadada;
  border-radius: .2857142857rem;
  background-color: #f3f3f3;
  font-size: 1.1428571429rem;
  font-weight: normal;
  color: #0e0e0e;
  -webkit-transition: border-color .25s ease-in-out, -webkit-box-shadow .5s;
  transition: border-color .25s ease-in-out, -webkit-box-shadow .5s;
  transition: box-shadow .5s, border-color .25s ease-in-out;
  transition: box-shadow .5s, border-color .25s ease-in-out, -webkit-box-shadow .5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: normal
}

input:active,
input:focus,
input:hover,
textarea:active,
textarea:focus,
textarea:hover {
  -webkit-box-shadow: none;
  box-shadow: none
}

#webpack-dev-server-client-overlay {
  display: none !important
}

textarea {
  background: -webkit-gradient(linear, left top, right top, from(#666666), color-stop(50.18%, #787878), to(#5F5F5F));
  background: linear-gradient(90deg, #666666 0%, #787878 50.18%, #5F5F5F 100%);
  height: 5rem;
  border-radius: .2857142857rem;
  padding: 1.1428571429rem;
  resize: none;
  color: #fff
}

select {
  border-radius: 2.1428571429rem;
  height: 4.2142857143rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-top: 0;
  padding: .2857142857rem 2.2857142857rem;
  width: 100%;
  padding-bottom: 0;
  padding-right: 3.2142857143rem;
  background-size: 2.1428571429rem 2.1428571429rem
}

input[type=checkbox] {
  margin-bottom: 0;
  position: relative;
  height: 1.4285714286rem;
  min-height: 1.4285714286rem;
  width: 1.4285714286rem;
  min-width: 1.4285714286rem;
  border: .1428571429rem solid #8f8f9d;
  background: #fff;
  border-radius: .0714285714rem;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s;
  cursor: pointer
}

input[type=checkbox]::after {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../images/check-mark-checkbox.svg) center center no-repeat
}

input[type=checkbox]:checked {
  background-color: #e97924;
  border-color: #e97924
}

input[type=checkbox]:checked::after {
  display: block
}

sub {
  bottom: -0.17em;
  font-size: 60%
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: 700;
  color: #fff;
  font-family: Montserrat, serif;
  text-rendering: optimizelegibility
}

.h1,
h1 {
  font-size: 2.5714285714rem;
  font-style: normal;
  margin-bottom: 2.4285714286rem;
  line-height: 120%
}

.h2,
h2 {
  font-size: 2.5714285714rem;
  margin-bottom: 2.8571428571rem;
  line-height: 120%
}

.h3,
h3 {
  font-size: 1.2857142857rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5
}

.h4,
h4 {
  font-size: 1.1428571429rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%
}

.h5,
h5 {
  font-size: 1.1428571429rem;
  margin-bottom: .8571428571rem
}

.h6,
h6 {
  color: #3e4041;
  font-size: 1rem;
  font-style: normal;
  margin-bottom: 1.0714285714rem;
  font-weight: 600;
  line-height: normal
}

@media print,
screen and (max-width: 59.99875em) {
  p {
    margin-bottom: 1.7857142857rem
  }

  input,
  select {
    font-size: 1rem;
    padding-left: 1.4285714286rem;
    padding-right: 1.4285714286rem;
    height: 3.1428571429rem
  }

  .h1,
  h1 {
    margin-bottom: 1.2857142857rem;
    font-size: 1.8571428571rem
  }

  .h2,
  h2 {
    margin-bottom: .8571428571rem;
    font-size: 1.5714285714rem
  }

  .h3,
  h3 {
    font-size: 1.2857142857rem;
    line-height: 1.5
  }

  .h4,
  h4 {
    margin-bottom: .8571428571rem;
    font-size: 1.1428571429rem
  }

  .h5,
  h5 {
    margin-bottom: .8571428571rem;
    font-size: 1.1428571429rem
  }

  .h6,
  h6 {
    margin-bottom: .8571428571rem;
    font-size: 1rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  p {
    font-size: 1rem;
    margin-bottom: 1.2857142857rem
  }

  input,
  select {
    font-size: 1rem;
    padding-left: 1.4285714286rem;
    padding-right: 1.4285714286rem;
    height: 3.1428571429rem
  }

  hr {
    margin: 0 auto 1.4285714286rem
  }

  .h1,
  h1 {
    margin-bottom: .8571428571rem;
    font-size: 1.4285714286rem
  }

  .h2,
  h2 {
    margin-bottom: .8571428571rem;
    font-size: 1.2857142857rem
  }

  .h3,
  h3 {
    font-size: 1.1428571429rem;
    line-height: 1.5
  }

  .h4,
  h4 {
    margin-bottom: .8571428571rem;
    font-size: 1.1428571429rem
  }

  .h5,
  h5 {
    margin-bottom: .8571428571rem;
    font-size: 1rem
  }

  .h6,
  h6 {
    margin-bottom: .8571428571rem;
    font-size: 1rem
  }

  .ul_serv {
    font-size: inherit
  }
}

.svg-inline {
  visibility: hidden
}

.calc {
  background-color: #1f1f1f;
  padding: 2.2142857143rem 2rem .0714285714rem 2rem;
  border-radius: 1.0714285714rem;
  margin-bottom: 1.4285714286rem;
  position: relative;
  z-index: 2
}

.calc_null {
  background: none;
  padding: 0
}

.calc__anchor {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: #fff;
  display: inline-block;
  font-size: 1.1428571429rem;
  line-height: 1.5
}

.calc__terminal {
  color: #fff;
  font-size: 1.1428571429rem;
  line-height: 1
}

.calc__rmv {
  cursor: pointer;
  height: 2rem;
  width: 2rem
}

.calc__rmv:hover {
  opacity: .9
}

.calc__main {
  padding-right: 15.2857142857rem
}

.calc_empty {
  padding-top: 0;
  padding-bottom: 0;
  background: none
}

.calc__swapper {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 2.1428571429rem;
  line-height: 1;
  background: url("../images/switch.svg") center no-repeat;
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
  cursor: pointer;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.calc__swapper:active,
.calc__swapper:focus,
.calc__swapper:hover {
  background-color: rgba(0, 0, 0, 0);
  opacity: .8
}

.calc__span {
  color: #9c9fa3
}

.calc__title {
  font-size: 1.2857142857rem;
  font-weight: 600;
  margin-bottom: 2.1428571429rem;
  line-height: 1
}

.calc__input {
  background: -webkit-gradient(linear, left top, right top, from(#666666), color-stop(50.18%, #787878), to(#5F5F5F));
  background: linear-gradient(90deg, #666666 0%, #787878 50.18%, #5F5F5F 100%);
  border: none;
  padding: .9285714286rem 1.1428571429rem;
  color: #fff;
  height: 3.2142857143rem;
  margin-bottom: 0;
  font-size: 1.1428571429rem;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.calc__input::-webkit-input-placeholder {
  font-weight: 400;
  color: hsla(0, 0%, 100%, .8156862745)
}

.calc__input::-moz-placeholder {
  font-weight: 400;
  color: hsla(0, 0%, 100%, .8156862745)
}

.calc__input:-ms-input-placeholder {
  font-weight: 400;
  color: hsla(0, 0%, 100%, .8156862745)
}

.calc__input::-ms-input-placeholder {
  font-weight: 400;
  color: hsla(0, 0%, 100%, .8156862745)
}

.calc__input::placeholder {
  font-weight: 400;
  color: hsla(0, 0%, 100%, .8156862745)
}

.calc__input_date {
  padding-right: 2.8571428571rem
}

.calc__freight {
  position: relative;
  margin-top: -.1428571429rem;
  cursor: help
}

.calc__h3 {
  font-weight: 600;
  margin-bottom: 1.6428571429rem;
  color: #fff;
  font-size: 1.2857142857rem
}

.calc__h3_12 {
  margin-bottom: .8571428571rem
}

.calc__sparkles {
  position: absolute;
  right: .6428571429rem;
  top: calc(100% + 1.0714285714rem)
}

.calc__shield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-size: 1rem;
  font-weight: 500;
  color: #9c9fa3;
  padding-top: .2142857143rem;
  margin-bottom: 1.9285714286rem
}

.calc__shield img {
  position: relative;
  top: -.2142857143rem;
  margin-right: .7142857143rem
}

.calc__when {
  margin-top: -1.7142857143rem;
  font-weight: 500;
  margin-bottom: 1.8571428571rem;
  color: #9c9fa3;
  font-size: 1rem
}

.calc__when_white {
  color: #fff;
  margin-top: -1.6428571429rem
}

.calc__when_white img {
  position: relative;
  top: -.1428571429rem;
  margin-right: .7142857143rem
}

.calc__rr {
  padding-right: 1.4285714286rem
}

.calc__input_error,
.calc__input_error:hover {
  -webkit-box-shadow: inset 0 0 0 .1428571429rem #f53636;
  box-shadow: inset 0 0 0 .1428571429rem #f53636
}

.calc__text {
  margin-top: 2.1428571429rem;
  font-weight: 400;
  font-size: 1.0714285714rem;
  color: #9c9fa3;
  line-height: 1.4
}

.calc__robe {
  margin-bottom: 2.1428571429rem;
  min-height: 3.2142857143rem
}

.calc__robe_mr:not(:last-child) {
  margin-right: 1.4285714286rem
}

.calc__robe_dims:not(:last-child) {
  margin-right: 1.4285714286rem;
  margin-bottom: 0
}

.calc__label {
  display: block;
  margin-bottom: .1428571429rem;
  cursor: pointer;
  min-height: 1.7142857143rem;
  position: relative
}

.calc__label_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.calc__cloak {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-bottom: 2.1428571429rem
}

.calc__cloak_mr {
  margin-right: 1.7857142857rem
}

.calc__cloak_switch {
  margin-bottom: 1.0714285714rem
}

.calc__cloak_package {
  margin-bottom: 1.4285714286rem
}

.calc__cloak_19 {
  margin-bottom: 1.3571428571rem;
  width: 100%
}

.calc__sketch {
  width: calc(100% - 4.2142857143rem);
  display: inline-block
}

.calc__cloaklabel {
  position: relative;
  cursor: pointer;
  font-size: 1.1428571429rem;
  margin-right: 1.0714285714rem;
  padding-left: 1.0714285714rem
}

.calc__cassius {
  font-size: 1.1428571429rem;
  display: inline-block;
  padding-left: 1.0714285714rem;
  position: relative;
  cursor: pointer;
  width: calc(100% - 1.4285714286rem)
}

.calc__ig-title {
  font-size: 1.1428571429rem;
  font-weight: 600;
  margin-bottom: .7142857143rem
}

.calc__ig-title_aired {
  margin-bottom: 1.4285714286rem
}

.calc__switch {
  display: none
}

.calc__switch-label {
  cursor: pointer;
  width: 2.8571428571rem;
  height: 1.7142857143rem;
  background: rgba(0, 0, 0, 0);
  display: block;
  border-radius: 1.7142857143rem;
  position: relative;
  border: .0714285714rem solid #fff;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.calc__switch-label:after {
  content: "";
  position: absolute;
  top: .1428571429rem;
  left: .1428571429rem;
  width: 1.2857142857rem;
  height: 1.2857142857rem;
  background: #fff;
  border-radius: 1.2857142857rem;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.calc__switch:checked+.calc__switch-label {
  background: #e97924;
  border-color: #e97924
}

.calc__switch:checked+.calc__switch-label:after {
  left: calc(100% - .14rem);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%)
}

.calc__switch-label:active:after {
  width: 1.7857142857rem
}

.calc__switch-title {
  padding-left: .8571428571rem;
  cursor: pointer;
  line-height: 1.2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.calc__grid-reduced {
  padding-right: 30px
}

.calc__dims {
  padding-right: 1.4285714286rem
}

.calc__dims-cell {
  margin-bottom: 2.1428571429rem
}

.calc_orange {
  background: #1f1f1f;
  border: .0714285714rem solid #c66114
}

.calc__dims-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  position: relative;
  padding-right: 3.5714285714rem;
  margin-right: -1.4285714286rem;
  padding-bottom: 1.2857142857rem;
  border-bottom: .0714285714rem solid rgba(0, 0, 0, 0)
}

.calc__dims-row:not(:last-of-type) {
  margin-bottom: .7142857143rem;
  border-bottom-color: #c66114
}

.calc__dims-row_warning {
  position: relative
}

.calc__dims-row_warning::after {
  content: "Груз негабаритный";
  background: url(../images/warning.svg) center left no-repeat;
  color: #ffce0a;
  padding-left: 2rem;
  margin-top: .7142857143rem
}

.calc__dims-warning {
  position: absolute;
  bottom: 0;
  color: #ffce0a;
  padding-left: 1.7857142857rem;
  background: url(../images/warning.svg) center left no-repeat
}

.calc__dims-remove {
  width: 1.6428571429rem;
  height: 1.6428571429rem;
  background: #6b340b;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s;
  color: hsla(0, 0%, 100%, .2588235294);
  position: static;
  margin-bottom: 0;
  line-height: .4;
  font-size: 2.1428571429rem;
  padding: 0
}

.calc__dims-remove:hover {
  background: #c66114
}

.calc__date {
  position: absolute;
  right: .9285714286rem;
  top: calc(100% + 1rem)
}

.calc__icon {
  position: absolute;
  right: 1.4285714286rem;
  top: 1.5rem
}

.calc__dims-add {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #e97924;
  font-size: 1.0714285714rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: .2857142857rem;
  padding: .6428571429rem .6428571429rem;
  border: .0714285714rem solid #e97924;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s;
  margin-left: .7142857143rem;
  margin-bottom: 2.0714285714rem
}

.calc__dims-add img {
  margin-right: .7142857143rem
}

.calc__dims-add:hover {
  color: #fb9757
}

.calc__info {
  position: relative;
  width: 1.7142857143rem;
  min-width: 1.7142857143rem;
  height: 1.7142857143rem;
  min-height: 1.7142857143rem;
  background: url(../images/info.svg) center center no-repeat;
  cursor: pointer
}

.calc__info:hover .pane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.calc__freight:hover .pane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.calc__warning {
  padding-left: .7142857143rem
}

.calc__read {
  color: #fff;
  margin-bottom: 1.7857142857rem;
  font-weight: 500;
  margin-top: -0.5rem;
  font-size: 1rem
}

.calc__lynx {
  font-size: 1rem;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: #fff
}

.calc__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0714285714rem
}

.calc__radio {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  margin: 0;
  width: auto
}

.calc__dims_empty {
  background: none;
  width: auto;
  margin: 0;
  padding: 0
}

.calc__dims_empty::before {
  display: none
}

.calc__dims_empty::after {
  display: none
}

.calc__scroll {
  overflow-x: auto
}

.calc__int {
  margin-left: 1rem;
  position: relative;
  top: -.0714285714rem
}

@media print,
screen and (max-width: 84.37375em) {
  .calc__main {
    padding-right: 7.5rem
  }

  .calc__icon {
    right: 0
  }
}

@media print,
screen and (min-width: 40em)and (max-width: 59.99875em) {
  .calc {
    padding-left: 1.0714285714rem;
    padding-right: 1.0714285714rem
  }

  .calc__dims-row {
    padding-right: 1.7857142857rem
  }

  .calc__dims-remove {
    top: 4.6428571429rem
  }

  .calc__radio {
    height: auto
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .calc {
    padding-left: 1.0714285714rem;
    padding-right: 1.0714285714rem;
    overflow-x: hidden
  }

  .calc__icon {
    display: none
  }

  .calc__main {
    padding-right: 0
  }

  .calc__grid-reduced {
    padding-right: 0
  }

  .calc__when {
    margin-top: -.3571428571rem
  }

  .calc__robe,
  .calc__cloak,
  .calc__cloak_package:last-child {
    margin-bottom: .8571428571rem
  }

  .calc__dims {
    margin-right: 0
  }

  .calc__dims-row {
    padding-right: 0;
    padding-bottom: 1.4285714286rem
  }

  .calc__dims-remove {
    top: 4.4285714286rem
  }

  .calc__text {
    margin-top: 1.4285714286rem;
    margin-bottom: 1.4285714286rem;
    font-size: .9285714286rem
  }

  .calc__info:hover .pane {
    display: none
  }

  .calc__radio {
    height: auto
  }
}

.caveat {
  position: relative;
  cursor: pointer
}

.caveat::before {
  content: "";
  display: block;
  width: 1.5714285714rem;
  height: 1.5714285714rem;
  background: url(../images/warning.svg) center center/contain no-repeat
}

.caveat:hover .caveat__message {
  display: block;
  opacity: 1
}

.caveat__message {
  display: none;
  position: absolute;
  opacity: 0;
  min-width: 17.8571428571rem;
  padding: .7142857143rem;
  color: #ffce0a;
  z-index: 100;
  left: 50%;
  bottom: 2.5rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #3b3b3b;
  -webkit-box-shadow: #1f1f1f 0 1rem 2rem, #1f1f1f 0 .7142857143rem .7142857143rem;
  box-shadow: #1f1f1f 0 1rem 2rem, #1f1f1f 0 .7142857143rem .7142857143rem;
  border-radius: .2857142857rem;
  cursor: auto;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.caveat__message::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.8571428571rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.0714285714rem solid rgba(0, 0, 0, 0);
  border-right: 1.0714285714rem solid rgba(0, 0, 0, 0);
  border-top: 1.0714285714rem solid #3b3b3b
}

.form {
  background-color: #1f1f1f;
  padding: 2.1428571429rem 2.5714285714rem 2.8571428571rem;
  border-radius: 1.0714285714rem;
  margin-bottom: 1.0714285714rem
}

.form input.error,
.form textarea.error {
  -webkit-box-shadow: 0 0 1px 1px #b90d0d;
  box-shadow: 0 0 1px 1px #b90d0d;
  background: #af6e6e
}

.form input.valid,
.form textarea.valid {
  -webkit-box-shadow: 0 0 1px 1px #38b90d;
  box-shadow: 0 0 1px 1px #38b90d;
  background: #2f583a
}

.form__error-message {
  color: #ff9b9b
}

.form__title {
  font-size: 1.2857142857rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1
}

.form__input {
  background: -webkit-gradient(linear, left top, right top, from(#666666), color-stop(50.18%, #787878), to(#5F5F5F));
  background: linear-gradient(90deg, #666666 0%, #787878 50.18%, #5F5F5F 100%);
  margin-bottom: .6428571429rem;
  padding: .9285714286rem 1.1428571429rem;
  color: #fff
}

.form__input::-webkit-input-placeholder {
  color: hsla(0, 0%, 100%, .8156862745)
}

.form__input::-moz-placeholder {
  color: hsla(0, 0%, 100%, .8156862745)
}

.form__input:-ms-input-placeholder {
  color: hsla(0, 0%, 100%, .8156862745)
}

.form__input::-ms-input-placeholder {
  color: hsla(0, 0%, 100%, .8156862745)
}

.form__input::placeholder {
  color: hsla(0, 0%, 100%, .8156862745)
}

.form__link {
  font-size: 1rem;
  color: #9c9fa3;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

@media print,
screen and (max-width: 84.37375em) {
  .form {
    padding: 1.4285714286rem
  }

  .form__title {
    font-size: 1.1428571429rem;
    font-weight: 600;
    margin-bottom: .7142857143rem
  }

  .form__input {
    margin-bottom: .3571428571rem;
    padding: .7142857143rem .9285714286rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .form {
    padding: 1.0714285714rem
  }
}

.service {
  display: block;
  background-color: #1f1f1f;
  border-radius: .3571428571rem;
  padding: 2.5rem;
  margin-bottom: 0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.4285714286rem
}

.service:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01)
}

.service:hover .service__icon {
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

.service__title {
  font-size: 1.4285714286rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase
}

.service__icon {
  height: 9.0714285714rem;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

@media print,
screen and (max-width: 84.37375em) {
  .service {
    padding: 2.8571428571rem
  }

  .service__icon {
    height: 7.1428571429rem
  }
}

@media print,
screen and (max-width: 74.99875em) {
  .service {
    padding: 1.4285714286rem
  }

  .service__title {
    font-size: 1.1428571429rem;
    font-weight: 600
  }

  .service__icon {
    height: 5rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .service__icon {
    height: 4.2857142857rem
  }
}

.select2-container--classic {
  width: 100% !important
}

.select2-container--classic.select2-container--open .select2-dropdown {
  margin-top: .4285714286rem
}

.select2-container--classic .select2-selection--single {
  border-radius: .2857142857rem;
  border: none;
  line-height: 1;
  height: 3.2142857143rem;
  background: -webkit-gradient(linear, left top, right top, from(#666666), color-stop(50.18%, #787878), to(#5F5F5F));
  background: linear-gradient(90deg, #666666 0%, #787878 50.18%, #5F5F5F 100%)
}

.select2-results__options {
  padding-bottom: .5714285714rem;
  padding-top: .5714285714rem;
  border-radius: .2857142857rem;
  -webkit-box-shadow: 0 .1428571429rem .2142857143rem 0 rgba(0, 0, 0, .3019607843), 0 .4285714286rem .7142857143rem .2857142857rem rgba(0, 0, 0, .1490196078);
  box-shadow: 0 .1428571429rem .2142857143rem 0 rgba(0, 0, 0, .3019607843), 0 .4285714286rem .7142857143rem .2857142857rem rgba(0, 0, 0, .1490196078)
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  line-height: 1;
  padding: 1.1428571429rem 3.4285714286rem 1.1428571429rem 1.2857142857rem;
  font-size: 1.1428571429rem;
  color: #fff
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  height: 93%;
  right: 1.5714285714rem;
  border: none;
  background: rgba(0, 0, 0, 0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #cacaca rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-width: .5rem .4285714286rem 0 .4285714286rem;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #cacaca rgba(0, 0, 0, 0);
  border-width: 0 .4285714286rem .5rem .4285714286rem
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  background: -webkit-gradient(linear, left top, right top, from(#666666), color-stop(50.18%, #787878), to(#5F5F5F));
  background: linear-gradient(90deg, #666666 0%, #787878 50.18%, #5F5F5F 100%)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  background: -webkit-gradient(linear, left top, right top, from(#666666), color-stop(50.18%, #787878), to(#5F5F5F));
  background: linear-gradient(90deg, #666666 0%, #787878 50.18%, #5F5F5F 100%)
}

.select2-container--classic .select2-dropdown {
  background: -webkit-gradient(linear, left top, right top, from(#666666), color-stop(50.18%, #787878), to(#5F5F5F));
  background: linear-gradient(90deg, #666666 0%, #787878 50.18%, #5F5F5F 100%)
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: none
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border: none
}

.select2-container--classic .select2-selection--single:focus {
  border: none
}

.js-select_wide+.select2-container--classic {
  min-width: 12.1428571429rem
}

.js-select_wide+.select2-container--classic .select2-selection--single .select2-selection__rendered {
  font-size: 1.1428571429rem;
  padding: 1.0714285714rem 2.2142857143rem 1rem .7142857143rem
}

.select2-results__option {
  padding: .2857142857rem 1.2857142857rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  font-size: 1.1428571429rem
}

.select2-container--classic .select2-results__option--disabled {
  color: #9c9fa3
}

.pane {
  position: absolute;
  z-index: 100;
  bottom: 2.8571428571rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 35.7142857143rem;
  left: 50%;
  font-size: .8571428571rem;
  background: #fff;
  padding: 1.0714285714rem .7142857143rem .3571428571rem;
  color: #000;
  border-radius: .3571428571rem
}

.pane::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -.8571428571rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.0714285714rem solid rgba(0, 0, 0, 0);
  border-right: 1.0714285714rem solid rgba(0, 0, 0, 0);
  border-top: 1.0714285714rem solid #fff
}

.pane p {
  font-size: .8571428571rem
}

.pane__img {
  margin-right: 1.4285714286rem;
  max-width: 14.2857142857rem;
  max-height: 14.2857142857rem
}

@media print,
screen and (min-width: 40em)and (max-width: 59.99875em) {
  .pane {
    width: 21.4285714286rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .pane {
    position: fixed;
    top: 2vw;
    left: 2vw;
    right: 2vw;
    bottom: 2vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 95%;
    -webkit-transform: none;
    transform: none
  }

  .pane::after {
    content: none
  }

  .pane__close {
    display: block;
    width: 1.4285714286rem;
    height: 1.4285714286rem;
    position: fixed;
    top: 5vw;
    right: 5vw;
    background: url(../images/close.svg) center center no-repeat
  }
}

.tend {
  position: relative;
  padding-right: 3.7857142857rem
}

.tend__img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.tend__img_second {
  top: 12.0714285714rem
}

@media print,
screen and (max-width: 74.99875em) {
  .tend {
    padding-right: 10.7142857143rem
  }
}

@media print,
screen and (max-width: 59.99875em) {
  .tend {
    padding-right: 0
  }

  .tend__img {
    display: none
  }
}

.pickmeup {
  background: #000;
  border-radius: .4em;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: inline-block;
  position: absolute;
  -ms-touch-action: manipulation;
  touch-action: manipulation
}

.pickmeup * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.pickmeup.pmu-flat {
  position: relative
}

.pickmeup.pmu-hidden {
  display: none
}

.pickmeup .pmu-instance {
  display: inline-block;
  height: 13.8em;
  padding: .5em;
  text-align: center;
  width: 15em
}

.pickmeup .pmu-instance .pmu-button {
  color: #eee;
  cursor: pointer;
  outline: none;
  -webkit-text-decoration: none;
  text-decoration: none
}

.pickmeup .pmu-instance .pmu-today {
  background: #d06e24;
  color: #f0ab76
}

.pickmeup .pmu-instance .pmu-button:hover {
  background: rgba(0, 0, 0, 0);
  color: #f0ab76
}

.pickmeup .pmu-instance .pmu-not-in-month {
  color: #666
}

.pickmeup .pmu-instance .pmu-disabled,
.pickmeup .pmu-instance .pmu-disabled:hover {
  color: #333;
  cursor: default
}

.pickmeup .pmu-instance .pmu-selected {
  background: #e97924;
  color: #eee
}

.pickmeup .pmu-instance .pmu-not-in-month.pmu-selected {
  background: #d06e24
}

.pickmeup .pmu-instance nav {
  color: #eee;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  line-height: 2em
}

.pickmeup .pmu-instance nav *:first-child :hover {
  color: #f0ab76
}

.pickmeup .pmu-instance nav .pmu-prev,
.pickmeup .pmu-instance nav .pmu-next {
  display: none;
  height: 2em;
  width: 1em
}

.pickmeup .pmu-instance nav .pmu-month {
  width: 14em
}

.pickmeup .pmu-instance .pmu-years *,
.pickmeup .pmu-instance .pmu-months * {
  display: inline-block;
  line-height: 3.6em;
  width: 3.5em
}

.pickmeup .pmu-instance .pmu-day-of-week {
  color: #999;
  cursor: default
}

.pickmeup .pmu-instance .pmu-day-of-week *,
.pickmeup .pmu-instance .pmu-days * {
  display: inline-block;
  line-height: 1.5em;
  width: 2em
}

.pickmeup .pmu-instance .pmu-day-of-week * {
  line-height: 1.8em
}

.pickmeup .pmu-instance:first-child .pmu-prev,
.pickmeup .pmu-instance:last-child .pmu-next {
  display: block
}

.pickmeup .pmu-instance:first-child .pmu-month,
.pickmeup .pmu-instance:last-child .pmu-month {
  width: 13em
}

.pickmeup .pmu-instance:first-child:last-child .pmu-month {
  width: 12em
}

.pickmeup:not(.pmu-view-days) .pmu-days,
.pickmeup:not(.pmu-view-days) .pmu-day-of-week,
.pickmeup:not(.pmu-view-months) .pmu-months,
.pickmeup:not(.pmu-view-years) .pmu-years {
  display: none
}

.pickmeup {
  z-index: 10
}

.plex {
  display: block
}

.plex__input {
  display: none
}

.plex__label {
  position: relative;
  border-radius: .8571428571rem;
  border: .0714285714rem solid #fff;
  width: 2.8571428571rem;
  height: 1.7142857143rem;
  display: block;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  background: none
}

.plex__label:before {
  content: "";
  position: absolute;
  -webkit-transition: .3s;
  transition: .3s;
  top: .1428571429rem;
  background: #fff;
  height: 1.2857142857rem;
  width: 1.2857142857rem;
  border-radius: 50%;
  left: .1428571429rem
}

.plex__input:checked+.plex__label {
  background: #e97924;
  border: .0714285714rem solid #e97924
}

.plex__input:checked+.plex__label:before {
  left: 1.2857142857rem
}

.mesa {
  max-width: 100%;
  max-height: 28.5714285714rem;
  overflow: auto;
  margin-bottom: 5rem
}

.mesa_high {
  max-height: none
}

.mesa__table {
  margin-bottom: 0
}

.mesa__link {
  display: inline-block;
  margin-left: .4285714286rem;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-size: .9285714286rem;
  line-height: normal
}

.mesa__input {
  padding: .7142857143rem;
  height: 2.1428571429rem;
  margin-top: .3571428571rem;
  display: block
}

.mesa__select {
  width: 20.7142857143rem
}

.mesa__period {
  width: 10rem;
  display: inline-block
}

.mesa thead {
  background: #000;
  color: #fff;
  border: none;
  position: sticky;
  top: 0
}

.mesa th,
.mesa td {
  font-size: .9285714286rem;
  padding: .7142857143rem .5714285714rem;
  border: 0
}

.mesa__city-head {
  width: 12.1428571429rem
}

@media(max-width: 640px) {
  .mesa__select {
    width: 10rem
  }
}

.let {
  list-style-type: none
}

.leader {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 48.5714285714rem;
  padding-right: .7142857143rem;
  padding-left: .7142857143rem
}

.leader__block {
  padding: 3.3571428571rem 6.2857142857rem 4.9285714286rem;
  background: #1f1f1f;
  text-align: center
}

.leader__lab {
  font-weight: 500
}

.leader__h1 {
  font-weight: 800;
  color: #e97924;
  font-size: 2.2857142857rem
}

.leader__input {
  height: 3.1428571429rem;
  padding-right: 1.1428571429rem;
  padding-left: 1.1428571429rem;
  margin-bottom: 1.4285714286rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.91%, #666666), color-stop(50.04%, #7A7A7A), to(#414141));
  background: linear-gradient(90deg, #666666 0.91%, #7A7A7A 50.04%, #414141 100%);
  font-size: 1.1428571429rem;
  font-weight: normal;
  color: #fff;
  border-radius: .2142857143rem
}

.leader__input::-webkit-input-placeholder {
  color: #fff
}

.leader__input::-moz-placeholder {
  color: #fff
}

.leader__input:-ms-input-placeholder {
  color: #fff
}

.leader__input::-ms-input-placeholder {
  color: #fff
}

.leader__input::placeholder {
  color: #fff
}

@media(max-width: 640px) {
  .leader__block {
    padding: 1.4285714286rem 2.1428571429rem
  }

  .leader__h1 {
    font-size: 1.7142857143rem
  }
}

.sage {
  padding-top: 1rem
}

.sage__h1 {
  font-weight: 700;
  margin-bottom: 1.3571428571rem;
  font-size: 2.5714285714rem
}

.sage__text {
  font-weight: 500;
  margin-bottom: 2.5714285714rem;
  line-height: 1.4;
  font-size: 1.1428571429rem
}

@media print,
screen and (max-width: 39.99875em) {
  .sage {
    padding-top: 0
  }
}

.claim {
  background: linear-gradient(0deg, #1F1F1F, #1F1F1F), linear-gradient(0deg, #2D2D2D, #2D2D2D), linear-gradient(231.44deg, #454545 0%, rgba(45, 45, 45, 0) 20.67%);
  color: #fff;
  padding: 2.2142857143rem 2.7142857143rem .0714285714rem;
  margin-bottom: 2.5714285714rem;
  border-radius: 1.4285714286rem
}

.claim__img {
  width: 100%;
  height: 8.5714285714rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .9285714286rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: .0714285714rem solid #5f5f5f;
  border-radius: .2857142857rem
}

.claim__img img {
  max-width: 100%;
  display: block
}

.claim__unknown {
  cursor: pointer;
  margin-bottom: .9285714286rem
}

.claim__unknown img {
  max-width: 100%;
  display: block
}

.claim__rmv {
  position: absolute;
  top: .2857142857rem;
  right: .2857142857rem
}

.claim__rmv:hover {
  opacity: .85
}

.claim__hr {
  height: .0714285714rem;
  background: #555;
  margin-bottom: 2.2142857143rem
}

.claim__link {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: #e97924;
  font-weight: 500;
  font-size: 1rem
}

.claim__doc {
  color: #9c9fa3;
  font-weight: 500;
  font-size: 1rem
}

.claim__h2 {
  font-weight: 500;
  line-height: 1.4;
  font-size: 1.1428571429rem
}

.claim__h2_3 {
  margin-bottom: .2142857143rem
}

.claim__right {
  padding-right: .7142857143rem
}

.claim__white {
  font-weight: 500;
  font-size: 1rem;
  padding-left: .7142857143rem;
  padding-top: .7857142857rem
}

.claim__text {
  margin-bottom: .8571428571rem;
  color: #9c9fa3;
  line-height: 1.4
}

.claim__text_0 {
  margin-bottom: .2857142857rem
}

.claim__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem .8571428571rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  background: hsla(0, 0%, 100%, .031372549);
  cursor: pointer;
  margin-bottom: 1.4285714286rem;
  border-radius: .2857142857rem;
  border: .0714285714rem solid #5f5f5f;
  -webkit-box-shadow: 0 0 .0714285714rem 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 .0714285714rem 0 rgba(0, 0, 0, 0)
}

.claim__cross {
  width: 1.7142857143rem
}

.claim__name {
  padding-left: .9285714286rem;
  font-weight: 500;
  line-height: 1.4;
  font-size: 1rem;
  width: calc(100% - 1.7142857143rem)
}

@media print,
screen and (max-width: 59.99875em) {
  .claim {
    padding: .7142857143rem 1.0714285714rem
  }
}

@media print,
screen and (max-width: 39.99875em) {
  .claim__white {
    padding-top: 0;
    padding-left: 0;
    margin-bottom: 1.4285714286rem
  }
}

.pret {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: .2857142857rem;
  border: .0714285714rem solid #c66114;
  font-size: 1.0714285714rem;
  color: #e97924;
  margin-bottom: 2.0714285714rem;
  cursor: pointer;
  padding: .6428571429rem 1.4285714286rem .6428571429rem .7857142857rem;
  font-weight: 500
}

.pret img {
  margin-right: .7142857143rem
}

.pret:hover {
  background: rgba(0, 0, 0, .2)
}