
/*
 * Contrast Color w/ Luma
 *
 * Calculate the contrast based on the luma
 * value of the color, as per W3C.
 * http://www.w3.org/TR/AERT#color-contrast
 */
@keyframes fadeout {
  0% {
    opacity: 1;
    max-height: 1000px;
    visibility: visible;
  }
  99% {
    opacity: 0;
    max-height: 1000px;
    visibility: hidden;
  }
  100% {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    border: none;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.container {
  padding-left: 2rem;
  padding-right: 2rem;
  width: 72.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.row > [class*=col-] {
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
}

.col-xs-1 {
  flex: 0 0 8.3333333333%;
  width: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  flex: 0 0 16.6666666667%;
  width: 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-xs-4 {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  flex: 0 0 41.6666666667%;
  width: 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-xs-7 {
  flex: 0 0 58.3333333333%;
  width: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  flex: 0 0 66.6666666667%;
  width: 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.col-xs-10 {
  flex: 0 0 83.3333333333%;
  width: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  flex: 0 0 91.6666666667%;
  width: 91.6666666667%;
  max-width: 91.6666666667%;
}

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

@media (min-width: 34em) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 48em) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 62em) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 75em) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 90em) {
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
.col-xs-first {
  order: -1;
}

.col-xs-last {
  order: 1;
}

@media (min-width: 34em) {
  .col-sm-first {
    order: -1;
  }
  .col-sm-last {
    order: 1;
  }
}
@media (min-width: 48em) {
  .col-md-first {
    order: -1;
  }
  .col-md-last {
    order: 1;
  }
}
@media (min-width: 62em) {
  .col-lg-first {
    order: -1;
  }
  .col-lg-last {
    order: 1;
  }
}
@media (min-width: 75em) {
  .col-xl-first {
    order: -1;
  }
  .col-xl-last {
    order: 1;
  }
}
.row-xs-top {
  align-items: flex-start;
}

.row-xs-center {
  align-items: center;
}

.row-xs-bottom {
  align-items: flex-end;
}

@media (min-width: 34em) {
  .row-sm-top {
    align-items: flex-start;
  }
  .row-sm-center {
    align-items: center;
  }
  .row-sm-bottom {
    align-items: flex-end;
  }
}
@media (min-width: 48em) {
  .row-md-top {
    align-items: flex-start;
  }
  .row-md-center {
    align-items: center;
  }
  .row-md-bottom {
    align-items: flex-end;
  }
}
@media (min-width: 62em) {
  .row-lg-top {
    align-items: flex-start;
  }
  .row-lg-center {
    align-items: center;
  }
  .row-lg-bottom {
    align-items: flex-end;
  }
}
@media (min-width: 75em) {
  .row-xl-top {
    align-items: flex-start;
  }
  .row-xl-center {
    align-items: center;
  }
  .row-xl-bottom {
    align-items: flex-end;
  }
}
.col-xs-top {
  align-self: flex-start;
}

.col-xs-center {
  align-self: center;
}

.col-xs-bottom {
  align-self: flex-end;
}

@media (min-width: 34em) {
  .col-sm-top {
    align-self: flex-start;
  }
  .col-sm-center {
    align-self: center;
  }
  .col-sm-bottom {
    align-self: flex-end;
  }
}
@media (min-width: 48em) {
  .col-md-top {
    align-self: flex-start;
  }
  .col-md-center {
    align-self: center;
  }
  .col-md-bottom {
    align-self: flex-end;
  }
}
@media (min-width: 62em) {
  .col-lg-top {
    align-self: flex-start;
  }
  .col-lg-center {
    align-self: center;
  }
  .col-lg-bottom {
    align-self: flex-end;
  }
}
@media (min-width: 75em) {
  .col-xl-top {
    align-self: flex-start;
  }
  .col-xl-center {
    align-self: center;
  }
  .col-xl-bottom {
    align-self: flex-end;
  }
}
.row.is-gutter-width-0-xs-up {
  margin-left: 0;
  margin-right: 0;
}
.row.is-gutter-width-0-xs-up > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-0-xs-down {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-xs-down > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-0-xs-only {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-xs-only > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-0-sm-up {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-sm-up > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-0-sm-down {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-sm-down > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-0-sm-only {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-sm-only > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-0-md-up {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-md-up > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-0-md-down {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-md-down > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-0-md-only {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-md-only > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-0-lg-up {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-lg-up > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-0-lg-down {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-lg-down > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-0-lg-only {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-lg-only > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-0-xl-up {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-xl-up > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-0-xl-down {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-xl-down > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-0-xl-only {
    margin-left: 0;
    margin-right: 0;
  }
  .row.is-gutter-width-0-xl-only > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
.row.is-gutter-width-0 {
  margin-left: 0;
  margin-right: 0;
}
.row.is-gutter-width-0 > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.row.is-gutter-width-4-xs-up {
  margin-left: 0.25;
  margin-right: 0.25;
}
.row.is-gutter-width-4-xs-up > [class*=col-] {
  padding-left: 0.25;
  padding-right: 0.25;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-4-xs-down {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-xs-down > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-4-xs-only {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-xs-only > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-4-sm-up {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-sm-up > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-4-sm-down {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-sm-down > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-4-sm-only {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-sm-only > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-4-md-up {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-md-up > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-4-md-down {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-md-down > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-4-md-only {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-md-only > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-4-lg-up {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-lg-up > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-4-lg-down {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-lg-down > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-4-lg-only {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-lg-only > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-4-xl-up {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-xl-up > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-4-xl-down {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-xl-down > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-4-xl-only {
    margin-left: 0.25;
    margin-right: 0.25;
  }
  .row.is-gutter-width-4-xl-only > [class*=col-] {
    padding-left: 0.25;
    padding-right: 0.25;
  }
}
.row.is-gutter-width-4 {
  margin-left: 0.25;
  margin-right: 0.25;
}
.row.is-gutter-width-4 > [class*=col-] {
  padding-left: 0.25;
  padding-right: 0.25;
}
.row.is-gutter-width-8-xs-up {
  margin-left: 0.5;
  margin-right: 0.5;
}
.row.is-gutter-width-8-xs-up > [class*=col-] {
  padding-left: 0.5;
  padding-right: 0.5;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-8-xs-down {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-xs-down > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-8-xs-only {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-xs-only > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-8-sm-up {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-sm-up > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-8-sm-down {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-sm-down > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-8-sm-only {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-sm-only > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-8-md-up {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-md-up > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-8-md-down {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-md-down > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-8-md-only {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-md-only > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-8-lg-up {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-lg-up > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-8-lg-down {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-lg-down > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-8-lg-only {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-lg-only > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-8-xl-up {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-xl-up > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-8-xl-down {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-xl-down > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-8-xl-only {
    margin-left: 0.5;
    margin-right: 0.5;
  }
  .row.is-gutter-width-8-xl-only > [class*=col-] {
    padding-left: 0.5;
    padding-right: 0.5;
  }
}
.row.is-gutter-width-8 {
  margin-left: 0.5;
  margin-right: 0.5;
}
.row.is-gutter-width-8 > [class*=col-] {
  padding-left: 0.5;
  padding-right: 0.5;
}
.row.is-gutter-width-12-xs-up {
  margin-left: 0.75;
  margin-right: 0.75;
}
.row.is-gutter-width-12-xs-up > [class*=col-] {
  padding-left: 0.75;
  padding-right: 0.75;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-12-xs-down {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-xs-down > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-12-xs-only {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-xs-only > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-12-sm-up {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-sm-up > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-12-sm-down {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-sm-down > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-12-sm-only {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-sm-only > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-12-md-up {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-md-up > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-12-md-down {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-md-down > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-12-md-only {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-md-only > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-12-lg-up {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-lg-up > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-12-lg-down {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-lg-down > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-12-lg-only {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-lg-only > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-12-xl-up {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-xl-up > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-12-xl-down {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-xl-down > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-12-xl-only {
    margin-left: 0.75;
    margin-right: 0.75;
  }
  .row.is-gutter-width-12-xl-only > [class*=col-] {
    padding-left: 0.75;
    padding-right: 0.75;
  }
}
.row.is-gutter-width-12 {
  margin-left: 0.75;
  margin-right: 0.75;
}
.row.is-gutter-width-12 > [class*=col-] {
  padding-left: 0.75;
  padding-right: 0.75;
}
.row.is-gutter-width-16-xs-up {
  margin-left: 1;
  margin-right: 1;
}
.row.is-gutter-width-16-xs-up > [class*=col-] {
  padding-left: 1;
  padding-right: 1;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-16-xs-down {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-xs-down > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-16-xs-only {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-xs-only > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-16-sm-up {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-sm-up > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-16-sm-down {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-sm-down > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-16-sm-only {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-sm-only > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-16-md-up {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-md-up > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-16-md-down {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-md-down > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-16-md-only {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-md-only > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-16-lg-up {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-lg-up > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-16-lg-down {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-lg-down > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-16-lg-only {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-lg-only > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-16-xl-up {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-xl-up > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-16-xl-down {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-xl-down > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-16-xl-only {
    margin-left: 1;
    margin-right: 1;
  }
  .row.is-gutter-width-16-xl-only > [class*=col-] {
    padding-left: 1;
    padding-right: 1;
  }
}
.row.is-gutter-width-16 {
  margin-left: 1;
  margin-right: 1;
}
.row.is-gutter-width-16 > [class*=col-] {
  padding-left: 1;
  padding-right: 1;
}
.row.is-gutter-width-20-xs-up {
  margin-left: 1.25;
  margin-right: 1.25;
}
.row.is-gutter-width-20-xs-up > [class*=col-] {
  padding-left: 1.25;
  padding-right: 1.25;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-20-xs-down {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-xs-down > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-20-xs-only {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-xs-only > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-20-sm-up {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-sm-up > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-20-sm-down {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-sm-down > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-20-sm-only {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-sm-only > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-20-md-up {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-md-up > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-20-md-down {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-md-down > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-20-md-only {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-md-only > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-20-lg-up {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-lg-up > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-20-lg-down {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-lg-down > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-20-lg-only {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-lg-only > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-20-xl-up {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-xl-up > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-20-xl-down {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-xl-down > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-20-xl-only {
    margin-left: 1.25;
    margin-right: 1.25;
  }
  .row.is-gutter-width-20-xl-only > [class*=col-] {
    padding-left: 1.25;
    padding-right: 1.25;
  }
}
.row.is-gutter-width-20 {
  margin-left: 1.25;
  margin-right: 1.25;
}
.row.is-gutter-width-20 > [class*=col-] {
  padding-left: 1.25;
  padding-right: 1.25;
}
.row.is-gutter-width-24-xs-up {
  margin-left: 1.5;
  margin-right: 1.5;
}
.row.is-gutter-width-24-xs-up > [class*=col-] {
  padding-left: 1.5;
  padding-right: 1.5;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-24-xs-down {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-xs-down > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-24-xs-only {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-xs-only > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-24-sm-up {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-sm-up > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-24-sm-down {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-sm-down > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-24-sm-only {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-sm-only > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-24-md-up {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-md-up > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-24-md-down {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-md-down > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-24-md-only {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-md-only > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-24-lg-up {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-lg-up > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-24-lg-down {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-lg-down > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-24-lg-only {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-lg-only > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-24-xl-up {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-xl-up > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-24-xl-down {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-xl-down > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-24-xl-only {
    margin-left: 1.5;
    margin-right: 1.5;
  }
  .row.is-gutter-width-24-xl-only > [class*=col-] {
    padding-left: 1.5;
    padding-right: 1.5;
  }
}
.row.is-gutter-width-24 {
  margin-left: 1.5;
  margin-right: 1.5;
}
.row.is-gutter-width-24 > [class*=col-] {
  padding-left: 1.5;
  padding-right: 1.5;
}
.row.is-gutter-width-28-xs-up {
  margin-left: 1.75;
  margin-right: 1.75;
}
.row.is-gutter-width-28-xs-up > [class*=col-] {
  padding-left: 1.75;
  padding-right: 1.75;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-28-xs-down {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-xs-down > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-28-xs-only {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-xs-only > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-28-sm-up {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-sm-up > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-28-sm-down {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-sm-down > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-28-sm-only {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-sm-only > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-28-md-up {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-md-up > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-28-md-down {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-md-down > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-28-md-only {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-md-only > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-28-lg-up {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-lg-up > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-28-lg-down {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-lg-down > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-28-lg-only {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-lg-only > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-28-xl-up {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-xl-up > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-28-xl-down {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-xl-down > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-28-xl-only {
    margin-left: 1.75;
    margin-right: 1.75;
  }
  .row.is-gutter-width-28-xl-only > [class*=col-] {
    padding-left: 1.75;
    padding-right: 1.75;
  }
}
.row.is-gutter-width-28 {
  margin-left: 1.75;
  margin-right: 1.75;
}
.row.is-gutter-width-28 > [class*=col-] {
  padding-left: 1.75;
  padding-right: 1.75;
}
.row.is-gutter-width-32-xs-up {
  margin-left: 2;
  margin-right: 2;
}
.row.is-gutter-width-32-xs-up > [class*=col-] {
  padding-left: 2;
  padding-right: 2;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-32-xs-down {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-xs-down > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-32-xs-only {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-xs-only > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-32-sm-up {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-sm-up > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-32-sm-down {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-sm-down > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-32-sm-only {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-sm-only > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-32-md-up {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-md-up > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-32-md-down {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-md-down > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-32-md-only {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-md-only > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-32-lg-up {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-lg-up > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-32-lg-down {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-lg-down > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-32-lg-only {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-lg-only > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-32-xl-up {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-xl-up > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-32-xl-down {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-xl-down > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-32-xl-only {
    margin-left: 2;
    margin-right: 2;
  }
  .row.is-gutter-width-32-xl-only > [class*=col-] {
    padding-left: 2;
    padding-right: 2;
  }
}
.row.is-gutter-width-32 {
  margin-left: 2;
  margin-right: 2;
}
.row.is-gutter-width-32 > [class*=col-] {
  padding-left: 2;
  padding-right: 2;
}
.row.is-gutter-width-36-xs-up {
  margin-left: 2.25;
  margin-right: 2.25;
}
.row.is-gutter-width-36-xs-up > [class*=col-] {
  padding-left: 2.25;
  padding-right: 2.25;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-36-xs-down {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-xs-down > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-36-xs-only {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-xs-only > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-36-sm-up {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-sm-up > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-36-sm-down {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-sm-down > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-36-sm-only {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-sm-only > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-36-md-up {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-md-up > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-36-md-down {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-md-down > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-36-md-only {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-md-only > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-36-lg-up {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-lg-up > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-36-lg-down {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-lg-down > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-36-lg-only {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-lg-only > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-36-xl-up {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-xl-up > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-36-xl-down {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-xl-down > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-36-xl-only {
    margin-left: 2.25;
    margin-right: 2.25;
  }
  .row.is-gutter-width-36-xl-only > [class*=col-] {
    padding-left: 2.25;
    padding-right: 2.25;
  }
}
.row.is-gutter-width-36 {
  margin-left: 2.25;
  margin-right: 2.25;
}
.row.is-gutter-width-36 > [class*=col-] {
  padding-left: 2.25;
  padding-right: 2.25;
}
.row.is-gutter-width-40-xs-up {
  margin-left: 2.5;
  margin-right: 2.5;
}
.row.is-gutter-width-40-xs-up > [class*=col-] {
  padding-left: 2.5;
  padding-right: 2.5;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-40-xs-down {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-xs-down > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-40-xs-only {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-xs-only > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-40-sm-up {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-sm-up > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-40-sm-down {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-sm-down > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-40-sm-only {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-sm-only > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-40-md-up {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-md-up > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-40-md-down {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-md-down > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-40-md-only {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-md-only > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-40-lg-up {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-lg-up > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-40-lg-down {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-lg-down > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-40-lg-only {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-lg-only > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-40-xl-up {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-xl-up > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-40-xl-down {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-xl-down > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-40-xl-only {
    margin-left: 2.5;
    margin-right: 2.5;
  }
  .row.is-gutter-width-40-xl-only > [class*=col-] {
    padding-left: 2.5;
    padding-right: 2.5;
  }
}
.row.is-gutter-width-40 {
  margin-left: 2.5;
  margin-right: 2.5;
}
.row.is-gutter-width-40 > [class*=col-] {
  padding-left: 2.5;
  padding-right: 2.5;
}
.row.is-gutter-width-44-xs-up {
  margin-left: 2.75;
  margin-right: 2.75;
}
.row.is-gutter-width-44-xs-up > [class*=col-] {
  padding-left: 2.75;
  padding-right: 2.75;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-44-xs-down {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-xs-down > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-44-xs-only {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-xs-only > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-44-sm-up {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-sm-up > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-44-sm-down {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-sm-down > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-44-sm-only {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-sm-only > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-44-md-up {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-md-up > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-44-md-down {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-md-down > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-44-md-only {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-md-only > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-44-lg-up {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-lg-up > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-44-lg-down {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-lg-down > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-44-lg-only {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-lg-only > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-44-xl-up {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-xl-up > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-44-xl-down {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-xl-down > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-44-xl-only {
    margin-left: 2.75;
    margin-right: 2.75;
  }
  .row.is-gutter-width-44-xl-only > [class*=col-] {
    padding-left: 2.75;
    padding-right: 2.75;
  }
}
.row.is-gutter-width-44 {
  margin-left: 2.75;
  margin-right: 2.75;
}
.row.is-gutter-width-44 > [class*=col-] {
  padding-left: 2.75;
  padding-right: 2.75;
}
.row.is-gutter-width-48-xs-up {
  margin-left: 3;
  margin-right: 3;
}
.row.is-gutter-width-48-xs-up > [class*=col-] {
  padding-left: 3;
  padding-right: 3;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-48-xs-down {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-xs-down > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-48-xs-only {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-xs-only > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-48-sm-up {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-sm-up > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-48-sm-down {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-sm-down > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-48-sm-only {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-sm-only > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-48-md-up {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-md-up > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-48-md-down {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-md-down > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-48-md-only {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-md-only > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-48-lg-up {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-lg-up > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-48-lg-down {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-lg-down > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-48-lg-only {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-lg-only > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-48-xl-up {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-xl-up > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-48-xl-down {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-xl-down > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-48-xl-only {
    margin-left: 3;
    margin-right: 3;
  }
  .row.is-gutter-width-48-xl-only > [class*=col-] {
    padding-left: 3;
    padding-right: 3;
  }
}
.row.is-gutter-width-48 {
  margin-left: 3;
  margin-right: 3;
}
.row.is-gutter-width-48 > [class*=col-] {
  padding-left: 3;
  padding-right: 3;
}
.row.is-gutter-width-52-xs-up {
  margin-left: 3.25;
  margin-right: 3.25;
}
.row.is-gutter-width-52-xs-up > [class*=col-] {
  padding-left: 3.25;
  padding-right: 3.25;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-52-xs-down {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-xs-down > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-52-xs-only {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-xs-only > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-52-sm-up {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-sm-up > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-52-sm-down {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-sm-down > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-52-sm-only {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-sm-only > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-52-md-up {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-md-up > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-52-md-down {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-md-down > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-52-md-only {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-md-only > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-52-lg-up {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-lg-up > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-52-lg-down {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-lg-down > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-52-lg-only {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-lg-only > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-52-xl-up {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-xl-up > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-52-xl-down {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-xl-down > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-52-xl-only {
    margin-left: 3.25;
    margin-right: 3.25;
  }
  .row.is-gutter-width-52-xl-only > [class*=col-] {
    padding-left: 3.25;
    padding-right: 3.25;
  }
}
.row.is-gutter-width-52 {
  margin-left: 3.25;
  margin-right: 3.25;
}
.row.is-gutter-width-52 > [class*=col-] {
  padding-left: 3.25;
  padding-right: 3.25;
}
.row.is-gutter-width-56-xs-up {
  margin-left: 3.5;
  margin-right: 3.5;
}
.row.is-gutter-width-56-xs-up > [class*=col-] {
  padding-left: 3.5;
  padding-right: 3.5;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-56-xs-down {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-xs-down > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-56-xs-only {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-xs-only > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-56-sm-up {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-sm-up > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-56-sm-down {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-sm-down > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-56-sm-only {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-sm-only > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-56-md-up {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-md-up > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-56-md-down {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-md-down > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-56-md-only {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-md-only > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-56-lg-up {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-lg-up > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-56-lg-down {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-lg-down > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-56-lg-only {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-lg-only > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-56-xl-up {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-xl-up > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-56-xl-down {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-xl-down > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-56-xl-only {
    margin-left: 3.5;
    margin-right: 3.5;
  }
  .row.is-gutter-width-56-xl-only > [class*=col-] {
    padding-left: 3.5;
    padding-right: 3.5;
  }
}
.row.is-gutter-width-56 {
  margin-left: 3.5;
  margin-right: 3.5;
}
.row.is-gutter-width-56 > [class*=col-] {
  padding-left: 3.5;
  padding-right: 3.5;
}
.row.is-gutter-width-60-xs-up {
  margin-left: 3.75;
  margin-right: 3.75;
}
.row.is-gutter-width-60-xs-up > [class*=col-] {
  padding-left: 3.75;
  padding-right: 3.75;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-60-xs-down {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-xs-down > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-60-xs-only {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-xs-only > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-60-sm-up {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-sm-up > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-60-sm-down {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-sm-down > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-60-sm-only {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-sm-only > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-60-md-up {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-md-up > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-60-md-down {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-md-down > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-60-md-only {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-md-only > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-60-lg-up {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-lg-up > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-60-lg-down {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-lg-down > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-60-lg-only {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-lg-only > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-60-xl-up {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-xl-up > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-60-xl-down {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-xl-down > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-60-xl-only {
    margin-left: 3.75;
    margin-right: 3.75;
  }
  .row.is-gutter-width-60-xl-only > [class*=col-] {
    padding-left: 3.75;
    padding-right: 3.75;
  }
}
.row.is-gutter-width-60 {
  margin-left: 3.75;
  margin-right: 3.75;
}
.row.is-gutter-width-60 > [class*=col-] {
  padding-left: 3.75;
  padding-right: 3.75;
}
.row.is-gutter-width-64-xs-up {
  margin-left: 4;
  margin-right: 4;
}
.row.is-gutter-width-64-xs-up > [class*=col-] {
  padding-left: 4;
  padding-right: 4;
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-64-xs-down {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-xs-down > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (max-width: 33.9375em) {
  .row.is-gutter-width-64-xs-only {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-xs-only > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 34em) {
  .row.is-gutter-width-64-sm-up {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-sm-up > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (max-width: 47.9375em) {
  .row.is-gutter-width-64-sm-down {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-sm-down > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .row.is-gutter-width-64-sm-only {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-sm-only > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 48em) {
  .row.is-gutter-width-64-md-up {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-md-up > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (max-width: 61.9375em) {
  .row.is-gutter-width-64-md-down {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-md-down > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .row.is-gutter-width-64-md-only {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-md-only > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 62em) {
  .row.is-gutter-width-64-lg-up {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-lg-up > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (max-width: 74.9375em) {
  .row.is-gutter-width-64-lg-down {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-lg-down > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .row.is-gutter-width-64-lg-only {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-lg-only > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 75em) {
  .row.is-gutter-width-64-xl-up {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-xl-up > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (max-width: 89.9375em) {
  .row.is-gutter-width-64-xl-down {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-xl-down > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .row.is-gutter-width-64-xl-only {
    margin-left: 4;
    margin-right: 4;
  }
  .row.is-gutter-width-64-xl-only > [class*=col-] {
    padding-left: 4;
    padding-right: 4;
  }
}
.row.is-gutter-width-64 {
  margin-left: 4;
  margin-right: 4;
}
.row.is-gutter-width-64 > [class*=col-] {
  padding-left: 4;
  padding-right: 4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

[type=color], [type=date], [type=datetime], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], input:not([type]), textarea,
select,
button {
  outline: none;
}

video,
img,
canvas {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  line-height: inherit;
}

body {
  line-height: 1;
}

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

ul,
ol {
  list-style: none;
}

input[type=number],
input[type=datetime-local],
input[type=time] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=date],
input[type=time] {
  -webkit-appearance: none;
}

input[type=file] {
  max-width: 100%;
}

hr {
  border: none;
}

a {
  word-wrap: break-word;
  word-break: break-all;
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted; /* Add a bordered underline effect in all browsers */
  text-decoration: none; /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic; /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto; /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden; /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block; /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

html {
  scroll-behavior: smooth;
}
html > img {
  position: absolute;
  left: 0;
  top: 0;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #1E2D3C;
}
body.is-ie11 {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #a4aaad;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #a4aaad;
}
input::-moz-placeholde,
textarea::-moz-placeholde {
  color: #a4aaad;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a4aaad;
}

@media (max-width: 47.9375em) {
  html body .row {
    margin-left: 0;
    margin-right: 0;
  }
  html body .row > .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
  }
}
a {
  color: #1A0DAB;
}

.container .container {
  padding-left: 0;
  padding-right: 0;
}

body.is-easylogin table p {
  max-width: 15rem;
}

@media (max-width: 47.9375em) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.a-table a:not[class*=a-button]:link {
  color: #1A0DAB;
}
.a-table a:not[class*=a-button]:visited {
  color: #660099;
}
.a-table a:not[class*=a-button]:hover {
  color: #660099;
}
.a-table a:not[class*=a-button]:active {
  color: #660099;
}

.u-ai-center {
  align-items: center;
}

@media (max-width: 33.9375em) {
  .xs\:u-ai-center {
    align-items: center;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ai-center {
    align-items: center;
  }
}
.xs-up\:u-ai-center {
  align-items: center;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ai-center {
    align-items: center;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ai-center {
    align-items: center;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ai-center {
    align-items: center;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ai-center {
    align-items: center;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ai-center {
    align-items: center;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ai-center {
    align-items: center;
  }
}
.xxl-down\:u-ai-center {
  align-items: center;
}

@media (min-width: 90em) {
  .xxl-up\:u-ai-center {
    align-items: center;
  }
}
.u-ai-flex-end {
  align-items: flex-end;
}

@media (max-width: 33.9375em) {
  .xs\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ai-flex-end {
    align-items: flex-end;
  }
}
.xs-up\:u-ai-flex-end {
  align-items: flex-end;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ai-flex-end {
    align-items: flex-end;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ai-flex-end {
    align-items: flex-end;
  }
}
.xxl-down\:u-ai-flex-end {
  align-items: flex-end;
}

@media (min-width: 90em) {
  .xxl-up\:u-ai-flex-end {
    align-items: flex-end;
  }
}
.u-ai-flex-start {
  align-items: flex-start;
}

@media (max-width: 33.9375em) {
  .xs\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ai-flex-start {
    align-items: flex-start;
  }
}
.xs-up\:u-ai-flex-start {
  align-items: flex-start;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ai-flex-start {
    align-items: flex-start;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ai-flex-start {
    align-items: flex-start;
  }
}
.xxl-down\:u-ai-flex-start {
  align-items: flex-start;
}

@media (min-width: 90em) {
  .xxl-up\:u-ai-flex-start {
    align-items: flex-start;
  }
}
.u-ai-baseline {
  align-items: baseline;
}

@media (max-width: 33.9375em) {
  .xs\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ai-baseline {
    align-items: baseline;
  }
}
.xs-up\:u-ai-baseline {
  align-items: baseline;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ai-baseline {
    align-items: baseline;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ai-baseline {
    align-items: baseline;
  }
}
.xxl-down\:u-ai-baseline {
  align-items: baseline;
}

@media (min-width: 90em) {
  .xxl-up\:u-ai-baseline {
    align-items: baseline;
  }
}
.u-ai-stretch {
  align-items: stretch;
}

@media (max-width: 33.9375em) {
  .xs\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ai-stretch {
    align-items: stretch;
  }
}
.xs-up\:u-ai-stretch {
  align-items: stretch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ai-stretch {
    align-items: stretch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ai-stretch {
    align-items: stretch;
  }
}
.xxl-down\:u-ai-stretch {
  align-items: stretch;
}

@media (min-width: 90em) {
  .xxl-up\:u-ai-stretch {
    align-items: stretch;
  }
}
.u-bgc-accent {
  background-color: #F01E28;
}

.u-bgc-main {
  background-color: #1E2D3C;
}

.u-bgc-base {
  background-color: #ffffff;
}

.u-bgc-primary {
  background-color: #2d4b87;
}

.u-bgc-secondary {
  background-color: #FAFAFB;
}

.u-bgc-warning {
  background-color: #FEBB02;
}

.u-bgc-danger {
  background-color: #F01E28;
}

.u-bgc-info {
  background-color: #29c3d4;
}

.u-bgc-success {
  background-color: #42bda2;
}

.u-c-accent {
  color: #F01E28;
}

.u-c-main {
  color: #1E2D3C;
}

.u-c-base {
  color: #ffffff;
}

.u-c-primary {
  color: #2d4b87;
}

.u-c-secondary {
  color: #FAFAFB;
}

.u-c-warning {
  color: #FEBB02;
}

.u-c-danger {
  color: #F01E28;
}

.u-c-info {
  color: #29c3d4;
}

.u-c-success {
  color: #42bda2;
}

.u-c-default-text {
  color: #1E2D3C;
}

.u-c-reversal-text {
  color: #ffffff;
}

.u-c-link-text {
  color: #1A0DAB;
}

.u-c-visited-text {
  color: #660099;
}

.u-c-muted-text {
  color: #9494a0;
}

.u-c-placeholder-text {
  color: #a4aaad;
}

.u-fz-10 {
  font-size: 8rem;
}

.u-fz-9 {
  font-size: 4rem;
}

.u-fz-8 {
  font-size: 2.6666666667rem;
}

.u-fz-7 {
  font-size: 2rem;
}

.u-fz-6 {
  font-size: 1.6rem;
}

.u-fz-5 {
  font-size: 1.3333333333rem;
}

.u-fz-4 {
  font-size: 1.1428571429rem;
}

.u-fz-3 {
  font-size: 1rem;
}

.u-fz-2 {
  font-size: 0.8888888889rem;
}

.u-fz-1 {
  font-size: 0.8rem;
}

@media (max-width: 33.9375em) {
  .xs\:u-fz-10 {
    font-size: 8rem;
  }
  .xs\:u-fz-9 {
    font-size: 4rem;
  }
  .xs\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .xs\:u-fz-7 {
    font-size: 2rem;
  }
  .xs\:u-fz-6 {
    font-size: 1.6rem;
  }
  .xs\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .xs\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .xs\:u-fz-3 {
    font-size: 1rem;
  }
  .xs\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .xs\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-fz-10 {
    font-size: 8rem;
  }
  .sm\:u-fz-9 {
    font-size: 4rem;
  }
  .sm\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .sm\:u-fz-7 {
    font-size: 2rem;
  }
  .sm\:u-fz-6 {
    font-size: 1.6rem;
  }
  .sm\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .sm\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .sm\:u-fz-3 {
    font-size: 1rem;
  }
  .sm\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .sm\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-fz-10 {
    font-size: 8rem;
  }
  .md\:u-fz-9 {
    font-size: 4rem;
  }
  .md\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .md\:u-fz-7 {
    font-size: 2rem;
  }
  .md\:u-fz-6 {
    font-size: 1.6rem;
  }
  .md\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .md\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .md\:u-fz-3 {
    font-size: 1rem;
  }
  .md\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .md\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-fz-10 {
    font-size: 8rem;
  }
  .lg\:u-fz-9 {
    font-size: 4rem;
  }
  .lg\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .lg\:u-fz-7 {
    font-size: 2rem;
  }
  .lg\:u-fz-6 {
    font-size: 1.6rem;
  }
  .lg\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .lg\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .lg\:u-fz-3 {
    font-size: 1rem;
  }
  .lg\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .lg\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-fz-10 {
    font-size: 8rem;
  }
  .xl\:u-fz-9 {
    font-size: 4rem;
  }
  .xl\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .xl\:u-fz-7 {
    font-size: 2rem;
  }
  .xl\:u-fz-6 {
    font-size: 1.6rem;
  }
  .xl\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .xl\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .xl\:u-fz-3 {
    font-size: 1rem;
  }
  .xl\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .xl\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 90em) {
  .xxl\:u-fz-10 {
    font-size: 8rem;
  }
  .xxl\:u-fz-9 {
    font-size: 4rem;
  }
  .xxl\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .xxl\:u-fz-7 {
    font-size: 2rem;
  }
  .xxl\:u-fz-6 {
    font-size: 1.6rem;
  }
  .xxl\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .xxl\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .xxl\:u-fz-3 {
    font-size: 1rem;
  }
  .xxl\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .xxl\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-fz-10 {
    font-size: 8rem;
  }
  .xs-down\:u-fz-9 {
    font-size: 4rem;
  }
  .xs-down\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .xs-down\:u-fz-7 {
    font-size: 2rem;
  }
  .xs-down\:u-fz-6 {
    font-size: 1.6rem;
  }
  .xs-down\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .xs-down\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .xs-down\:u-fz-3 {
    font-size: 1rem;
  }
  .xs-down\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .xs-down\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-fz-10 {
    font-size: 8rem;
  }
  .sm-down\:u-fz-9 {
    font-size: 4rem;
  }
  .sm-down\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .sm-down\:u-fz-7 {
    font-size: 2rem;
  }
  .sm-down\:u-fz-6 {
    font-size: 1.6rem;
  }
  .sm-down\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .sm-down\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .sm-down\:u-fz-3 {
    font-size: 1rem;
  }
  .sm-down\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .sm-down\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-fz-10 {
    font-size: 8rem;
  }
  .md-down\:u-fz-9 {
    font-size: 4rem;
  }
  .md-down\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .md-down\:u-fz-7 {
    font-size: 2rem;
  }
  .md-down\:u-fz-6 {
    font-size: 1.6rem;
  }
  .md-down\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .md-down\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .md-down\:u-fz-3 {
    font-size: 1rem;
  }
  .md-down\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .md-down\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-fz-10 {
    font-size: 8rem;
  }
  .lg-down\:u-fz-9 {
    font-size: 4rem;
  }
  .lg-down\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .lg-down\:u-fz-7 {
    font-size: 2rem;
  }
  .lg-down\:u-fz-6 {
    font-size: 1.6rem;
  }
  .lg-down\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .lg-down\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .lg-down\:u-fz-3 {
    font-size: 1rem;
  }
  .lg-down\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .lg-down\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-fz-10 {
    font-size: 8rem;
  }
  .xl-down\:u-fz-9 {
    font-size: 4rem;
  }
  .xl-down\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .xl-down\:u-fz-7 {
    font-size: 2rem;
  }
  .xl-down\:u-fz-6 {
    font-size: 1.6rem;
  }
  .xl-down\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .xl-down\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .xl-down\:u-fz-3 {
    font-size: 1rem;
  }
  .xl-down\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .xl-down\:u-fz-1 {
    font-size: 0.8rem;
  }
}
.xxl-down\:u-fz-10 {
  font-size: 8rem;
}

.xxl-down\:u-fz-9 {
  font-size: 4rem;
}

.xxl-down\:u-fz-8 {
  font-size: 2.6666666667rem;
}

.xxl-down\:u-fz-7 {
  font-size: 2rem;
}

.xxl-down\:u-fz-6 {
  font-size: 1.6rem;
}

.xxl-down\:u-fz-5 {
  font-size: 1.3333333333rem;
}

.xxl-down\:u-fz-4 {
  font-size: 1.1428571429rem;
}

.xxl-down\:u-fz-3 {
  font-size: 1rem;
}

.xxl-down\:u-fz-2 {
  font-size: 0.8888888889rem;
}

.xxl-down\:u-fz-1 {
  font-size: 0.8rem;
}

.xs-up\:u-fz-10 {
  font-size: 8rem;
}

.xs-up\:u-fz-9 {
  font-size: 4rem;
}

.xs-up\:u-fz-8 {
  font-size: 2.6666666667rem;
}

.xs-up\:u-fz-7 {
  font-size: 2rem;
}

.xs-up\:u-fz-6 {
  font-size: 1.6rem;
}

.xs-up\:u-fz-5 {
  font-size: 1.3333333333rem;
}

.xs-up\:u-fz-4 {
  font-size: 1.1428571429rem;
}

.xs-up\:u-fz-3 {
  font-size: 1rem;
}

.xs-up\:u-fz-2 {
  font-size: 0.8888888889rem;
}

.xs-up\:u-fz-1 {
  font-size: 0.8rem;
}

@media (min-width: 34em) {
  .sm-up\:u-fz-10 {
    font-size: 8rem;
  }
  .sm-up\:u-fz-9 {
    font-size: 4rem;
  }
  .sm-up\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .sm-up\:u-fz-7 {
    font-size: 2rem;
  }
  .sm-up\:u-fz-6 {
    font-size: 1.6rem;
  }
  .sm-up\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .sm-up\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .sm-up\:u-fz-3 {
    font-size: 1rem;
  }
  .sm-up\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .sm-up\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 48em) {
  .md-up\:u-fz-10 {
    font-size: 8rem;
  }
  .md-up\:u-fz-9 {
    font-size: 4rem;
  }
  .md-up\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .md-up\:u-fz-7 {
    font-size: 2rem;
  }
  .md-up\:u-fz-6 {
    font-size: 1.6rem;
  }
  .md-up\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .md-up\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .md-up\:u-fz-3 {
    font-size: 1rem;
  }
  .md-up\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .md-up\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-fz-10 {
    font-size: 8rem;
  }
  .lg-up\:u-fz-9 {
    font-size: 4rem;
  }
  .lg-up\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .lg-up\:u-fz-7 {
    font-size: 2rem;
  }
  .lg-up\:u-fz-6 {
    font-size: 1.6rem;
  }
  .lg-up\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .lg-up\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .lg-up\:u-fz-3 {
    font-size: 1rem;
  }
  .lg-up\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .lg-up\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-fz-10 {
    font-size: 8rem;
  }
  .xl-up\:u-fz-9 {
    font-size: 4rem;
  }
  .xl-up\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .xl-up\:u-fz-7 {
    font-size: 2rem;
  }
  .xl-up\:u-fz-6 {
    font-size: 1.6rem;
  }
  .xl-up\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .xl-up\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .xl-up\:u-fz-3 {
    font-size: 1rem;
  }
  .xl-up\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .xl-up\:u-fz-1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 90em) {
  .xxl-up\:u-fz-10 {
    font-size: 8rem;
  }
  .xxl-up\:u-fz-9 {
    font-size: 4rem;
  }
  .xxl-up\:u-fz-8 {
    font-size: 2.6666666667rem;
  }
  .xxl-up\:u-fz-7 {
    font-size: 2rem;
  }
  .xxl-up\:u-fz-6 {
    font-size: 1.6rem;
  }
  .xxl-up\:u-fz-5 {
    font-size: 1.3333333333rem;
  }
  .xxl-up\:u-fz-4 {
    font-size: 1.1428571429rem;
  }
  .xxl-up\:u-fz-3 {
    font-size: 1rem;
  }
  .xxl-up\:u-fz-2 {
    font-size: 0.8888888889rem;
  }
  .xxl-up\:u-fz-1 {
    font-size: 0.8rem;
  }
}
.u-jc-center {
  justify-content: center;
}

@media (max-width: 33.9375em) {
  .xs\:u-jc-center {
    justify-content: center;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-jc-center {
    justify-content: center;
  }
}
.xs-up\:u-jc-center {
  justify-content: center;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-jc-center {
    justify-content: center;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-jc-center {
    justify-content: center;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 48em) {
  .md-up\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-jc-center {
    justify-content: center;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-jc-center {
    justify-content: center;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-jc-center {
    justify-content: center;
  }
}
@media (min-width: 90em) {
  .xxl\:u-jc-center {
    justify-content: center;
  }
}
.xxl-down\:u-jc-center {
  justify-content: center;
}

@media (min-width: 90em) {
  .xxl-up\:u-jc-center {
    justify-content: center;
  }
}
.u-jc-flex-end {
  justify-content: flex-end;
}

@media (max-width: 33.9375em) {
  .xs\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
.xs-up\:u-jc-flex-end {
  justify-content: flex-end;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 48em) {
  .md-up\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 90em) {
  .xxl\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
.xxl-down\:u-jc-flex-end {
  justify-content: flex-end;
}

@media (min-width: 90em) {
  .xxl-up\:u-jc-flex-end {
    justify-content: flex-end;
  }
}
.u-jc-flex-start {
  justify-content: flex-start;
}

@media (max-width: 33.9375em) {
  .xs\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
.xs-up\:u-jc-flex-start {
  justify-content: flex-start;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 48em) {
  .md-up\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 90em) {
  .xxl\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
.xxl-down\:u-jc-flex-start {
  justify-content: flex-start;
}

@media (min-width: 90em) {
  .xxl-up\:u-jc-flex-start {
    justify-content: flex-start;
  }
}
.u-jc-space-around {
  justify-content: space-around;
}

@media (max-width: 33.9375em) {
  .xs\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-jc-space-around {
    justify-content: space-around;
  }
}
.xs-up\:u-jc-space-around {
  justify-content: space-around;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 48em) {
  .md-up\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-jc-space-around {
    justify-content: space-around;
  }
}
@media (min-width: 90em) {
  .xxl\:u-jc-space-around {
    justify-content: space-around;
  }
}
.xxl-down\:u-jc-space-around {
  justify-content: space-around;
}

@media (min-width: 90em) {
  .xxl-up\:u-jc-space-around {
    justify-content: space-around;
  }
}
.u-jc-space-between {
  justify-content: space-between;
}

@media (max-width: 33.9375em) {
  .xs\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-jc-space-between {
    justify-content: space-between;
  }
}
.xs-up\:u-jc-space-between {
  justify-content: space-between;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 48em) {
  .md-up\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-jc-space-between {
    justify-content: space-between;
  }
}
@media (min-width: 90em) {
  .xxl\:u-jc-space-between {
    justify-content: space-between;
  }
}
.xxl-down\:u-jc-space-between {
  justify-content: space-between;
}

@media (min-width: 90em) {
  .xxl-up\:u-jc-space-between {
    justify-content: space-between;
  }
}
.u-jc-space-evenly {
  justify-content: space-evenly;
}

@media (max-width: 33.9375em) {
  .xs\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
.xs-up\:u-jc-space-evenly {
  justify-content: space-evenly;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 48em) {
  .md-up\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
@media (min-width: 90em) {
  .xxl\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
.xxl-down\:u-jc-space-evenly {
  justify-content: space-evenly;
}

@media (min-width: 90em) {
  .xxl-up\:u-jc-space-evenly {
    justify-content: space-evenly;
  }
}
.u-jc-stretch {
  justify-content: stretch;
}

@media (max-width: 33.9375em) {
  .xs\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-jc-stretch {
    justify-content: stretch;
  }
}
.xs-up\:u-jc-stretch {
  justify-content: stretch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-jc-stretch {
    justify-content: stretch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-jc-stretch {
    justify-content: stretch;
  }
}
.xxl-down\:u-jc-stretch {
  justify-content: stretch;
}

@media (min-width: 90em) {
  .xxl-up\:u-jc-stretch {
    justify-content: stretch;
  }
}
.u-m-0 {
  margin: 0rem;
}

.u-mt-0 {
  margin-top: 0rem;
}

.u-mr-0 {
  margin-right: 0rem;
}

.u-mb-0 {
  margin-bottom: 0rem;
}

.u-ml-0 {
  margin-left: 0rem;
}

.u-mt-vr-0 {
  margin-top: vr(0);
}

.u-mb-vr-0 {
  margin-bottom: vr(0);
}

.u-m-4px {
  margin: 0.25rem;
}

.u-mt-4px {
  margin-top: 0.25rem;
}

.u-mr-4px {
  margin-right: 0.25rem;
}

.u-mb-4px {
  margin-bottom: 0.25rem;
}

.u-ml-4px {
  margin-left: 0.25rem;
}

.u-mt-vr-1 {
  margin-top: vr(1);
}

.u-mb-vr-1 {
  margin-bottom: vr(1);
}

.u-m-8px {
  margin: 0.5rem;
}

.u-mt-8px {
  margin-top: 0.5rem;
}

.u-mr-8px {
  margin-right: 0.5rem;
}

.u-mb-8px {
  margin-bottom: 0.5rem;
}

.u-ml-8px {
  margin-left: 0.5rem;
}

.u-mt-vr-2 {
  margin-top: vr(2);
}

.u-mb-vr-2 {
  margin-bottom: vr(2);
}

.u-m-12px {
  margin: 0.75rem;
}

.u-mt-12px {
  margin-top: 0.75rem;
}

.u-mr-12px {
  margin-right: 0.75rem;
}

.u-mb-12px {
  margin-bottom: 0.75rem;
}

.u-ml-12px {
  margin-left: 0.75rem;
}

.u-mt-vr-3 {
  margin-top: vr(3);
}

.u-mb-vr-3 {
  margin-bottom: vr(3);
}

.u-m-16px {
  margin: 1rem;
}

.u-mt-16px {
  margin-top: 1rem;
}

.u-mr-16px {
  margin-right: 1rem;
}

.u-mb-16px {
  margin-bottom: 1rem;
}

.u-ml-16px {
  margin-left: 1rem;
}

.u-mt-vr-4 {
  margin-top: vr(4);
}

.u-mb-vr-4 {
  margin-bottom: vr(4);
}

.u-m-20px {
  margin: 1.25rem;
}

.u-mt-20px {
  margin-top: 1.25rem;
}

.u-mr-20px {
  margin-right: 1.25rem;
}

.u-mb-20px {
  margin-bottom: 1.25rem;
}

.u-ml-20px {
  margin-left: 1.25rem;
}

.u-mt-vr-5 {
  margin-top: vr(5);
}

.u-mb-vr-5 {
  margin-bottom: vr(5);
}

.u-m-24px {
  margin: 1.5rem;
}

.u-mt-24px {
  margin-top: 1.5rem;
}

.u-mr-24px {
  margin-right: 1.5rem;
}

.u-mb-24px {
  margin-bottom: 1.5rem;
}

.u-ml-24px {
  margin-left: 1.5rem;
}

.u-mt-vr-6 {
  margin-top: vr(6);
}

.u-mb-vr-6 {
  margin-bottom: vr(6);
}

.u-m-28px {
  margin: 1.75rem;
}

.u-mt-28px {
  margin-top: 1.75rem;
}

.u-mr-28px {
  margin-right: 1.75rem;
}

.u-mb-28px {
  margin-bottom: 1.75rem;
}

.u-ml-28px {
  margin-left: 1.75rem;
}

.u-mt-vr-7 {
  margin-top: vr(7);
}

.u-mb-vr-7 {
  margin-bottom: vr(7);
}

.u-m-32px {
  margin: 2rem;
}

.u-mt-32px {
  margin-top: 2rem;
}

.u-mr-32px {
  margin-right: 2rem;
}

.u-mb-32px {
  margin-bottom: 2rem;
}

.u-ml-32px {
  margin-left: 2rem;
}

.u-mt-vr-8 {
  margin-top: vr(8);
}

.u-mb-vr-8 {
  margin-bottom: vr(8);
}

.u-m-36px {
  margin: 2.25rem;
}

.u-mt-36px {
  margin-top: 2.25rem;
}

.u-mr-36px {
  margin-right: 2.25rem;
}

.u-mb-36px {
  margin-bottom: 2.25rem;
}

.u-ml-36px {
  margin-left: 2.25rem;
}

.u-mt-vr-9 {
  margin-top: vr(9);
}

.u-mb-vr-9 {
  margin-bottom: vr(9);
}

.u-m-40px {
  margin: 2.5rem;
}

.u-mt-40px {
  margin-top: 2.5rem;
}

.u-mr-40px {
  margin-right: 2.5rem;
}

.u-mb-40px {
  margin-bottom: 2.5rem;
}

.u-ml-40px {
  margin-left: 2.5rem;
}

.u-mt-vr-10 {
  margin-top: vr(10);
}

.u-mb-vr-10 {
  margin-bottom: vr(10);
}

.u-m-44px {
  margin: 2.75rem;
}

.u-mt-44px {
  margin-top: 2.75rem;
}

.u-mr-44px {
  margin-right: 2.75rem;
}

.u-mb-44px {
  margin-bottom: 2.75rem;
}

.u-ml-44px {
  margin-left: 2.75rem;
}

.u-mt-vr-11 {
  margin-top: vr(11);
}

.u-mb-vr-11 {
  margin-bottom: vr(11);
}

.u-m-48px {
  margin: 3rem;
}

.u-mt-48px {
  margin-top: 3rem;
}

.u-mr-48px {
  margin-right: 3rem;
}

.u-mb-48px {
  margin-bottom: 3rem;
}

.u-ml-48px {
  margin-left: 3rem;
}

.u-mt-vr-12 {
  margin-top: vr(12);
}

.u-mb-vr-12 {
  margin-bottom: vr(12);
}

.u-m-52px {
  margin: 3.25rem;
}

.u-mt-52px {
  margin-top: 3.25rem;
}

.u-mr-52px {
  margin-right: 3.25rem;
}

.u-mb-52px {
  margin-bottom: 3.25rem;
}

.u-ml-52px {
  margin-left: 3.25rem;
}

.u-mt-vr-13 {
  margin-top: vr(13);
}

.u-mb-vr-13 {
  margin-bottom: vr(13);
}

.u-m-56px {
  margin: 3.5rem;
}

.u-mt-56px {
  margin-top: 3.5rem;
}

.u-mr-56px {
  margin-right: 3.5rem;
}

.u-mb-56px {
  margin-bottom: 3.5rem;
}

.u-ml-56px {
  margin-left: 3.5rem;
}

.u-mt-vr-14 {
  margin-top: vr(14);
}

.u-mb-vr-14 {
  margin-bottom: vr(14);
}

.u-m-60px {
  margin: 3.75rem;
}

.u-mt-60px {
  margin-top: 3.75rem;
}

.u-mr-60px {
  margin-right: 3.75rem;
}

.u-mb-60px {
  margin-bottom: 3.75rem;
}

.u-ml-60px {
  margin-left: 3.75rem;
}

.u-mt-vr-15 {
  margin-top: vr(15);
}

.u-mb-vr-15 {
  margin-bottom: vr(15);
}

.u-m-64px {
  margin: 4rem;
}

.u-mt-64px {
  margin-top: 4rem;
}

.u-mr-64px {
  margin-right: 4rem;
}

.u-mb-64px {
  margin-bottom: 4rem;
}

.u-ml-64px {
  margin-left: 4rem;
}

.u-mt-vr-16 {
  margin-top: vr(16);
}

.u-mb-vr-16 {
  margin-bottom: vr(16);
}

.u-m-68px {
  margin: 4.25rem;
}

.u-mt-68px {
  margin-top: 4.25rem;
}

.u-mr-68px {
  margin-right: 4.25rem;
}

.u-mb-68px {
  margin-bottom: 4.25rem;
}

.u-ml-68px {
  margin-left: 4.25rem;
}

.u-mt-vr-17 {
  margin-top: vr(17);
}

.u-mb-vr-17 {
  margin-bottom: vr(17);
}

.u-m-72px {
  margin: 4.5rem;
}

.u-mt-72px {
  margin-top: 4.5rem;
}

.u-mr-72px {
  margin-right: 4.5rem;
}

.u-mb-72px {
  margin-bottom: 4.5rem;
}

.u-ml-72px {
  margin-left: 4.5rem;
}

.u-mt-vr-18 {
  margin-top: vr(18);
}

.u-mb-vr-18 {
  margin-bottom: vr(18);
}

.u-m-76px {
  margin: 4.75rem;
}

.u-mt-76px {
  margin-top: 4.75rem;
}

.u-mr-76px {
  margin-right: 4.75rem;
}

.u-mb-76px {
  margin-bottom: 4.75rem;
}

.u-ml-76px {
  margin-left: 4.75rem;
}

.u-mt-vr-19 {
  margin-top: vr(19);
}

.u-mb-vr-19 {
  margin-bottom: vr(19);
}

.u-m-80px {
  margin: 5rem;
}

.u-mt-80px {
  margin-top: 5rem;
}

.u-mr-80px {
  margin-right: 5rem;
}

.u-mb-80px {
  margin-bottom: 5rem;
}

.u-ml-80px {
  margin-left: 5rem;
}

.u-mt-vr-20 {
  margin-top: vr(20);
}

.u-mb-vr-20 {
  margin-bottom: vr(20);
}

@media (max-width: 33.9375em) {
  .xs\:u-m-0 {
    margin: 0rem;
  }
  .xs\:u-mt-0 {
    margin-top: 0rem;
  }
  .xs\:u-mr-0 {
    margin-right: 0rem;
  }
  .xs\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .xs\:u-ml-0 {
    margin-left: 0rem;
  }
  .xs\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .xs\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .xs\:u-m-4px {
    margin: 0.25rem;
  }
  .xs\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .xs\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .xs\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .xs\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .xs\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .xs\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .xs\:u-m-8px {
    margin: 0.5rem;
  }
  .xs\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .xs\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .xs\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .xs\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .xs\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .xs\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .xs\:u-m-12px {
    margin: 0.75rem;
  }
  .xs\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .xs\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .xs\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .xs\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .xs\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .xs\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .xs\:u-m-16px {
    margin: 1rem;
  }
  .xs\:u-mt-16px {
    margin-top: 1rem;
  }
  .xs\:u-mr-16px {
    margin-right: 1rem;
  }
  .xs\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .xs\:u-ml-16px {
    margin-left: 1rem;
  }
  .xs\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .xs\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .xs\:u-m-20px {
    margin: 1.25rem;
  }
  .xs\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .xs\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .xs\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .xs\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .xs\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .xs\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .xs\:u-m-24px {
    margin: 1.5rem;
  }
  .xs\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .xs\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .xs\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .xs\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .xs\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .xs\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .xs\:u-m-28px {
    margin: 1.75rem;
  }
  .xs\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .xs\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .xs\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .xs\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .xs\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .xs\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .xs\:u-m-32px {
    margin: 2rem;
  }
  .xs\:u-mt-32px {
    margin-top: 2rem;
  }
  .xs\:u-mr-32px {
    margin-right: 2rem;
  }
  .xs\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .xs\:u-ml-32px {
    margin-left: 2rem;
  }
  .xs\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .xs\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .xs\:u-m-36px {
    margin: 2.25rem;
  }
  .xs\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .xs\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .xs\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .xs\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .xs\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .xs\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .xs\:u-m-40px {
    margin: 2.5rem;
  }
  .xs\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .xs\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .xs\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .xs\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .xs\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .xs\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .xs\:u-m-44px {
    margin: 2.75rem;
  }
  .xs\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .xs\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .xs\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .xs\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .xs\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .xs\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .xs\:u-m-48px {
    margin: 3rem;
  }
  .xs\:u-mt-48px {
    margin-top: 3rem;
  }
  .xs\:u-mr-48px {
    margin-right: 3rem;
  }
  .xs\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .xs\:u-ml-48px {
    margin-left: 3rem;
  }
  .xs\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .xs\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .xs\:u-m-52px {
    margin: 3.25rem;
  }
  .xs\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .xs\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .xs\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .xs\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .xs\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .xs\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .xs\:u-m-56px {
    margin: 3.5rem;
  }
  .xs\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .xs\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .xs\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .xs\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .xs\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .xs\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .xs\:u-m-60px {
    margin: 3.75rem;
  }
  .xs\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .xs\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .xs\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .xs\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .xs\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .xs\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .xs\:u-m-64px {
    margin: 4rem;
  }
  .xs\:u-mt-64px {
    margin-top: 4rem;
  }
  .xs\:u-mr-64px {
    margin-right: 4rem;
  }
  .xs\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .xs\:u-ml-64px {
    margin-left: 4rem;
  }
  .xs\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .xs\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .xs\:u-m-68px {
    margin: 4.25rem;
  }
  .xs\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .xs\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .xs\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .xs\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .xs\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .xs\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .xs\:u-m-72px {
    margin: 4.5rem;
  }
  .xs\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .xs\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .xs\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .xs\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .xs\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .xs\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .xs\:u-m-76px {
    margin: 4.75rem;
  }
  .xs\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .xs\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .xs\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .xs\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .xs\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .xs\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .xs\:u-m-80px {
    margin: 5rem;
  }
  .xs\:u-mt-80px {
    margin-top: 5rem;
  }
  .xs\:u-mr-80px {
    margin-right: 5rem;
  }
  .xs\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .xs\:u-ml-80px {
    margin-left: 5rem;
  }
  .xs\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .xs\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-m-0 {
    margin: 0rem;
  }
  .xs-down\:u-mt-0 {
    margin-top: 0rem;
  }
  .xs-down\:u-mr-0 {
    margin-right: 0rem;
  }
  .xs-down\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .xs-down\:u-ml-0 {
    margin-left: 0rem;
  }
  .xs-down\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .xs-down\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .xs-down\:u-m-4px {
    margin: 0.25rem;
  }
  .xs-down\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .xs-down\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .xs-down\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .xs-down\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .xs-down\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .xs-down\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .xs-down\:u-m-8px {
    margin: 0.5rem;
  }
  .xs-down\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .xs-down\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .xs-down\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .xs-down\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .xs-down\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .xs-down\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .xs-down\:u-m-12px {
    margin: 0.75rem;
  }
  .xs-down\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .xs-down\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .xs-down\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .xs-down\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .xs-down\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .xs-down\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .xs-down\:u-m-16px {
    margin: 1rem;
  }
  .xs-down\:u-mt-16px {
    margin-top: 1rem;
  }
  .xs-down\:u-mr-16px {
    margin-right: 1rem;
  }
  .xs-down\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .xs-down\:u-ml-16px {
    margin-left: 1rem;
  }
  .xs-down\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .xs-down\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .xs-down\:u-m-20px {
    margin: 1.25rem;
  }
  .xs-down\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .xs-down\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .xs-down\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .xs-down\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .xs-down\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .xs-down\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .xs-down\:u-m-24px {
    margin: 1.5rem;
  }
  .xs-down\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .xs-down\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .xs-down\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .xs-down\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .xs-down\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .xs-down\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .xs-down\:u-m-28px {
    margin: 1.75rem;
  }
  .xs-down\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .xs-down\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .xs-down\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .xs-down\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .xs-down\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .xs-down\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .xs-down\:u-m-32px {
    margin: 2rem;
  }
  .xs-down\:u-mt-32px {
    margin-top: 2rem;
  }
  .xs-down\:u-mr-32px {
    margin-right: 2rem;
  }
  .xs-down\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .xs-down\:u-ml-32px {
    margin-left: 2rem;
  }
  .xs-down\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .xs-down\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .xs-down\:u-m-36px {
    margin: 2.25rem;
  }
  .xs-down\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .xs-down\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .xs-down\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .xs-down\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .xs-down\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .xs-down\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .xs-down\:u-m-40px {
    margin: 2.5rem;
  }
  .xs-down\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .xs-down\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .xs-down\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .xs-down\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .xs-down\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .xs-down\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .xs-down\:u-m-44px {
    margin: 2.75rem;
  }
  .xs-down\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .xs-down\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .xs-down\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .xs-down\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .xs-down\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .xs-down\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .xs-down\:u-m-48px {
    margin: 3rem;
  }
  .xs-down\:u-mt-48px {
    margin-top: 3rem;
  }
  .xs-down\:u-mr-48px {
    margin-right: 3rem;
  }
  .xs-down\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .xs-down\:u-ml-48px {
    margin-left: 3rem;
  }
  .xs-down\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .xs-down\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .xs-down\:u-m-52px {
    margin: 3.25rem;
  }
  .xs-down\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .xs-down\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .xs-down\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .xs-down\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .xs-down\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .xs-down\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .xs-down\:u-m-56px {
    margin: 3.5rem;
  }
  .xs-down\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .xs-down\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .xs-down\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .xs-down\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .xs-down\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .xs-down\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .xs-down\:u-m-60px {
    margin: 3.75rem;
  }
  .xs-down\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .xs-down\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .xs-down\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .xs-down\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .xs-down\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .xs-down\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .xs-down\:u-m-64px {
    margin: 4rem;
  }
  .xs-down\:u-mt-64px {
    margin-top: 4rem;
  }
  .xs-down\:u-mr-64px {
    margin-right: 4rem;
  }
  .xs-down\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .xs-down\:u-ml-64px {
    margin-left: 4rem;
  }
  .xs-down\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .xs-down\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .xs-down\:u-m-68px {
    margin: 4.25rem;
  }
  .xs-down\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .xs-down\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .xs-down\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .xs-down\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .xs-down\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .xs-down\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .xs-down\:u-m-72px {
    margin: 4.5rem;
  }
  .xs-down\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .xs-down\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .xs-down\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .xs-down\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .xs-down\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .xs-down\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .xs-down\:u-m-76px {
    margin: 4.75rem;
  }
  .xs-down\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .xs-down\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .xs-down\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .xs-down\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .xs-down\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .xs-down\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .xs-down\:u-m-80px {
    margin: 5rem;
  }
  .xs-down\:u-mt-80px {
    margin-top: 5rem;
  }
  .xs-down\:u-mr-80px {
    margin-right: 5rem;
  }
  .xs-down\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .xs-down\:u-ml-80px {
    margin-left: 5rem;
  }
  .xs-down\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .xs-down\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
.xs-up\:u-m-0 {
  margin: 0rem;
}

.xs-up\:u-mt-0 {
  margin-top: 0rem;
}

.xs-up\:u-mr-0 {
  margin-right: 0rem;
}

.xs-up\:u-mb-0 {
  margin-bottom: 0rem;
}

.xs-up\:u-ml-0 {
  margin-left: 0rem;
}

.xs-up\:u-mt-vr-0 {
  margin-top: vr(0);
}

.xs-up\:u-mb-vr-0 {
  margin-bottom: vr(0);
}

.xs-up\:u-m-4px {
  margin: 0.25rem;
}

.xs-up\:u-mt-4px {
  margin-top: 0.25rem;
}

.xs-up\:u-mr-4px {
  margin-right: 0.25rem;
}

.xs-up\:u-mb-4px {
  margin-bottom: 0.25rem;
}

.xs-up\:u-ml-4px {
  margin-left: 0.25rem;
}

.xs-up\:u-mt-vr-1 {
  margin-top: vr(1);
}

.xs-up\:u-mb-vr-1 {
  margin-bottom: vr(1);
}

.xs-up\:u-m-8px {
  margin: 0.5rem;
}

.xs-up\:u-mt-8px {
  margin-top: 0.5rem;
}

.xs-up\:u-mr-8px {
  margin-right: 0.5rem;
}

.xs-up\:u-mb-8px {
  margin-bottom: 0.5rem;
}

.xs-up\:u-ml-8px {
  margin-left: 0.5rem;
}

.xs-up\:u-mt-vr-2 {
  margin-top: vr(2);
}

.xs-up\:u-mb-vr-2 {
  margin-bottom: vr(2);
}

.xs-up\:u-m-12px {
  margin: 0.75rem;
}

.xs-up\:u-mt-12px {
  margin-top: 0.75rem;
}

.xs-up\:u-mr-12px {
  margin-right: 0.75rem;
}

.xs-up\:u-mb-12px {
  margin-bottom: 0.75rem;
}

.xs-up\:u-ml-12px {
  margin-left: 0.75rem;
}

.xs-up\:u-mt-vr-3 {
  margin-top: vr(3);
}

.xs-up\:u-mb-vr-3 {
  margin-bottom: vr(3);
}

.xs-up\:u-m-16px {
  margin: 1rem;
}

.xs-up\:u-mt-16px {
  margin-top: 1rem;
}

.xs-up\:u-mr-16px {
  margin-right: 1rem;
}

.xs-up\:u-mb-16px {
  margin-bottom: 1rem;
}

.xs-up\:u-ml-16px {
  margin-left: 1rem;
}

.xs-up\:u-mt-vr-4 {
  margin-top: vr(4);
}

.xs-up\:u-mb-vr-4 {
  margin-bottom: vr(4);
}

.xs-up\:u-m-20px {
  margin: 1.25rem;
}

.xs-up\:u-mt-20px {
  margin-top: 1.25rem;
}

.xs-up\:u-mr-20px {
  margin-right: 1.25rem;
}

.xs-up\:u-mb-20px {
  margin-bottom: 1.25rem;
}

.xs-up\:u-ml-20px {
  margin-left: 1.25rem;
}

.xs-up\:u-mt-vr-5 {
  margin-top: vr(5);
}

.xs-up\:u-mb-vr-5 {
  margin-bottom: vr(5);
}

.xs-up\:u-m-24px {
  margin: 1.5rem;
}

.xs-up\:u-mt-24px {
  margin-top: 1.5rem;
}

.xs-up\:u-mr-24px {
  margin-right: 1.5rem;
}

.xs-up\:u-mb-24px {
  margin-bottom: 1.5rem;
}

.xs-up\:u-ml-24px {
  margin-left: 1.5rem;
}

.xs-up\:u-mt-vr-6 {
  margin-top: vr(6);
}

.xs-up\:u-mb-vr-6 {
  margin-bottom: vr(6);
}

.xs-up\:u-m-28px {
  margin: 1.75rem;
}

.xs-up\:u-mt-28px {
  margin-top: 1.75rem;
}

.xs-up\:u-mr-28px {
  margin-right: 1.75rem;
}

.xs-up\:u-mb-28px {
  margin-bottom: 1.75rem;
}

.xs-up\:u-ml-28px {
  margin-left: 1.75rem;
}

.xs-up\:u-mt-vr-7 {
  margin-top: vr(7);
}

.xs-up\:u-mb-vr-7 {
  margin-bottom: vr(7);
}

.xs-up\:u-m-32px {
  margin: 2rem;
}

.xs-up\:u-mt-32px {
  margin-top: 2rem;
}

.xs-up\:u-mr-32px {
  margin-right: 2rem;
}

.xs-up\:u-mb-32px {
  margin-bottom: 2rem;
}

.xs-up\:u-ml-32px {
  margin-left: 2rem;
}

.xs-up\:u-mt-vr-8 {
  margin-top: vr(8);
}

.xs-up\:u-mb-vr-8 {
  margin-bottom: vr(8);
}

.xs-up\:u-m-36px {
  margin: 2.25rem;
}

.xs-up\:u-mt-36px {
  margin-top: 2.25rem;
}

.xs-up\:u-mr-36px {
  margin-right: 2.25rem;
}

.xs-up\:u-mb-36px {
  margin-bottom: 2.25rem;
}

.xs-up\:u-ml-36px {
  margin-left: 2.25rem;
}

.xs-up\:u-mt-vr-9 {
  margin-top: vr(9);
}

.xs-up\:u-mb-vr-9 {
  margin-bottom: vr(9);
}

.xs-up\:u-m-40px {
  margin: 2.5rem;
}

.xs-up\:u-mt-40px {
  margin-top: 2.5rem;
}

.xs-up\:u-mr-40px {
  margin-right: 2.5rem;
}

.xs-up\:u-mb-40px {
  margin-bottom: 2.5rem;
}

.xs-up\:u-ml-40px {
  margin-left: 2.5rem;
}

.xs-up\:u-mt-vr-10 {
  margin-top: vr(10);
}

.xs-up\:u-mb-vr-10 {
  margin-bottom: vr(10);
}

.xs-up\:u-m-44px {
  margin: 2.75rem;
}

.xs-up\:u-mt-44px {
  margin-top: 2.75rem;
}

.xs-up\:u-mr-44px {
  margin-right: 2.75rem;
}

.xs-up\:u-mb-44px {
  margin-bottom: 2.75rem;
}

.xs-up\:u-ml-44px {
  margin-left: 2.75rem;
}

.xs-up\:u-mt-vr-11 {
  margin-top: vr(11);
}

.xs-up\:u-mb-vr-11 {
  margin-bottom: vr(11);
}

.xs-up\:u-m-48px {
  margin: 3rem;
}

.xs-up\:u-mt-48px {
  margin-top: 3rem;
}

.xs-up\:u-mr-48px {
  margin-right: 3rem;
}

.xs-up\:u-mb-48px {
  margin-bottom: 3rem;
}

.xs-up\:u-ml-48px {
  margin-left: 3rem;
}

.xs-up\:u-mt-vr-12 {
  margin-top: vr(12);
}

.xs-up\:u-mb-vr-12 {
  margin-bottom: vr(12);
}

.xs-up\:u-m-52px {
  margin: 3.25rem;
}

.xs-up\:u-mt-52px {
  margin-top: 3.25rem;
}

.xs-up\:u-mr-52px {
  margin-right: 3.25rem;
}

.xs-up\:u-mb-52px {
  margin-bottom: 3.25rem;
}

.xs-up\:u-ml-52px {
  margin-left: 3.25rem;
}

.xs-up\:u-mt-vr-13 {
  margin-top: vr(13);
}

.xs-up\:u-mb-vr-13 {
  margin-bottom: vr(13);
}

.xs-up\:u-m-56px {
  margin: 3.5rem;
}

.xs-up\:u-mt-56px {
  margin-top: 3.5rem;
}

.xs-up\:u-mr-56px {
  margin-right: 3.5rem;
}

.xs-up\:u-mb-56px {
  margin-bottom: 3.5rem;
}

.xs-up\:u-ml-56px {
  margin-left: 3.5rem;
}

.xs-up\:u-mt-vr-14 {
  margin-top: vr(14);
}

.xs-up\:u-mb-vr-14 {
  margin-bottom: vr(14);
}

.xs-up\:u-m-60px {
  margin: 3.75rem;
}

.xs-up\:u-mt-60px {
  margin-top: 3.75rem;
}

.xs-up\:u-mr-60px {
  margin-right: 3.75rem;
}

.xs-up\:u-mb-60px {
  margin-bottom: 3.75rem;
}

.xs-up\:u-ml-60px {
  margin-left: 3.75rem;
}

.xs-up\:u-mt-vr-15 {
  margin-top: vr(15);
}

.xs-up\:u-mb-vr-15 {
  margin-bottom: vr(15);
}

.xs-up\:u-m-64px {
  margin: 4rem;
}

.xs-up\:u-mt-64px {
  margin-top: 4rem;
}

.xs-up\:u-mr-64px {
  margin-right: 4rem;
}

.xs-up\:u-mb-64px {
  margin-bottom: 4rem;
}

.xs-up\:u-ml-64px {
  margin-left: 4rem;
}

.xs-up\:u-mt-vr-16 {
  margin-top: vr(16);
}

.xs-up\:u-mb-vr-16 {
  margin-bottom: vr(16);
}

.xs-up\:u-m-68px {
  margin: 4.25rem;
}

.xs-up\:u-mt-68px {
  margin-top: 4.25rem;
}

.xs-up\:u-mr-68px {
  margin-right: 4.25rem;
}

.xs-up\:u-mb-68px {
  margin-bottom: 4.25rem;
}

.xs-up\:u-ml-68px {
  margin-left: 4.25rem;
}

.xs-up\:u-mt-vr-17 {
  margin-top: vr(17);
}

.xs-up\:u-mb-vr-17 {
  margin-bottom: vr(17);
}

.xs-up\:u-m-72px {
  margin: 4.5rem;
}

.xs-up\:u-mt-72px {
  margin-top: 4.5rem;
}

.xs-up\:u-mr-72px {
  margin-right: 4.5rem;
}

.xs-up\:u-mb-72px {
  margin-bottom: 4.5rem;
}

.xs-up\:u-ml-72px {
  margin-left: 4.5rem;
}

.xs-up\:u-mt-vr-18 {
  margin-top: vr(18);
}

.xs-up\:u-mb-vr-18 {
  margin-bottom: vr(18);
}

.xs-up\:u-m-76px {
  margin: 4.75rem;
}

.xs-up\:u-mt-76px {
  margin-top: 4.75rem;
}

.xs-up\:u-mr-76px {
  margin-right: 4.75rem;
}

.xs-up\:u-mb-76px {
  margin-bottom: 4.75rem;
}

.xs-up\:u-ml-76px {
  margin-left: 4.75rem;
}

.xs-up\:u-mt-vr-19 {
  margin-top: vr(19);
}

.xs-up\:u-mb-vr-19 {
  margin-bottom: vr(19);
}

.xs-up\:u-m-80px {
  margin: 5rem;
}

.xs-up\:u-mt-80px {
  margin-top: 5rem;
}

.xs-up\:u-mr-80px {
  margin-right: 5rem;
}

.xs-up\:u-mb-80px {
  margin-bottom: 5rem;
}

.xs-up\:u-ml-80px {
  margin-left: 5rem;
}

.xs-up\:u-mt-vr-20 {
  margin-top: vr(20);
}

.xs-up\:u-mb-vr-20 {
  margin-bottom: vr(20);
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-m-0 {
    margin: 0rem;
  }
  .sm\:u-mt-0 {
    margin-top: 0rem;
  }
  .sm\:u-mr-0 {
    margin-right: 0rem;
  }
  .sm\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .sm\:u-ml-0 {
    margin-left: 0rem;
  }
  .sm\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .sm\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .sm\:u-m-4px {
    margin: 0.25rem;
  }
  .sm\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .sm\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .sm\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .sm\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .sm\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .sm\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .sm\:u-m-8px {
    margin: 0.5rem;
  }
  .sm\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .sm\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .sm\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .sm\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .sm\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .sm\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .sm\:u-m-12px {
    margin: 0.75rem;
  }
  .sm\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .sm\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .sm\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .sm\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .sm\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .sm\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .sm\:u-m-16px {
    margin: 1rem;
  }
  .sm\:u-mt-16px {
    margin-top: 1rem;
  }
  .sm\:u-mr-16px {
    margin-right: 1rem;
  }
  .sm\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .sm\:u-ml-16px {
    margin-left: 1rem;
  }
  .sm\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .sm\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .sm\:u-m-20px {
    margin: 1.25rem;
  }
  .sm\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .sm\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .sm\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .sm\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .sm\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .sm\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .sm\:u-m-24px {
    margin: 1.5rem;
  }
  .sm\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .sm\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .sm\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .sm\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .sm\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .sm\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .sm\:u-m-28px {
    margin: 1.75rem;
  }
  .sm\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .sm\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .sm\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .sm\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .sm\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .sm\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .sm\:u-m-32px {
    margin: 2rem;
  }
  .sm\:u-mt-32px {
    margin-top: 2rem;
  }
  .sm\:u-mr-32px {
    margin-right: 2rem;
  }
  .sm\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .sm\:u-ml-32px {
    margin-left: 2rem;
  }
  .sm\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .sm\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .sm\:u-m-36px {
    margin: 2.25rem;
  }
  .sm\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .sm\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .sm\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .sm\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .sm\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .sm\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .sm\:u-m-40px {
    margin: 2.5rem;
  }
  .sm\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .sm\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .sm\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .sm\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .sm\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .sm\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .sm\:u-m-44px {
    margin: 2.75rem;
  }
  .sm\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .sm\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .sm\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .sm\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .sm\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .sm\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .sm\:u-m-48px {
    margin: 3rem;
  }
  .sm\:u-mt-48px {
    margin-top: 3rem;
  }
  .sm\:u-mr-48px {
    margin-right: 3rem;
  }
  .sm\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .sm\:u-ml-48px {
    margin-left: 3rem;
  }
  .sm\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .sm\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .sm\:u-m-52px {
    margin: 3.25rem;
  }
  .sm\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .sm\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .sm\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .sm\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .sm\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .sm\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .sm\:u-m-56px {
    margin: 3.5rem;
  }
  .sm\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .sm\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .sm\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .sm\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .sm\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .sm\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .sm\:u-m-60px {
    margin: 3.75rem;
  }
  .sm\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .sm\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .sm\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .sm\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .sm\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .sm\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .sm\:u-m-64px {
    margin: 4rem;
  }
  .sm\:u-mt-64px {
    margin-top: 4rem;
  }
  .sm\:u-mr-64px {
    margin-right: 4rem;
  }
  .sm\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .sm\:u-ml-64px {
    margin-left: 4rem;
  }
  .sm\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .sm\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .sm\:u-m-68px {
    margin: 4.25rem;
  }
  .sm\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .sm\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .sm\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .sm\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .sm\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .sm\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .sm\:u-m-72px {
    margin: 4.5rem;
  }
  .sm\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .sm\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .sm\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .sm\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .sm\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .sm\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .sm\:u-m-76px {
    margin: 4.75rem;
  }
  .sm\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .sm\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .sm\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .sm\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .sm\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .sm\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .sm\:u-m-80px {
    margin: 5rem;
  }
  .sm\:u-mt-80px {
    margin-top: 5rem;
  }
  .sm\:u-mr-80px {
    margin-right: 5rem;
  }
  .sm\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .sm\:u-ml-80px {
    margin-left: 5rem;
  }
  .sm\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .sm\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-m-0 {
    margin: 0rem;
  }
  .sm-down\:u-mt-0 {
    margin-top: 0rem;
  }
  .sm-down\:u-mr-0 {
    margin-right: 0rem;
  }
  .sm-down\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .sm-down\:u-ml-0 {
    margin-left: 0rem;
  }
  .sm-down\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .sm-down\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .sm-down\:u-m-4px {
    margin: 0.25rem;
  }
  .sm-down\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .sm-down\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .sm-down\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .sm-down\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .sm-down\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .sm-down\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .sm-down\:u-m-8px {
    margin: 0.5rem;
  }
  .sm-down\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .sm-down\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .sm-down\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .sm-down\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .sm-down\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .sm-down\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .sm-down\:u-m-12px {
    margin: 0.75rem;
  }
  .sm-down\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .sm-down\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .sm-down\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .sm-down\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .sm-down\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .sm-down\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .sm-down\:u-m-16px {
    margin: 1rem;
  }
  .sm-down\:u-mt-16px {
    margin-top: 1rem;
  }
  .sm-down\:u-mr-16px {
    margin-right: 1rem;
  }
  .sm-down\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .sm-down\:u-ml-16px {
    margin-left: 1rem;
  }
  .sm-down\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .sm-down\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .sm-down\:u-m-20px {
    margin: 1.25rem;
  }
  .sm-down\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .sm-down\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .sm-down\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .sm-down\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .sm-down\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .sm-down\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .sm-down\:u-m-24px {
    margin: 1.5rem;
  }
  .sm-down\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .sm-down\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .sm-down\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .sm-down\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .sm-down\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .sm-down\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .sm-down\:u-m-28px {
    margin: 1.75rem;
  }
  .sm-down\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .sm-down\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .sm-down\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .sm-down\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .sm-down\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .sm-down\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .sm-down\:u-m-32px {
    margin: 2rem;
  }
  .sm-down\:u-mt-32px {
    margin-top: 2rem;
  }
  .sm-down\:u-mr-32px {
    margin-right: 2rem;
  }
  .sm-down\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .sm-down\:u-ml-32px {
    margin-left: 2rem;
  }
  .sm-down\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .sm-down\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .sm-down\:u-m-36px {
    margin: 2.25rem;
  }
  .sm-down\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .sm-down\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .sm-down\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .sm-down\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .sm-down\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .sm-down\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .sm-down\:u-m-40px {
    margin: 2.5rem;
  }
  .sm-down\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .sm-down\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .sm-down\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .sm-down\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .sm-down\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .sm-down\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .sm-down\:u-m-44px {
    margin: 2.75rem;
  }
  .sm-down\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .sm-down\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .sm-down\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .sm-down\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .sm-down\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .sm-down\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .sm-down\:u-m-48px {
    margin: 3rem;
  }
  .sm-down\:u-mt-48px {
    margin-top: 3rem;
  }
  .sm-down\:u-mr-48px {
    margin-right: 3rem;
  }
  .sm-down\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .sm-down\:u-ml-48px {
    margin-left: 3rem;
  }
  .sm-down\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .sm-down\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .sm-down\:u-m-52px {
    margin: 3.25rem;
  }
  .sm-down\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .sm-down\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .sm-down\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .sm-down\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .sm-down\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .sm-down\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .sm-down\:u-m-56px {
    margin: 3.5rem;
  }
  .sm-down\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .sm-down\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .sm-down\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .sm-down\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .sm-down\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .sm-down\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .sm-down\:u-m-60px {
    margin: 3.75rem;
  }
  .sm-down\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .sm-down\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .sm-down\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .sm-down\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .sm-down\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .sm-down\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .sm-down\:u-m-64px {
    margin: 4rem;
  }
  .sm-down\:u-mt-64px {
    margin-top: 4rem;
  }
  .sm-down\:u-mr-64px {
    margin-right: 4rem;
  }
  .sm-down\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .sm-down\:u-ml-64px {
    margin-left: 4rem;
  }
  .sm-down\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .sm-down\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .sm-down\:u-m-68px {
    margin: 4.25rem;
  }
  .sm-down\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .sm-down\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .sm-down\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .sm-down\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .sm-down\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .sm-down\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .sm-down\:u-m-72px {
    margin: 4.5rem;
  }
  .sm-down\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .sm-down\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .sm-down\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .sm-down\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .sm-down\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .sm-down\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .sm-down\:u-m-76px {
    margin: 4.75rem;
  }
  .sm-down\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .sm-down\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .sm-down\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .sm-down\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .sm-down\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .sm-down\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .sm-down\:u-m-80px {
    margin: 5rem;
  }
  .sm-down\:u-mt-80px {
    margin-top: 5rem;
  }
  .sm-down\:u-mr-80px {
    margin-right: 5rem;
  }
  .sm-down\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .sm-down\:u-ml-80px {
    margin-left: 5rem;
  }
  .sm-down\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .sm-down\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 34em) {
  .sm-up\:u-m-0 {
    margin: 0rem;
  }
  .sm-up\:u-mt-0 {
    margin-top: 0rem;
  }
  .sm-up\:u-mr-0 {
    margin-right: 0rem;
  }
  .sm-up\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .sm-up\:u-ml-0 {
    margin-left: 0rem;
  }
  .sm-up\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .sm-up\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .sm-up\:u-m-4px {
    margin: 0.25rem;
  }
  .sm-up\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .sm-up\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .sm-up\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .sm-up\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .sm-up\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .sm-up\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .sm-up\:u-m-8px {
    margin: 0.5rem;
  }
  .sm-up\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .sm-up\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .sm-up\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .sm-up\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .sm-up\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .sm-up\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .sm-up\:u-m-12px {
    margin: 0.75rem;
  }
  .sm-up\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .sm-up\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .sm-up\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .sm-up\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .sm-up\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .sm-up\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .sm-up\:u-m-16px {
    margin: 1rem;
  }
  .sm-up\:u-mt-16px {
    margin-top: 1rem;
  }
  .sm-up\:u-mr-16px {
    margin-right: 1rem;
  }
  .sm-up\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .sm-up\:u-ml-16px {
    margin-left: 1rem;
  }
  .sm-up\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .sm-up\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .sm-up\:u-m-20px {
    margin: 1.25rem;
  }
  .sm-up\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .sm-up\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .sm-up\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .sm-up\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .sm-up\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .sm-up\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .sm-up\:u-m-24px {
    margin: 1.5rem;
  }
  .sm-up\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .sm-up\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .sm-up\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .sm-up\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .sm-up\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .sm-up\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .sm-up\:u-m-28px {
    margin: 1.75rem;
  }
  .sm-up\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .sm-up\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .sm-up\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .sm-up\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .sm-up\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .sm-up\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .sm-up\:u-m-32px {
    margin: 2rem;
  }
  .sm-up\:u-mt-32px {
    margin-top: 2rem;
  }
  .sm-up\:u-mr-32px {
    margin-right: 2rem;
  }
  .sm-up\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .sm-up\:u-ml-32px {
    margin-left: 2rem;
  }
  .sm-up\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .sm-up\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .sm-up\:u-m-36px {
    margin: 2.25rem;
  }
  .sm-up\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .sm-up\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .sm-up\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .sm-up\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .sm-up\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .sm-up\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .sm-up\:u-m-40px {
    margin: 2.5rem;
  }
  .sm-up\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .sm-up\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .sm-up\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .sm-up\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .sm-up\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .sm-up\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .sm-up\:u-m-44px {
    margin: 2.75rem;
  }
  .sm-up\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .sm-up\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .sm-up\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .sm-up\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .sm-up\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .sm-up\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .sm-up\:u-m-48px {
    margin: 3rem;
  }
  .sm-up\:u-mt-48px {
    margin-top: 3rem;
  }
  .sm-up\:u-mr-48px {
    margin-right: 3rem;
  }
  .sm-up\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .sm-up\:u-ml-48px {
    margin-left: 3rem;
  }
  .sm-up\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .sm-up\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .sm-up\:u-m-52px {
    margin: 3.25rem;
  }
  .sm-up\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .sm-up\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .sm-up\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .sm-up\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .sm-up\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .sm-up\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .sm-up\:u-m-56px {
    margin: 3.5rem;
  }
  .sm-up\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .sm-up\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .sm-up\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .sm-up\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .sm-up\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .sm-up\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .sm-up\:u-m-60px {
    margin: 3.75rem;
  }
  .sm-up\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .sm-up\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .sm-up\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .sm-up\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .sm-up\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .sm-up\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .sm-up\:u-m-64px {
    margin: 4rem;
  }
  .sm-up\:u-mt-64px {
    margin-top: 4rem;
  }
  .sm-up\:u-mr-64px {
    margin-right: 4rem;
  }
  .sm-up\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .sm-up\:u-ml-64px {
    margin-left: 4rem;
  }
  .sm-up\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .sm-up\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .sm-up\:u-m-68px {
    margin: 4.25rem;
  }
  .sm-up\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .sm-up\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .sm-up\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .sm-up\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .sm-up\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .sm-up\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .sm-up\:u-m-72px {
    margin: 4.5rem;
  }
  .sm-up\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .sm-up\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .sm-up\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .sm-up\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .sm-up\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .sm-up\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .sm-up\:u-m-76px {
    margin: 4.75rem;
  }
  .sm-up\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .sm-up\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .sm-up\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .sm-up\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .sm-up\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .sm-up\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .sm-up\:u-m-80px {
    margin: 5rem;
  }
  .sm-up\:u-mt-80px {
    margin-top: 5rem;
  }
  .sm-up\:u-mr-80px {
    margin-right: 5rem;
  }
  .sm-up\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .sm-up\:u-ml-80px {
    margin-left: 5rem;
  }
  .sm-up\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .sm-up\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-m-0 {
    margin: 0rem;
  }
  .md\:u-mt-0 {
    margin-top: 0rem;
  }
  .md\:u-mr-0 {
    margin-right: 0rem;
  }
  .md\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .md\:u-ml-0 {
    margin-left: 0rem;
  }
  .md\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .md\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .md\:u-m-4px {
    margin: 0.25rem;
  }
  .md\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .md\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .md\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .md\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .md\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .md\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .md\:u-m-8px {
    margin: 0.5rem;
  }
  .md\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .md\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .md\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .md\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .md\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .md\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .md\:u-m-12px {
    margin: 0.75rem;
  }
  .md\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .md\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .md\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .md\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .md\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .md\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .md\:u-m-16px {
    margin: 1rem;
  }
  .md\:u-mt-16px {
    margin-top: 1rem;
  }
  .md\:u-mr-16px {
    margin-right: 1rem;
  }
  .md\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .md\:u-ml-16px {
    margin-left: 1rem;
  }
  .md\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .md\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .md\:u-m-20px {
    margin: 1.25rem;
  }
  .md\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .md\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .md\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .md\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .md\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .md\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .md\:u-m-24px {
    margin: 1.5rem;
  }
  .md\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .md\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .md\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .md\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .md\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .md\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .md\:u-m-28px {
    margin: 1.75rem;
  }
  .md\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .md\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .md\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .md\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .md\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .md\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .md\:u-m-32px {
    margin: 2rem;
  }
  .md\:u-mt-32px {
    margin-top: 2rem;
  }
  .md\:u-mr-32px {
    margin-right: 2rem;
  }
  .md\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .md\:u-ml-32px {
    margin-left: 2rem;
  }
  .md\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .md\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .md\:u-m-36px {
    margin: 2.25rem;
  }
  .md\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .md\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .md\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .md\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .md\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .md\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .md\:u-m-40px {
    margin: 2.5rem;
  }
  .md\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .md\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .md\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .md\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .md\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .md\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .md\:u-m-44px {
    margin: 2.75rem;
  }
  .md\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .md\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .md\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .md\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .md\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .md\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .md\:u-m-48px {
    margin: 3rem;
  }
  .md\:u-mt-48px {
    margin-top: 3rem;
  }
  .md\:u-mr-48px {
    margin-right: 3rem;
  }
  .md\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .md\:u-ml-48px {
    margin-left: 3rem;
  }
  .md\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .md\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .md\:u-m-52px {
    margin: 3.25rem;
  }
  .md\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .md\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .md\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .md\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .md\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .md\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .md\:u-m-56px {
    margin: 3.5rem;
  }
  .md\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .md\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .md\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .md\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .md\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .md\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .md\:u-m-60px {
    margin: 3.75rem;
  }
  .md\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .md\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .md\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .md\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .md\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .md\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .md\:u-m-64px {
    margin: 4rem;
  }
  .md\:u-mt-64px {
    margin-top: 4rem;
  }
  .md\:u-mr-64px {
    margin-right: 4rem;
  }
  .md\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .md\:u-ml-64px {
    margin-left: 4rem;
  }
  .md\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .md\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .md\:u-m-68px {
    margin: 4.25rem;
  }
  .md\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .md\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .md\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .md\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .md\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .md\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .md\:u-m-72px {
    margin: 4.5rem;
  }
  .md\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .md\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .md\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .md\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .md\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .md\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .md\:u-m-76px {
    margin: 4.75rem;
  }
  .md\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .md\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .md\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .md\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .md\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .md\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .md\:u-m-80px {
    margin: 5rem;
  }
  .md\:u-mt-80px {
    margin-top: 5rem;
  }
  .md\:u-mr-80px {
    margin-right: 5rem;
  }
  .md\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .md\:u-ml-80px {
    margin-left: 5rem;
  }
  .md\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .md\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-m-0 {
    margin: 0rem;
  }
  .md-down\:u-mt-0 {
    margin-top: 0rem;
  }
  .md-down\:u-mr-0 {
    margin-right: 0rem;
  }
  .md-down\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .md-down\:u-ml-0 {
    margin-left: 0rem;
  }
  .md-down\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .md-down\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .md-down\:u-m-4px {
    margin: 0.25rem;
  }
  .md-down\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .md-down\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .md-down\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .md-down\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .md-down\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .md-down\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .md-down\:u-m-8px {
    margin: 0.5rem;
  }
  .md-down\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .md-down\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .md-down\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .md-down\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .md-down\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .md-down\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .md-down\:u-m-12px {
    margin: 0.75rem;
  }
  .md-down\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .md-down\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .md-down\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .md-down\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .md-down\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .md-down\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .md-down\:u-m-16px {
    margin: 1rem;
  }
  .md-down\:u-mt-16px {
    margin-top: 1rem;
  }
  .md-down\:u-mr-16px {
    margin-right: 1rem;
  }
  .md-down\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .md-down\:u-ml-16px {
    margin-left: 1rem;
  }
  .md-down\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .md-down\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .md-down\:u-m-20px {
    margin: 1.25rem;
  }
  .md-down\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .md-down\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .md-down\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .md-down\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .md-down\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .md-down\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .md-down\:u-m-24px {
    margin: 1.5rem;
  }
  .md-down\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .md-down\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .md-down\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .md-down\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .md-down\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .md-down\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .md-down\:u-m-28px {
    margin: 1.75rem;
  }
  .md-down\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .md-down\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .md-down\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .md-down\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .md-down\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .md-down\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .md-down\:u-m-32px {
    margin: 2rem;
  }
  .md-down\:u-mt-32px {
    margin-top: 2rem;
  }
  .md-down\:u-mr-32px {
    margin-right: 2rem;
  }
  .md-down\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .md-down\:u-ml-32px {
    margin-left: 2rem;
  }
  .md-down\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .md-down\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .md-down\:u-m-36px {
    margin: 2.25rem;
  }
  .md-down\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .md-down\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .md-down\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .md-down\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .md-down\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .md-down\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .md-down\:u-m-40px {
    margin: 2.5rem;
  }
  .md-down\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .md-down\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .md-down\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .md-down\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .md-down\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .md-down\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .md-down\:u-m-44px {
    margin: 2.75rem;
  }
  .md-down\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .md-down\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .md-down\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .md-down\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .md-down\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .md-down\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .md-down\:u-m-48px {
    margin: 3rem;
  }
  .md-down\:u-mt-48px {
    margin-top: 3rem;
  }
  .md-down\:u-mr-48px {
    margin-right: 3rem;
  }
  .md-down\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .md-down\:u-ml-48px {
    margin-left: 3rem;
  }
  .md-down\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .md-down\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .md-down\:u-m-52px {
    margin: 3.25rem;
  }
  .md-down\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .md-down\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .md-down\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .md-down\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .md-down\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .md-down\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .md-down\:u-m-56px {
    margin: 3.5rem;
  }
  .md-down\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .md-down\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .md-down\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .md-down\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .md-down\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .md-down\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .md-down\:u-m-60px {
    margin: 3.75rem;
  }
  .md-down\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .md-down\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .md-down\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .md-down\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .md-down\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .md-down\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .md-down\:u-m-64px {
    margin: 4rem;
  }
  .md-down\:u-mt-64px {
    margin-top: 4rem;
  }
  .md-down\:u-mr-64px {
    margin-right: 4rem;
  }
  .md-down\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .md-down\:u-ml-64px {
    margin-left: 4rem;
  }
  .md-down\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .md-down\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .md-down\:u-m-68px {
    margin: 4.25rem;
  }
  .md-down\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .md-down\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .md-down\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .md-down\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .md-down\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .md-down\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .md-down\:u-m-72px {
    margin: 4.5rem;
  }
  .md-down\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .md-down\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .md-down\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .md-down\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .md-down\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .md-down\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .md-down\:u-m-76px {
    margin: 4.75rem;
  }
  .md-down\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .md-down\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .md-down\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .md-down\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .md-down\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .md-down\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .md-down\:u-m-80px {
    margin: 5rem;
  }
  .md-down\:u-mt-80px {
    margin-top: 5rem;
  }
  .md-down\:u-mr-80px {
    margin-right: 5rem;
  }
  .md-down\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .md-down\:u-ml-80px {
    margin-left: 5rem;
  }
  .md-down\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .md-down\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 48em) {
  .md-up\:u-m-0 {
    margin: 0rem;
  }
  .md-up\:u-mt-0 {
    margin-top: 0rem;
  }
  .md-up\:u-mr-0 {
    margin-right: 0rem;
  }
  .md-up\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .md-up\:u-ml-0 {
    margin-left: 0rem;
  }
  .md-up\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .md-up\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .md-up\:u-m-4px {
    margin: 0.25rem;
  }
  .md-up\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .md-up\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .md-up\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .md-up\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .md-up\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .md-up\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .md-up\:u-m-8px {
    margin: 0.5rem;
  }
  .md-up\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .md-up\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .md-up\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .md-up\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .md-up\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .md-up\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .md-up\:u-m-12px {
    margin: 0.75rem;
  }
  .md-up\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .md-up\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .md-up\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .md-up\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .md-up\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .md-up\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .md-up\:u-m-16px {
    margin: 1rem;
  }
  .md-up\:u-mt-16px {
    margin-top: 1rem;
  }
  .md-up\:u-mr-16px {
    margin-right: 1rem;
  }
  .md-up\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .md-up\:u-ml-16px {
    margin-left: 1rem;
  }
  .md-up\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .md-up\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .md-up\:u-m-20px {
    margin: 1.25rem;
  }
  .md-up\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .md-up\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .md-up\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .md-up\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .md-up\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .md-up\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .md-up\:u-m-24px {
    margin: 1.5rem;
  }
  .md-up\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .md-up\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .md-up\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .md-up\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .md-up\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .md-up\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .md-up\:u-m-28px {
    margin: 1.75rem;
  }
  .md-up\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .md-up\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .md-up\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .md-up\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .md-up\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .md-up\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .md-up\:u-m-32px {
    margin: 2rem;
  }
  .md-up\:u-mt-32px {
    margin-top: 2rem;
  }
  .md-up\:u-mr-32px {
    margin-right: 2rem;
  }
  .md-up\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .md-up\:u-ml-32px {
    margin-left: 2rem;
  }
  .md-up\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .md-up\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .md-up\:u-m-36px {
    margin: 2.25rem;
  }
  .md-up\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .md-up\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .md-up\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .md-up\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .md-up\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .md-up\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .md-up\:u-m-40px {
    margin: 2.5rem;
  }
  .md-up\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .md-up\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .md-up\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .md-up\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .md-up\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .md-up\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .md-up\:u-m-44px {
    margin: 2.75rem;
  }
  .md-up\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .md-up\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .md-up\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .md-up\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .md-up\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .md-up\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .md-up\:u-m-48px {
    margin: 3rem;
  }
  .md-up\:u-mt-48px {
    margin-top: 3rem;
  }
  .md-up\:u-mr-48px {
    margin-right: 3rem;
  }
  .md-up\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .md-up\:u-ml-48px {
    margin-left: 3rem;
  }
  .md-up\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .md-up\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .md-up\:u-m-52px {
    margin: 3.25rem;
  }
  .md-up\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .md-up\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .md-up\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .md-up\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .md-up\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .md-up\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .md-up\:u-m-56px {
    margin: 3.5rem;
  }
  .md-up\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .md-up\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .md-up\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .md-up\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .md-up\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .md-up\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .md-up\:u-m-60px {
    margin: 3.75rem;
  }
  .md-up\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .md-up\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .md-up\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .md-up\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .md-up\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .md-up\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .md-up\:u-m-64px {
    margin: 4rem;
  }
  .md-up\:u-mt-64px {
    margin-top: 4rem;
  }
  .md-up\:u-mr-64px {
    margin-right: 4rem;
  }
  .md-up\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .md-up\:u-ml-64px {
    margin-left: 4rem;
  }
  .md-up\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .md-up\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .md-up\:u-m-68px {
    margin: 4.25rem;
  }
  .md-up\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .md-up\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .md-up\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .md-up\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .md-up\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .md-up\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .md-up\:u-m-72px {
    margin: 4.5rem;
  }
  .md-up\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .md-up\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .md-up\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .md-up\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .md-up\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .md-up\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .md-up\:u-m-76px {
    margin: 4.75rem;
  }
  .md-up\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .md-up\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .md-up\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .md-up\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .md-up\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .md-up\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .md-up\:u-m-80px {
    margin: 5rem;
  }
  .md-up\:u-mt-80px {
    margin-top: 5rem;
  }
  .md-up\:u-mr-80px {
    margin-right: 5rem;
  }
  .md-up\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .md-up\:u-ml-80px {
    margin-left: 5rem;
  }
  .md-up\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .md-up\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-m-0 {
    margin: 0rem;
  }
  .lg\:u-mt-0 {
    margin-top: 0rem;
  }
  .lg\:u-mr-0 {
    margin-right: 0rem;
  }
  .lg\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .lg\:u-ml-0 {
    margin-left: 0rem;
  }
  .lg\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .lg\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .lg\:u-m-4px {
    margin: 0.25rem;
  }
  .lg\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .lg\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .lg\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .lg\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .lg\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .lg\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .lg\:u-m-8px {
    margin: 0.5rem;
  }
  .lg\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .lg\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .lg\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .lg\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .lg\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .lg\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .lg\:u-m-12px {
    margin: 0.75rem;
  }
  .lg\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .lg\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .lg\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .lg\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .lg\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .lg\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .lg\:u-m-16px {
    margin: 1rem;
  }
  .lg\:u-mt-16px {
    margin-top: 1rem;
  }
  .lg\:u-mr-16px {
    margin-right: 1rem;
  }
  .lg\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .lg\:u-ml-16px {
    margin-left: 1rem;
  }
  .lg\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .lg\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .lg\:u-m-20px {
    margin: 1.25rem;
  }
  .lg\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .lg\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .lg\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .lg\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .lg\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .lg\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .lg\:u-m-24px {
    margin: 1.5rem;
  }
  .lg\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .lg\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .lg\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .lg\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .lg\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .lg\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .lg\:u-m-28px {
    margin: 1.75rem;
  }
  .lg\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .lg\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .lg\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .lg\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .lg\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .lg\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .lg\:u-m-32px {
    margin: 2rem;
  }
  .lg\:u-mt-32px {
    margin-top: 2rem;
  }
  .lg\:u-mr-32px {
    margin-right: 2rem;
  }
  .lg\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .lg\:u-ml-32px {
    margin-left: 2rem;
  }
  .lg\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .lg\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .lg\:u-m-36px {
    margin: 2.25rem;
  }
  .lg\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .lg\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .lg\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .lg\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .lg\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .lg\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .lg\:u-m-40px {
    margin: 2.5rem;
  }
  .lg\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .lg\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .lg\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .lg\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .lg\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .lg\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .lg\:u-m-44px {
    margin: 2.75rem;
  }
  .lg\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .lg\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .lg\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .lg\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .lg\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .lg\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .lg\:u-m-48px {
    margin: 3rem;
  }
  .lg\:u-mt-48px {
    margin-top: 3rem;
  }
  .lg\:u-mr-48px {
    margin-right: 3rem;
  }
  .lg\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .lg\:u-ml-48px {
    margin-left: 3rem;
  }
  .lg\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .lg\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .lg\:u-m-52px {
    margin: 3.25rem;
  }
  .lg\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .lg\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .lg\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .lg\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .lg\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .lg\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .lg\:u-m-56px {
    margin: 3.5rem;
  }
  .lg\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .lg\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .lg\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .lg\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .lg\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .lg\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .lg\:u-m-60px {
    margin: 3.75rem;
  }
  .lg\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .lg\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .lg\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .lg\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .lg\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .lg\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .lg\:u-m-64px {
    margin: 4rem;
  }
  .lg\:u-mt-64px {
    margin-top: 4rem;
  }
  .lg\:u-mr-64px {
    margin-right: 4rem;
  }
  .lg\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .lg\:u-ml-64px {
    margin-left: 4rem;
  }
  .lg\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .lg\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .lg\:u-m-68px {
    margin: 4.25rem;
  }
  .lg\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .lg\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .lg\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .lg\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .lg\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .lg\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .lg\:u-m-72px {
    margin: 4.5rem;
  }
  .lg\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .lg\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .lg\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .lg\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .lg\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .lg\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .lg\:u-m-76px {
    margin: 4.75rem;
  }
  .lg\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .lg\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .lg\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .lg\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .lg\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .lg\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .lg\:u-m-80px {
    margin: 5rem;
  }
  .lg\:u-mt-80px {
    margin-top: 5rem;
  }
  .lg\:u-mr-80px {
    margin-right: 5rem;
  }
  .lg\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .lg\:u-ml-80px {
    margin-left: 5rem;
  }
  .lg\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .lg\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-m-0 {
    margin: 0rem;
  }
  .lg-down\:u-mt-0 {
    margin-top: 0rem;
  }
  .lg-down\:u-mr-0 {
    margin-right: 0rem;
  }
  .lg-down\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .lg-down\:u-ml-0 {
    margin-left: 0rem;
  }
  .lg-down\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .lg-down\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .lg-down\:u-m-4px {
    margin: 0.25rem;
  }
  .lg-down\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .lg-down\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .lg-down\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .lg-down\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .lg-down\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .lg-down\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .lg-down\:u-m-8px {
    margin: 0.5rem;
  }
  .lg-down\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .lg-down\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .lg-down\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .lg-down\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .lg-down\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .lg-down\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .lg-down\:u-m-12px {
    margin: 0.75rem;
  }
  .lg-down\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .lg-down\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .lg-down\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .lg-down\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .lg-down\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .lg-down\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .lg-down\:u-m-16px {
    margin: 1rem;
  }
  .lg-down\:u-mt-16px {
    margin-top: 1rem;
  }
  .lg-down\:u-mr-16px {
    margin-right: 1rem;
  }
  .lg-down\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .lg-down\:u-ml-16px {
    margin-left: 1rem;
  }
  .lg-down\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .lg-down\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .lg-down\:u-m-20px {
    margin: 1.25rem;
  }
  .lg-down\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .lg-down\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .lg-down\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .lg-down\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .lg-down\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .lg-down\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .lg-down\:u-m-24px {
    margin: 1.5rem;
  }
  .lg-down\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .lg-down\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .lg-down\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .lg-down\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .lg-down\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .lg-down\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .lg-down\:u-m-28px {
    margin: 1.75rem;
  }
  .lg-down\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .lg-down\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .lg-down\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .lg-down\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .lg-down\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .lg-down\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .lg-down\:u-m-32px {
    margin: 2rem;
  }
  .lg-down\:u-mt-32px {
    margin-top: 2rem;
  }
  .lg-down\:u-mr-32px {
    margin-right: 2rem;
  }
  .lg-down\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .lg-down\:u-ml-32px {
    margin-left: 2rem;
  }
  .lg-down\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .lg-down\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .lg-down\:u-m-36px {
    margin: 2.25rem;
  }
  .lg-down\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .lg-down\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .lg-down\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .lg-down\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .lg-down\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .lg-down\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .lg-down\:u-m-40px {
    margin: 2.5rem;
  }
  .lg-down\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .lg-down\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .lg-down\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .lg-down\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .lg-down\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .lg-down\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .lg-down\:u-m-44px {
    margin: 2.75rem;
  }
  .lg-down\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .lg-down\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .lg-down\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .lg-down\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .lg-down\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .lg-down\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .lg-down\:u-m-48px {
    margin: 3rem;
  }
  .lg-down\:u-mt-48px {
    margin-top: 3rem;
  }
  .lg-down\:u-mr-48px {
    margin-right: 3rem;
  }
  .lg-down\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .lg-down\:u-ml-48px {
    margin-left: 3rem;
  }
  .lg-down\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .lg-down\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .lg-down\:u-m-52px {
    margin: 3.25rem;
  }
  .lg-down\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .lg-down\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .lg-down\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .lg-down\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .lg-down\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .lg-down\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .lg-down\:u-m-56px {
    margin: 3.5rem;
  }
  .lg-down\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .lg-down\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .lg-down\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .lg-down\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .lg-down\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .lg-down\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .lg-down\:u-m-60px {
    margin: 3.75rem;
  }
  .lg-down\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .lg-down\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .lg-down\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .lg-down\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .lg-down\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .lg-down\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .lg-down\:u-m-64px {
    margin: 4rem;
  }
  .lg-down\:u-mt-64px {
    margin-top: 4rem;
  }
  .lg-down\:u-mr-64px {
    margin-right: 4rem;
  }
  .lg-down\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .lg-down\:u-ml-64px {
    margin-left: 4rem;
  }
  .lg-down\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .lg-down\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .lg-down\:u-m-68px {
    margin: 4.25rem;
  }
  .lg-down\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .lg-down\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .lg-down\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .lg-down\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .lg-down\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .lg-down\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .lg-down\:u-m-72px {
    margin: 4.5rem;
  }
  .lg-down\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .lg-down\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .lg-down\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .lg-down\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .lg-down\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .lg-down\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .lg-down\:u-m-76px {
    margin: 4.75rem;
  }
  .lg-down\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .lg-down\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .lg-down\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .lg-down\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .lg-down\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .lg-down\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .lg-down\:u-m-80px {
    margin: 5rem;
  }
  .lg-down\:u-mt-80px {
    margin-top: 5rem;
  }
  .lg-down\:u-mr-80px {
    margin-right: 5rem;
  }
  .lg-down\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .lg-down\:u-ml-80px {
    margin-left: 5rem;
  }
  .lg-down\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .lg-down\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 62em) {
  .lg-up\:u-m-0 {
    margin: 0rem;
  }
  .lg-up\:u-mt-0 {
    margin-top: 0rem;
  }
  .lg-up\:u-mr-0 {
    margin-right: 0rem;
  }
  .lg-up\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .lg-up\:u-ml-0 {
    margin-left: 0rem;
  }
  .lg-up\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .lg-up\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .lg-up\:u-m-4px {
    margin: 0.25rem;
  }
  .lg-up\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .lg-up\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .lg-up\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .lg-up\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .lg-up\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .lg-up\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .lg-up\:u-m-8px {
    margin: 0.5rem;
  }
  .lg-up\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .lg-up\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .lg-up\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .lg-up\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .lg-up\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .lg-up\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .lg-up\:u-m-12px {
    margin: 0.75rem;
  }
  .lg-up\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .lg-up\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .lg-up\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .lg-up\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .lg-up\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .lg-up\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .lg-up\:u-m-16px {
    margin: 1rem;
  }
  .lg-up\:u-mt-16px {
    margin-top: 1rem;
  }
  .lg-up\:u-mr-16px {
    margin-right: 1rem;
  }
  .lg-up\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .lg-up\:u-ml-16px {
    margin-left: 1rem;
  }
  .lg-up\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .lg-up\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .lg-up\:u-m-20px {
    margin: 1.25rem;
  }
  .lg-up\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .lg-up\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .lg-up\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .lg-up\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .lg-up\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .lg-up\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .lg-up\:u-m-24px {
    margin: 1.5rem;
  }
  .lg-up\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .lg-up\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .lg-up\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .lg-up\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .lg-up\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .lg-up\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .lg-up\:u-m-28px {
    margin: 1.75rem;
  }
  .lg-up\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .lg-up\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .lg-up\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .lg-up\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .lg-up\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .lg-up\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .lg-up\:u-m-32px {
    margin: 2rem;
  }
  .lg-up\:u-mt-32px {
    margin-top: 2rem;
  }
  .lg-up\:u-mr-32px {
    margin-right: 2rem;
  }
  .lg-up\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .lg-up\:u-ml-32px {
    margin-left: 2rem;
  }
  .lg-up\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .lg-up\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .lg-up\:u-m-36px {
    margin: 2.25rem;
  }
  .lg-up\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .lg-up\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .lg-up\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .lg-up\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .lg-up\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .lg-up\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .lg-up\:u-m-40px {
    margin: 2.5rem;
  }
  .lg-up\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .lg-up\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .lg-up\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .lg-up\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .lg-up\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .lg-up\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .lg-up\:u-m-44px {
    margin: 2.75rem;
  }
  .lg-up\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .lg-up\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .lg-up\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .lg-up\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .lg-up\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .lg-up\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .lg-up\:u-m-48px {
    margin: 3rem;
  }
  .lg-up\:u-mt-48px {
    margin-top: 3rem;
  }
  .lg-up\:u-mr-48px {
    margin-right: 3rem;
  }
  .lg-up\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .lg-up\:u-ml-48px {
    margin-left: 3rem;
  }
  .lg-up\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .lg-up\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .lg-up\:u-m-52px {
    margin: 3.25rem;
  }
  .lg-up\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .lg-up\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .lg-up\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .lg-up\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .lg-up\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .lg-up\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .lg-up\:u-m-56px {
    margin: 3.5rem;
  }
  .lg-up\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .lg-up\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .lg-up\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .lg-up\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .lg-up\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .lg-up\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .lg-up\:u-m-60px {
    margin: 3.75rem;
  }
  .lg-up\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .lg-up\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .lg-up\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .lg-up\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .lg-up\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .lg-up\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .lg-up\:u-m-64px {
    margin: 4rem;
  }
  .lg-up\:u-mt-64px {
    margin-top: 4rem;
  }
  .lg-up\:u-mr-64px {
    margin-right: 4rem;
  }
  .lg-up\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .lg-up\:u-ml-64px {
    margin-left: 4rem;
  }
  .lg-up\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .lg-up\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .lg-up\:u-m-68px {
    margin: 4.25rem;
  }
  .lg-up\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .lg-up\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .lg-up\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .lg-up\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .lg-up\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .lg-up\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .lg-up\:u-m-72px {
    margin: 4.5rem;
  }
  .lg-up\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .lg-up\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .lg-up\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .lg-up\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .lg-up\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .lg-up\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .lg-up\:u-m-76px {
    margin: 4.75rem;
  }
  .lg-up\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .lg-up\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .lg-up\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .lg-up\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .lg-up\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .lg-up\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .lg-up\:u-m-80px {
    margin: 5rem;
  }
  .lg-up\:u-mt-80px {
    margin-top: 5rem;
  }
  .lg-up\:u-mr-80px {
    margin-right: 5rem;
  }
  .lg-up\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .lg-up\:u-ml-80px {
    margin-left: 5rem;
  }
  .lg-up\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .lg-up\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-m-0 {
    margin: 0rem;
  }
  .xl\:u-mt-0 {
    margin-top: 0rem;
  }
  .xl\:u-mr-0 {
    margin-right: 0rem;
  }
  .xl\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .xl\:u-ml-0 {
    margin-left: 0rem;
  }
  .xl\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .xl\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .xl\:u-m-4px {
    margin: 0.25rem;
  }
  .xl\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .xl\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .xl\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .xl\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .xl\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .xl\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .xl\:u-m-8px {
    margin: 0.5rem;
  }
  .xl\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .xl\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .xl\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .xl\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .xl\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .xl\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .xl\:u-m-12px {
    margin: 0.75rem;
  }
  .xl\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .xl\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .xl\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .xl\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .xl\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .xl\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .xl\:u-m-16px {
    margin: 1rem;
  }
  .xl\:u-mt-16px {
    margin-top: 1rem;
  }
  .xl\:u-mr-16px {
    margin-right: 1rem;
  }
  .xl\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .xl\:u-ml-16px {
    margin-left: 1rem;
  }
  .xl\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .xl\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .xl\:u-m-20px {
    margin: 1.25rem;
  }
  .xl\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .xl\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .xl\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .xl\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .xl\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .xl\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .xl\:u-m-24px {
    margin: 1.5rem;
  }
  .xl\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .xl\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .xl\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .xl\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .xl\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .xl\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .xl\:u-m-28px {
    margin: 1.75rem;
  }
  .xl\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .xl\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .xl\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .xl\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .xl\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .xl\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .xl\:u-m-32px {
    margin: 2rem;
  }
  .xl\:u-mt-32px {
    margin-top: 2rem;
  }
  .xl\:u-mr-32px {
    margin-right: 2rem;
  }
  .xl\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .xl\:u-ml-32px {
    margin-left: 2rem;
  }
  .xl\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .xl\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .xl\:u-m-36px {
    margin: 2.25rem;
  }
  .xl\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .xl\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .xl\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .xl\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .xl\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .xl\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .xl\:u-m-40px {
    margin: 2.5rem;
  }
  .xl\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .xl\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .xl\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .xl\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .xl\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .xl\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .xl\:u-m-44px {
    margin: 2.75rem;
  }
  .xl\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .xl\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .xl\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .xl\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .xl\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .xl\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .xl\:u-m-48px {
    margin: 3rem;
  }
  .xl\:u-mt-48px {
    margin-top: 3rem;
  }
  .xl\:u-mr-48px {
    margin-right: 3rem;
  }
  .xl\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .xl\:u-ml-48px {
    margin-left: 3rem;
  }
  .xl\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .xl\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .xl\:u-m-52px {
    margin: 3.25rem;
  }
  .xl\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .xl\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .xl\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .xl\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .xl\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .xl\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .xl\:u-m-56px {
    margin: 3.5rem;
  }
  .xl\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .xl\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .xl\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .xl\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .xl\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .xl\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .xl\:u-m-60px {
    margin: 3.75rem;
  }
  .xl\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .xl\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .xl\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .xl\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .xl\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .xl\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .xl\:u-m-64px {
    margin: 4rem;
  }
  .xl\:u-mt-64px {
    margin-top: 4rem;
  }
  .xl\:u-mr-64px {
    margin-right: 4rem;
  }
  .xl\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .xl\:u-ml-64px {
    margin-left: 4rem;
  }
  .xl\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .xl\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .xl\:u-m-68px {
    margin: 4.25rem;
  }
  .xl\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .xl\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .xl\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .xl\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .xl\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .xl\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .xl\:u-m-72px {
    margin: 4.5rem;
  }
  .xl\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .xl\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .xl\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .xl\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .xl\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .xl\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .xl\:u-m-76px {
    margin: 4.75rem;
  }
  .xl\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .xl\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .xl\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .xl\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .xl\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .xl\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .xl\:u-m-80px {
    margin: 5rem;
  }
  .xl\:u-mt-80px {
    margin-top: 5rem;
  }
  .xl\:u-mr-80px {
    margin-right: 5rem;
  }
  .xl\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .xl\:u-ml-80px {
    margin-left: 5rem;
  }
  .xl\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .xl\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-m-0 {
    margin: 0rem;
  }
  .xl-down\:u-mt-0 {
    margin-top: 0rem;
  }
  .xl-down\:u-mr-0 {
    margin-right: 0rem;
  }
  .xl-down\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .xl-down\:u-ml-0 {
    margin-left: 0rem;
  }
  .xl-down\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .xl-down\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .xl-down\:u-m-4px {
    margin: 0.25rem;
  }
  .xl-down\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .xl-down\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .xl-down\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .xl-down\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .xl-down\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .xl-down\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .xl-down\:u-m-8px {
    margin: 0.5rem;
  }
  .xl-down\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .xl-down\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .xl-down\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .xl-down\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .xl-down\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .xl-down\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .xl-down\:u-m-12px {
    margin: 0.75rem;
  }
  .xl-down\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .xl-down\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .xl-down\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .xl-down\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .xl-down\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .xl-down\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .xl-down\:u-m-16px {
    margin: 1rem;
  }
  .xl-down\:u-mt-16px {
    margin-top: 1rem;
  }
  .xl-down\:u-mr-16px {
    margin-right: 1rem;
  }
  .xl-down\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .xl-down\:u-ml-16px {
    margin-left: 1rem;
  }
  .xl-down\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .xl-down\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .xl-down\:u-m-20px {
    margin: 1.25rem;
  }
  .xl-down\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .xl-down\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .xl-down\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .xl-down\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .xl-down\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .xl-down\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .xl-down\:u-m-24px {
    margin: 1.5rem;
  }
  .xl-down\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .xl-down\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .xl-down\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .xl-down\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .xl-down\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .xl-down\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .xl-down\:u-m-28px {
    margin: 1.75rem;
  }
  .xl-down\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .xl-down\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .xl-down\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .xl-down\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .xl-down\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .xl-down\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .xl-down\:u-m-32px {
    margin: 2rem;
  }
  .xl-down\:u-mt-32px {
    margin-top: 2rem;
  }
  .xl-down\:u-mr-32px {
    margin-right: 2rem;
  }
  .xl-down\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .xl-down\:u-ml-32px {
    margin-left: 2rem;
  }
  .xl-down\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .xl-down\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .xl-down\:u-m-36px {
    margin: 2.25rem;
  }
  .xl-down\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .xl-down\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .xl-down\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .xl-down\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .xl-down\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .xl-down\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .xl-down\:u-m-40px {
    margin: 2.5rem;
  }
  .xl-down\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .xl-down\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .xl-down\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .xl-down\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .xl-down\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .xl-down\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .xl-down\:u-m-44px {
    margin: 2.75rem;
  }
  .xl-down\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .xl-down\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .xl-down\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .xl-down\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .xl-down\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .xl-down\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .xl-down\:u-m-48px {
    margin: 3rem;
  }
  .xl-down\:u-mt-48px {
    margin-top: 3rem;
  }
  .xl-down\:u-mr-48px {
    margin-right: 3rem;
  }
  .xl-down\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .xl-down\:u-ml-48px {
    margin-left: 3rem;
  }
  .xl-down\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .xl-down\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .xl-down\:u-m-52px {
    margin: 3.25rem;
  }
  .xl-down\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .xl-down\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .xl-down\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .xl-down\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .xl-down\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .xl-down\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .xl-down\:u-m-56px {
    margin: 3.5rem;
  }
  .xl-down\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .xl-down\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .xl-down\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .xl-down\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .xl-down\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .xl-down\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .xl-down\:u-m-60px {
    margin: 3.75rem;
  }
  .xl-down\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .xl-down\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .xl-down\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .xl-down\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .xl-down\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .xl-down\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .xl-down\:u-m-64px {
    margin: 4rem;
  }
  .xl-down\:u-mt-64px {
    margin-top: 4rem;
  }
  .xl-down\:u-mr-64px {
    margin-right: 4rem;
  }
  .xl-down\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .xl-down\:u-ml-64px {
    margin-left: 4rem;
  }
  .xl-down\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .xl-down\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .xl-down\:u-m-68px {
    margin: 4.25rem;
  }
  .xl-down\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .xl-down\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .xl-down\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .xl-down\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .xl-down\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .xl-down\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .xl-down\:u-m-72px {
    margin: 4.5rem;
  }
  .xl-down\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .xl-down\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .xl-down\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .xl-down\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .xl-down\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .xl-down\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .xl-down\:u-m-76px {
    margin: 4.75rem;
  }
  .xl-down\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .xl-down\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .xl-down\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .xl-down\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .xl-down\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .xl-down\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .xl-down\:u-m-80px {
    margin: 5rem;
  }
  .xl-down\:u-mt-80px {
    margin-top: 5rem;
  }
  .xl-down\:u-mr-80px {
    margin-right: 5rem;
  }
  .xl-down\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .xl-down\:u-ml-80px {
    margin-left: 5rem;
  }
  .xl-down\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .xl-down\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 75em) {
  .xl-up\:u-m-0 {
    margin: 0rem;
  }
  .xl-up\:u-mt-0 {
    margin-top: 0rem;
  }
  .xl-up\:u-mr-0 {
    margin-right: 0rem;
  }
  .xl-up\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .xl-up\:u-ml-0 {
    margin-left: 0rem;
  }
  .xl-up\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .xl-up\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .xl-up\:u-m-4px {
    margin: 0.25rem;
  }
  .xl-up\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .xl-up\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .xl-up\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .xl-up\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .xl-up\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .xl-up\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .xl-up\:u-m-8px {
    margin: 0.5rem;
  }
  .xl-up\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .xl-up\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .xl-up\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .xl-up\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .xl-up\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .xl-up\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .xl-up\:u-m-12px {
    margin: 0.75rem;
  }
  .xl-up\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .xl-up\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .xl-up\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .xl-up\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .xl-up\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .xl-up\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .xl-up\:u-m-16px {
    margin: 1rem;
  }
  .xl-up\:u-mt-16px {
    margin-top: 1rem;
  }
  .xl-up\:u-mr-16px {
    margin-right: 1rem;
  }
  .xl-up\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .xl-up\:u-ml-16px {
    margin-left: 1rem;
  }
  .xl-up\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .xl-up\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .xl-up\:u-m-20px {
    margin: 1.25rem;
  }
  .xl-up\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .xl-up\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .xl-up\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .xl-up\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .xl-up\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .xl-up\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .xl-up\:u-m-24px {
    margin: 1.5rem;
  }
  .xl-up\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .xl-up\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .xl-up\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .xl-up\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .xl-up\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .xl-up\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .xl-up\:u-m-28px {
    margin: 1.75rem;
  }
  .xl-up\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .xl-up\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .xl-up\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .xl-up\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .xl-up\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .xl-up\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .xl-up\:u-m-32px {
    margin: 2rem;
  }
  .xl-up\:u-mt-32px {
    margin-top: 2rem;
  }
  .xl-up\:u-mr-32px {
    margin-right: 2rem;
  }
  .xl-up\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .xl-up\:u-ml-32px {
    margin-left: 2rem;
  }
  .xl-up\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .xl-up\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .xl-up\:u-m-36px {
    margin: 2.25rem;
  }
  .xl-up\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .xl-up\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .xl-up\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .xl-up\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .xl-up\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .xl-up\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .xl-up\:u-m-40px {
    margin: 2.5rem;
  }
  .xl-up\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .xl-up\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .xl-up\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .xl-up\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .xl-up\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .xl-up\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .xl-up\:u-m-44px {
    margin: 2.75rem;
  }
  .xl-up\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .xl-up\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .xl-up\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .xl-up\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .xl-up\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .xl-up\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .xl-up\:u-m-48px {
    margin: 3rem;
  }
  .xl-up\:u-mt-48px {
    margin-top: 3rem;
  }
  .xl-up\:u-mr-48px {
    margin-right: 3rem;
  }
  .xl-up\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .xl-up\:u-ml-48px {
    margin-left: 3rem;
  }
  .xl-up\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .xl-up\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .xl-up\:u-m-52px {
    margin: 3.25rem;
  }
  .xl-up\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .xl-up\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .xl-up\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .xl-up\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .xl-up\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .xl-up\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .xl-up\:u-m-56px {
    margin: 3.5rem;
  }
  .xl-up\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .xl-up\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .xl-up\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .xl-up\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .xl-up\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .xl-up\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .xl-up\:u-m-60px {
    margin: 3.75rem;
  }
  .xl-up\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .xl-up\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .xl-up\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .xl-up\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .xl-up\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .xl-up\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .xl-up\:u-m-64px {
    margin: 4rem;
  }
  .xl-up\:u-mt-64px {
    margin-top: 4rem;
  }
  .xl-up\:u-mr-64px {
    margin-right: 4rem;
  }
  .xl-up\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .xl-up\:u-ml-64px {
    margin-left: 4rem;
  }
  .xl-up\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .xl-up\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .xl-up\:u-m-68px {
    margin: 4.25rem;
  }
  .xl-up\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .xl-up\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .xl-up\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .xl-up\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .xl-up\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .xl-up\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .xl-up\:u-m-72px {
    margin: 4.5rem;
  }
  .xl-up\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .xl-up\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .xl-up\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .xl-up\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .xl-up\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .xl-up\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .xl-up\:u-m-76px {
    margin: 4.75rem;
  }
  .xl-up\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .xl-up\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .xl-up\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .xl-up\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .xl-up\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .xl-up\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .xl-up\:u-m-80px {
    margin: 5rem;
  }
  .xl-up\:u-mt-80px {
    margin-top: 5rem;
  }
  .xl-up\:u-mr-80px {
    margin-right: 5rem;
  }
  .xl-up\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .xl-up\:u-ml-80px {
    margin-left: 5rem;
  }
  .xl-up\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .xl-up\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
@media (min-width: 90em) {
  .xxl\:u-m-0 {
    margin: 0rem;
  }
  .xxl\:u-mt-0 {
    margin-top: 0rem;
  }
  .xxl\:u-mr-0 {
    margin-right: 0rem;
  }
  .xxl\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .xxl\:u-ml-0 {
    margin-left: 0rem;
  }
  .xxl\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .xxl\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .xxl\:u-m-4px {
    margin: 0.25rem;
  }
  .xxl\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .xxl\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .xxl\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .xxl\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .xxl\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .xxl\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .xxl\:u-m-8px {
    margin: 0.5rem;
  }
  .xxl\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .xxl\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .xxl\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .xxl\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .xxl\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .xxl\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .xxl\:u-m-12px {
    margin: 0.75rem;
  }
  .xxl\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .xxl\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .xxl\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .xxl\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .xxl\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .xxl\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .xxl\:u-m-16px {
    margin: 1rem;
  }
  .xxl\:u-mt-16px {
    margin-top: 1rem;
  }
  .xxl\:u-mr-16px {
    margin-right: 1rem;
  }
  .xxl\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .xxl\:u-ml-16px {
    margin-left: 1rem;
  }
  .xxl\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .xxl\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .xxl\:u-m-20px {
    margin: 1.25rem;
  }
  .xxl\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .xxl\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .xxl\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .xxl\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .xxl\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .xxl\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .xxl\:u-m-24px {
    margin: 1.5rem;
  }
  .xxl\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .xxl\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .xxl\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .xxl\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .xxl\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .xxl\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .xxl\:u-m-28px {
    margin: 1.75rem;
  }
  .xxl\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .xxl\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .xxl\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .xxl\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .xxl\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .xxl\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .xxl\:u-m-32px {
    margin: 2rem;
  }
  .xxl\:u-mt-32px {
    margin-top: 2rem;
  }
  .xxl\:u-mr-32px {
    margin-right: 2rem;
  }
  .xxl\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .xxl\:u-ml-32px {
    margin-left: 2rem;
  }
  .xxl\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .xxl\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .xxl\:u-m-36px {
    margin: 2.25rem;
  }
  .xxl\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .xxl\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .xxl\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .xxl\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .xxl\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .xxl\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .xxl\:u-m-40px {
    margin: 2.5rem;
  }
  .xxl\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .xxl\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .xxl\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .xxl\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .xxl\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .xxl\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .xxl\:u-m-44px {
    margin: 2.75rem;
  }
  .xxl\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .xxl\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .xxl\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .xxl\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .xxl\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .xxl\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .xxl\:u-m-48px {
    margin: 3rem;
  }
  .xxl\:u-mt-48px {
    margin-top: 3rem;
  }
  .xxl\:u-mr-48px {
    margin-right: 3rem;
  }
  .xxl\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .xxl\:u-ml-48px {
    margin-left: 3rem;
  }
  .xxl\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .xxl\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .xxl\:u-m-52px {
    margin: 3.25rem;
  }
  .xxl\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .xxl\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .xxl\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .xxl\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .xxl\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .xxl\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .xxl\:u-m-56px {
    margin: 3.5rem;
  }
  .xxl\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .xxl\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .xxl\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .xxl\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .xxl\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .xxl\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .xxl\:u-m-60px {
    margin: 3.75rem;
  }
  .xxl\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .xxl\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .xxl\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .xxl\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .xxl\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .xxl\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .xxl\:u-m-64px {
    margin: 4rem;
  }
  .xxl\:u-mt-64px {
    margin-top: 4rem;
  }
  .xxl\:u-mr-64px {
    margin-right: 4rem;
  }
  .xxl\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .xxl\:u-ml-64px {
    margin-left: 4rem;
  }
  .xxl\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .xxl\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .xxl\:u-m-68px {
    margin: 4.25rem;
  }
  .xxl\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .xxl\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .xxl\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .xxl\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .xxl\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .xxl\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .xxl\:u-m-72px {
    margin: 4.5rem;
  }
  .xxl\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .xxl\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .xxl\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .xxl\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .xxl\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .xxl\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .xxl\:u-m-76px {
    margin: 4.75rem;
  }
  .xxl\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .xxl\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .xxl\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .xxl\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .xxl\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .xxl\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .xxl\:u-m-80px {
    margin: 5rem;
  }
  .xxl\:u-mt-80px {
    margin-top: 5rem;
  }
  .xxl\:u-mr-80px {
    margin-right: 5rem;
  }
  .xxl\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .xxl\:u-ml-80px {
    margin-left: 5rem;
  }
  .xxl\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .xxl\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
.xxl-down\:u-m-0 {
  margin: 0rem;
}

.xxl-down\:u-mt-0 {
  margin-top: 0rem;
}

.xxl-down\:u-mr-0 {
  margin-right: 0rem;
}

.xxl-down\:u-mb-0 {
  margin-bottom: 0rem;
}

.xxl-down\:u-ml-0 {
  margin-left: 0rem;
}

.xxl-down\:u-mt-vr-0 {
  margin-top: vr(0);
}

.xxl-down\:u-mb-vr-0 {
  margin-bottom: vr(0);
}

.xxl-down\:u-m-4px {
  margin: 0.25rem;
}

.xxl-down\:u-mt-4px {
  margin-top: 0.25rem;
}

.xxl-down\:u-mr-4px {
  margin-right: 0.25rem;
}

.xxl-down\:u-mb-4px {
  margin-bottom: 0.25rem;
}

.xxl-down\:u-ml-4px {
  margin-left: 0.25rem;
}

.xxl-down\:u-mt-vr-1 {
  margin-top: vr(1);
}

.xxl-down\:u-mb-vr-1 {
  margin-bottom: vr(1);
}

.xxl-down\:u-m-8px {
  margin: 0.5rem;
}

.xxl-down\:u-mt-8px {
  margin-top: 0.5rem;
}

.xxl-down\:u-mr-8px {
  margin-right: 0.5rem;
}

.xxl-down\:u-mb-8px {
  margin-bottom: 0.5rem;
}

.xxl-down\:u-ml-8px {
  margin-left: 0.5rem;
}

.xxl-down\:u-mt-vr-2 {
  margin-top: vr(2);
}

.xxl-down\:u-mb-vr-2 {
  margin-bottom: vr(2);
}

.xxl-down\:u-m-12px {
  margin: 0.75rem;
}

.xxl-down\:u-mt-12px {
  margin-top: 0.75rem;
}

.xxl-down\:u-mr-12px {
  margin-right: 0.75rem;
}

.xxl-down\:u-mb-12px {
  margin-bottom: 0.75rem;
}

.xxl-down\:u-ml-12px {
  margin-left: 0.75rem;
}

.xxl-down\:u-mt-vr-3 {
  margin-top: vr(3);
}

.xxl-down\:u-mb-vr-3 {
  margin-bottom: vr(3);
}

.xxl-down\:u-m-16px {
  margin: 1rem;
}

.xxl-down\:u-mt-16px {
  margin-top: 1rem;
}

.xxl-down\:u-mr-16px {
  margin-right: 1rem;
}

.xxl-down\:u-mb-16px {
  margin-bottom: 1rem;
}

.xxl-down\:u-ml-16px {
  margin-left: 1rem;
}

.xxl-down\:u-mt-vr-4 {
  margin-top: vr(4);
}

.xxl-down\:u-mb-vr-4 {
  margin-bottom: vr(4);
}

.xxl-down\:u-m-20px {
  margin: 1.25rem;
}

.xxl-down\:u-mt-20px {
  margin-top: 1.25rem;
}

.xxl-down\:u-mr-20px {
  margin-right: 1.25rem;
}

.xxl-down\:u-mb-20px {
  margin-bottom: 1.25rem;
}

.xxl-down\:u-ml-20px {
  margin-left: 1.25rem;
}

.xxl-down\:u-mt-vr-5 {
  margin-top: vr(5);
}

.xxl-down\:u-mb-vr-5 {
  margin-bottom: vr(5);
}

.xxl-down\:u-m-24px {
  margin: 1.5rem;
}

.xxl-down\:u-mt-24px {
  margin-top: 1.5rem;
}

.xxl-down\:u-mr-24px {
  margin-right: 1.5rem;
}

.xxl-down\:u-mb-24px {
  margin-bottom: 1.5rem;
}

.xxl-down\:u-ml-24px {
  margin-left: 1.5rem;
}

.xxl-down\:u-mt-vr-6 {
  margin-top: vr(6);
}

.xxl-down\:u-mb-vr-6 {
  margin-bottom: vr(6);
}

.xxl-down\:u-m-28px {
  margin: 1.75rem;
}

.xxl-down\:u-mt-28px {
  margin-top: 1.75rem;
}

.xxl-down\:u-mr-28px {
  margin-right: 1.75rem;
}

.xxl-down\:u-mb-28px {
  margin-bottom: 1.75rem;
}

.xxl-down\:u-ml-28px {
  margin-left: 1.75rem;
}

.xxl-down\:u-mt-vr-7 {
  margin-top: vr(7);
}

.xxl-down\:u-mb-vr-7 {
  margin-bottom: vr(7);
}

.xxl-down\:u-m-32px {
  margin: 2rem;
}

.xxl-down\:u-mt-32px {
  margin-top: 2rem;
}

.xxl-down\:u-mr-32px {
  margin-right: 2rem;
}

.xxl-down\:u-mb-32px {
  margin-bottom: 2rem;
}

.xxl-down\:u-ml-32px {
  margin-left: 2rem;
}

.xxl-down\:u-mt-vr-8 {
  margin-top: vr(8);
}

.xxl-down\:u-mb-vr-8 {
  margin-bottom: vr(8);
}

.xxl-down\:u-m-36px {
  margin: 2.25rem;
}

.xxl-down\:u-mt-36px {
  margin-top: 2.25rem;
}

.xxl-down\:u-mr-36px {
  margin-right: 2.25rem;
}

.xxl-down\:u-mb-36px {
  margin-bottom: 2.25rem;
}

.xxl-down\:u-ml-36px {
  margin-left: 2.25rem;
}

.xxl-down\:u-mt-vr-9 {
  margin-top: vr(9);
}

.xxl-down\:u-mb-vr-9 {
  margin-bottom: vr(9);
}

.xxl-down\:u-m-40px {
  margin: 2.5rem;
}

.xxl-down\:u-mt-40px {
  margin-top: 2.5rem;
}

.xxl-down\:u-mr-40px {
  margin-right: 2.5rem;
}

.xxl-down\:u-mb-40px {
  margin-bottom: 2.5rem;
}

.xxl-down\:u-ml-40px {
  margin-left: 2.5rem;
}

.xxl-down\:u-mt-vr-10 {
  margin-top: vr(10);
}

.xxl-down\:u-mb-vr-10 {
  margin-bottom: vr(10);
}

.xxl-down\:u-m-44px {
  margin: 2.75rem;
}

.xxl-down\:u-mt-44px {
  margin-top: 2.75rem;
}

.xxl-down\:u-mr-44px {
  margin-right: 2.75rem;
}

.xxl-down\:u-mb-44px {
  margin-bottom: 2.75rem;
}

.xxl-down\:u-ml-44px {
  margin-left: 2.75rem;
}

.xxl-down\:u-mt-vr-11 {
  margin-top: vr(11);
}

.xxl-down\:u-mb-vr-11 {
  margin-bottom: vr(11);
}

.xxl-down\:u-m-48px {
  margin: 3rem;
}

.xxl-down\:u-mt-48px {
  margin-top: 3rem;
}

.xxl-down\:u-mr-48px {
  margin-right: 3rem;
}

.xxl-down\:u-mb-48px {
  margin-bottom: 3rem;
}

.xxl-down\:u-ml-48px {
  margin-left: 3rem;
}

.xxl-down\:u-mt-vr-12 {
  margin-top: vr(12);
}

.xxl-down\:u-mb-vr-12 {
  margin-bottom: vr(12);
}

.xxl-down\:u-m-52px {
  margin: 3.25rem;
}

.xxl-down\:u-mt-52px {
  margin-top: 3.25rem;
}

.xxl-down\:u-mr-52px {
  margin-right: 3.25rem;
}

.xxl-down\:u-mb-52px {
  margin-bottom: 3.25rem;
}

.xxl-down\:u-ml-52px {
  margin-left: 3.25rem;
}

.xxl-down\:u-mt-vr-13 {
  margin-top: vr(13);
}

.xxl-down\:u-mb-vr-13 {
  margin-bottom: vr(13);
}

.xxl-down\:u-m-56px {
  margin: 3.5rem;
}

.xxl-down\:u-mt-56px {
  margin-top: 3.5rem;
}

.xxl-down\:u-mr-56px {
  margin-right: 3.5rem;
}

.xxl-down\:u-mb-56px {
  margin-bottom: 3.5rem;
}

.xxl-down\:u-ml-56px {
  margin-left: 3.5rem;
}

.xxl-down\:u-mt-vr-14 {
  margin-top: vr(14);
}

.xxl-down\:u-mb-vr-14 {
  margin-bottom: vr(14);
}

.xxl-down\:u-m-60px {
  margin: 3.75rem;
}

.xxl-down\:u-mt-60px {
  margin-top: 3.75rem;
}

.xxl-down\:u-mr-60px {
  margin-right: 3.75rem;
}

.xxl-down\:u-mb-60px {
  margin-bottom: 3.75rem;
}

.xxl-down\:u-ml-60px {
  margin-left: 3.75rem;
}

.xxl-down\:u-mt-vr-15 {
  margin-top: vr(15);
}

.xxl-down\:u-mb-vr-15 {
  margin-bottom: vr(15);
}

.xxl-down\:u-m-64px {
  margin: 4rem;
}

.xxl-down\:u-mt-64px {
  margin-top: 4rem;
}

.xxl-down\:u-mr-64px {
  margin-right: 4rem;
}

.xxl-down\:u-mb-64px {
  margin-bottom: 4rem;
}

.xxl-down\:u-ml-64px {
  margin-left: 4rem;
}

.xxl-down\:u-mt-vr-16 {
  margin-top: vr(16);
}

.xxl-down\:u-mb-vr-16 {
  margin-bottom: vr(16);
}

.xxl-down\:u-m-68px {
  margin: 4.25rem;
}

.xxl-down\:u-mt-68px {
  margin-top: 4.25rem;
}

.xxl-down\:u-mr-68px {
  margin-right: 4.25rem;
}

.xxl-down\:u-mb-68px {
  margin-bottom: 4.25rem;
}

.xxl-down\:u-ml-68px {
  margin-left: 4.25rem;
}

.xxl-down\:u-mt-vr-17 {
  margin-top: vr(17);
}

.xxl-down\:u-mb-vr-17 {
  margin-bottom: vr(17);
}

.xxl-down\:u-m-72px {
  margin: 4.5rem;
}

.xxl-down\:u-mt-72px {
  margin-top: 4.5rem;
}

.xxl-down\:u-mr-72px {
  margin-right: 4.5rem;
}

.xxl-down\:u-mb-72px {
  margin-bottom: 4.5rem;
}

.xxl-down\:u-ml-72px {
  margin-left: 4.5rem;
}

.xxl-down\:u-mt-vr-18 {
  margin-top: vr(18);
}

.xxl-down\:u-mb-vr-18 {
  margin-bottom: vr(18);
}

.xxl-down\:u-m-76px {
  margin: 4.75rem;
}

.xxl-down\:u-mt-76px {
  margin-top: 4.75rem;
}

.xxl-down\:u-mr-76px {
  margin-right: 4.75rem;
}

.xxl-down\:u-mb-76px {
  margin-bottom: 4.75rem;
}

.xxl-down\:u-ml-76px {
  margin-left: 4.75rem;
}

.xxl-down\:u-mt-vr-19 {
  margin-top: vr(19);
}

.xxl-down\:u-mb-vr-19 {
  margin-bottom: vr(19);
}

.xxl-down\:u-m-80px {
  margin: 5rem;
}

.xxl-down\:u-mt-80px {
  margin-top: 5rem;
}

.xxl-down\:u-mr-80px {
  margin-right: 5rem;
}

.xxl-down\:u-mb-80px {
  margin-bottom: 5rem;
}

.xxl-down\:u-ml-80px {
  margin-left: 5rem;
}

.xxl-down\:u-mt-vr-20 {
  margin-top: vr(20);
}

.xxl-down\:u-mb-vr-20 {
  margin-bottom: vr(20);
}

@media (min-width: 90em) {
  .xxl-up\:u-m-0 {
    margin: 0rem;
  }
  .xxl-up\:u-mt-0 {
    margin-top: 0rem;
  }
  .xxl-up\:u-mr-0 {
    margin-right: 0rem;
  }
  .xxl-up\:u-mb-0 {
    margin-bottom: 0rem;
  }
  .xxl-up\:u-ml-0 {
    margin-left: 0rem;
  }
  .xxl-up\:u-mt-vr-0 {
    margin-top: vr(0);
  }
  .xxl-up\:u-mb-vr-0 {
    margin-bottom: vr(0);
  }
  .xxl-up\:u-m-4px {
    margin: 0.25rem;
  }
  .xxl-up\:u-mt-4px {
    margin-top: 0.25rem;
  }
  .xxl-up\:u-mr-4px {
    margin-right: 0.25rem;
  }
  .xxl-up\:u-mb-4px {
    margin-bottom: 0.25rem;
  }
  .xxl-up\:u-ml-4px {
    margin-left: 0.25rem;
  }
  .xxl-up\:u-mt-vr-1 {
    margin-top: vr(1);
  }
  .xxl-up\:u-mb-vr-1 {
    margin-bottom: vr(1);
  }
  .xxl-up\:u-m-8px {
    margin: 0.5rem;
  }
  .xxl-up\:u-mt-8px {
    margin-top: 0.5rem;
  }
  .xxl-up\:u-mr-8px {
    margin-right: 0.5rem;
  }
  .xxl-up\:u-mb-8px {
    margin-bottom: 0.5rem;
  }
  .xxl-up\:u-ml-8px {
    margin-left: 0.5rem;
  }
  .xxl-up\:u-mt-vr-2 {
    margin-top: vr(2);
  }
  .xxl-up\:u-mb-vr-2 {
    margin-bottom: vr(2);
  }
  .xxl-up\:u-m-12px {
    margin: 0.75rem;
  }
  .xxl-up\:u-mt-12px {
    margin-top: 0.75rem;
  }
  .xxl-up\:u-mr-12px {
    margin-right: 0.75rem;
  }
  .xxl-up\:u-mb-12px {
    margin-bottom: 0.75rem;
  }
  .xxl-up\:u-ml-12px {
    margin-left: 0.75rem;
  }
  .xxl-up\:u-mt-vr-3 {
    margin-top: vr(3);
  }
  .xxl-up\:u-mb-vr-3 {
    margin-bottom: vr(3);
  }
  .xxl-up\:u-m-16px {
    margin: 1rem;
  }
  .xxl-up\:u-mt-16px {
    margin-top: 1rem;
  }
  .xxl-up\:u-mr-16px {
    margin-right: 1rem;
  }
  .xxl-up\:u-mb-16px {
    margin-bottom: 1rem;
  }
  .xxl-up\:u-ml-16px {
    margin-left: 1rem;
  }
  .xxl-up\:u-mt-vr-4 {
    margin-top: vr(4);
  }
  .xxl-up\:u-mb-vr-4 {
    margin-bottom: vr(4);
  }
  .xxl-up\:u-m-20px {
    margin: 1.25rem;
  }
  .xxl-up\:u-mt-20px {
    margin-top: 1.25rem;
  }
  .xxl-up\:u-mr-20px {
    margin-right: 1.25rem;
  }
  .xxl-up\:u-mb-20px {
    margin-bottom: 1.25rem;
  }
  .xxl-up\:u-ml-20px {
    margin-left: 1.25rem;
  }
  .xxl-up\:u-mt-vr-5 {
    margin-top: vr(5);
  }
  .xxl-up\:u-mb-vr-5 {
    margin-bottom: vr(5);
  }
  .xxl-up\:u-m-24px {
    margin: 1.5rem;
  }
  .xxl-up\:u-mt-24px {
    margin-top: 1.5rem;
  }
  .xxl-up\:u-mr-24px {
    margin-right: 1.5rem;
  }
  .xxl-up\:u-mb-24px {
    margin-bottom: 1.5rem;
  }
  .xxl-up\:u-ml-24px {
    margin-left: 1.5rem;
  }
  .xxl-up\:u-mt-vr-6 {
    margin-top: vr(6);
  }
  .xxl-up\:u-mb-vr-6 {
    margin-bottom: vr(6);
  }
  .xxl-up\:u-m-28px {
    margin: 1.75rem;
  }
  .xxl-up\:u-mt-28px {
    margin-top: 1.75rem;
  }
  .xxl-up\:u-mr-28px {
    margin-right: 1.75rem;
  }
  .xxl-up\:u-mb-28px {
    margin-bottom: 1.75rem;
  }
  .xxl-up\:u-ml-28px {
    margin-left: 1.75rem;
  }
  .xxl-up\:u-mt-vr-7 {
    margin-top: vr(7);
  }
  .xxl-up\:u-mb-vr-7 {
    margin-bottom: vr(7);
  }
  .xxl-up\:u-m-32px {
    margin: 2rem;
  }
  .xxl-up\:u-mt-32px {
    margin-top: 2rem;
  }
  .xxl-up\:u-mr-32px {
    margin-right: 2rem;
  }
  .xxl-up\:u-mb-32px {
    margin-bottom: 2rem;
  }
  .xxl-up\:u-ml-32px {
    margin-left: 2rem;
  }
  .xxl-up\:u-mt-vr-8 {
    margin-top: vr(8);
  }
  .xxl-up\:u-mb-vr-8 {
    margin-bottom: vr(8);
  }
  .xxl-up\:u-m-36px {
    margin: 2.25rem;
  }
  .xxl-up\:u-mt-36px {
    margin-top: 2.25rem;
  }
  .xxl-up\:u-mr-36px {
    margin-right: 2.25rem;
  }
  .xxl-up\:u-mb-36px {
    margin-bottom: 2.25rem;
  }
  .xxl-up\:u-ml-36px {
    margin-left: 2.25rem;
  }
  .xxl-up\:u-mt-vr-9 {
    margin-top: vr(9);
  }
  .xxl-up\:u-mb-vr-9 {
    margin-bottom: vr(9);
  }
  .xxl-up\:u-m-40px {
    margin: 2.5rem;
  }
  .xxl-up\:u-mt-40px {
    margin-top: 2.5rem;
  }
  .xxl-up\:u-mr-40px {
    margin-right: 2.5rem;
  }
  .xxl-up\:u-mb-40px {
    margin-bottom: 2.5rem;
  }
  .xxl-up\:u-ml-40px {
    margin-left: 2.5rem;
  }
  .xxl-up\:u-mt-vr-10 {
    margin-top: vr(10);
  }
  .xxl-up\:u-mb-vr-10 {
    margin-bottom: vr(10);
  }
  .xxl-up\:u-m-44px {
    margin: 2.75rem;
  }
  .xxl-up\:u-mt-44px {
    margin-top: 2.75rem;
  }
  .xxl-up\:u-mr-44px {
    margin-right: 2.75rem;
  }
  .xxl-up\:u-mb-44px {
    margin-bottom: 2.75rem;
  }
  .xxl-up\:u-ml-44px {
    margin-left: 2.75rem;
  }
  .xxl-up\:u-mt-vr-11 {
    margin-top: vr(11);
  }
  .xxl-up\:u-mb-vr-11 {
    margin-bottom: vr(11);
  }
  .xxl-up\:u-m-48px {
    margin: 3rem;
  }
  .xxl-up\:u-mt-48px {
    margin-top: 3rem;
  }
  .xxl-up\:u-mr-48px {
    margin-right: 3rem;
  }
  .xxl-up\:u-mb-48px {
    margin-bottom: 3rem;
  }
  .xxl-up\:u-ml-48px {
    margin-left: 3rem;
  }
  .xxl-up\:u-mt-vr-12 {
    margin-top: vr(12);
  }
  .xxl-up\:u-mb-vr-12 {
    margin-bottom: vr(12);
  }
  .xxl-up\:u-m-52px {
    margin: 3.25rem;
  }
  .xxl-up\:u-mt-52px {
    margin-top: 3.25rem;
  }
  .xxl-up\:u-mr-52px {
    margin-right: 3.25rem;
  }
  .xxl-up\:u-mb-52px {
    margin-bottom: 3.25rem;
  }
  .xxl-up\:u-ml-52px {
    margin-left: 3.25rem;
  }
  .xxl-up\:u-mt-vr-13 {
    margin-top: vr(13);
  }
  .xxl-up\:u-mb-vr-13 {
    margin-bottom: vr(13);
  }
  .xxl-up\:u-m-56px {
    margin: 3.5rem;
  }
  .xxl-up\:u-mt-56px {
    margin-top: 3.5rem;
  }
  .xxl-up\:u-mr-56px {
    margin-right: 3.5rem;
  }
  .xxl-up\:u-mb-56px {
    margin-bottom: 3.5rem;
  }
  .xxl-up\:u-ml-56px {
    margin-left: 3.5rem;
  }
  .xxl-up\:u-mt-vr-14 {
    margin-top: vr(14);
  }
  .xxl-up\:u-mb-vr-14 {
    margin-bottom: vr(14);
  }
  .xxl-up\:u-m-60px {
    margin: 3.75rem;
  }
  .xxl-up\:u-mt-60px {
    margin-top: 3.75rem;
  }
  .xxl-up\:u-mr-60px {
    margin-right: 3.75rem;
  }
  .xxl-up\:u-mb-60px {
    margin-bottom: 3.75rem;
  }
  .xxl-up\:u-ml-60px {
    margin-left: 3.75rem;
  }
  .xxl-up\:u-mt-vr-15 {
    margin-top: vr(15);
  }
  .xxl-up\:u-mb-vr-15 {
    margin-bottom: vr(15);
  }
  .xxl-up\:u-m-64px {
    margin: 4rem;
  }
  .xxl-up\:u-mt-64px {
    margin-top: 4rem;
  }
  .xxl-up\:u-mr-64px {
    margin-right: 4rem;
  }
  .xxl-up\:u-mb-64px {
    margin-bottom: 4rem;
  }
  .xxl-up\:u-ml-64px {
    margin-left: 4rem;
  }
  .xxl-up\:u-mt-vr-16 {
    margin-top: vr(16);
  }
  .xxl-up\:u-mb-vr-16 {
    margin-bottom: vr(16);
  }
  .xxl-up\:u-m-68px {
    margin: 4.25rem;
  }
  .xxl-up\:u-mt-68px {
    margin-top: 4.25rem;
  }
  .xxl-up\:u-mr-68px {
    margin-right: 4.25rem;
  }
  .xxl-up\:u-mb-68px {
    margin-bottom: 4.25rem;
  }
  .xxl-up\:u-ml-68px {
    margin-left: 4.25rem;
  }
  .xxl-up\:u-mt-vr-17 {
    margin-top: vr(17);
  }
  .xxl-up\:u-mb-vr-17 {
    margin-bottom: vr(17);
  }
  .xxl-up\:u-m-72px {
    margin: 4.5rem;
  }
  .xxl-up\:u-mt-72px {
    margin-top: 4.5rem;
  }
  .xxl-up\:u-mr-72px {
    margin-right: 4.5rem;
  }
  .xxl-up\:u-mb-72px {
    margin-bottom: 4.5rem;
  }
  .xxl-up\:u-ml-72px {
    margin-left: 4.5rem;
  }
  .xxl-up\:u-mt-vr-18 {
    margin-top: vr(18);
  }
  .xxl-up\:u-mb-vr-18 {
    margin-bottom: vr(18);
  }
  .xxl-up\:u-m-76px {
    margin: 4.75rem;
  }
  .xxl-up\:u-mt-76px {
    margin-top: 4.75rem;
  }
  .xxl-up\:u-mr-76px {
    margin-right: 4.75rem;
  }
  .xxl-up\:u-mb-76px {
    margin-bottom: 4.75rem;
  }
  .xxl-up\:u-ml-76px {
    margin-left: 4.75rem;
  }
  .xxl-up\:u-mt-vr-19 {
    margin-top: vr(19);
  }
  .xxl-up\:u-mb-vr-19 {
    margin-bottom: vr(19);
  }
  .xxl-up\:u-m-80px {
    margin: 5rem;
  }
  .xxl-up\:u-mt-80px {
    margin-top: 5rem;
  }
  .xxl-up\:u-mr-80px {
    margin-right: 5rem;
  }
  .xxl-up\:u-mb-80px {
    margin-bottom: 5rem;
  }
  .xxl-up\:u-ml-80px {
    margin-left: 5rem;
  }
  .xxl-up\:u-mt-vr-20 {
    margin-top: vr(20);
  }
  .xxl-up\:u-mb-vr-20 {
    margin-bottom: vr(20);
  }
}
.u-mt-n1px {
  margin-top: -1px;
}

body .u-p-0 {
  padding: 0rem;
}
body .u-pt-0 {
  padding-top: 0rem;
}
body .u-pr-0 {
  padding-right: 0rem;
}
body .u-pb-0 {
  padding-bottom: 0rem;
}
body .u-pl-0 {
  padding-left: 0rem;
}
body .u-pt-vr-0 {
  padding-top: vr(0);
}
body .u-pb-vr-0 {
  padding-bottom: vr(0);
}
body .u-p-4px {
  padding: 0.25rem;
}
body .u-pt-4px {
  padding-top: 0.25rem;
}
body .u-pr-4px {
  padding-right: 0.25rem;
}
body .u-pb-4px {
  padding-bottom: 0.25rem;
}
body .u-pl-4px {
  padding-left: 0.25rem;
}
body .u-pt-vr-1 {
  padding-top: vr(1);
}
body .u-pb-vr-1 {
  padding-bottom: vr(1);
}
body .u-p-8px {
  padding: 0.5rem;
}
body .u-pt-8px {
  padding-top: 0.5rem;
}
body .u-pr-8px {
  padding-right: 0.5rem;
}
body .u-pb-8px {
  padding-bottom: 0.5rem;
}
body .u-pl-8px {
  padding-left: 0.5rem;
}
body .u-pt-vr-2 {
  padding-top: vr(2);
}
body .u-pb-vr-2 {
  padding-bottom: vr(2);
}
body .u-p-12px {
  padding: 0.75rem;
}
body .u-pt-12px {
  padding-top: 0.75rem;
}
body .u-pr-12px {
  padding-right: 0.75rem;
}
body .u-pb-12px {
  padding-bottom: 0.75rem;
}
body .u-pl-12px {
  padding-left: 0.75rem;
}
body .u-pt-vr-3 {
  padding-top: vr(3);
}
body .u-pb-vr-3 {
  padding-bottom: vr(3);
}
body .u-p-16px {
  padding: 1rem;
}
body .u-pt-16px {
  padding-top: 1rem;
}
body .u-pr-16px {
  padding-right: 1rem;
}
body .u-pb-16px {
  padding-bottom: 1rem;
}
body .u-pl-16px {
  padding-left: 1rem;
}
body .u-pt-vr-4 {
  padding-top: vr(4);
}
body .u-pb-vr-4 {
  padding-bottom: vr(4);
}
body .u-p-20px {
  padding: 1.25rem;
}
body .u-pt-20px {
  padding-top: 1.25rem;
}
body .u-pr-20px {
  padding-right: 1.25rem;
}
body .u-pb-20px {
  padding-bottom: 1.25rem;
}
body .u-pl-20px {
  padding-left: 1.25rem;
}
body .u-pt-vr-5 {
  padding-top: vr(5);
}
body .u-pb-vr-5 {
  padding-bottom: vr(5);
}
body .u-p-24px {
  padding: 1.5rem;
}
body .u-pt-24px {
  padding-top: 1.5rem;
}
body .u-pr-24px {
  padding-right: 1.5rem;
}
body .u-pb-24px {
  padding-bottom: 1.5rem;
}
body .u-pl-24px {
  padding-left: 1.5rem;
}
body .u-pt-vr-6 {
  padding-top: vr(6);
}
body .u-pb-vr-6 {
  padding-bottom: vr(6);
}
body .u-p-28px {
  padding: 1.75rem;
}
body .u-pt-28px {
  padding-top: 1.75rem;
}
body .u-pr-28px {
  padding-right: 1.75rem;
}
body .u-pb-28px {
  padding-bottom: 1.75rem;
}
body .u-pl-28px {
  padding-left: 1.75rem;
}
body .u-pt-vr-7 {
  padding-top: vr(7);
}
body .u-pb-vr-7 {
  padding-bottom: vr(7);
}
body .u-p-32px {
  padding: 2rem;
}
body .u-pt-32px {
  padding-top: 2rem;
}
body .u-pr-32px {
  padding-right: 2rem;
}
body .u-pb-32px {
  padding-bottom: 2rem;
}
body .u-pl-32px {
  padding-left: 2rem;
}
body .u-pt-vr-8 {
  padding-top: vr(8);
}
body .u-pb-vr-8 {
  padding-bottom: vr(8);
}
body .u-p-36px {
  padding: 2.25rem;
}
body .u-pt-36px {
  padding-top: 2.25rem;
}
body .u-pr-36px {
  padding-right: 2.25rem;
}
body .u-pb-36px {
  padding-bottom: 2.25rem;
}
body .u-pl-36px {
  padding-left: 2.25rem;
}
body .u-pt-vr-9 {
  padding-top: vr(9);
}
body .u-pb-vr-9 {
  padding-bottom: vr(9);
}
body .u-p-40px {
  padding: 2.5rem;
}
body .u-pt-40px {
  padding-top: 2.5rem;
}
body .u-pr-40px {
  padding-right: 2.5rem;
}
body .u-pb-40px {
  padding-bottom: 2.5rem;
}
body .u-pl-40px {
  padding-left: 2.5rem;
}
body .u-pt-vr-10 {
  padding-top: vr(10);
}
body .u-pb-vr-10 {
  padding-bottom: vr(10);
}
body .u-p-44px {
  padding: 2.75rem;
}
body .u-pt-44px {
  padding-top: 2.75rem;
}
body .u-pr-44px {
  padding-right: 2.75rem;
}
body .u-pb-44px {
  padding-bottom: 2.75rem;
}
body .u-pl-44px {
  padding-left: 2.75rem;
}
body .u-pt-vr-11 {
  padding-top: vr(11);
}
body .u-pb-vr-11 {
  padding-bottom: vr(11);
}
body .u-p-48px {
  padding: 3rem;
}
body .u-pt-48px {
  padding-top: 3rem;
}
body .u-pr-48px {
  padding-right: 3rem;
}
body .u-pb-48px {
  padding-bottom: 3rem;
}
body .u-pl-48px {
  padding-left: 3rem;
}
body .u-pt-vr-12 {
  padding-top: vr(12);
}
body .u-pb-vr-12 {
  padding-bottom: vr(12);
}
body .u-p-52px {
  padding: 3.25rem;
}
body .u-pt-52px {
  padding-top: 3.25rem;
}
body .u-pr-52px {
  padding-right: 3.25rem;
}
body .u-pb-52px {
  padding-bottom: 3.25rem;
}
body .u-pl-52px {
  padding-left: 3.25rem;
}
body .u-pt-vr-13 {
  padding-top: vr(13);
}
body .u-pb-vr-13 {
  padding-bottom: vr(13);
}
body .u-p-56px {
  padding: 3.5rem;
}
body .u-pt-56px {
  padding-top: 3.5rem;
}
body .u-pr-56px {
  padding-right: 3.5rem;
}
body .u-pb-56px {
  padding-bottom: 3.5rem;
}
body .u-pl-56px {
  padding-left: 3.5rem;
}
body .u-pt-vr-14 {
  padding-top: vr(14);
}
body .u-pb-vr-14 {
  padding-bottom: vr(14);
}
body .u-p-60px {
  padding: 3.75rem;
}
body .u-pt-60px {
  padding-top: 3.75rem;
}
body .u-pr-60px {
  padding-right: 3.75rem;
}
body .u-pb-60px {
  padding-bottom: 3.75rem;
}
body .u-pl-60px {
  padding-left: 3.75rem;
}
body .u-pt-vr-15 {
  padding-top: vr(15);
}
body .u-pb-vr-15 {
  padding-bottom: vr(15);
}
body .u-p-64px {
  padding: 4rem;
}
body .u-pt-64px {
  padding-top: 4rem;
}
body .u-pr-64px {
  padding-right: 4rem;
}
body .u-pb-64px {
  padding-bottom: 4rem;
}
body .u-pl-64px {
  padding-left: 4rem;
}
body .u-pt-vr-16 {
  padding-top: vr(16);
}
body .u-pb-vr-16 {
  padding-bottom: vr(16);
}
body .u-p-68px {
  padding: 4.25rem;
}
body .u-pt-68px {
  padding-top: 4.25rem;
}
body .u-pr-68px {
  padding-right: 4.25rem;
}
body .u-pb-68px {
  padding-bottom: 4.25rem;
}
body .u-pl-68px {
  padding-left: 4.25rem;
}
body .u-pt-vr-17 {
  padding-top: vr(17);
}
body .u-pb-vr-17 {
  padding-bottom: vr(17);
}
body .u-p-72px {
  padding: 4.5rem;
}
body .u-pt-72px {
  padding-top: 4.5rem;
}
body .u-pr-72px {
  padding-right: 4.5rem;
}
body .u-pb-72px {
  padding-bottom: 4.5rem;
}
body .u-pl-72px {
  padding-left: 4.5rem;
}
body .u-pt-vr-18 {
  padding-top: vr(18);
}
body .u-pb-vr-18 {
  padding-bottom: vr(18);
}
body .u-p-76px {
  padding: 4.75rem;
}
body .u-pt-76px {
  padding-top: 4.75rem;
}
body .u-pr-76px {
  padding-right: 4.75rem;
}
body .u-pb-76px {
  padding-bottom: 4.75rem;
}
body .u-pl-76px {
  padding-left: 4.75rem;
}
body .u-pt-vr-19 {
  padding-top: vr(19);
}
body .u-pb-vr-19 {
  padding-bottom: vr(19);
}
body .u-p-80px {
  padding: 5rem;
}
body .u-pt-80px {
  padding-top: 5rem;
}
body .u-pr-80px {
  padding-right: 5rem;
}
body .u-pb-80px {
  padding-bottom: 5rem;
}
body .u-pl-80px {
  padding-left: 5rem;
}
body .u-pt-vr-20 {
  padding-top: vr(20);
}
body .u-pb-vr-20 {
  padding-bottom: vr(20);
}
@media (max-width: 33.9375em) {
  body .xs\:u-p-0 {
    padding: 0rem;
  }
  body .xs\:u-pt-0 {
    padding-top: 0rem;
  }
  body .xs\:u-pr-0 {
    padding-right: 0rem;
  }
  body .xs\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .xs\:u-pl0 {
    padding-left: 0rem;
  }
  body .xs\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .xs\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .xs\:u-p-4px {
    padding: 0.25rem;
  }
  body .xs\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .xs\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .xs\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .xs\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .xs\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .xs\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .xs\:u-p-8px {
    padding: 0.5rem;
  }
  body .xs\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .xs\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .xs\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .xs\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .xs\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .xs\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .xs\:u-p-12px {
    padding: 0.75rem;
  }
  body .xs\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .xs\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .xs\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .xs\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .xs\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .xs\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .xs\:u-p-16px {
    padding: 1rem;
  }
  body .xs\:u-pt-16px {
    padding-top: 1rem;
  }
  body .xs\:u-pr-16px {
    padding-right: 1rem;
  }
  body .xs\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .xs\:u-pl16px {
    padding-left: 1rem;
  }
  body .xs\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .xs\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .xs\:u-p-20px {
    padding: 1.25rem;
  }
  body .xs\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .xs\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .xs\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .xs\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .xs\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .xs\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .xs\:u-p-24px {
    padding: 1.5rem;
  }
  body .xs\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .xs\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .xs\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .xs\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .xs\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .xs\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .xs\:u-p-28px {
    padding: 1.75rem;
  }
  body .xs\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .xs\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .xs\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .xs\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .xs\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .xs\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .xs\:u-p-32px {
    padding: 2rem;
  }
  body .xs\:u-pt-32px {
    padding-top: 2rem;
  }
  body .xs\:u-pr-32px {
    padding-right: 2rem;
  }
  body .xs\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .xs\:u-pl32px {
    padding-left: 2rem;
  }
  body .xs\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .xs\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .xs\:u-p-36px {
    padding: 2.25rem;
  }
  body .xs\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .xs\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .xs\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .xs\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .xs\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .xs\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .xs\:u-p-40px {
    padding: 2.5rem;
  }
  body .xs\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .xs\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .xs\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .xs\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .xs\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .xs\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .xs\:u-p-44px {
    padding: 2.75rem;
  }
  body .xs\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .xs\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .xs\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .xs\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .xs\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .xs\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .xs\:u-p-48px {
    padding: 3rem;
  }
  body .xs\:u-pt-48px {
    padding-top: 3rem;
  }
  body .xs\:u-pr-48px {
    padding-right: 3rem;
  }
  body .xs\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .xs\:u-pl48px {
    padding-left: 3rem;
  }
  body .xs\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .xs\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .xs\:u-p-52px {
    padding: 3.25rem;
  }
  body .xs\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .xs\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .xs\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .xs\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .xs\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .xs\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .xs\:u-p-56px {
    padding: 3.5rem;
  }
  body .xs\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .xs\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .xs\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .xs\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .xs\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .xs\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .xs\:u-p-60px {
    padding: 3.75rem;
  }
  body .xs\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .xs\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .xs\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .xs\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .xs\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .xs\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .xs\:u-p-64px {
    padding: 4rem;
  }
  body .xs\:u-pt-64px {
    padding-top: 4rem;
  }
  body .xs\:u-pr-64px {
    padding-right: 4rem;
  }
  body .xs\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .xs\:u-pl64px {
    padding-left: 4rem;
  }
  body .xs\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .xs\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .xs\:u-p-68px {
    padding: 4.25rem;
  }
  body .xs\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .xs\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .xs\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .xs\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .xs\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .xs\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .xs\:u-p-72px {
    padding: 4.5rem;
  }
  body .xs\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .xs\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .xs\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .xs\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .xs\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .xs\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .xs\:u-p-76px {
    padding: 4.75rem;
  }
  body .xs\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .xs\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .xs\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .xs\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .xs\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .xs\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .xs\:u-p-80px {
    padding: 5rem;
  }
  body .xs\:u-pt-80px {
    padding-top: 5rem;
  }
  body .xs\:u-pr-80px {
    padding-right: 5rem;
  }
  body .xs\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .xs\:u-pl80px {
    padding-left: 5rem;
  }
  body .xs\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .xs\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (max-width: 33.9375em) {
  body .xs-down\:u-p-0 {
    padding: 0rem;
  }
  body .xs-down\:u-pt-0 {
    padding-top: 0rem;
  }
  body .xs-down\:u-pr-0 {
    padding-right: 0rem;
  }
  body .xs-down\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .xs-down\:u-pl0 {
    padding-left: 0rem;
  }
  body .xs-down\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .xs-down\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .xs-down\:u-p-4px {
    padding: 0.25rem;
  }
  body .xs-down\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .xs-down\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .xs-down\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .xs-down\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .xs-down\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .xs-down\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .xs-down\:u-p-8px {
    padding: 0.5rem;
  }
  body .xs-down\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .xs-down\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .xs-down\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .xs-down\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .xs-down\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .xs-down\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .xs-down\:u-p-12px {
    padding: 0.75rem;
  }
  body .xs-down\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .xs-down\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .xs-down\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .xs-down\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .xs-down\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .xs-down\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .xs-down\:u-p-16px {
    padding: 1rem;
  }
  body .xs-down\:u-pt-16px {
    padding-top: 1rem;
  }
  body .xs-down\:u-pr-16px {
    padding-right: 1rem;
  }
  body .xs-down\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .xs-down\:u-pl16px {
    padding-left: 1rem;
  }
  body .xs-down\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .xs-down\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .xs-down\:u-p-20px {
    padding: 1.25rem;
  }
  body .xs-down\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .xs-down\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .xs-down\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .xs-down\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .xs-down\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .xs-down\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .xs-down\:u-p-24px {
    padding: 1.5rem;
  }
  body .xs-down\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .xs-down\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .xs-down\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .xs-down\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .xs-down\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .xs-down\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .xs-down\:u-p-28px {
    padding: 1.75rem;
  }
  body .xs-down\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .xs-down\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .xs-down\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .xs-down\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .xs-down\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .xs-down\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .xs-down\:u-p-32px {
    padding: 2rem;
  }
  body .xs-down\:u-pt-32px {
    padding-top: 2rem;
  }
  body .xs-down\:u-pr-32px {
    padding-right: 2rem;
  }
  body .xs-down\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .xs-down\:u-pl32px {
    padding-left: 2rem;
  }
  body .xs-down\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .xs-down\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .xs-down\:u-p-36px {
    padding: 2.25rem;
  }
  body .xs-down\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .xs-down\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .xs-down\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .xs-down\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .xs-down\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .xs-down\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .xs-down\:u-p-40px {
    padding: 2.5rem;
  }
  body .xs-down\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .xs-down\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .xs-down\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .xs-down\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .xs-down\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .xs-down\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .xs-down\:u-p-44px {
    padding: 2.75rem;
  }
  body .xs-down\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .xs-down\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .xs-down\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .xs-down\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .xs-down\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .xs-down\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .xs-down\:u-p-48px {
    padding: 3rem;
  }
  body .xs-down\:u-pt-48px {
    padding-top: 3rem;
  }
  body .xs-down\:u-pr-48px {
    padding-right: 3rem;
  }
  body .xs-down\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .xs-down\:u-pl48px {
    padding-left: 3rem;
  }
  body .xs-down\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .xs-down\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .xs-down\:u-p-52px {
    padding: 3.25rem;
  }
  body .xs-down\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .xs-down\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .xs-down\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .xs-down\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .xs-down\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .xs-down\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .xs-down\:u-p-56px {
    padding: 3.5rem;
  }
  body .xs-down\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .xs-down\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .xs-down\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .xs-down\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .xs-down\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .xs-down\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .xs-down\:u-p-60px {
    padding: 3.75rem;
  }
  body .xs-down\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .xs-down\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .xs-down\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .xs-down\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .xs-down\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .xs-down\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .xs-down\:u-p-64px {
    padding: 4rem;
  }
  body .xs-down\:u-pt-64px {
    padding-top: 4rem;
  }
  body .xs-down\:u-pr-64px {
    padding-right: 4rem;
  }
  body .xs-down\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .xs-down\:u-pl64px {
    padding-left: 4rem;
  }
  body .xs-down\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .xs-down\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .xs-down\:u-p-68px {
    padding: 4.25rem;
  }
  body .xs-down\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .xs-down\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .xs-down\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .xs-down\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .xs-down\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .xs-down\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .xs-down\:u-p-72px {
    padding: 4.5rem;
  }
  body .xs-down\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .xs-down\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .xs-down\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .xs-down\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .xs-down\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .xs-down\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .xs-down\:u-p-76px {
    padding: 4.75rem;
  }
  body .xs-down\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .xs-down\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .xs-down\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .xs-down\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .xs-down\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .xs-down\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .xs-down\:u-p-80px {
    padding: 5rem;
  }
  body .xs-down\:u-pt-80px {
    padding-top: 5rem;
  }
  body .xs-down\:u-pr-80px {
    padding-right: 5rem;
  }
  body .xs-down\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .xs-down\:u-pl80px {
    padding-left: 5rem;
  }
  body .xs-down\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .xs-down\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
body .xs-up\:u-p-0 {
  padding: 0rem;
}
body .xs-up\:u-pt-0 {
  padding-top: 0rem;
}
body .xs-up\:u-pr-0 {
  padding-right: 0rem;
}
body .xs-up\:u-pb0 {
  padding-bottom: 0rem;
}
body .xs-up\:u-pl0 {
  padding-left: 0rem;
}
body .xs-up\:u-pt-vr-0 {
  padding-top: vr(0);
}
body .xs-up\:u-pb-vr-0 {
  padding-bottom: vr(0);
}
body .xs-up\:u-p-4px {
  padding: 0.25rem;
}
body .xs-up\:u-pt-4px {
  padding-top: 0.25rem;
}
body .xs-up\:u-pr-4px {
  padding-right: 0.25rem;
}
body .xs-up\:u-pb4px {
  padding-bottom: 0.25rem;
}
body .xs-up\:u-pl4px {
  padding-left: 0.25rem;
}
body .xs-up\:u-pt-vr-1 {
  padding-top: vr(1);
}
body .xs-up\:u-pb-vr-1 {
  padding-bottom: vr(1);
}
body .xs-up\:u-p-8px {
  padding: 0.5rem;
}
body .xs-up\:u-pt-8px {
  padding-top: 0.5rem;
}
body .xs-up\:u-pr-8px {
  padding-right: 0.5rem;
}
body .xs-up\:u-pb8px {
  padding-bottom: 0.5rem;
}
body .xs-up\:u-pl8px {
  padding-left: 0.5rem;
}
body .xs-up\:u-pt-vr-2 {
  padding-top: vr(2);
}
body .xs-up\:u-pb-vr-2 {
  padding-bottom: vr(2);
}
body .xs-up\:u-p-12px {
  padding: 0.75rem;
}
body .xs-up\:u-pt-12px {
  padding-top: 0.75rem;
}
body .xs-up\:u-pr-12px {
  padding-right: 0.75rem;
}
body .xs-up\:u-pb12px {
  padding-bottom: 0.75rem;
}
body .xs-up\:u-pl12px {
  padding-left: 0.75rem;
}
body .xs-up\:u-pt-vr-3 {
  padding-top: vr(3);
}
body .xs-up\:u-pb-vr-3 {
  padding-bottom: vr(3);
}
body .xs-up\:u-p-16px {
  padding: 1rem;
}
body .xs-up\:u-pt-16px {
  padding-top: 1rem;
}
body .xs-up\:u-pr-16px {
  padding-right: 1rem;
}
body .xs-up\:u-pb16px {
  padding-bottom: 1rem;
}
body .xs-up\:u-pl16px {
  padding-left: 1rem;
}
body .xs-up\:u-pt-vr-4 {
  padding-top: vr(4);
}
body .xs-up\:u-pb-vr-4 {
  padding-bottom: vr(4);
}
body .xs-up\:u-p-20px {
  padding: 1.25rem;
}
body .xs-up\:u-pt-20px {
  padding-top: 1.25rem;
}
body .xs-up\:u-pr-20px {
  padding-right: 1.25rem;
}
body .xs-up\:u-pb20px {
  padding-bottom: 1.25rem;
}
body .xs-up\:u-pl20px {
  padding-left: 1.25rem;
}
body .xs-up\:u-pt-vr-5 {
  padding-top: vr(5);
}
body .xs-up\:u-pb-vr-5 {
  padding-bottom: vr(5);
}
body .xs-up\:u-p-24px {
  padding: 1.5rem;
}
body .xs-up\:u-pt-24px {
  padding-top: 1.5rem;
}
body .xs-up\:u-pr-24px {
  padding-right: 1.5rem;
}
body .xs-up\:u-pb24px {
  padding-bottom: 1.5rem;
}
body .xs-up\:u-pl24px {
  padding-left: 1.5rem;
}
body .xs-up\:u-pt-vr-6 {
  padding-top: vr(6);
}
body .xs-up\:u-pb-vr-6 {
  padding-bottom: vr(6);
}
body .xs-up\:u-p-28px {
  padding: 1.75rem;
}
body .xs-up\:u-pt-28px {
  padding-top: 1.75rem;
}
body .xs-up\:u-pr-28px {
  padding-right: 1.75rem;
}
body .xs-up\:u-pb28px {
  padding-bottom: 1.75rem;
}
body .xs-up\:u-pl28px {
  padding-left: 1.75rem;
}
body .xs-up\:u-pt-vr-7 {
  padding-top: vr(7);
}
body .xs-up\:u-pb-vr-7 {
  padding-bottom: vr(7);
}
body .xs-up\:u-p-32px {
  padding: 2rem;
}
body .xs-up\:u-pt-32px {
  padding-top: 2rem;
}
body .xs-up\:u-pr-32px {
  padding-right: 2rem;
}
body .xs-up\:u-pb32px {
  padding-bottom: 2rem;
}
body .xs-up\:u-pl32px {
  padding-left: 2rem;
}
body .xs-up\:u-pt-vr-8 {
  padding-top: vr(8);
}
body .xs-up\:u-pb-vr-8 {
  padding-bottom: vr(8);
}
body .xs-up\:u-p-36px {
  padding: 2.25rem;
}
body .xs-up\:u-pt-36px {
  padding-top: 2.25rem;
}
body .xs-up\:u-pr-36px {
  padding-right: 2.25rem;
}
body .xs-up\:u-pb36px {
  padding-bottom: 2.25rem;
}
body .xs-up\:u-pl36px {
  padding-left: 2.25rem;
}
body .xs-up\:u-pt-vr-9 {
  padding-top: vr(9);
}
body .xs-up\:u-pb-vr-9 {
  padding-bottom: vr(9);
}
body .xs-up\:u-p-40px {
  padding: 2.5rem;
}
body .xs-up\:u-pt-40px {
  padding-top: 2.5rem;
}
body .xs-up\:u-pr-40px {
  padding-right: 2.5rem;
}
body .xs-up\:u-pb40px {
  padding-bottom: 2.5rem;
}
body .xs-up\:u-pl40px {
  padding-left: 2.5rem;
}
body .xs-up\:u-pt-vr-10 {
  padding-top: vr(10);
}
body .xs-up\:u-pb-vr-10 {
  padding-bottom: vr(10);
}
body .xs-up\:u-p-44px {
  padding: 2.75rem;
}
body .xs-up\:u-pt-44px {
  padding-top: 2.75rem;
}
body .xs-up\:u-pr-44px {
  padding-right: 2.75rem;
}
body .xs-up\:u-pb44px {
  padding-bottom: 2.75rem;
}
body .xs-up\:u-pl44px {
  padding-left: 2.75rem;
}
body .xs-up\:u-pt-vr-11 {
  padding-top: vr(11);
}
body .xs-up\:u-pb-vr-11 {
  padding-bottom: vr(11);
}
body .xs-up\:u-p-48px {
  padding: 3rem;
}
body .xs-up\:u-pt-48px {
  padding-top: 3rem;
}
body .xs-up\:u-pr-48px {
  padding-right: 3rem;
}
body .xs-up\:u-pb48px {
  padding-bottom: 3rem;
}
body .xs-up\:u-pl48px {
  padding-left: 3rem;
}
body .xs-up\:u-pt-vr-12 {
  padding-top: vr(12);
}
body .xs-up\:u-pb-vr-12 {
  padding-bottom: vr(12);
}
body .xs-up\:u-p-52px {
  padding: 3.25rem;
}
body .xs-up\:u-pt-52px {
  padding-top: 3.25rem;
}
body .xs-up\:u-pr-52px {
  padding-right: 3.25rem;
}
body .xs-up\:u-pb52px {
  padding-bottom: 3.25rem;
}
body .xs-up\:u-pl52px {
  padding-left: 3.25rem;
}
body .xs-up\:u-pt-vr-13 {
  padding-top: vr(13);
}
body .xs-up\:u-pb-vr-13 {
  padding-bottom: vr(13);
}
body .xs-up\:u-p-56px {
  padding: 3.5rem;
}
body .xs-up\:u-pt-56px {
  padding-top: 3.5rem;
}
body .xs-up\:u-pr-56px {
  padding-right: 3.5rem;
}
body .xs-up\:u-pb56px {
  padding-bottom: 3.5rem;
}
body .xs-up\:u-pl56px {
  padding-left: 3.5rem;
}
body .xs-up\:u-pt-vr-14 {
  padding-top: vr(14);
}
body .xs-up\:u-pb-vr-14 {
  padding-bottom: vr(14);
}
body .xs-up\:u-p-60px {
  padding: 3.75rem;
}
body .xs-up\:u-pt-60px {
  padding-top: 3.75rem;
}
body .xs-up\:u-pr-60px {
  padding-right: 3.75rem;
}
body .xs-up\:u-pb60px {
  padding-bottom: 3.75rem;
}
body .xs-up\:u-pl60px {
  padding-left: 3.75rem;
}
body .xs-up\:u-pt-vr-15 {
  padding-top: vr(15);
}
body .xs-up\:u-pb-vr-15 {
  padding-bottom: vr(15);
}
body .xs-up\:u-p-64px {
  padding: 4rem;
}
body .xs-up\:u-pt-64px {
  padding-top: 4rem;
}
body .xs-up\:u-pr-64px {
  padding-right: 4rem;
}
body .xs-up\:u-pb64px {
  padding-bottom: 4rem;
}
body .xs-up\:u-pl64px {
  padding-left: 4rem;
}
body .xs-up\:u-pt-vr-16 {
  padding-top: vr(16);
}
body .xs-up\:u-pb-vr-16 {
  padding-bottom: vr(16);
}
body .xs-up\:u-p-68px {
  padding: 4.25rem;
}
body .xs-up\:u-pt-68px {
  padding-top: 4.25rem;
}
body .xs-up\:u-pr-68px {
  padding-right: 4.25rem;
}
body .xs-up\:u-pb68px {
  padding-bottom: 4.25rem;
}
body .xs-up\:u-pl68px {
  padding-left: 4.25rem;
}
body .xs-up\:u-pt-vr-17 {
  padding-top: vr(17);
}
body .xs-up\:u-pb-vr-17 {
  padding-bottom: vr(17);
}
body .xs-up\:u-p-72px {
  padding: 4.5rem;
}
body .xs-up\:u-pt-72px {
  padding-top: 4.5rem;
}
body .xs-up\:u-pr-72px {
  padding-right: 4.5rem;
}
body .xs-up\:u-pb72px {
  padding-bottom: 4.5rem;
}
body .xs-up\:u-pl72px {
  padding-left: 4.5rem;
}
body .xs-up\:u-pt-vr-18 {
  padding-top: vr(18);
}
body .xs-up\:u-pb-vr-18 {
  padding-bottom: vr(18);
}
body .xs-up\:u-p-76px {
  padding: 4.75rem;
}
body .xs-up\:u-pt-76px {
  padding-top: 4.75rem;
}
body .xs-up\:u-pr-76px {
  padding-right: 4.75rem;
}
body .xs-up\:u-pb76px {
  padding-bottom: 4.75rem;
}
body .xs-up\:u-pl76px {
  padding-left: 4.75rem;
}
body .xs-up\:u-pt-vr-19 {
  padding-top: vr(19);
}
body .xs-up\:u-pb-vr-19 {
  padding-bottom: vr(19);
}
body .xs-up\:u-p-80px {
  padding: 5rem;
}
body .xs-up\:u-pt-80px {
  padding-top: 5rem;
}
body .xs-up\:u-pr-80px {
  padding-right: 5rem;
}
body .xs-up\:u-pb80px {
  padding-bottom: 5rem;
}
body .xs-up\:u-pl80px {
  padding-left: 5rem;
}
body .xs-up\:u-pt-vr-20 {
  padding-top: vr(20);
}
body .xs-up\:u-pb-vr-20 {
  padding-bottom: vr(20);
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  body .sm\:u-p-0 {
    padding: 0rem;
  }
  body .sm\:u-pt-0 {
    padding-top: 0rem;
  }
  body .sm\:u-pr-0 {
    padding-right: 0rem;
  }
  body .sm\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .sm\:u-pl0 {
    padding-left: 0rem;
  }
  body .sm\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .sm\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .sm\:u-p-4px {
    padding: 0.25rem;
  }
  body .sm\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .sm\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .sm\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .sm\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .sm\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .sm\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .sm\:u-p-8px {
    padding: 0.5rem;
  }
  body .sm\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .sm\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .sm\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .sm\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .sm\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .sm\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .sm\:u-p-12px {
    padding: 0.75rem;
  }
  body .sm\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .sm\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .sm\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .sm\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .sm\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .sm\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .sm\:u-p-16px {
    padding: 1rem;
  }
  body .sm\:u-pt-16px {
    padding-top: 1rem;
  }
  body .sm\:u-pr-16px {
    padding-right: 1rem;
  }
  body .sm\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .sm\:u-pl16px {
    padding-left: 1rem;
  }
  body .sm\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .sm\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .sm\:u-p-20px {
    padding: 1.25rem;
  }
  body .sm\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .sm\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .sm\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .sm\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .sm\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .sm\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .sm\:u-p-24px {
    padding: 1.5rem;
  }
  body .sm\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .sm\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .sm\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .sm\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .sm\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .sm\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .sm\:u-p-28px {
    padding: 1.75rem;
  }
  body .sm\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .sm\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .sm\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .sm\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .sm\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .sm\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .sm\:u-p-32px {
    padding: 2rem;
  }
  body .sm\:u-pt-32px {
    padding-top: 2rem;
  }
  body .sm\:u-pr-32px {
    padding-right: 2rem;
  }
  body .sm\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .sm\:u-pl32px {
    padding-left: 2rem;
  }
  body .sm\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .sm\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .sm\:u-p-36px {
    padding: 2.25rem;
  }
  body .sm\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .sm\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .sm\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .sm\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .sm\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .sm\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .sm\:u-p-40px {
    padding: 2.5rem;
  }
  body .sm\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .sm\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .sm\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .sm\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .sm\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .sm\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .sm\:u-p-44px {
    padding: 2.75rem;
  }
  body .sm\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .sm\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .sm\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .sm\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .sm\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .sm\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .sm\:u-p-48px {
    padding: 3rem;
  }
  body .sm\:u-pt-48px {
    padding-top: 3rem;
  }
  body .sm\:u-pr-48px {
    padding-right: 3rem;
  }
  body .sm\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .sm\:u-pl48px {
    padding-left: 3rem;
  }
  body .sm\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .sm\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .sm\:u-p-52px {
    padding: 3.25rem;
  }
  body .sm\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .sm\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .sm\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .sm\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .sm\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .sm\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .sm\:u-p-56px {
    padding: 3.5rem;
  }
  body .sm\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .sm\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .sm\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .sm\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .sm\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .sm\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .sm\:u-p-60px {
    padding: 3.75rem;
  }
  body .sm\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .sm\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .sm\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .sm\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .sm\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .sm\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .sm\:u-p-64px {
    padding: 4rem;
  }
  body .sm\:u-pt-64px {
    padding-top: 4rem;
  }
  body .sm\:u-pr-64px {
    padding-right: 4rem;
  }
  body .sm\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .sm\:u-pl64px {
    padding-left: 4rem;
  }
  body .sm\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .sm\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .sm\:u-p-68px {
    padding: 4.25rem;
  }
  body .sm\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .sm\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .sm\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .sm\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .sm\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .sm\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .sm\:u-p-72px {
    padding: 4.5rem;
  }
  body .sm\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .sm\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .sm\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .sm\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .sm\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .sm\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .sm\:u-p-76px {
    padding: 4.75rem;
  }
  body .sm\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .sm\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .sm\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .sm\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .sm\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .sm\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .sm\:u-p-80px {
    padding: 5rem;
  }
  body .sm\:u-pt-80px {
    padding-top: 5rem;
  }
  body .sm\:u-pr-80px {
    padding-right: 5rem;
  }
  body .sm\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .sm\:u-pl80px {
    padding-left: 5rem;
  }
  body .sm\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .sm\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (max-width: 47.9375em) {
  body .sm-down\:u-p-0 {
    padding: 0rem;
  }
  body .sm-down\:u-pt-0 {
    padding-top: 0rem;
  }
  body .sm-down\:u-pr-0 {
    padding-right: 0rem;
  }
  body .sm-down\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .sm-down\:u-pl0 {
    padding-left: 0rem;
  }
  body .sm-down\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .sm-down\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .sm-down\:u-p-4px {
    padding: 0.25rem;
  }
  body .sm-down\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .sm-down\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .sm-down\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .sm-down\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .sm-down\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .sm-down\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .sm-down\:u-p-8px {
    padding: 0.5rem;
  }
  body .sm-down\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .sm-down\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .sm-down\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .sm-down\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .sm-down\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .sm-down\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .sm-down\:u-p-12px {
    padding: 0.75rem;
  }
  body .sm-down\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .sm-down\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .sm-down\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .sm-down\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .sm-down\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .sm-down\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .sm-down\:u-p-16px {
    padding: 1rem;
  }
  body .sm-down\:u-pt-16px {
    padding-top: 1rem;
  }
  body .sm-down\:u-pr-16px {
    padding-right: 1rem;
  }
  body .sm-down\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .sm-down\:u-pl16px {
    padding-left: 1rem;
  }
  body .sm-down\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .sm-down\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .sm-down\:u-p-20px {
    padding: 1.25rem;
  }
  body .sm-down\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .sm-down\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .sm-down\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .sm-down\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .sm-down\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .sm-down\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .sm-down\:u-p-24px {
    padding: 1.5rem;
  }
  body .sm-down\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .sm-down\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .sm-down\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .sm-down\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .sm-down\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .sm-down\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .sm-down\:u-p-28px {
    padding: 1.75rem;
  }
  body .sm-down\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .sm-down\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .sm-down\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .sm-down\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .sm-down\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .sm-down\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .sm-down\:u-p-32px {
    padding: 2rem;
  }
  body .sm-down\:u-pt-32px {
    padding-top: 2rem;
  }
  body .sm-down\:u-pr-32px {
    padding-right: 2rem;
  }
  body .sm-down\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .sm-down\:u-pl32px {
    padding-left: 2rem;
  }
  body .sm-down\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .sm-down\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .sm-down\:u-p-36px {
    padding: 2.25rem;
  }
  body .sm-down\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .sm-down\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .sm-down\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .sm-down\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .sm-down\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .sm-down\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .sm-down\:u-p-40px {
    padding: 2.5rem;
  }
  body .sm-down\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .sm-down\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .sm-down\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .sm-down\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .sm-down\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .sm-down\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .sm-down\:u-p-44px {
    padding: 2.75rem;
  }
  body .sm-down\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .sm-down\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .sm-down\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .sm-down\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .sm-down\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .sm-down\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .sm-down\:u-p-48px {
    padding: 3rem;
  }
  body .sm-down\:u-pt-48px {
    padding-top: 3rem;
  }
  body .sm-down\:u-pr-48px {
    padding-right: 3rem;
  }
  body .sm-down\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .sm-down\:u-pl48px {
    padding-left: 3rem;
  }
  body .sm-down\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .sm-down\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .sm-down\:u-p-52px {
    padding: 3.25rem;
  }
  body .sm-down\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .sm-down\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .sm-down\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .sm-down\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .sm-down\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .sm-down\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .sm-down\:u-p-56px {
    padding: 3.5rem;
  }
  body .sm-down\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .sm-down\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .sm-down\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .sm-down\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .sm-down\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .sm-down\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .sm-down\:u-p-60px {
    padding: 3.75rem;
  }
  body .sm-down\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .sm-down\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .sm-down\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .sm-down\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .sm-down\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .sm-down\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .sm-down\:u-p-64px {
    padding: 4rem;
  }
  body .sm-down\:u-pt-64px {
    padding-top: 4rem;
  }
  body .sm-down\:u-pr-64px {
    padding-right: 4rem;
  }
  body .sm-down\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .sm-down\:u-pl64px {
    padding-left: 4rem;
  }
  body .sm-down\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .sm-down\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .sm-down\:u-p-68px {
    padding: 4.25rem;
  }
  body .sm-down\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .sm-down\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .sm-down\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .sm-down\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .sm-down\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .sm-down\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .sm-down\:u-p-72px {
    padding: 4.5rem;
  }
  body .sm-down\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .sm-down\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .sm-down\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .sm-down\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .sm-down\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .sm-down\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .sm-down\:u-p-76px {
    padding: 4.75rem;
  }
  body .sm-down\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .sm-down\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .sm-down\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .sm-down\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .sm-down\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .sm-down\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .sm-down\:u-p-80px {
    padding: 5rem;
  }
  body .sm-down\:u-pt-80px {
    padding-top: 5rem;
  }
  body .sm-down\:u-pr-80px {
    padding-right: 5rem;
  }
  body .sm-down\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .sm-down\:u-pl80px {
    padding-left: 5rem;
  }
  body .sm-down\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .sm-down\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 34em) {
  body .sm-up\:u-p-0 {
    padding: 0rem;
  }
  body .sm-up\:u-pt-0 {
    padding-top: 0rem;
  }
  body .sm-up\:u-pr-0 {
    padding-right: 0rem;
  }
  body .sm-up\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .sm-up\:u-pl0 {
    padding-left: 0rem;
  }
  body .sm-up\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .sm-up\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .sm-up\:u-p-4px {
    padding: 0.25rem;
  }
  body .sm-up\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .sm-up\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .sm-up\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .sm-up\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .sm-up\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .sm-up\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .sm-up\:u-p-8px {
    padding: 0.5rem;
  }
  body .sm-up\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .sm-up\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .sm-up\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .sm-up\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .sm-up\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .sm-up\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .sm-up\:u-p-12px {
    padding: 0.75rem;
  }
  body .sm-up\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .sm-up\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .sm-up\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .sm-up\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .sm-up\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .sm-up\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .sm-up\:u-p-16px {
    padding: 1rem;
  }
  body .sm-up\:u-pt-16px {
    padding-top: 1rem;
  }
  body .sm-up\:u-pr-16px {
    padding-right: 1rem;
  }
  body .sm-up\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .sm-up\:u-pl16px {
    padding-left: 1rem;
  }
  body .sm-up\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .sm-up\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .sm-up\:u-p-20px {
    padding: 1.25rem;
  }
  body .sm-up\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .sm-up\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .sm-up\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .sm-up\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .sm-up\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .sm-up\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .sm-up\:u-p-24px {
    padding: 1.5rem;
  }
  body .sm-up\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .sm-up\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .sm-up\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .sm-up\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .sm-up\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .sm-up\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .sm-up\:u-p-28px {
    padding: 1.75rem;
  }
  body .sm-up\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .sm-up\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .sm-up\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .sm-up\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .sm-up\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .sm-up\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .sm-up\:u-p-32px {
    padding: 2rem;
  }
  body .sm-up\:u-pt-32px {
    padding-top: 2rem;
  }
  body .sm-up\:u-pr-32px {
    padding-right: 2rem;
  }
  body .sm-up\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .sm-up\:u-pl32px {
    padding-left: 2rem;
  }
  body .sm-up\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .sm-up\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .sm-up\:u-p-36px {
    padding: 2.25rem;
  }
  body .sm-up\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .sm-up\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .sm-up\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .sm-up\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .sm-up\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .sm-up\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .sm-up\:u-p-40px {
    padding: 2.5rem;
  }
  body .sm-up\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .sm-up\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .sm-up\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .sm-up\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .sm-up\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .sm-up\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .sm-up\:u-p-44px {
    padding: 2.75rem;
  }
  body .sm-up\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .sm-up\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .sm-up\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .sm-up\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .sm-up\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .sm-up\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .sm-up\:u-p-48px {
    padding: 3rem;
  }
  body .sm-up\:u-pt-48px {
    padding-top: 3rem;
  }
  body .sm-up\:u-pr-48px {
    padding-right: 3rem;
  }
  body .sm-up\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .sm-up\:u-pl48px {
    padding-left: 3rem;
  }
  body .sm-up\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .sm-up\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .sm-up\:u-p-52px {
    padding: 3.25rem;
  }
  body .sm-up\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .sm-up\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .sm-up\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .sm-up\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .sm-up\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .sm-up\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .sm-up\:u-p-56px {
    padding: 3.5rem;
  }
  body .sm-up\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .sm-up\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .sm-up\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .sm-up\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .sm-up\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .sm-up\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .sm-up\:u-p-60px {
    padding: 3.75rem;
  }
  body .sm-up\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .sm-up\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .sm-up\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .sm-up\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .sm-up\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .sm-up\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .sm-up\:u-p-64px {
    padding: 4rem;
  }
  body .sm-up\:u-pt-64px {
    padding-top: 4rem;
  }
  body .sm-up\:u-pr-64px {
    padding-right: 4rem;
  }
  body .sm-up\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .sm-up\:u-pl64px {
    padding-left: 4rem;
  }
  body .sm-up\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .sm-up\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .sm-up\:u-p-68px {
    padding: 4.25rem;
  }
  body .sm-up\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .sm-up\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .sm-up\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .sm-up\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .sm-up\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .sm-up\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .sm-up\:u-p-72px {
    padding: 4.5rem;
  }
  body .sm-up\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .sm-up\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .sm-up\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .sm-up\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .sm-up\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .sm-up\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .sm-up\:u-p-76px {
    padding: 4.75rem;
  }
  body .sm-up\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .sm-up\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .sm-up\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .sm-up\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .sm-up\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .sm-up\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .sm-up\:u-p-80px {
    padding: 5rem;
  }
  body .sm-up\:u-pt-80px {
    padding-top: 5rem;
  }
  body .sm-up\:u-pr-80px {
    padding-right: 5rem;
  }
  body .sm-up\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .sm-up\:u-pl80px {
    padding-left: 5rem;
  }
  body .sm-up\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .sm-up\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  body .md\:u-p-0 {
    padding: 0rem;
  }
  body .md\:u-pt-0 {
    padding-top: 0rem;
  }
  body .md\:u-pr-0 {
    padding-right: 0rem;
  }
  body .md\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .md\:u-pl0 {
    padding-left: 0rem;
  }
  body .md\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .md\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .md\:u-p-4px {
    padding: 0.25rem;
  }
  body .md\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .md\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .md\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .md\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .md\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .md\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .md\:u-p-8px {
    padding: 0.5rem;
  }
  body .md\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .md\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .md\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .md\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .md\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .md\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .md\:u-p-12px {
    padding: 0.75rem;
  }
  body .md\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .md\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .md\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .md\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .md\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .md\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .md\:u-p-16px {
    padding: 1rem;
  }
  body .md\:u-pt-16px {
    padding-top: 1rem;
  }
  body .md\:u-pr-16px {
    padding-right: 1rem;
  }
  body .md\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .md\:u-pl16px {
    padding-left: 1rem;
  }
  body .md\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .md\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .md\:u-p-20px {
    padding: 1.25rem;
  }
  body .md\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .md\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .md\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .md\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .md\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .md\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .md\:u-p-24px {
    padding: 1.5rem;
  }
  body .md\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .md\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .md\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .md\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .md\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .md\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .md\:u-p-28px {
    padding: 1.75rem;
  }
  body .md\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .md\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .md\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .md\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .md\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .md\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .md\:u-p-32px {
    padding: 2rem;
  }
  body .md\:u-pt-32px {
    padding-top: 2rem;
  }
  body .md\:u-pr-32px {
    padding-right: 2rem;
  }
  body .md\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .md\:u-pl32px {
    padding-left: 2rem;
  }
  body .md\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .md\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .md\:u-p-36px {
    padding: 2.25rem;
  }
  body .md\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .md\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .md\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .md\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .md\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .md\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .md\:u-p-40px {
    padding: 2.5rem;
  }
  body .md\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .md\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .md\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .md\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .md\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .md\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .md\:u-p-44px {
    padding: 2.75rem;
  }
  body .md\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .md\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .md\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .md\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .md\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .md\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .md\:u-p-48px {
    padding: 3rem;
  }
  body .md\:u-pt-48px {
    padding-top: 3rem;
  }
  body .md\:u-pr-48px {
    padding-right: 3rem;
  }
  body .md\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .md\:u-pl48px {
    padding-left: 3rem;
  }
  body .md\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .md\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .md\:u-p-52px {
    padding: 3.25rem;
  }
  body .md\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .md\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .md\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .md\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .md\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .md\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .md\:u-p-56px {
    padding: 3.5rem;
  }
  body .md\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .md\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .md\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .md\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .md\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .md\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .md\:u-p-60px {
    padding: 3.75rem;
  }
  body .md\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .md\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .md\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .md\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .md\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .md\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .md\:u-p-64px {
    padding: 4rem;
  }
  body .md\:u-pt-64px {
    padding-top: 4rem;
  }
  body .md\:u-pr-64px {
    padding-right: 4rem;
  }
  body .md\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .md\:u-pl64px {
    padding-left: 4rem;
  }
  body .md\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .md\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .md\:u-p-68px {
    padding: 4.25rem;
  }
  body .md\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .md\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .md\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .md\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .md\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .md\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .md\:u-p-72px {
    padding: 4.5rem;
  }
  body .md\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .md\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .md\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .md\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .md\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .md\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .md\:u-p-76px {
    padding: 4.75rem;
  }
  body .md\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .md\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .md\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .md\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .md\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .md\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .md\:u-p-80px {
    padding: 5rem;
  }
  body .md\:u-pt-80px {
    padding-top: 5rem;
  }
  body .md\:u-pr-80px {
    padding-right: 5rem;
  }
  body .md\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .md\:u-pl80px {
    padding-left: 5rem;
  }
  body .md\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .md\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (max-width: 61.9375em) {
  body .md-down\:u-p-0 {
    padding: 0rem;
  }
  body .md-down\:u-pt-0 {
    padding-top: 0rem;
  }
  body .md-down\:u-pr-0 {
    padding-right: 0rem;
  }
  body .md-down\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .md-down\:u-pl0 {
    padding-left: 0rem;
  }
  body .md-down\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .md-down\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .md-down\:u-p-4px {
    padding: 0.25rem;
  }
  body .md-down\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .md-down\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .md-down\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .md-down\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .md-down\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .md-down\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .md-down\:u-p-8px {
    padding: 0.5rem;
  }
  body .md-down\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .md-down\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .md-down\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .md-down\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .md-down\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .md-down\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .md-down\:u-p-12px {
    padding: 0.75rem;
  }
  body .md-down\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .md-down\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .md-down\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .md-down\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .md-down\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .md-down\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .md-down\:u-p-16px {
    padding: 1rem;
  }
  body .md-down\:u-pt-16px {
    padding-top: 1rem;
  }
  body .md-down\:u-pr-16px {
    padding-right: 1rem;
  }
  body .md-down\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .md-down\:u-pl16px {
    padding-left: 1rem;
  }
  body .md-down\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .md-down\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .md-down\:u-p-20px {
    padding: 1.25rem;
  }
  body .md-down\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .md-down\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .md-down\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .md-down\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .md-down\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .md-down\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .md-down\:u-p-24px {
    padding: 1.5rem;
  }
  body .md-down\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .md-down\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .md-down\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .md-down\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .md-down\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .md-down\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .md-down\:u-p-28px {
    padding: 1.75rem;
  }
  body .md-down\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .md-down\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .md-down\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .md-down\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .md-down\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .md-down\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .md-down\:u-p-32px {
    padding: 2rem;
  }
  body .md-down\:u-pt-32px {
    padding-top: 2rem;
  }
  body .md-down\:u-pr-32px {
    padding-right: 2rem;
  }
  body .md-down\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .md-down\:u-pl32px {
    padding-left: 2rem;
  }
  body .md-down\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .md-down\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .md-down\:u-p-36px {
    padding: 2.25rem;
  }
  body .md-down\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .md-down\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .md-down\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .md-down\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .md-down\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .md-down\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .md-down\:u-p-40px {
    padding: 2.5rem;
  }
  body .md-down\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .md-down\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .md-down\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .md-down\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .md-down\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .md-down\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .md-down\:u-p-44px {
    padding: 2.75rem;
  }
  body .md-down\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .md-down\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .md-down\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .md-down\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .md-down\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .md-down\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .md-down\:u-p-48px {
    padding: 3rem;
  }
  body .md-down\:u-pt-48px {
    padding-top: 3rem;
  }
  body .md-down\:u-pr-48px {
    padding-right: 3rem;
  }
  body .md-down\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .md-down\:u-pl48px {
    padding-left: 3rem;
  }
  body .md-down\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .md-down\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .md-down\:u-p-52px {
    padding: 3.25rem;
  }
  body .md-down\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .md-down\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .md-down\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .md-down\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .md-down\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .md-down\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .md-down\:u-p-56px {
    padding: 3.5rem;
  }
  body .md-down\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .md-down\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .md-down\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .md-down\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .md-down\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .md-down\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .md-down\:u-p-60px {
    padding: 3.75rem;
  }
  body .md-down\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .md-down\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .md-down\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .md-down\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .md-down\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .md-down\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .md-down\:u-p-64px {
    padding: 4rem;
  }
  body .md-down\:u-pt-64px {
    padding-top: 4rem;
  }
  body .md-down\:u-pr-64px {
    padding-right: 4rem;
  }
  body .md-down\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .md-down\:u-pl64px {
    padding-left: 4rem;
  }
  body .md-down\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .md-down\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .md-down\:u-p-68px {
    padding: 4.25rem;
  }
  body .md-down\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .md-down\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .md-down\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .md-down\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .md-down\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .md-down\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .md-down\:u-p-72px {
    padding: 4.5rem;
  }
  body .md-down\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .md-down\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .md-down\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .md-down\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .md-down\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .md-down\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .md-down\:u-p-76px {
    padding: 4.75rem;
  }
  body .md-down\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .md-down\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .md-down\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .md-down\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .md-down\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .md-down\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .md-down\:u-p-80px {
    padding: 5rem;
  }
  body .md-down\:u-pt-80px {
    padding-top: 5rem;
  }
  body .md-down\:u-pr-80px {
    padding-right: 5rem;
  }
  body .md-down\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .md-down\:u-pl80px {
    padding-left: 5rem;
  }
  body .md-down\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .md-down\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 48em) {
  body .md-up\:u-p-0 {
    padding: 0rem;
  }
  body .md-up\:u-pt-0 {
    padding-top: 0rem;
  }
  body .md-up\:u-pr-0 {
    padding-right: 0rem;
  }
  body .md-up\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .md-up\:u-pl0 {
    padding-left: 0rem;
  }
  body .md-up\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .md-up\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .md-up\:u-p-4px {
    padding: 0.25rem;
  }
  body .md-up\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .md-up\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .md-up\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .md-up\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .md-up\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .md-up\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .md-up\:u-p-8px {
    padding: 0.5rem;
  }
  body .md-up\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .md-up\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .md-up\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .md-up\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .md-up\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .md-up\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .md-up\:u-p-12px {
    padding: 0.75rem;
  }
  body .md-up\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .md-up\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .md-up\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .md-up\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .md-up\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .md-up\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .md-up\:u-p-16px {
    padding: 1rem;
  }
  body .md-up\:u-pt-16px {
    padding-top: 1rem;
  }
  body .md-up\:u-pr-16px {
    padding-right: 1rem;
  }
  body .md-up\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .md-up\:u-pl16px {
    padding-left: 1rem;
  }
  body .md-up\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .md-up\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .md-up\:u-p-20px {
    padding: 1.25rem;
  }
  body .md-up\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .md-up\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .md-up\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .md-up\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .md-up\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .md-up\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .md-up\:u-p-24px {
    padding: 1.5rem;
  }
  body .md-up\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .md-up\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .md-up\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .md-up\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .md-up\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .md-up\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .md-up\:u-p-28px {
    padding: 1.75rem;
  }
  body .md-up\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .md-up\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .md-up\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .md-up\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .md-up\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .md-up\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .md-up\:u-p-32px {
    padding: 2rem;
  }
  body .md-up\:u-pt-32px {
    padding-top: 2rem;
  }
  body .md-up\:u-pr-32px {
    padding-right: 2rem;
  }
  body .md-up\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .md-up\:u-pl32px {
    padding-left: 2rem;
  }
  body .md-up\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .md-up\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .md-up\:u-p-36px {
    padding: 2.25rem;
  }
  body .md-up\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .md-up\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .md-up\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .md-up\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .md-up\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .md-up\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .md-up\:u-p-40px {
    padding: 2.5rem;
  }
  body .md-up\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .md-up\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .md-up\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .md-up\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .md-up\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .md-up\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .md-up\:u-p-44px {
    padding: 2.75rem;
  }
  body .md-up\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .md-up\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .md-up\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .md-up\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .md-up\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .md-up\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .md-up\:u-p-48px {
    padding: 3rem;
  }
  body .md-up\:u-pt-48px {
    padding-top: 3rem;
  }
  body .md-up\:u-pr-48px {
    padding-right: 3rem;
  }
  body .md-up\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .md-up\:u-pl48px {
    padding-left: 3rem;
  }
  body .md-up\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .md-up\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .md-up\:u-p-52px {
    padding: 3.25rem;
  }
  body .md-up\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .md-up\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .md-up\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .md-up\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .md-up\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .md-up\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .md-up\:u-p-56px {
    padding: 3.5rem;
  }
  body .md-up\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .md-up\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .md-up\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .md-up\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .md-up\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .md-up\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .md-up\:u-p-60px {
    padding: 3.75rem;
  }
  body .md-up\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .md-up\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .md-up\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .md-up\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .md-up\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .md-up\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .md-up\:u-p-64px {
    padding: 4rem;
  }
  body .md-up\:u-pt-64px {
    padding-top: 4rem;
  }
  body .md-up\:u-pr-64px {
    padding-right: 4rem;
  }
  body .md-up\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .md-up\:u-pl64px {
    padding-left: 4rem;
  }
  body .md-up\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .md-up\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .md-up\:u-p-68px {
    padding: 4.25rem;
  }
  body .md-up\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .md-up\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .md-up\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .md-up\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .md-up\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .md-up\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .md-up\:u-p-72px {
    padding: 4.5rem;
  }
  body .md-up\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .md-up\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .md-up\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .md-up\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .md-up\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .md-up\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .md-up\:u-p-76px {
    padding: 4.75rem;
  }
  body .md-up\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .md-up\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .md-up\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .md-up\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .md-up\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .md-up\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .md-up\:u-p-80px {
    padding: 5rem;
  }
  body .md-up\:u-pt-80px {
    padding-top: 5rem;
  }
  body .md-up\:u-pr-80px {
    padding-right: 5rem;
  }
  body .md-up\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .md-up\:u-pl80px {
    padding-left: 5rem;
  }
  body .md-up\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .md-up\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  body .lg\:u-p-0 {
    padding: 0rem;
  }
  body .lg\:u-pt-0 {
    padding-top: 0rem;
  }
  body .lg\:u-pr-0 {
    padding-right: 0rem;
  }
  body .lg\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .lg\:u-pl0 {
    padding-left: 0rem;
  }
  body .lg\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .lg\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .lg\:u-p-4px {
    padding: 0.25rem;
  }
  body .lg\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .lg\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .lg\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .lg\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .lg\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .lg\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .lg\:u-p-8px {
    padding: 0.5rem;
  }
  body .lg\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .lg\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .lg\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .lg\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .lg\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .lg\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .lg\:u-p-12px {
    padding: 0.75rem;
  }
  body .lg\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .lg\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .lg\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .lg\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .lg\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .lg\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .lg\:u-p-16px {
    padding: 1rem;
  }
  body .lg\:u-pt-16px {
    padding-top: 1rem;
  }
  body .lg\:u-pr-16px {
    padding-right: 1rem;
  }
  body .lg\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .lg\:u-pl16px {
    padding-left: 1rem;
  }
  body .lg\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .lg\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .lg\:u-p-20px {
    padding: 1.25rem;
  }
  body .lg\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .lg\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .lg\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .lg\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .lg\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .lg\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .lg\:u-p-24px {
    padding: 1.5rem;
  }
  body .lg\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .lg\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .lg\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .lg\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .lg\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .lg\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .lg\:u-p-28px {
    padding: 1.75rem;
  }
  body .lg\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .lg\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .lg\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .lg\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .lg\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .lg\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .lg\:u-p-32px {
    padding: 2rem;
  }
  body .lg\:u-pt-32px {
    padding-top: 2rem;
  }
  body .lg\:u-pr-32px {
    padding-right: 2rem;
  }
  body .lg\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .lg\:u-pl32px {
    padding-left: 2rem;
  }
  body .lg\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .lg\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .lg\:u-p-36px {
    padding: 2.25rem;
  }
  body .lg\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .lg\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .lg\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .lg\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .lg\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .lg\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .lg\:u-p-40px {
    padding: 2.5rem;
  }
  body .lg\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .lg\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .lg\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .lg\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .lg\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .lg\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .lg\:u-p-44px {
    padding: 2.75rem;
  }
  body .lg\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .lg\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .lg\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .lg\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .lg\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .lg\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .lg\:u-p-48px {
    padding: 3rem;
  }
  body .lg\:u-pt-48px {
    padding-top: 3rem;
  }
  body .lg\:u-pr-48px {
    padding-right: 3rem;
  }
  body .lg\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .lg\:u-pl48px {
    padding-left: 3rem;
  }
  body .lg\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .lg\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .lg\:u-p-52px {
    padding: 3.25rem;
  }
  body .lg\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .lg\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .lg\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .lg\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .lg\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .lg\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .lg\:u-p-56px {
    padding: 3.5rem;
  }
  body .lg\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .lg\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .lg\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .lg\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .lg\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .lg\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .lg\:u-p-60px {
    padding: 3.75rem;
  }
  body .lg\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .lg\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .lg\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .lg\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .lg\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .lg\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .lg\:u-p-64px {
    padding: 4rem;
  }
  body .lg\:u-pt-64px {
    padding-top: 4rem;
  }
  body .lg\:u-pr-64px {
    padding-right: 4rem;
  }
  body .lg\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .lg\:u-pl64px {
    padding-left: 4rem;
  }
  body .lg\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .lg\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .lg\:u-p-68px {
    padding: 4.25rem;
  }
  body .lg\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .lg\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .lg\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .lg\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .lg\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .lg\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .lg\:u-p-72px {
    padding: 4.5rem;
  }
  body .lg\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .lg\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .lg\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .lg\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .lg\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .lg\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .lg\:u-p-76px {
    padding: 4.75rem;
  }
  body .lg\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .lg\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .lg\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .lg\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .lg\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .lg\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .lg\:u-p-80px {
    padding: 5rem;
  }
  body .lg\:u-pt-80px {
    padding-top: 5rem;
  }
  body .lg\:u-pr-80px {
    padding-right: 5rem;
  }
  body .lg\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .lg\:u-pl80px {
    padding-left: 5rem;
  }
  body .lg\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .lg\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (max-width: 74.9375em) {
  body .lg-down\:u-p-0 {
    padding: 0rem;
  }
  body .lg-down\:u-pt-0 {
    padding-top: 0rem;
  }
  body .lg-down\:u-pr-0 {
    padding-right: 0rem;
  }
  body .lg-down\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .lg-down\:u-pl0 {
    padding-left: 0rem;
  }
  body .lg-down\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .lg-down\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .lg-down\:u-p-4px {
    padding: 0.25rem;
  }
  body .lg-down\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .lg-down\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .lg-down\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .lg-down\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .lg-down\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .lg-down\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .lg-down\:u-p-8px {
    padding: 0.5rem;
  }
  body .lg-down\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .lg-down\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .lg-down\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .lg-down\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .lg-down\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .lg-down\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .lg-down\:u-p-12px {
    padding: 0.75rem;
  }
  body .lg-down\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .lg-down\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .lg-down\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .lg-down\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .lg-down\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .lg-down\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .lg-down\:u-p-16px {
    padding: 1rem;
  }
  body .lg-down\:u-pt-16px {
    padding-top: 1rem;
  }
  body .lg-down\:u-pr-16px {
    padding-right: 1rem;
  }
  body .lg-down\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .lg-down\:u-pl16px {
    padding-left: 1rem;
  }
  body .lg-down\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .lg-down\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .lg-down\:u-p-20px {
    padding: 1.25rem;
  }
  body .lg-down\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .lg-down\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .lg-down\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .lg-down\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .lg-down\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .lg-down\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .lg-down\:u-p-24px {
    padding: 1.5rem;
  }
  body .lg-down\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .lg-down\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .lg-down\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .lg-down\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .lg-down\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .lg-down\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .lg-down\:u-p-28px {
    padding: 1.75rem;
  }
  body .lg-down\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .lg-down\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .lg-down\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .lg-down\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .lg-down\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .lg-down\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .lg-down\:u-p-32px {
    padding: 2rem;
  }
  body .lg-down\:u-pt-32px {
    padding-top: 2rem;
  }
  body .lg-down\:u-pr-32px {
    padding-right: 2rem;
  }
  body .lg-down\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .lg-down\:u-pl32px {
    padding-left: 2rem;
  }
  body .lg-down\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .lg-down\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .lg-down\:u-p-36px {
    padding: 2.25rem;
  }
  body .lg-down\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .lg-down\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .lg-down\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .lg-down\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .lg-down\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .lg-down\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .lg-down\:u-p-40px {
    padding: 2.5rem;
  }
  body .lg-down\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .lg-down\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .lg-down\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .lg-down\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .lg-down\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .lg-down\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .lg-down\:u-p-44px {
    padding: 2.75rem;
  }
  body .lg-down\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .lg-down\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .lg-down\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .lg-down\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .lg-down\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .lg-down\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .lg-down\:u-p-48px {
    padding: 3rem;
  }
  body .lg-down\:u-pt-48px {
    padding-top: 3rem;
  }
  body .lg-down\:u-pr-48px {
    padding-right: 3rem;
  }
  body .lg-down\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .lg-down\:u-pl48px {
    padding-left: 3rem;
  }
  body .lg-down\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .lg-down\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .lg-down\:u-p-52px {
    padding: 3.25rem;
  }
  body .lg-down\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .lg-down\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .lg-down\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .lg-down\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .lg-down\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .lg-down\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .lg-down\:u-p-56px {
    padding: 3.5rem;
  }
  body .lg-down\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .lg-down\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .lg-down\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .lg-down\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .lg-down\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .lg-down\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .lg-down\:u-p-60px {
    padding: 3.75rem;
  }
  body .lg-down\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .lg-down\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .lg-down\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .lg-down\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .lg-down\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .lg-down\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .lg-down\:u-p-64px {
    padding: 4rem;
  }
  body .lg-down\:u-pt-64px {
    padding-top: 4rem;
  }
  body .lg-down\:u-pr-64px {
    padding-right: 4rem;
  }
  body .lg-down\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .lg-down\:u-pl64px {
    padding-left: 4rem;
  }
  body .lg-down\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .lg-down\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .lg-down\:u-p-68px {
    padding: 4.25rem;
  }
  body .lg-down\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .lg-down\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .lg-down\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .lg-down\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .lg-down\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .lg-down\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .lg-down\:u-p-72px {
    padding: 4.5rem;
  }
  body .lg-down\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .lg-down\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .lg-down\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .lg-down\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .lg-down\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .lg-down\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .lg-down\:u-p-76px {
    padding: 4.75rem;
  }
  body .lg-down\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .lg-down\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .lg-down\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .lg-down\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .lg-down\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .lg-down\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .lg-down\:u-p-80px {
    padding: 5rem;
  }
  body .lg-down\:u-pt-80px {
    padding-top: 5rem;
  }
  body .lg-down\:u-pr-80px {
    padding-right: 5rem;
  }
  body .lg-down\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .lg-down\:u-pl80px {
    padding-left: 5rem;
  }
  body .lg-down\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .lg-down\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 62em) {
  body .lg-up\:u-p-0 {
    padding: 0rem;
  }
  body .lg-up\:u-pt-0 {
    padding-top: 0rem;
  }
  body .lg-up\:u-pr-0 {
    padding-right: 0rem;
  }
  body .lg-up\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .lg-up\:u-pl0 {
    padding-left: 0rem;
  }
  body .lg-up\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .lg-up\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .lg-up\:u-p-4px {
    padding: 0.25rem;
  }
  body .lg-up\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .lg-up\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .lg-up\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .lg-up\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .lg-up\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .lg-up\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .lg-up\:u-p-8px {
    padding: 0.5rem;
  }
  body .lg-up\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .lg-up\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .lg-up\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .lg-up\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .lg-up\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .lg-up\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .lg-up\:u-p-12px {
    padding: 0.75rem;
  }
  body .lg-up\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .lg-up\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .lg-up\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .lg-up\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .lg-up\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .lg-up\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .lg-up\:u-p-16px {
    padding: 1rem;
  }
  body .lg-up\:u-pt-16px {
    padding-top: 1rem;
  }
  body .lg-up\:u-pr-16px {
    padding-right: 1rem;
  }
  body .lg-up\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .lg-up\:u-pl16px {
    padding-left: 1rem;
  }
  body .lg-up\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .lg-up\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .lg-up\:u-p-20px {
    padding: 1.25rem;
  }
  body .lg-up\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .lg-up\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .lg-up\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .lg-up\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .lg-up\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .lg-up\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .lg-up\:u-p-24px {
    padding: 1.5rem;
  }
  body .lg-up\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .lg-up\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .lg-up\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .lg-up\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .lg-up\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .lg-up\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .lg-up\:u-p-28px {
    padding: 1.75rem;
  }
  body .lg-up\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .lg-up\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .lg-up\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .lg-up\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .lg-up\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .lg-up\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .lg-up\:u-p-32px {
    padding: 2rem;
  }
  body .lg-up\:u-pt-32px {
    padding-top: 2rem;
  }
  body .lg-up\:u-pr-32px {
    padding-right: 2rem;
  }
  body .lg-up\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .lg-up\:u-pl32px {
    padding-left: 2rem;
  }
  body .lg-up\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .lg-up\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .lg-up\:u-p-36px {
    padding: 2.25rem;
  }
  body .lg-up\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .lg-up\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .lg-up\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .lg-up\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .lg-up\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .lg-up\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .lg-up\:u-p-40px {
    padding: 2.5rem;
  }
  body .lg-up\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .lg-up\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .lg-up\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .lg-up\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .lg-up\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .lg-up\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .lg-up\:u-p-44px {
    padding: 2.75rem;
  }
  body .lg-up\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .lg-up\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .lg-up\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .lg-up\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .lg-up\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .lg-up\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .lg-up\:u-p-48px {
    padding: 3rem;
  }
  body .lg-up\:u-pt-48px {
    padding-top: 3rem;
  }
  body .lg-up\:u-pr-48px {
    padding-right: 3rem;
  }
  body .lg-up\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .lg-up\:u-pl48px {
    padding-left: 3rem;
  }
  body .lg-up\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .lg-up\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .lg-up\:u-p-52px {
    padding: 3.25rem;
  }
  body .lg-up\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .lg-up\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .lg-up\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .lg-up\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .lg-up\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .lg-up\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .lg-up\:u-p-56px {
    padding: 3.5rem;
  }
  body .lg-up\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .lg-up\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .lg-up\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .lg-up\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .lg-up\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .lg-up\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .lg-up\:u-p-60px {
    padding: 3.75rem;
  }
  body .lg-up\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .lg-up\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .lg-up\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .lg-up\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .lg-up\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .lg-up\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .lg-up\:u-p-64px {
    padding: 4rem;
  }
  body .lg-up\:u-pt-64px {
    padding-top: 4rem;
  }
  body .lg-up\:u-pr-64px {
    padding-right: 4rem;
  }
  body .lg-up\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .lg-up\:u-pl64px {
    padding-left: 4rem;
  }
  body .lg-up\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .lg-up\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .lg-up\:u-p-68px {
    padding: 4.25rem;
  }
  body .lg-up\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .lg-up\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .lg-up\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .lg-up\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .lg-up\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .lg-up\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .lg-up\:u-p-72px {
    padding: 4.5rem;
  }
  body .lg-up\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .lg-up\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .lg-up\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .lg-up\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .lg-up\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .lg-up\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .lg-up\:u-p-76px {
    padding: 4.75rem;
  }
  body .lg-up\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .lg-up\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .lg-up\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .lg-up\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .lg-up\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .lg-up\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .lg-up\:u-p-80px {
    padding: 5rem;
  }
  body .lg-up\:u-pt-80px {
    padding-top: 5rem;
  }
  body .lg-up\:u-pr-80px {
    padding-right: 5rem;
  }
  body .lg-up\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .lg-up\:u-pl80px {
    padding-left: 5rem;
  }
  body .lg-up\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .lg-up\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  body .xl\:u-p-0 {
    padding: 0rem;
  }
  body .xl\:u-pt-0 {
    padding-top: 0rem;
  }
  body .xl\:u-pr-0 {
    padding-right: 0rem;
  }
  body .xl\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .xl\:u-pl0 {
    padding-left: 0rem;
  }
  body .xl\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .xl\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .xl\:u-p-4px {
    padding: 0.25rem;
  }
  body .xl\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .xl\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .xl\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .xl\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .xl\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .xl\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .xl\:u-p-8px {
    padding: 0.5rem;
  }
  body .xl\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .xl\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .xl\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .xl\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .xl\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .xl\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .xl\:u-p-12px {
    padding: 0.75rem;
  }
  body .xl\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .xl\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .xl\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .xl\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .xl\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .xl\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .xl\:u-p-16px {
    padding: 1rem;
  }
  body .xl\:u-pt-16px {
    padding-top: 1rem;
  }
  body .xl\:u-pr-16px {
    padding-right: 1rem;
  }
  body .xl\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .xl\:u-pl16px {
    padding-left: 1rem;
  }
  body .xl\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .xl\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .xl\:u-p-20px {
    padding: 1.25rem;
  }
  body .xl\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .xl\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .xl\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .xl\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .xl\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .xl\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .xl\:u-p-24px {
    padding: 1.5rem;
  }
  body .xl\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .xl\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .xl\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .xl\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .xl\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .xl\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .xl\:u-p-28px {
    padding: 1.75rem;
  }
  body .xl\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .xl\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .xl\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .xl\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .xl\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .xl\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .xl\:u-p-32px {
    padding: 2rem;
  }
  body .xl\:u-pt-32px {
    padding-top: 2rem;
  }
  body .xl\:u-pr-32px {
    padding-right: 2rem;
  }
  body .xl\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .xl\:u-pl32px {
    padding-left: 2rem;
  }
  body .xl\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .xl\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .xl\:u-p-36px {
    padding: 2.25rem;
  }
  body .xl\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .xl\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .xl\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .xl\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .xl\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .xl\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .xl\:u-p-40px {
    padding: 2.5rem;
  }
  body .xl\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .xl\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .xl\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .xl\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .xl\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .xl\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .xl\:u-p-44px {
    padding: 2.75rem;
  }
  body .xl\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .xl\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .xl\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .xl\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .xl\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .xl\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .xl\:u-p-48px {
    padding: 3rem;
  }
  body .xl\:u-pt-48px {
    padding-top: 3rem;
  }
  body .xl\:u-pr-48px {
    padding-right: 3rem;
  }
  body .xl\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .xl\:u-pl48px {
    padding-left: 3rem;
  }
  body .xl\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .xl\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .xl\:u-p-52px {
    padding: 3.25rem;
  }
  body .xl\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .xl\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .xl\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .xl\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .xl\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .xl\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .xl\:u-p-56px {
    padding: 3.5rem;
  }
  body .xl\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .xl\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .xl\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .xl\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .xl\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .xl\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .xl\:u-p-60px {
    padding: 3.75rem;
  }
  body .xl\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .xl\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .xl\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .xl\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .xl\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .xl\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .xl\:u-p-64px {
    padding: 4rem;
  }
  body .xl\:u-pt-64px {
    padding-top: 4rem;
  }
  body .xl\:u-pr-64px {
    padding-right: 4rem;
  }
  body .xl\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .xl\:u-pl64px {
    padding-left: 4rem;
  }
  body .xl\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .xl\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .xl\:u-p-68px {
    padding: 4.25rem;
  }
  body .xl\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .xl\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .xl\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .xl\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .xl\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .xl\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .xl\:u-p-72px {
    padding: 4.5rem;
  }
  body .xl\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .xl\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .xl\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .xl\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .xl\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .xl\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .xl\:u-p-76px {
    padding: 4.75rem;
  }
  body .xl\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .xl\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .xl\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .xl\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .xl\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .xl\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .xl\:u-p-80px {
    padding: 5rem;
  }
  body .xl\:u-pt-80px {
    padding-top: 5rem;
  }
  body .xl\:u-pr-80px {
    padding-right: 5rem;
  }
  body .xl\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .xl\:u-pl80px {
    padding-left: 5rem;
  }
  body .xl\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .xl\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (max-width: 89.9375em) {
  body .xl-down\:u-p-0 {
    padding: 0rem;
  }
  body .xl-down\:u-pt-0 {
    padding-top: 0rem;
  }
  body .xl-down\:u-pr-0 {
    padding-right: 0rem;
  }
  body .xl-down\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .xl-down\:u-pl0 {
    padding-left: 0rem;
  }
  body .xl-down\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .xl-down\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .xl-down\:u-p-4px {
    padding: 0.25rem;
  }
  body .xl-down\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .xl-down\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .xl-down\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .xl-down\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .xl-down\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .xl-down\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .xl-down\:u-p-8px {
    padding: 0.5rem;
  }
  body .xl-down\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .xl-down\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .xl-down\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .xl-down\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .xl-down\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .xl-down\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .xl-down\:u-p-12px {
    padding: 0.75rem;
  }
  body .xl-down\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .xl-down\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .xl-down\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .xl-down\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .xl-down\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .xl-down\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .xl-down\:u-p-16px {
    padding: 1rem;
  }
  body .xl-down\:u-pt-16px {
    padding-top: 1rem;
  }
  body .xl-down\:u-pr-16px {
    padding-right: 1rem;
  }
  body .xl-down\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .xl-down\:u-pl16px {
    padding-left: 1rem;
  }
  body .xl-down\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .xl-down\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .xl-down\:u-p-20px {
    padding: 1.25rem;
  }
  body .xl-down\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .xl-down\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .xl-down\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .xl-down\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .xl-down\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .xl-down\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .xl-down\:u-p-24px {
    padding: 1.5rem;
  }
  body .xl-down\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .xl-down\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .xl-down\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .xl-down\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .xl-down\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .xl-down\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .xl-down\:u-p-28px {
    padding: 1.75rem;
  }
  body .xl-down\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .xl-down\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .xl-down\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .xl-down\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .xl-down\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .xl-down\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .xl-down\:u-p-32px {
    padding: 2rem;
  }
  body .xl-down\:u-pt-32px {
    padding-top: 2rem;
  }
  body .xl-down\:u-pr-32px {
    padding-right: 2rem;
  }
  body .xl-down\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .xl-down\:u-pl32px {
    padding-left: 2rem;
  }
  body .xl-down\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .xl-down\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .xl-down\:u-p-36px {
    padding: 2.25rem;
  }
  body .xl-down\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .xl-down\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .xl-down\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .xl-down\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .xl-down\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .xl-down\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .xl-down\:u-p-40px {
    padding: 2.5rem;
  }
  body .xl-down\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .xl-down\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .xl-down\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .xl-down\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .xl-down\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .xl-down\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .xl-down\:u-p-44px {
    padding: 2.75rem;
  }
  body .xl-down\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .xl-down\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .xl-down\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .xl-down\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .xl-down\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .xl-down\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .xl-down\:u-p-48px {
    padding: 3rem;
  }
  body .xl-down\:u-pt-48px {
    padding-top: 3rem;
  }
  body .xl-down\:u-pr-48px {
    padding-right: 3rem;
  }
  body .xl-down\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .xl-down\:u-pl48px {
    padding-left: 3rem;
  }
  body .xl-down\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .xl-down\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .xl-down\:u-p-52px {
    padding: 3.25rem;
  }
  body .xl-down\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .xl-down\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .xl-down\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .xl-down\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .xl-down\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .xl-down\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .xl-down\:u-p-56px {
    padding: 3.5rem;
  }
  body .xl-down\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .xl-down\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .xl-down\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .xl-down\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .xl-down\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .xl-down\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .xl-down\:u-p-60px {
    padding: 3.75rem;
  }
  body .xl-down\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .xl-down\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .xl-down\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .xl-down\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .xl-down\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .xl-down\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .xl-down\:u-p-64px {
    padding: 4rem;
  }
  body .xl-down\:u-pt-64px {
    padding-top: 4rem;
  }
  body .xl-down\:u-pr-64px {
    padding-right: 4rem;
  }
  body .xl-down\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .xl-down\:u-pl64px {
    padding-left: 4rem;
  }
  body .xl-down\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .xl-down\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .xl-down\:u-p-68px {
    padding: 4.25rem;
  }
  body .xl-down\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .xl-down\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .xl-down\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .xl-down\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .xl-down\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .xl-down\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .xl-down\:u-p-72px {
    padding: 4.5rem;
  }
  body .xl-down\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .xl-down\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .xl-down\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .xl-down\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .xl-down\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .xl-down\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .xl-down\:u-p-76px {
    padding: 4.75rem;
  }
  body .xl-down\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .xl-down\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .xl-down\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .xl-down\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .xl-down\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .xl-down\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .xl-down\:u-p-80px {
    padding: 5rem;
  }
  body .xl-down\:u-pt-80px {
    padding-top: 5rem;
  }
  body .xl-down\:u-pr-80px {
    padding-right: 5rem;
  }
  body .xl-down\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .xl-down\:u-pl80px {
    padding-left: 5rem;
  }
  body .xl-down\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .xl-down\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 75em) {
  body .xl-up\:u-p-0 {
    padding: 0rem;
  }
  body .xl-up\:u-pt-0 {
    padding-top: 0rem;
  }
  body .xl-up\:u-pr-0 {
    padding-right: 0rem;
  }
  body .xl-up\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .xl-up\:u-pl0 {
    padding-left: 0rem;
  }
  body .xl-up\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .xl-up\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .xl-up\:u-p-4px {
    padding: 0.25rem;
  }
  body .xl-up\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .xl-up\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .xl-up\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .xl-up\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .xl-up\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .xl-up\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .xl-up\:u-p-8px {
    padding: 0.5rem;
  }
  body .xl-up\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .xl-up\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .xl-up\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .xl-up\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .xl-up\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .xl-up\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .xl-up\:u-p-12px {
    padding: 0.75rem;
  }
  body .xl-up\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .xl-up\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .xl-up\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .xl-up\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .xl-up\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .xl-up\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .xl-up\:u-p-16px {
    padding: 1rem;
  }
  body .xl-up\:u-pt-16px {
    padding-top: 1rem;
  }
  body .xl-up\:u-pr-16px {
    padding-right: 1rem;
  }
  body .xl-up\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .xl-up\:u-pl16px {
    padding-left: 1rem;
  }
  body .xl-up\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .xl-up\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .xl-up\:u-p-20px {
    padding: 1.25rem;
  }
  body .xl-up\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .xl-up\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .xl-up\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .xl-up\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .xl-up\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .xl-up\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .xl-up\:u-p-24px {
    padding: 1.5rem;
  }
  body .xl-up\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .xl-up\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .xl-up\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .xl-up\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .xl-up\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .xl-up\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .xl-up\:u-p-28px {
    padding: 1.75rem;
  }
  body .xl-up\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .xl-up\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .xl-up\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .xl-up\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .xl-up\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .xl-up\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .xl-up\:u-p-32px {
    padding: 2rem;
  }
  body .xl-up\:u-pt-32px {
    padding-top: 2rem;
  }
  body .xl-up\:u-pr-32px {
    padding-right: 2rem;
  }
  body .xl-up\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .xl-up\:u-pl32px {
    padding-left: 2rem;
  }
  body .xl-up\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .xl-up\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .xl-up\:u-p-36px {
    padding: 2.25rem;
  }
  body .xl-up\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .xl-up\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .xl-up\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .xl-up\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .xl-up\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .xl-up\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .xl-up\:u-p-40px {
    padding: 2.5rem;
  }
  body .xl-up\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .xl-up\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .xl-up\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .xl-up\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .xl-up\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .xl-up\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .xl-up\:u-p-44px {
    padding: 2.75rem;
  }
  body .xl-up\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .xl-up\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .xl-up\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .xl-up\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .xl-up\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .xl-up\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .xl-up\:u-p-48px {
    padding: 3rem;
  }
  body .xl-up\:u-pt-48px {
    padding-top: 3rem;
  }
  body .xl-up\:u-pr-48px {
    padding-right: 3rem;
  }
  body .xl-up\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .xl-up\:u-pl48px {
    padding-left: 3rem;
  }
  body .xl-up\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .xl-up\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .xl-up\:u-p-52px {
    padding: 3.25rem;
  }
  body .xl-up\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .xl-up\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .xl-up\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .xl-up\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .xl-up\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .xl-up\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .xl-up\:u-p-56px {
    padding: 3.5rem;
  }
  body .xl-up\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .xl-up\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .xl-up\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .xl-up\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .xl-up\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .xl-up\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .xl-up\:u-p-60px {
    padding: 3.75rem;
  }
  body .xl-up\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .xl-up\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .xl-up\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .xl-up\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .xl-up\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .xl-up\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .xl-up\:u-p-64px {
    padding: 4rem;
  }
  body .xl-up\:u-pt-64px {
    padding-top: 4rem;
  }
  body .xl-up\:u-pr-64px {
    padding-right: 4rem;
  }
  body .xl-up\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .xl-up\:u-pl64px {
    padding-left: 4rem;
  }
  body .xl-up\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .xl-up\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .xl-up\:u-p-68px {
    padding: 4.25rem;
  }
  body .xl-up\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .xl-up\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .xl-up\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .xl-up\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .xl-up\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .xl-up\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .xl-up\:u-p-72px {
    padding: 4.5rem;
  }
  body .xl-up\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .xl-up\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .xl-up\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .xl-up\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .xl-up\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .xl-up\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .xl-up\:u-p-76px {
    padding: 4.75rem;
  }
  body .xl-up\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .xl-up\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .xl-up\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .xl-up\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .xl-up\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .xl-up\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .xl-up\:u-p-80px {
    padding: 5rem;
  }
  body .xl-up\:u-pt-80px {
    padding-top: 5rem;
  }
  body .xl-up\:u-pr-80px {
    padding-right: 5rem;
  }
  body .xl-up\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .xl-up\:u-pl80px {
    padding-left: 5rem;
  }
  body .xl-up\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .xl-up\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
@media (min-width: 90em) {
  body .xxl\:u-p-0 {
    padding: 0rem;
  }
  body .xxl\:u-pt-0 {
    padding-top: 0rem;
  }
  body .xxl\:u-pr-0 {
    padding-right: 0rem;
  }
  body .xxl\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .xxl\:u-pl0 {
    padding-left: 0rem;
  }
  body .xxl\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .xxl\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .xxl\:u-p-4px {
    padding: 0.25rem;
  }
  body .xxl\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .xxl\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .xxl\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .xxl\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .xxl\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .xxl\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .xxl\:u-p-8px {
    padding: 0.5rem;
  }
  body .xxl\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .xxl\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .xxl\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .xxl\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .xxl\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .xxl\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .xxl\:u-p-12px {
    padding: 0.75rem;
  }
  body .xxl\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .xxl\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .xxl\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .xxl\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .xxl\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .xxl\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .xxl\:u-p-16px {
    padding: 1rem;
  }
  body .xxl\:u-pt-16px {
    padding-top: 1rem;
  }
  body .xxl\:u-pr-16px {
    padding-right: 1rem;
  }
  body .xxl\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .xxl\:u-pl16px {
    padding-left: 1rem;
  }
  body .xxl\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .xxl\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .xxl\:u-p-20px {
    padding: 1.25rem;
  }
  body .xxl\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .xxl\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .xxl\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .xxl\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .xxl\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .xxl\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .xxl\:u-p-24px {
    padding: 1.5rem;
  }
  body .xxl\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .xxl\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .xxl\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .xxl\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .xxl\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .xxl\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .xxl\:u-p-28px {
    padding: 1.75rem;
  }
  body .xxl\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .xxl\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .xxl\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .xxl\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .xxl\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .xxl\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .xxl\:u-p-32px {
    padding: 2rem;
  }
  body .xxl\:u-pt-32px {
    padding-top: 2rem;
  }
  body .xxl\:u-pr-32px {
    padding-right: 2rem;
  }
  body .xxl\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .xxl\:u-pl32px {
    padding-left: 2rem;
  }
  body .xxl\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .xxl\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .xxl\:u-p-36px {
    padding: 2.25rem;
  }
  body .xxl\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .xxl\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .xxl\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .xxl\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .xxl\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .xxl\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .xxl\:u-p-40px {
    padding: 2.5rem;
  }
  body .xxl\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .xxl\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .xxl\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .xxl\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .xxl\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .xxl\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .xxl\:u-p-44px {
    padding: 2.75rem;
  }
  body .xxl\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .xxl\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .xxl\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .xxl\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .xxl\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .xxl\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .xxl\:u-p-48px {
    padding: 3rem;
  }
  body .xxl\:u-pt-48px {
    padding-top: 3rem;
  }
  body .xxl\:u-pr-48px {
    padding-right: 3rem;
  }
  body .xxl\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .xxl\:u-pl48px {
    padding-left: 3rem;
  }
  body .xxl\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .xxl\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .xxl\:u-p-52px {
    padding: 3.25rem;
  }
  body .xxl\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .xxl\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .xxl\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .xxl\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .xxl\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .xxl\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .xxl\:u-p-56px {
    padding: 3.5rem;
  }
  body .xxl\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .xxl\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .xxl\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .xxl\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .xxl\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .xxl\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .xxl\:u-p-60px {
    padding: 3.75rem;
  }
  body .xxl\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .xxl\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .xxl\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .xxl\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .xxl\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .xxl\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .xxl\:u-p-64px {
    padding: 4rem;
  }
  body .xxl\:u-pt-64px {
    padding-top: 4rem;
  }
  body .xxl\:u-pr-64px {
    padding-right: 4rem;
  }
  body .xxl\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .xxl\:u-pl64px {
    padding-left: 4rem;
  }
  body .xxl\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .xxl\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .xxl\:u-p-68px {
    padding: 4.25rem;
  }
  body .xxl\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .xxl\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .xxl\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .xxl\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .xxl\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .xxl\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .xxl\:u-p-72px {
    padding: 4.5rem;
  }
  body .xxl\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .xxl\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .xxl\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .xxl\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .xxl\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .xxl\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .xxl\:u-p-76px {
    padding: 4.75rem;
  }
  body .xxl\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .xxl\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .xxl\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .xxl\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .xxl\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .xxl\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .xxl\:u-p-80px {
    padding: 5rem;
  }
  body .xxl\:u-pt-80px {
    padding-top: 5rem;
  }
  body .xxl\:u-pr-80px {
    padding-right: 5rem;
  }
  body .xxl\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .xxl\:u-pl80px {
    padding-left: 5rem;
  }
  body .xxl\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .xxl\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}
body .xxl-down\:u-p-0 {
  padding: 0rem;
}
body .xxl-down\:u-pt-0 {
  padding-top: 0rem;
}
body .xxl-down\:u-pr-0 {
  padding-right: 0rem;
}
body .xxl-down\:u-pb0 {
  padding-bottom: 0rem;
}
body .xxl-down\:u-pl0 {
  padding-left: 0rem;
}
body .xxl-down\:u-pt-vr-0 {
  padding-top: vr(0);
}
body .xxl-down\:u-pb-vr-0 {
  padding-bottom: vr(0);
}
body .xxl-down\:u-p-4px {
  padding: 0.25rem;
}
body .xxl-down\:u-pt-4px {
  padding-top: 0.25rem;
}
body .xxl-down\:u-pr-4px {
  padding-right: 0.25rem;
}
body .xxl-down\:u-pb4px {
  padding-bottom: 0.25rem;
}
body .xxl-down\:u-pl4px {
  padding-left: 0.25rem;
}
body .xxl-down\:u-pt-vr-1 {
  padding-top: vr(1);
}
body .xxl-down\:u-pb-vr-1 {
  padding-bottom: vr(1);
}
body .xxl-down\:u-p-8px {
  padding: 0.5rem;
}
body .xxl-down\:u-pt-8px {
  padding-top: 0.5rem;
}
body .xxl-down\:u-pr-8px {
  padding-right: 0.5rem;
}
body .xxl-down\:u-pb8px {
  padding-bottom: 0.5rem;
}
body .xxl-down\:u-pl8px {
  padding-left: 0.5rem;
}
body .xxl-down\:u-pt-vr-2 {
  padding-top: vr(2);
}
body .xxl-down\:u-pb-vr-2 {
  padding-bottom: vr(2);
}
body .xxl-down\:u-p-12px {
  padding: 0.75rem;
}
body .xxl-down\:u-pt-12px {
  padding-top: 0.75rem;
}
body .xxl-down\:u-pr-12px {
  padding-right: 0.75rem;
}
body .xxl-down\:u-pb12px {
  padding-bottom: 0.75rem;
}
body .xxl-down\:u-pl12px {
  padding-left: 0.75rem;
}
body .xxl-down\:u-pt-vr-3 {
  padding-top: vr(3);
}
body .xxl-down\:u-pb-vr-3 {
  padding-bottom: vr(3);
}
body .xxl-down\:u-p-16px {
  padding: 1rem;
}
body .xxl-down\:u-pt-16px {
  padding-top: 1rem;
}
body .xxl-down\:u-pr-16px {
  padding-right: 1rem;
}
body .xxl-down\:u-pb16px {
  padding-bottom: 1rem;
}
body .xxl-down\:u-pl16px {
  padding-left: 1rem;
}
body .xxl-down\:u-pt-vr-4 {
  padding-top: vr(4);
}
body .xxl-down\:u-pb-vr-4 {
  padding-bottom: vr(4);
}
body .xxl-down\:u-p-20px {
  padding: 1.25rem;
}
body .xxl-down\:u-pt-20px {
  padding-top: 1.25rem;
}
body .xxl-down\:u-pr-20px {
  padding-right: 1.25rem;
}
body .xxl-down\:u-pb20px {
  padding-bottom: 1.25rem;
}
body .xxl-down\:u-pl20px {
  padding-left: 1.25rem;
}
body .xxl-down\:u-pt-vr-5 {
  padding-top: vr(5);
}
body .xxl-down\:u-pb-vr-5 {
  padding-bottom: vr(5);
}
body .xxl-down\:u-p-24px {
  padding: 1.5rem;
}
body .xxl-down\:u-pt-24px {
  padding-top: 1.5rem;
}
body .xxl-down\:u-pr-24px {
  padding-right: 1.5rem;
}
body .xxl-down\:u-pb24px {
  padding-bottom: 1.5rem;
}
body .xxl-down\:u-pl24px {
  padding-left: 1.5rem;
}
body .xxl-down\:u-pt-vr-6 {
  padding-top: vr(6);
}
body .xxl-down\:u-pb-vr-6 {
  padding-bottom: vr(6);
}
body .xxl-down\:u-p-28px {
  padding: 1.75rem;
}
body .xxl-down\:u-pt-28px {
  padding-top: 1.75rem;
}
body .xxl-down\:u-pr-28px {
  padding-right: 1.75rem;
}
body .xxl-down\:u-pb28px {
  padding-bottom: 1.75rem;
}
body .xxl-down\:u-pl28px {
  padding-left: 1.75rem;
}
body .xxl-down\:u-pt-vr-7 {
  padding-top: vr(7);
}
body .xxl-down\:u-pb-vr-7 {
  padding-bottom: vr(7);
}
body .xxl-down\:u-p-32px {
  padding: 2rem;
}
body .xxl-down\:u-pt-32px {
  padding-top: 2rem;
}
body .xxl-down\:u-pr-32px {
  padding-right: 2rem;
}
body .xxl-down\:u-pb32px {
  padding-bottom: 2rem;
}
body .xxl-down\:u-pl32px {
  padding-left: 2rem;
}
body .xxl-down\:u-pt-vr-8 {
  padding-top: vr(8);
}
body .xxl-down\:u-pb-vr-8 {
  padding-bottom: vr(8);
}
body .xxl-down\:u-p-36px {
  padding: 2.25rem;
}
body .xxl-down\:u-pt-36px {
  padding-top: 2.25rem;
}
body .xxl-down\:u-pr-36px {
  padding-right: 2.25rem;
}
body .xxl-down\:u-pb36px {
  padding-bottom: 2.25rem;
}
body .xxl-down\:u-pl36px {
  padding-left: 2.25rem;
}
body .xxl-down\:u-pt-vr-9 {
  padding-top: vr(9);
}
body .xxl-down\:u-pb-vr-9 {
  padding-bottom: vr(9);
}
body .xxl-down\:u-p-40px {
  padding: 2.5rem;
}
body .xxl-down\:u-pt-40px {
  padding-top: 2.5rem;
}
body .xxl-down\:u-pr-40px {
  padding-right: 2.5rem;
}
body .xxl-down\:u-pb40px {
  padding-bottom: 2.5rem;
}
body .xxl-down\:u-pl40px {
  padding-left: 2.5rem;
}
body .xxl-down\:u-pt-vr-10 {
  padding-top: vr(10);
}
body .xxl-down\:u-pb-vr-10 {
  padding-bottom: vr(10);
}
body .xxl-down\:u-p-44px {
  padding: 2.75rem;
}
body .xxl-down\:u-pt-44px {
  padding-top: 2.75rem;
}
body .xxl-down\:u-pr-44px {
  padding-right: 2.75rem;
}
body .xxl-down\:u-pb44px {
  padding-bottom: 2.75rem;
}
body .xxl-down\:u-pl44px {
  padding-left: 2.75rem;
}
body .xxl-down\:u-pt-vr-11 {
  padding-top: vr(11);
}
body .xxl-down\:u-pb-vr-11 {
  padding-bottom: vr(11);
}
body .xxl-down\:u-p-48px {
  padding: 3rem;
}
body .xxl-down\:u-pt-48px {
  padding-top: 3rem;
}
body .xxl-down\:u-pr-48px {
  padding-right: 3rem;
}
body .xxl-down\:u-pb48px {
  padding-bottom: 3rem;
}
body .xxl-down\:u-pl48px {
  padding-left: 3rem;
}
body .xxl-down\:u-pt-vr-12 {
  padding-top: vr(12);
}
body .xxl-down\:u-pb-vr-12 {
  padding-bottom: vr(12);
}
body .xxl-down\:u-p-52px {
  padding: 3.25rem;
}
body .xxl-down\:u-pt-52px {
  padding-top: 3.25rem;
}
body .xxl-down\:u-pr-52px {
  padding-right: 3.25rem;
}
body .xxl-down\:u-pb52px {
  padding-bottom: 3.25rem;
}
body .xxl-down\:u-pl52px {
  padding-left: 3.25rem;
}
body .xxl-down\:u-pt-vr-13 {
  padding-top: vr(13);
}
body .xxl-down\:u-pb-vr-13 {
  padding-bottom: vr(13);
}
body .xxl-down\:u-p-56px {
  padding: 3.5rem;
}
body .xxl-down\:u-pt-56px {
  padding-top: 3.5rem;
}
body .xxl-down\:u-pr-56px {
  padding-right: 3.5rem;
}
body .xxl-down\:u-pb56px {
  padding-bottom: 3.5rem;
}
body .xxl-down\:u-pl56px {
  padding-left: 3.5rem;
}
body .xxl-down\:u-pt-vr-14 {
  padding-top: vr(14);
}
body .xxl-down\:u-pb-vr-14 {
  padding-bottom: vr(14);
}
body .xxl-down\:u-p-60px {
  padding: 3.75rem;
}
body .xxl-down\:u-pt-60px {
  padding-top: 3.75rem;
}
body .xxl-down\:u-pr-60px {
  padding-right: 3.75rem;
}
body .xxl-down\:u-pb60px {
  padding-bottom: 3.75rem;
}
body .xxl-down\:u-pl60px {
  padding-left: 3.75rem;
}
body .xxl-down\:u-pt-vr-15 {
  padding-top: vr(15);
}
body .xxl-down\:u-pb-vr-15 {
  padding-bottom: vr(15);
}
body .xxl-down\:u-p-64px {
  padding: 4rem;
}
body .xxl-down\:u-pt-64px {
  padding-top: 4rem;
}
body .xxl-down\:u-pr-64px {
  padding-right: 4rem;
}
body .xxl-down\:u-pb64px {
  padding-bottom: 4rem;
}
body .xxl-down\:u-pl64px {
  padding-left: 4rem;
}
body .xxl-down\:u-pt-vr-16 {
  padding-top: vr(16);
}
body .xxl-down\:u-pb-vr-16 {
  padding-bottom: vr(16);
}
body .xxl-down\:u-p-68px {
  padding: 4.25rem;
}
body .xxl-down\:u-pt-68px {
  padding-top: 4.25rem;
}
body .xxl-down\:u-pr-68px {
  padding-right: 4.25rem;
}
body .xxl-down\:u-pb68px {
  padding-bottom: 4.25rem;
}
body .xxl-down\:u-pl68px {
  padding-left: 4.25rem;
}
body .xxl-down\:u-pt-vr-17 {
  padding-top: vr(17);
}
body .xxl-down\:u-pb-vr-17 {
  padding-bottom: vr(17);
}
body .xxl-down\:u-p-72px {
  padding: 4.5rem;
}
body .xxl-down\:u-pt-72px {
  padding-top: 4.5rem;
}
body .xxl-down\:u-pr-72px {
  padding-right: 4.5rem;
}
body .xxl-down\:u-pb72px {
  padding-bottom: 4.5rem;
}
body .xxl-down\:u-pl72px {
  padding-left: 4.5rem;
}
body .xxl-down\:u-pt-vr-18 {
  padding-top: vr(18);
}
body .xxl-down\:u-pb-vr-18 {
  padding-bottom: vr(18);
}
body .xxl-down\:u-p-76px {
  padding: 4.75rem;
}
body .xxl-down\:u-pt-76px {
  padding-top: 4.75rem;
}
body .xxl-down\:u-pr-76px {
  padding-right: 4.75rem;
}
body .xxl-down\:u-pb76px {
  padding-bottom: 4.75rem;
}
body .xxl-down\:u-pl76px {
  padding-left: 4.75rem;
}
body .xxl-down\:u-pt-vr-19 {
  padding-top: vr(19);
}
body .xxl-down\:u-pb-vr-19 {
  padding-bottom: vr(19);
}
body .xxl-down\:u-p-80px {
  padding: 5rem;
}
body .xxl-down\:u-pt-80px {
  padding-top: 5rem;
}
body .xxl-down\:u-pr-80px {
  padding-right: 5rem;
}
body .xxl-down\:u-pb80px {
  padding-bottom: 5rem;
}
body .xxl-down\:u-pl80px {
  padding-left: 5rem;
}
body .xxl-down\:u-pt-vr-20 {
  padding-top: vr(20);
}
body .xxl-down\:u-pb-vr-20 {
  padding-bottom: vr(20);
}
@media (min-width: 90em) {
  body .xxl-up\:u-p-0 {
    padding: 0rem;
  }
  body .xxl-up\:u-pt-0 {
    padding-top: 0rem;
  }
  body .xxl-up\:u-pr-0 {
    padding-right: 0rem;
  }
  body .xxl-up\:u-pb0 {
    padding-bottom: 0rem;
  }
  body .xxl-up\:u-pl0 {
    padding-left: 0rem;
  }
  body .xxl-up\:u-pt-vr-0 {
    padding-top: vr(0);
  }
  body .xxl-up\:u-pb-vr-0 {
    padding-bottom: vr(0);
  }
  body .xxl-up\:u-p-4px {
    padding: 0.25rem;
  }
  body .xxl-up\:u-pt-4px {
    padding-top: 0.25rem;
  }
  body .xxl-up\:u-pr-4px {
    padding-right: 0.25rem;
  }
  body .xxl-up\:u-pb4px {
    padding-bottom: 0.25rem;
  }
  body .xxl-up\:u-pl4px {
    padding-left: 0.25rem;
  }
  body .xxl-up\:u-pt-vr-1 {
    padding-top: vr(1);
  }
  body .xxl-up\:u-pb-vr-1 {
    padding-bottom: vr(1);
  }
  body .xxl-up\:u-p-8px {
    padding: 0.5rem;
  }
  body .xxl-up\:u-pt-8px {
    padding-top: 0.5rem;
  }
  body .xxl-up\:u-pr-8px {
    padding-right: 0.5rem;
  }
  body .xxl-up\:u-pb8px {
    padding-bottom: 0.5rem;
  }
  body .xxl-up\:u-pl8px {
    padding-left: 0.5rem;
  }
  body .xxl-up\:u-pt-vr-2 {
    padding-top: vr(2);
  }
  body .xxl-up\:u-pb-vr-2 {
    padding-bottom: vr(2);
  }
  body .xxl-up\:u-p-12px {
    padding: 0.75rem;
  }
  body .xxl-up\:u-pt-12px {
    padding-top: 0.75rem;
  }
  body .xxl-up\:u-pr-12px {
    padding-right: 0.75rem;
  }
  body .xxl-up\:u-pb12px {
    padding-bottom: 0.75rem;
  }
  body .xxl-up\:u-pl12px {
    padding-left: 0.75rem;
  }
  body .xxl-up\:u-pt-vr-3 {
    padding-top: vr(3);
  }
  body .xxl-up\:u-pb-vr-3 {
    padding-bottom: vr(3);
  }
  body .xxl-up\:u-p-16px {
    padding: 1rem;
  }
  body .xxl-up\:u-pt-16px {
    padding-top: 1rem;
  }
  body .xxl-up\:u-pr-16px {
    padding-right: 1rem;
  }
  body .xxl-up\:u-pb16px {
    padding-bottom: 1rem;
  }
  body .xxl-up\:u-pl16px {
    padding-left: 1rem;
  }
  body .xxl-up\:u-pt-vr-4 {
    padding-top: vr(4);
  }
  body .xxl-up\:u-pb-vr-4 {
    padding-bottom: vr(4);
  }
  body .xxl-up\:u-p-20px {
    padding: 1.25rem;
  }
  body .xxl-up\:u-pt-20px {
    padding-top: 1.25rem;
  }
  body .xxl-up\:u-pr-20px {
    padding-right: 1.25rem;
  }
  body .xxl-up\:u-pb20px {
    padding-bottom: 1.25rem;
  }
  body .xxl-up\:u-pl20px {
    padding-left: 1.25rem;
  }
  body .xxl-up\:u-pt-vr-5 {
    padding-top: vr(5);
  }
  body .xxl-up\:u-pb-vr-5 {
    padding-bottom: vr(5);
  }
  body .xxl-up\:u-p-24px {
    padding: 1.5rem;
  }
  body .xxl-up\:u-pt-24px {
    padding-top: 1.5rem;
  }
  body .xxl-up\:u-pr-24px {
    padding-right: 1.5rem;
  }
  body .xxl-up\:u-pb24px {
    padding-bottom: 1.5rem;
  }
  body .xxl-up\:u-pl24px {
    padding-left: 1.5rem;
  }
  body .xxl-up\:u-pt-vr-6 {
    padding-top: vr(6);
  }
  body .xxl-up\:u-pb-vr-6 {
    padding-bottom: vr(6);
  }
  body .xxl-up\:u-p-28px {
    padding: 1.75rem;
  }
  body .xxl-up\:u-pt-28px {
    padding-top: 1.75rem;
  }
  body .xxl-up\:u-pr-28px {
    padding-right: 1.75rem;
  }
  body .xxl-up\:u-pb28px {
    padding-bottom: 1.75rem;
  }
  body .xxl-up\:u-pl28px {
    padding-left: 1.75rem;
  }
  body .xxl-up\:u-pt-vr-7 {
    padding-top: vr(7);
  }
  body .xxl-up\:u-pb-vr-7 {
    padding-bottom: vr(7);
  }
  body .xxl-up\:u-p-32px {
    padding: 2rem;
  }
  body .xxl-up\:u-pt-32px {
    padding-top: 2rem;
  }
  body .xxl-up\:u-pr-32px {
    padding-right: 2rem;
  }
  body .xxl-up\:u-pb32px {
    padding-bottom: 2rem;
  }
  body .xxl-up\:u-pl32px {
    padding-left: 2rem;
  }
  body .xxl-up\:u-pt-vr-8 {
    padding-top: vr(8);
  }
  body .xxl-up\:u-pb-vr-8 {
    padding-bottom: vr(8);
  }
  body .xxl-up\:u-p-36px {
    padding: 2.25rem;
  }
  body .xxl-up\:u-pt-36px {
    padding-top: 2.25rem;
  }
  body .xxl-up\:u-pr-36px {
    padding-right: 2.25rem;
  }
  body .xxl-up\:u-pb36px {
    padding-bottom: 2.25rem;
  }
  body .xxl-up\:u-pl36px {
    padding-left: 2.25rem;
  }
  body .xxl-up\:u-pt-vr-9 {
    padding-top: vr(9);
  }
  body .xxl-up\:u-pb-vr-9 {
    padding-bottom: vr(9);
  }
  body .xxl-up\:u-p-40px {
    padding: 2.5rem;
  }
  body .xxl-up\:u-pt-40px {
    padding-top: 2.5rem;
  }
  body .xxl-up\:u-pr-40px {
    padding-right: 2.5rem;
  }
  body .xxl-up\:u-pb40px {
    padding-bottom: 2.5rem;
  }
  body .xxl-up\:u-pl40px {
    padding-left: 2.5rem;
  }
  body .xxl-up\:u-pt-vr-10 {
    padding-top: vr(10);
  }
  body .xxl-up\:u-pb-vr-10 {
    padding-bottom: vr(10);
  }
  body .xxl-up\:u-p-44px {
    padding: 2.75rem;
  }
  body .xxl-up\:u-pt-44px {
    padding-top: 2.75rem;
  }
  body .xxl-up\:u-pr-44px {
    padding-right: 2.75rem;
  }
  body .xxl-up\:u-pb44px {
    padding-bottom: 2.75rem;
  }
  body .xxl-up\:u-pl44px {
    padding-left: 2.75rem;
  }
  body .xxl-up\:u-pt-vr-11 {
    padding-top: vr(11);
  }
  body .xxl-up\:u-pb-vr-11 {
    padding-bottom: vr(11);
  }
  body .xxl-up\:u-p-48px {
    padding: 3rem;
  }
  body .xxl-up\:u-pt-48px {
    padding-top: 3rem;
  }
  body .xxl-up\:u-pr-48px {
    padding-right: 3rem;
  }
  body .xxl-up\:u-pb48px {
    padding-bottom: 3rem;
  }
  body .xxl-up\:u-pl48px {
    padding-left: 3rem;
  }
  body .xxl-up\:u-pt-vr-12 {
    padding-top: vr(12);
  }
  body .xxl-up\:u-pb-vr-12 {
    padding-bottom: vr(12);
  }
  body .xxl-up\:u-p-52px {
    padding: 3.25rem;
  }
  body .xxl-up\:u-pt-52px {
    padding-top: 3.25rem;
  }
  body .xxl-up\:u-pr-52px {
    padding-right: 3.25rem;
  }
  body .xxl-up\:u-pb52px {
    padding-bottom: 3.25rem;
  }
  body .xxl-up\:u-pl52px {
    padding-left: 3.25rem;
  }
  body .xxl-up\:u-pt-vr-13 {
    padding-top: vr(13);
  }
  body .xxl-up\:u-pb-vr-13 {
    padding-bottom: vr(13);
  }
  body .xxl-up\:u-p-56px {
    padding: 3.5rem;
  }
  body .xxl-up\:u-pt-56px {
    padding-top: 3.5rem;
  }
  body .xxl-up\:u-pr-56px {
    padding-right: 3.5rem;
  }
  body .xxl-up\:u-pb56px {
    padding-bottom: 3.5rem;
  }
  body .xxl-up\:u-pl56px {
    padding-left: 3.5rem;
  }
  body .xxl-up\:u-pt-vr-14 {
    padding-top: vr(14);
  }
  body .xxl-up\:u-pb-vr-14 {
    padding-bottom: vr(14);
  }
  body .xxl-up\:u-p-60px {
    padding: 3.75rem;
  }
  body .xxl-up\:u-pt-60px {
    padding-top: 3.75rem;
  }
  body .xxl-up\:u-pr-60px {
    padding-right: 3.75rem;
  }
  body .xxl-up\:u-pb60px {
    padding-bottom: 3.75rem;
  }
  body .xxl-up\:u-pl60px {
    padding-left: 3.75rem;
  }
  body .xxl-up\:u-pt-vr-15 {
    padding-top: vr(15);
  }
  body .xxl-up\:u-pb-vr-15 {
    padding-bottom: vr(15);
  }
  body .xxl-up\:u-p-64px {
    padding: 4rem;
  }
  body .xxl-up\:u-pt-64px {
    padding-top: 4rem;
  }
  body .xxl-up\:u-pr-64px {
    padding-right: 4rem;
  }
  body .xxl-up\:u-pb64px {
    padding-bottom: 4rem;
  }
  body .xxl-up\:u-pl64px {
    padding-left: 4rem;
  }
  body .xxl-up\:u-pt-vr-16 {
    padding-top: vr(16);
  }
  body .xxl-up\:u-pb-vr-16 {
    padding-bottom: vr(16);
  }
  body .xxl-up\:u-p-68px {
    padding: 4.25rem;
  }
  body .xxl-up\:u-pt-68px {
    padding-top: 4.25rem;
  }
  body .xxl-up\:u-pr-68px {
    padding-right: 4.25rem;
  }
  body .xxl-up\:u-pb68px {
    padding-bottom: 4.25rem;
  }
  body .xxl-up\:u-pl68px {
    padding-left: 4.25rem;
  }
  body .xxl-up\:u-pt-vr-17 {
    padding-top: vr(17);
  }
  body .xxl-up\:u-pb-vr-17 {
    padding-bottom: vr(17);
  }
  body .xxl-up\:u-p-72px {
    padding: 4.5rem;
  }
  body .xxl-up\:u-pt-72px {
    padding-top: 4.5rem;
  }
  body .xxl-up\:u-pr-72px {
    padding-right: 4.5rem;
  }
  body .xxl-up\:u-pb72px {
    padding-bottom: 4.5rem;
  }
  body .xxl-up\:u-pl72px {
    padding-left: 4.5rem;
  }
  body .xxl-up\:u-pt-vr-18 {
    padding-top: vr(18);
  }
  body .xxl-up\:u-pb-vr-18 {
    padding-bottom: vr(18);
  }
  body .xxl-up\:u-p-76px {
    padding: 4.75rem;
  }
  body .xxl-up\:u-pt-76px {
    padding-top: 4.75rem;
  }
  body .xxl-up\:u-pr-76px {
    padding-right: 4.75rem;
  }
  body .xxl-up\:u-pb76px {
    padding-bottom: 4.75rem;
  }
  body .xxl-up\:u-pl76px {
    padding-left: 4.75rem;
  }
  body .xxl-up\:u-pt-vr-19 {
    padding-top: vr(19);
  }
  body .xxl-up\:u-pb-vr-19 {
    padding-bottom: vr(19);
  }
  body .xxl-up\:u-p-80px {
    padding: 5rem;
  }
  body .xxl-up\:u-pt-80px {
    padding-top: 5rem;
  }
  body .xxl-up\:u-pr-80px {
    padding-right: 5rem;
  }
  body .xxl-up\:u-pb80px {
    padding-bottom: 5rem;
  }
  body .xxl-up\:u-pl80px {
    padding-left: 5rem;
  }
  body .xxl-up\:u-pt-vr-20 {
    padding-top: vr(20);
  }
  body .xxl-up\:u-pb-vr-20 {
    padding-bottom: vr(20);
  }
}

html body .is-removed-list-style {
  margin-left: 0;
  list-style-type: none;
}

.u-tbl-auto {
  table-layout: auto !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-tbl-auto {
    table-layout: auto !important;
  }
}
.xs-up\:u-tbl-auto {
  table-layout: auto !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-tbl-auto {
    table-layout: auto !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-tbl-auto {
    table-layout: auto !important;
  }
}
.xxl-down\:u-tbl-auto {
  table-layout: auto !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-tbl-auto {
    table-layout: auto !important;
  }
}
.u-tbl-fixed {
  table-layout: fixed !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
.xs-up\:u-tbl-fixed {
  table-layout: fixed !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
.xxl-down\:u-tbl-fixed {
  table-layout: fixed !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-tbl-fixed {
    table-layout: fixed !important;
  }
}
body .u-w-0 {
  width: 0rem;
}
body .u-w-4px {
  width: 0.25rem;
}
body .u-w-8px {
  width: 0.5rem;
}
body .u-w-12px {
  width: 0.75rem;
}
body .u-w-16px {
  width: 1rem;
}
body .u-w-20px {
  width: 1.25rem;
}
body .u-w-24px {
  width: 1.5rem;
}
body .u-w-28px {
  width: 1.75rem;
}
body .u-w-32px {
  width: 2rem;
}
body .u-w-36px {
  width: 2.25rem;
}
body .u-w-40px {
  width: 2.5rem;
}
body .u-w-44px {
  width: 2.75rem;
}
body .u-w-48px {
  width: 3rem;
}
body .u-w-52px {
  width: 3.25rem;
}
body .u-w-56px {
  width: 3.5rem;
}
body .u-w-60px {
  width: 3.75rem;
}
body .u-w-64px {
  width: 4rem;
}
body .u-w-68px {
  width: 4.25rem;
}
body .u-w-72px {
  width: 4.5rem;
}
body .u-w-76px {
  width: 4.75rem;
}
body .u-w-80px {
  width: 5rem;
}
@media (max-width: 33.9375em) {
  body .xs\:u-w-0 {
    width: 0rem;
  }
  body .xs\:u-w-4px {
    width: 0.25rem;
  }
  body .xs\:u-w-8px {
    width: 0.5rem;
  }
  body .xs\:u-w-12px {
    width: 0.75rem;
  }
  body .xs\:u-w-16px {
    width: 1rem;
  }
  body .xs\:u-w-20px {
    width: 1.25rem;
  }
  body .xs\:u-w-24px {
    width: 1.5rem;
  }
  body .xs\:u-w-28px {
    width: 1.75rem;
  }
  body .xs\:u-w-32px {
    width: 2rem;
  }
  body .xs\:u-w-36px {
    width: 2.25rem;
  }
  body .xs\:u-w-40px {
    width: 2.5rem;
  }
  body .xs\:u-w-44px {
    width: 2.75rem;
  }
  body .xs\:u-w-48px {
    width: 3rem;
  }
  body .xs\:u-w-52px {
    width: 3.25rem;
  }
  body .xs\:u-w-56px {
    width: 3.5rem;
  }
  body .xs\:u-w-60px {
    width: 3.75rem;
  }
  body .xs\:u-w-64px {
    width: 4rem;
  }
  body .xs\:u-w-68px {
    width: 4.25rem;
  }
  body .xs\:u-w-72px {
    width: 4.5rem;
  }
  body .xs\:u-w-76px {
    width: 4.75rem;
  }
  body .xs\:u-w-80px {
    width: 5rem;
  }
}
@media (max-width: 33.9375em) {
  body .xs-down\:u-w-0 {
    width: 0rem;
  }
  body .xs-down\:u-w-4px {
    width: 0.25rem;
  }
  body .xs-down\:u-w-8px {
    width: 0.5rem;
  }
  body .xs-down\:u-w-12px {
    width: 0.75rem;
  }
  body .xs-down\:u-w-16px {
    width: 1rem;
  }
  body .xs-down\:u-w-20px {
    width: 1.25rem;
  }
  body .xs-down\:u-w-24px {
    width: 1.5rem;
  }
  body .xs-down\:u-w-28px {
    width: 1.75rem;
  }
  body .xs-down\:u-w-32px {
    width: 2rem;
  }
  body .xs-down\:u-w-36px {
    width: 2.25rem;
  }
  body .xs-down\:u-w-40px {
    width: 2.5rem;
  }
  body .xs-down\:u-w-44px {
    width: 2.75rem;
  }
  body .xs-down\:u-w-48px {
    width: 3rem;
  }
  body .xs-down\:u-w-52px {
    width: 3.25rem;
  }
  body .xs-down\:u-w-56px {
    width: 3.5rem;
  }
  body .xs-down\:u-w-60px {
    width: 3.75rem;
  }
  body .xs-down\:u-w-64px {
    width: 4rem;
  }
  body .xs-down\:u-w-68px {
    width: 4.25rem;
  }
  body .xs-down\:u-w-72px {
    width: 4.5rem;
  }
  body .xs-down\:u-w-76px {
    width: 4.75rem;
  }
  body .xs-down\:u-w-80px {
    width: 5rem;
  }
}
body .xs-up\:u-w-0 {
  width: 0rem;
}
body .xs-up\:u-w-4px {
  width: 0.25rem;
}
body .xs-up\:u-w-8px {
  width: 0.5rem;
}
body .xs-up\:u-w-12px {
  width: 0.75rem;
}
body .xs-up\:u-w-16px {
  width: 1rem;
}
body .xs-up\:u-w-20px {
  width: 1.25rem;
}
body .xs-up\:u-w-24px {
  width: 1.5rem;
}
body .xs-up\:u-w-28px {
  width: 1.75rem;
}
body .xs-up\:u-w-32px {
  width: 2rem;
}
body .xs-up\:u-w-36px {
  width: 2.25rem;
}
body .xs-up\:u-w-40px {
  width: 2.5rem;
}
body .xs-up\:u-w-44px {
  width: 2.75rem;
}
body .xs-up\:u-w-48px {
  width: 3rem;
}
body .xs-up\:u-w-52px {
  width: 3.25rem;
}
body .xs-up\:u-w-56px {
  width: 3.5rem;
}
body .xs-up\:u-w-60px {
  width: 3.75rem;
}
body .xs-up\:u-w-64px {
  width: 4rem;
}
body .xs-up\:u-w-68px {
  width: 4.25rem;
}
body .xs-up\:u-w-72px {
  width: 4.5rem;
}
body .xs-up\:u-w-76px {
  width: 4.75rem;
}
body .xs-up\:u-w-80px {
  width: 5rem;
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  body .sm\:u-w-0 {
    width: 0rem;
  }
  body .sm\:u-w-4px {
    width: 0.25rem;
  }
  body .sm\:u-w-8px {
    width: 0.5rem;
  }
  body .sm\:u-w-12px {
    width: 0.75rem;
  }
  body .sm\:u-w-16px {
    width: 1rem;
  }
  body .sm\:u-w-20px {
    width: 1.25rem;
  }
  body .sm\:u-w-24px {
    width: 1.5rem;
  }
  body .sm\:u-w-28px {
    width: 1.75rem;
  }
  body .sm\:u-w-32px {
    width: 2rem;
  }
  body .sm\:u-w-36px {
    width: 2.25rem;
  }
  body .sm\:u-w-40px {
    width: 2.5rem;
  }
  body .sm\:u-w-44px {
    width: 2.75rem;
  }
  body .sm\:u-w-48px {
    width: 3rem;
  }
  body .sm\:u-w-52px {
    width: 3.25rem;
  }
  body .sm\:u-w-56px {
    width: 3.5rem;
  }
  body .sm\:u-w-60px {
    width: 3.75rem;
  }
  body .sm\:u-w-64px {
    width: 4rem;
  }
  body .sm\:u-w-68px {
    width: 4.25rem;
  }
  body .sm\:u-w-72px {
    width: 4.5rem;
  }
  body .sm\:u-w-76px {
    width: 4.75rem;
  }
  body .sm\:u-w-80px {
    width: 5rem;
  }
}
@media (max-width: 47.9375em) {
  body .sm-down\:u-w-0 {
    width: 0rem;
  }
  body .sm-down\:u-w-4px {
    width: 0.25rem;
  }
  body .sm-down\:u-w-8px {
    width: 0.5rem;
  }
  body .sm-down\:u-w-12px {
    width: 0.75rem;
  }
  body .sm-down\:u-w-16px {
    width: 1rem;
  }
  body .sm-down\:u-w-20px {
    width: 1.25rem;
  }
  body .sm-down\:u-w-24px {
    width: 1.5rem;
  }
  body .sm-down\:u-w-28px {
    width: 1.75rem;
  }
  body .sm-down\:u-w-32px {
    width: 2rem;
  }
  body .sm-down\:u-w-36px {
    width: 2.25rem;
  }
  body .sm-down\:u-w-40px {
    width: 2.5rem;
  }
  body .sm-down\:u-w-44px {
    width: 2.75rem;
  }
  body .sm-down\:u-w-48px {
    width: 3rem;
  }
  body .sm-down\:u-w-52px {
    width: 3.25rem;
  }
  body .sm-down\:u-w-56px {
    width: 3.5rem;
  }
  body .sm-down\:u-w-60px {
    width: 3.75rem;
  }
  body .sm-down\:u-w-64px {
    width: 4rem;
  }
  body .sm-down\:u-w-68px {
    width: 4.25rem;
  }
  body .sm-down\:u-w-72px {
    width: 4.5rem;
  }
  body .sm-down\:u-w-76px {
    width: 4.75rem;
  }
  body .sm-down\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 34em) {
  body .sm-up\:u-w-0 {
    width: 0rem;
  }
  body .sm-up\:u-w-4px {
    width: 0.25rem;
  }
  body .sm-up\:u-w-8px {
    width: 0.5rem;
  }
  body .sm-up\:u-w-12px {
    width: 0.75rem;
  }
  body .sm-up\:u-w-16px {
    width: 1rem;
  }
  body .sm-up\:u-w-20px {
    width: 1.25rem;
  }
  body .sm-up\:u-w-24px {
    width: 1.5rem;
  }
  body .sm-up\:u-w-28px {
    width: 1.75rem;
  }
  body .sm-up\:u-w-32px {
    width: 2rem;
  }
  body .sm-up\:u-w-36px {
    width: 2.25rem;
  }
  body .sm-up\:u-w-40px {
    width: 2.5rem;
  }
  body .sm-up\:u-w-44px {
    width: 2.75rem;
  }
  body .sm-up\:u-w-48px {
    width: 3rem;
  }
  body .sm-up\:u-w-52px {
    width: 3.25rem;
  }
  body .sm-up\:u-w-56px {
    width: 3.5rem;
  }
  body .sm-up\:u-w-60px {
    width: 3.75rem;
  }
  body .sm-up\:u-w-64px {
    width: 4rem;
  }
  body .sm-up\:u-w-68px {
    width: 4.25rem;
  }
  body .sm-up\:u-w-72px {
    width: 4.5rem;
  }
  body .sm-up\:u-w-76px {
    width: 4.75rem;
  }
  body .sm-up\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  body .md\:u-w-0 {
    width: 0rem;
  }
  body .md\:u-w-4px {
    width: 0.25rem;
  }
  body .md\:u-w-8px {
    width: 0.5rem;
  }
  body .md\:u-w-12px {
    width: 0.75rem;
  }
  body .md\:u-w-16px {
    width: 1rem;
  }
  body .md\:u-w-20px {
    width: 1.25rem;
  }
  body .md\:u-w-24px {
    width: 1.5rem;
  }
  body .md\:u-w-28px {
    width: 1.75rem;
  }
  body .md\:u-w-32px {
    width: 2rem;
  }
  body .md\:u-w-36px {
    width: 2.25rem;
  }
  body .md\:u-w-40px {
    width: 2.5rem;
  }
  body .md\:u-w-44px {
    width: 2.75rem;
  }
  body .md\:u-w-48px {
    width: 3rem;
  }
  body .md\:u-w-52px {
    width: 3.25rem;
  }
  body .md\:u-w-56px {
    width: 3.5rem;
  }
  body .md\:u-w-60px {
    width: 3.75rem;
  }
  body .md\:u-w-64px {
    width: 4rem;
  }
  body .md\:u-w-68px {
    width: 4.25rem;
  }
  body .md\:u-w-72px {
    width: 4.5rem;
  }
  body .md\:u-w-76px {
    width: 4.75rem;
  }
  body .md\:u-w-80px {
    width: 5rem;
  }
}
@media (max-width: 61.9375em) {
  body .md-down\:u-w-0 {
    width: 0rem;
  }
  body .md-down\:u-w-4px {
    width: 0.25rem;
  }
  body .md-down\:u-w-8px {
    width: 0.5rem;
  }
  body .md-down\:u-w-12px {
    width: 0.75rem;
  }
  body .md-down\:u-w-16px {
    width: 1rem;
  }
  body .md-down\:u-w-20px {
    width: 1.25rem;
  }
  body .md-down\:u-w-24px {
    width: 1.5rem;
  }
  body .md-down\:u-w-28px {
    width: 1.75rem;
  }
  body .md-down\:u-w-32px {
    width: 2rem;
  }
  body .md-down\:u-w-36px {
    width: 2.25rem;
  }
  body .md-down\:u-w-40px {
    width: 2.5rem;
  }
  body .md-down\:u-w-44px {
    width: 2.75rem;
  }
  body .md-down\:u-w-48px {
    width: 3rem;
  }
  body .md-down\:u-w-52px {
    width: 3.25rem;
  }
  body .md-down\:u-w-56px {
    width: 3.5rem;
  }
  body .md-down\:u-w-60px {
    width: 3.75rem;
  }
  body .md-down\:u-w-64px {
    width: 4rem;
  }
  body .md-down\:u-w-68px {
    width: 4.25rem;
  }
  body .md-down\:u-w-72px {
    width: 4.5rem;
  }
  body .md-down\:u-w-76px {
    width: 4.75rem;
  }
  body .md-down\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 48em) {
  body .md-up\:u-w-0 {
    width: 0rem;
  }
  body .md-up\:u-w-4px {
    width: 0.25rem;
  }
  body .md-up\:u-w-8px {
    width: 0.5rem;
  }
  body .md-up\:u-w-12px {
    width: 0.75rem;
  }
  body .md-up\:u-w-16px {
    width: 1rem;
  }
  body .md-up\:u-w-20px {
    width: 1.25rem;
  }
  body .md-up\:u-w-24px {
    width: 1.5rem;
  }
  body .md-up\:u-w-28px {
    width: 1.75rem;
  }
  body .md-up\:u-w-32px {
    width: 2rem;
  }
  body .md-up\:u-w-36px {
    width: 2.25rem;
  }
  body .md-up\:u-w-40px {
    width: 2.5rem;
  }
  body .md-up\:u-w-44px {
    width: 2.75rem;
  }
  body .md-up\:u-w-48px {
    width: 3rem;
  }
  body .md-up\:u-w-52px {
    width: 3.25rem;
  }
  body .md-up\:u-w-56px {
    width: 3.5rem;
  }
  body .md-up\:u-w-60px {
    width: 3.75rem;
  }
  body .md-up\:u-w-64px {
    width: 4rem;
  }
  body .md-up\:u-w-68px {
    width: 4.25rem;
  }
  body .md-up\:u-w-72px {
    width: 4.5rem;
  }
  body .md-up\:u-w-76px {
    width: 4.75rem;
  }
  body .md-up\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  body .lg\:u-w-0 {
    width: 0rem;
  }
  body .lg\:u-w-4px {
    width: 0.25rem;
  }
  body .lg\:u-w-8px {
    width: 0.5rem;
  }
  body .lg\:u-w-12px {
    width: 0.75rem;
  }
  body .lg\:u-w-16px {
    width: 1rem;
  }
  body .lg\:u-w-20px {
    width: 1.25rem;
  }
  body .lg\:u-w-24px {
    width: 1.5rem;
  }
  body .lg\:u-w-28px {
    width: 1.75rem;
  }
  body .lg\:u-w-32px {
    width: 2rem;
  }
  body .lg\:u-w-36px {
    width: 2.25rem;
  }
  body .lg\:u-w-40px {
    width: 2.5rem;
  }
  body .lg\:u-w-44px {
    width: 2.75rem;
  }
  body .lg\:u-w-48px {
    width: 3rem;
  }
  body .lg\:u-w-52px {
    width: 3.25rem;
  }
  body .lg\:u-w-56px {
    width: 3.5rem;
  }
  body .lg\:u-w-60px {
    width: 3.75rem;
  }
  body .lg\:u-w-64px {
    width: 4rem;
  }
  body .lg\:u-w-68px {
    width: 4.25rem;
  }
  body .lg\:u-w-72px {
    width: 4.5rem;
  }
  body .lg\:u-w-76px {
    width: 4.75rem;
  }
  body .lg\:u-w-80px {
    width: 5rem;
  }
}
@media (max-width: 74.9375em) {
  body .lg-down\:u-w-0 {
    width: 0rem;
  }
  body .lg-down\:u-w-4px {
    width: 0.25rem;
  }
  body .lg-down\:u-w-8px {
    width: 0.5rem;
  }
  body .lg-down\:u-w-12px {
    width: 0.75rem;
  }
  body .lg-down\:u-w-16px {
    width: 1rem;
  }
  body .lg-down\:u-w-20px {
    width: 1.25rem;
  }
  body .lg-down\:u-w-24px {
    width: 1.5rem;
  }
  body .lg-down\:u-w-28px {
    width: 1.75rem;
  }
  body .lg-down\:u-w-32px {
    width: 2rem;
  }
  body .lg-down\:u-w-36px {
    width: 2.25rem;
  }
  body .lg-down\:u-w-40px {
    width: 2.5rem;
  }
  body .lg-down\:u-w-44px {
    width: 2.75rem;
  }
  body .lg-down\:u-w-48px {
    width: 3rem;
  }
  body .lg-down\:u-w-52px {
    width: 3.25rem;
  }
  body .lg-down\:u-w-56px {
    width: 3.5rem;
  }
  body .lg-down\:u-w-60px {
    width: 3.75rem;
  }
  body .lg-down\:u-w-64px {
    width: 4rem;
  }
  body .lg-down\:u-w-68px {
    width: 4.25rem;
  }
  body .lg-down\:u-w-72px {
    width: 4.5rem;
  }
  body .lg-down\:u-w-76px {
    width: 4.75rem;
  }
  body .lg-down\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 62em) {
  body .lg-up\:u-w-0 {
    width: 0rem;
  }
  body .lg-up\:u-w-4px {
    width: 0.25rem;
  }
  body .lg-up\:u-w-8px {
    width: 0.5rem;
  }
  body .lg-up\:u-w-12px {
    width: 0.75rem;
  }
  body .lg-up\:u-w-16px {
    width: 1rem;
  }
  body .lg-up\:u-w-20px {
    width: 1.25rem;
  }
  body .lg-up\:u-w-24px {
    width: 1.5rem;
  }
  body .lg-up\:u-w-28px {
    width: 1.75rem;
  }
  body .lg-up\:u-w-32px {
    width: 2rem;
  }
  body .lg-up\:u-w-36px {
    width: 2.25rem;
  }
  body .lg-up\:u-w-40px {
    width: 2.5rem;
  }
  body .lg-up\:u-w-44px {
    width: 2.75rem;
  }
  body .lg-up\:u-w-48px {
    width: 3rem;
  }
  body .lg-up\:u-w-52px {
    width: 3.25rem;
  }
  body .lg-up\:u-w-56px {
    width: 3.5rem;
  }
  body .lg-up\:u-w-60px {
    width: 3.75rem;
  }
  body .lg-up\:u-w-64px {
    width: 4rem;
  }
  body .lg-up\:u-w-68px {
    width: 4.25rem;
  }
  body .lg-up\:u-w-72px {
    width: 4.5rem;
  }
  body .lg-up\:u-w-76px {
    width: 4.75rem;
  }
  body .lg-up\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  body .xl\:u-w-0 {
    width: 0rem;
  }
  body .xl\:u-w-4px {
    width: 0.25rem;
  }
  body .xl\:u-w-8px {
    width: 0.5rem;
  }
  body .xl\:u-w-12px {
    width: 0.75rem;
  }
  body .xl\:u-w-16px {
    width: 1rem;
  }
  body .xl\:u-w-20px {
    width: 1.25rem;
  }
  body .xl\:u-w-24px {
    width: 1.5rem;
  }
  body .xl\:u-w-28px {
    width: 1.75rem;
  }
  body .xl\:u-w-32px {
    width: 2rem;
  }
  body .xl\:u-w-36px {
    width: 2.25rem;
  }
  body .xl\:u-w-40px {
    width: 2.5rem;
  }
  body .xl\:u-w-44px {
    width: 2.75rem;
  }
  body .xl\:u-w-48px {
    width: 3rem;
  }
  body .xl\:u-w-52px {
    width: 3.25rem;
  }
  body .xl\:u-w-56px {
    width: 3.5rem;
  }
  body .xl\:u-w-60px {
    width: 3.75rem;
  }
  body .xl\:u-w-64px {
    width: 4rem;
  }
  body .xl\:u-w-68px {
    width: 4.25rem;
  }
  body .xl\:u-w-72px {
    width: 4.5rem;
  }
  body .xl\:u-w-76px {
    width: 4.75rem;
  }
  body .xl\:u-w-80px {
    width: 5rem;
  }
}
@media (max-width: 89.9375em) {
  body .xl-down\:u-w-0 {
    width: 0rem;
  }
  body .xl-down\:u-w-4px {
    width: 0.25rem;
  }
  body .xl-down\:u-w-8px {
    width: 0.5rem;
  }
  body .xl-down\:u-w-12px {
    width: 0.75rem;
  }
  body .xl-down\:u-w-16px {
    width: 1rem;
  }
  body .xl-down\:u-w-20px {
    width: 1.25rem;
  }
  body .xl-down\:u-w-24px {
    width: 1.5rem;
  }
  body .xl-down\:u-w-28px {
    width: 1.75rem;
  }
  body .xl-down\:u-w-32px {
    width: 2rem;
  }
  body .xl-down\:u-w-36px {
    width: 2.25rem;
  }
  body .xl-down\:u-w-40px {
    width: 2.5rem;
  }
  body .xl-down\:u-w-44px {
    width: 2.75rem;
  }
  body .xl-down\:u-w-48px {
    width: 3rem;
  }
  body .xl-down\:u-w-52px {
    width: 3.25rem;
  }
  body .xl-down\:u-w-56px {
    width: 3.5rem;
  }
  body .xl-down\:u-w-60px {
    width: 3.75rem;
  }
  body .xl-down\:u-w-64px {
    width: 4rem;
  }
  body .xl-down\:u-w-68px {
    width: 4.25rem;
  }
  body .xl-down\:u-w-72px {
    width: 4.5rem;
  }
  body .xl-down\:u-w-76px {
    width: 4.75rem;
  }
  body .xl-down\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 75em) {
  body .xl-up\:u-w-0 {
    width: 0rem;
  }
  body .xl-up\:u-w-4px {
    width: 0.25rem;
  }
  body .xl-up\:u-w-8px {
    width: 0.5rem;
  }
  body .xl-up\:u-w-12px {
    width: 0.75rem;
  }
  body .xl-up\:u-w-16px {
    width: 1rem;
  }
  body .xl-up\:u-w-20px {
    width: 1.25rem;
  }
  body .xl-up\:u-w-24px {
    width: 1.5rem;
  }
  body .xl-up\:u-w-28px {
    width: 1.75rem;
  }
  body .xl-up\:u-w-32px {
    width: 2rem;
  }
  body .xl-up\:u-w-36px {
    width: 2.25rem;
  }
  body .xl-up\:u-w-40px {
    width: 2.5rem;
  }
  body .xl-up\:u-w-44px {
    width: 2.75rem;
  }
  body .xl-up\:u-w-48px {
    width: 3rem;
  }
  body .xl-up\:u-w-52px {
    width: 3.25rem;
  }
  body .xl-up\:u-w-56px {
    width: 3.5rem;
  }
  body .xl-up\:u-w-60px {
    width: 3.75rem;
  }
  body .xl-up\:u-w-64px {
    width: 4rem;
  }
  body .xl-up\:u-w-68px {
    width: 4.25rem;
  }
  body .xl-up\:u-w-72px {
    width: 4.5rem;
  }
  body .xl-up\:u-w-76px {
    width: 4.75rem;
  }
  body .xl-up\:u-w-80px {
    width: 5rem;
  }
}
@media (min-width: 90em) {
  body .xxl\:u-w-0 {
    width: 0rem;
  }
  body .xxl\:u-w-4px {
    width: 0.25rem;
  }
  body .xxl\:u-w-8px {
    width: 0.5rem;
  }
  body .xxl\:u-w-12px {
    width: 0.75rem;
  }
  body .xxl\:u-w-16px {
    width: 1rem;
  }
  body .xxl\:u-w-20px {
    width: 1.25rem;
  }
  body .xxl\:u-w-24px {
    width: 1.5rem;
  }
  body .xxl\:u-w-28px {
    width: 1.75rem;
  }
  body .xxl\:u-w-32px {
    width: 2rem;
  }
  body .xxl\:u-w-36px {
    width: 2.25rem;
  }
  body .xxl\:u-w-40px {
    width: 2.5rem;
  }
  body .xxl\:u-w-44px {
    width: 2.75rem;
  }
  body .xxl\:u-w-48px {
    width: 3rem;
  }
  body .xxl\:u-w-52px {
    width: 3.25rem;
  }
  body .xxl\:u-w-56px {
    width: 3.5rem;
  }
  body .xxl\:u-w-60px {
    width: 3.75rem;
  }
  body .xxl\:u-w-64px {
    width: 4rem;
  }
  body .xxl\:u-w-68px {
    width: 4.25rem;
  }
  body .xxl\:u-w-72px {
    width: 4.5rem;
  }
  body .xxl\:u-w-76px {
    width: 4.75rem;
  }
  body .xxl\:u-w-80px {
    width: 5rem;
  }
}
body .xxl-down\:u-w-0 {
  width: 0rem;
}
body .xxl-down\:u-w-4px {
  width: 0.25rem;
}
body .xxl-down\:u-w-8px {
  width: 0.5rem;
}
body .xxl-down\:u-w-12px {
  width: 0.75rem;
}
body .xxl-down\:u-w-16px {
  width: 1rem;
}
body .xxl-down\:u-w-20px {
  width: 1.25rem;
}
body .xxl-down\:u-w-24px {
  width: 1.5rem;
}
body .xxl-down\:u-w-28px {
  width: 1.75rem;
}
body .xxl-down\:u-w-32px {
  width: 2rem;
}
body .xxl-down\:u-w-36px {
  width: 2.25rem;
}
body .xxl-down\:u-w-40px {
  width: 2.5rem;
}
body .xxl-down\:u-w-44px {
  width: 2.75rem;
}
body .xxl-down\:u-w-48px {
  width: 3rem;
}
body .xxl-down\:u-w-52px {
  width: 3.25rem;
}
body .xxl-down\:u-w-56px {
  width: 3.5rem;
}
body .xxl-down\:u-w-60px {
  width: 3.75rem;
}
body .xxl-down\:u-w-64px {
  width: 4rem;
}
body .xxl-down\:u-w-68px {
  width: 4.25rem;
}
body .xxl-down\:u-w-72px {
  width: 4.5rem;
}
body .xxl-down\:u-w-76px {
  width: 4.75rem;
}
body .xxl-down\:u-w-80px {
  width: 5rem;
}
@media (min-width: 90em) {
  body .xxl-up\:u-w-0 {
    width: 0rem;
  }
  body .xxl-up\:u-w-4px {
    width: 0.25rem;
  }
  body .xxl-up\:u-w-8px {
    width: 0.5rem;
  }
  body .xxl-up\:u-w-12px {
    width: 0.75rem;
  }
  body .xxl-up\:u-w-16px {
    width: 1rem;
  }
  body .xxl-up\:u-w-20px {
    width: 1.25rem;
  }
  body .xxl-up\:u-w-24px {
    width: 1.5rem;
  }
  body .xxl-up\:u-w-28px {
    width: 1.75rem;
  }
  body .xxl-up\:u-w-32px {
    width: 2rem;
  }
  body .xxl-up\:u-w-36px {
    width: 2.25rem;
  }
  body .xxl-up\:u-w-40px {
    width: 2.5rem;
  }
  body .xxl-up\:u-w-44px {
    width: 2.75rem;
  }
  body .xxl-up\:u-w-48px {
    width: 3rem;
  }
  body .xxl-up\:u-w-52px {
    width: 3.25rem;
  }
  body .xxl-up\:u-w-56px {
    width: 3.5rem;
  }
  body .xxl-up\:u-w-60px {
    width: 3.75rem;
  }
  body .xxl-up\:u-w-64px {
    width: 4rem;
  }
  body .xxl-up\:u-w-68px {
    width: 4.25rem;
  }
  body .xxl-up\:u-w-72px {
    width: 4.5rem;
  }
  body .xxl-up\:u-w-76px {
    width: 4.75rem;
  }
  body .xxl-up\:u-w-80px {
    width: 5rem;
  }
}

.u-as-auto {
  align-self: auto;
}

@media (max-width: 33.9375em) {
  .xs\:u-as-auto {
    align-self: auto;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-as-auto {
    align-self: auto;
  }
}
.xs-up\:u-as-auto {
  align-self: auto;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-as-auto {
    align-self: auto;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-as-auto {
    align-self: auto;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 48em) {
  .md-up\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-as-auto {
    align-self: auto;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-as-auto {
    align-self: auto;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-as-auto {
    align-self: auto;
  }
}
@media (min-width: 90em) {
  .xxl\:u-as-auto {
    align-self: auto;
  }
}
.xxl-down\:u-as-auto {
  align-self: auto;
}

@media (min-width: 90em) {
  .xxl-up\:u-as-auto {
    align-self: auto;
  }
}
.u-as-center {
  align-self: center;
}

@media (max-width: 33.9375em) {
  .xs\:u-as-center {
    align-self: center;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-as-center {
    align-self: center;
  }
}
.xs-up\:u-as-center {
  align-self: center;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-as-center {
    align-self: center;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-as-center {
    align-self: center;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 48em) {
  .md-up\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-as-center {
    align-self: center;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-as-center {
    align-self: center;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-as-center {
    align-self: center;
  }
}
@media (min-width: 90em) {
  .xxl\:u-as-center {
    align-self: center;
  }
}
.xxl-down\:u-as-center {
  align-self: center;
}

@media (min-width: 90em) {
  .xxl-up\:u-as-center {
    align-self: center;
  }
}
.u-as-flex-end {
  align-self: flex-end;
}

@media (max-width: 33.9375em) {
  .xs\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-as-flex-end {
    align-self: flex-end;
  }
}
.xs-up\:u-as-flex-end {
  align-self: flex-end;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 48em) {
  .md-up\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-as-flex-end {
    align-self: flex-end;
  }
}
@media (min-width: 90em) {
  .xxl\:u-as-flex-end {
    align-self: flex-end;
  }
}
.xxl-down\:u-as-flex-end {
  align-self: flex-end;
}

@media (min-width: 90em) {
  .xxl-up\:u-as-flex-end {
    align-self: flex-end;
  }
}
.u-as-flex-start {
  align-self: flex-start;
}

@media (max-width: 33.9375em) {
  .xs\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-as-flex-start {
    align-self: flex-start;
  }
}
.xs-up\:u-as-flex-start {
  align-self: flex-start;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 48em) {
  .md-up\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-as-flex-start {
    align-self: flex-start;
  }
}
@media (min-width: 90em) {
  .xxl\:u-as-flex-start {
    align-self: flex-start;
  }
}
.xxl-down\:u-as-flex-start {
  align-self: flex-start;
}

@media (min-width: 90em) {
  .xxl-up\:u-as-flex-start {
    align-self: flex-start;
  }
}
.u-as-baseline {
  align-self: baseline;
}

@media (max-width: 33.9375em) {
  .xs\:u-as-baseline {
    align-self: baseline;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-as-baseline {
    align-self: baseline;
  }
}
.xs-up\:u-as-baseline {
  align-self: baseline;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-as-baseline {
    align-self: baseline;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-as-baseline {
    align-self: baseline;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 48em) {
  .md-up\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-as-baseline {
    align-self: baseline;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-as-baseline {
    align-self: baseline;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-as-baseline {
    align-self: baseline;
  }
}
@media (min-width: 90em) {
  .xxl\:u-as-baseline {
    align-self: baseline;
  }
}
.xxl-down\:u-as-baseline {
  align-self: baseline;
}

@media (min-width: 90em) {
  .xxl-up\:u-as-baseline {
    align-self: baseline;
  }
}
.u-as-stretch {
  align-self: stretch;
}

@media (max-width: 33.9375em) {
  .xs\:u-as-stretch {
    align-self: stretch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-as-stretch {
    align-self: stretch;
  }
}
.xs-up\:u-as-stretch {
  align-self: stretch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-as-stretch {
    align-self: stretch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-as-stretch {
    align-self: stretch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-as-stretch {
    align-self: stretch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-as-stretch {
    align-self: stretch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-as-stretch {
    align-self: stretch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-as-stretch {
    align-self: stretch;
  }
}
.xxl-down\:u-as-stretch {
  align-self: stretch;
}

@media (min-width: 90em) {
  .xxl-up\:u-as-stretch {
    align-self: stretch;
  }
}
.u-bdrs-xs {
  border-radius: 1px;
}

@media (max-width: 33.9375em) {
  .xs\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-bdrs-xs {
    border-radius: 1px;
  }
}
.xs-up\:u-bdrs-xs {
  border-radius: 1px;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 48em) {
  .md-up\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-bdrs-xs {
    border-radius: 1px;
  }
}
@media (min-width: 90em) {
  .xxl\:u-bdrs-xs {
    border-radius: 1px;
  }
}
.xxl-down\:u-bdrs-xs {
  border-radius: 1px;
}

@media (min-width: 90em) {
  .xxl-up\:u-bdrs-xs {
    border-radius: 1px;
  }
}
.u-bdrs-sm {
  border-radius: 2px;
}

@media (max-width: 33.9375em) {
  .xs\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-bdrs-sm {
    border-radius: 2px;
  }
}
.xs-up\:u-bdrs-sm {
  border-radius: 2px;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 48em) {
  .md-up\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-bdrs-sm {
    border-radius: 2px;
  }
}
@media (min-width: 90em) {
  .xxl\:u-bdrs-sm {
    border-radius: 2px;
  }
}
.xxl-down\:u-bdrs-sm {
  border-radius: 2px;
}

@media (min-width: 90em) {
  .xxl-up\:u-bdrs-sm {
    border-radius: 2px;
  }
}
.u-bdrs-md {
  border-radius: 4px;
}

@media (max-width: 33.9375em) {
  .xs\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-bdrs-md {
    border-radius: 4px;
  }
}
.xs-up\:u-bdrs-md {
  border-radius: 4px;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 48em) {
  .md-up\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-bdrs-md {
    border-radius: 4px;
  }
}
@media (min-width: 90em) {
  .xxl\:u-bdrs-md {
    border-radius: 4px;
  }
}
.xxl-down\:u-bdrs-md {
  border-radius: 4px;
}

@media (min-width: 90em) {
  .xxl-up\:u-bdrs-md {
    border-radius: 4px;
  }
}
.u-bdrs-lg {
  border-radius: 6px;
}

@media (max-width: 33.9375em) {
  .xs\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-bdrs-lg {
    border-radius: 6px;
  }
}
.xs-up\:u-bdrs-lg {
  border-radius: 6px;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 48em) {
  .md-up\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-bdrs-lg {
    border-radius: 6px;
  }
}
@media (min-width: 90em) {
  .xxl\:u-bdrs-lg {
    border-radius: 6px;
  }
}
.xxl-down\:u-bdrs-lg {
  border-radius: 6px;
}

@media (min-width: 90em) {
  .xxl-up\:u-bdrs-lg {
    border-radius: 6px;
  }
}
.u-bdrs-xl {
  border-radius: 8px;
}

@media (max-width: 33.9375em) {
  .xs\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-bdrs-xl {
    border-radius: 8px;
  }
}
.xs-up\:u-bdrs-xl {
  border-radius: 8px;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 48em) {
  .md-up\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-bdrs-xl {
    border-radius: 8px;
  }
}
@media (min-width: 90em) {
  .xxl\:u-bdrs-xl {
    border-radius: 8px;
  }
}
.xxl-down\:u-bdrs-xl {
  border-radius: 8px;
}

@media (min-width: 90em) {
  .xxl-up\:u-bdrs-xl {
    border-radius: 8px;
  }
}
.u-d-none {
  display: none !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-none {
    display: none !important;
  }
}
.xs-up\:u-d-none {
  display: none !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-none {
    display: none !important;
  }
}
.xxl-down\:u-d-none {
  display: none !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-none {
    display: none !important;
  }
}
.u-d-inline {
  display: inline !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-inline {
    display: inline !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-inline {
    display: inline !important;
  }
}
.xs-up\:u-d-inline {
  display: inline !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-inline {
    display: inline !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-inline {
    display: inline !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-inline {
    display: inline !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-inline {
    display: inline !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-inline {
    display: inline !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-inline {
    display: inline !important;
  }
}
.xxl-down\:u-d-inline {
  display: inline !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-inline {
    display: inline !important;
  }
}
.u-d-block {
  display: block !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-block {
    display: block !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-block {
    display: block !important;
  }
}
.xs-up\:u-d-block {
  display: block !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-block {
    display: block !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-block {
    display: block !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-block {
    display: block !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-block {
    display: block !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-block {
    display: block !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-block {
    display: block !important;
  }
}
.xxl-down\:u-d-block {
  display: block !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-block {
    display: block !important;
  }
}
.u-d-list-item {
  display: list-item !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-list-item {
    display: list-item !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-list-item {
    display: list-item !important;
  }
}
.xs-up\:u-d-list-item {
  display: list-item !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-list-item {
    display: list-item !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-list-item {
    display: list-item !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-list-item {
    display: list-item !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-list-item {
    display: list-item !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-list-item {
    display: list-item !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-list-item {
    display: list-item !important;
  }
}
.xxl-down\:u-d-list-item {
  display: list-item !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-list-item {
    display: list-item !important;
  }
}
.u-d-run-in {
  display: run-in !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-run-in {
    display: run-in !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-run-in {
    display: run-in !important;
  }
}
.xs-up\:u-d-run-in {
  display: run-in !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-run-in {
    display: run-in !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-run-in {
    display: run-in !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-run-in {
    display: run-in !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-run-in {
    display: run-in !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-run-in {
    display: run-in !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-run-in {
    display: run-in !important;
  }
}
.xxl-down\:u-d-run-in {
  display: run-in !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-run-in {
    display: run-in !important;
  }
}
.u-d-inline-block {
  display: inline-block !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-inline-block {
    display: inline-block !important;
  }
}
.xs-up\:u-d-inline-block {
  display: inline-block !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-inline-block {
    display: inline-block !important;
  }
}
.xxl-down\:u-d-inline-block {
  display: inline-block !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-inline-block {
    display: inline-block !important;
  }
}
.u-d-table {
  display: table !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table {
    display: table !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table {
    display: table !important;
  }
}
.xs-up\:u-d-table {
  display: table !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table {
    display: table !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table {
    display: table !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table {
    display: table !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table {
    display: table !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table {
    display: table !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table {
    display: table !important;
  }
}
.xxl-down\:u-d-table {
  display: table !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table {
    display: table !important;
  }
}
.u-d-inline-table {
  display: inline-table !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-inline-table {
    display: inline-table !important;
  }
}
.xs-up\:u-d-inline-table {
  display: inline-table !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-inline-table {
    display: inline-table !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-inline-table {
    display: inline-table !important;
  }
}
.xxl-down\:u-d-inline-table {
  display: inline-table !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-inline-table {
    display: inline-table !important;
  }
}
.u-d-table-row-group {
  display: table-row-group !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
.xs-up\:u-d-table-row-group {
  display: table-row-group !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
.xxl-down\:u-d-table-row-group {
  display: table-row-group !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-row-group {
    display: table-row-group !important;
  }
}
.u-d-table-header-group {
  display: table-header-group !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
.xs-up\:u-d-table-header-group {
  display: table-header-group !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
.xxl-down\:u-d-table-header-group {
  display: table-header-group !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-header-group {
    display: table-header-group !important;
  }
}
.u-d-table-footer-group {
  display: table-footer-group !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
.xs-up\:u-d-table-footer-group {
  display: table-footer-group !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
.xxl-down\:u-d-table-footer-group {
  display: table-footer-group !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-footer-group {
    display: table-footer-group !important;
  }
}
.u-d-table-row {
  display: table-row !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-row {
    display: table-row !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-row {
    display: table-row !important;
  }
}
.xs-up\:u-d-table-row {
  display: table-row !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-row {
    display: table-row !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-row {
    display: table-row !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-row {
    display: table-row !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-row {
    display: table-row !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-row {
    display: table-row !important;
  }
}
.xxl-down\:u-d-table-row {
  display: table-row !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-row {
    display: table-row !important;
  }
}
.u-d-table-column-group {
  display: table-column-group !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
.xs-up\:u-d-table-column-group {
  display: table-column-group !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
.xxl-down\:u-d-table-column-group {
  display: table-column-group !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-column-group {
    display: table-column-group !important;
  }
}
.u-d-table-column {
  display: table-column !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-column {
    display: table-column !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-column {
    display: table-column !important;
  }
}
.xs-up\:u-d-table-column {
  display: table-column !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-column {
    display: table-column !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-column {
    display: table-column !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-column {
    display: table-column !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-column {
    display: table-column !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-column {
    display: table-column !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-column {
    display: table-column !important;
  }
}
.xxl-down\:u-d-table-column {
  display: table-column !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-column {
    display: table-column !important;
  }
}
.u-d-table-cell {
  display: table-cell !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-cell {
    display: table-cell !important;
  }
}
.xs-up\:u-d-table-cell {
  display: table-cell !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-cell {
    display: table-cell !important;
  }
}
.xxl-down\:u-d-table-cell {
  display: table-cell !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-cell {
    display: table-cell !important;
  }
}
.u-d-table-caption {
  display: table-caption !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-table-caption {
    display: table-caption !important;
  }
}
.xs-up\:u-d-table-caption {
  display: table-caption !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-table-caption {
    display: table-caption !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-table-caption {
    display: table-caption !important;
  }
}
.xxl-down\:u-d-table-caption {
  display: table-caption !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-table-caption {
    display: table-caption !important;
  }
}
.u-d-ruby {
  display: ruby !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-ruby {
    display: ruby !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-ruby {
    display: ruby !important;
  }
}
.xs-up\:u-d-ruby {
  display: ruby !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-ruby {
    display: ruby !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-ruby {
    display: ruby !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-ruby {
    display: ruby !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-ruby {
    display: ruby !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-ruby {
    display: ruby !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-ruby {
    display: ruby !important;
  }
}
.xxl-down\:u-d-ruby {
  display: ruby !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-ruby {
    display: ruby !important;
  }
}
.u-d-ruby-base {
  display: ruby-base !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
.xs-up\:u-d-ruby-base {
  display: ruby-base !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
.xxl-down\:u-d-ruby-base {
  display: ruby-base !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-ruby-base {
    display: ruby-base !important;
  }
}
.u-d-ruby-text {
  display: ruby-text !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
.xs-up\:u-d-ruby-text {
  display: ruby-text !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
.xxl-down\:u-d-ruby-text {
  display: ruby-text !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-ruby-text {
    display: ruby-text !important;
  }
}
.u-d-ruby-base-container {
  display: ruby-base-container !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
.xs-up\:u-d-ruby-base-container {
  display: ruby-base-container !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
.xxl-down\:u-d-ruby-base-container {
  display: ruby-base-container !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-ruby-base-container {
    display: ruby-base-container !important;
  }
}
.u-d-ruby-text-container {
  display: ruby-text-container !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
.xs-up\:u-d-ruby-text-container {
  display: ruby-text-container !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
.xxl-down\:u-d-ruby-text-container {
  display: ruby-text-container !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-ruby-text-container {
    display: ruby-text-container !important;
  }
}
.u-d-none {
  display: none !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-none {
    display: none !important;
  }
}
.xs-up\:u-d-none {
  display: none !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-none {
    display: none !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-none {
    display: none !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-none {
    display: none !important;
  }
}
.xxl-down\:u-d-none {
  display: none !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-none {
    display: none !important;
  }
}
.u-d-inherit {
  display: inherit !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-inherit {
    display: inherit !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-inherit {
    display: inherit !important;
  }
}
.xs-up\:u-d-inherit {
  display: inherit !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-inherit {
    display: inherit !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-inherit {
    display: inherit !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-inherit {
    display: inherit !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-inherit {
    display: inherit !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-inherit {
    display: inherit !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-inherit {
    display: inherit !important;
  }
}
.xxl-down\:u-d-inherit {
  display: inherit !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-inherit {
    display: inherit !important;
  }
}
.u-d-flex {
  display: flex !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-flex {
    display: flex !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-flex {
    display: flex !important;
  }
}
.xs-up\:u-d-flex {
  display: flex !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-flex {
    display: flex !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-flex {
    display: flex !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-flex {
    display: flex !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-flex {
    display: flex !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-flex {
    display: flex !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-flex {
    display: flex !important;
  }
}
.xxl-down\:u-d-flex {
  display: flex !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-flex {
    display: flex !important;
  }
}
.u-d-inline-flex {
  display: inline-flex !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
.xs-up\:u-d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
.xxl-down\:u-d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-inline-flex {
    display: inline-flex !important;
  }
}
.u-d-grid {
  display: grid !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-grid {
    display: grid !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-grid {
    display: grid !important;
  }
}
.xs-up\:u-d-grid {
  display: grid !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-grid {
    display: grid !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-grid {
    display: grid !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-grid {
    display: grid !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-grid {
    display: grid !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-grid {
    display: grid !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-grid {
    display: grid !important;
  }
}
.xxl-down\:u-d-grid {
  display: grid !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-grid {
    display: grid !important;
  }
}
.u-d-inline-grid {
  display: inline-grid !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
.xs-up\:u-d-inline-grid {
  display: inline-grid !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
.xxl-down\:u-d-inline-grid {
  display: inline-grid !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-d-inline-grid {
    display: inline-grid !important;
  }
}
.u-fw-100 {
  font-weight: 100;
}

.u-fw-200 {
  font-weight: 200;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fw-900 {
  font-weight: 900;
}

@media (max-width: 33.9375em) {
  .xs\:u-fw-100 {
    font-weight: 100;
  }
  .xs\:u-fw-200 {
    font-weight: 200;
  }
  .xs\:u-fw-300 {
    font-weight: 300;
  }
  .xs\:u-fw-400 {
    font-weight: 400;
  }
  .xs\:u-fw-500 {
    font-weight: 500;
  }
  .xs\:u-fw-600 {
    font-weight: 600;
  }
  .xs\:u-fw-700 {
    font-weight: 700;
  }
  .xs\:u-fw-800 {
    font-weight: 800;
  }
  .xs\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-fw-100 {
    font-weight: 100;
  }
  .sm\:u-fw-200 {
    font-weight: 200;
  }
  .sm\:u-fw-300 {
    font-weight: 300;
  }
  .sm\:u-fw-400 {
    font-weight: 400;
  }
  .sm\:u-fw-500 {
    font-weight: 500;
  }
  .sm\:u-fw-600 {
    font-weight: 600;
  }
  .sm\:u-fw-700 {
    font-weight: 700;
  }
  .sm\:u-fw-800 {
    font-weight: 800;
  }
  .sm\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-fw-100 {
    font-weight: 100;
  }
  .md\:u-fw-200 {
    font-weight: 200;
  }
  .md\:u-fw-300 {
    font-weight: 300;
  }
  .md\:u-fw-400 {
    font-weight: 400;
  }
  .md\:u-fw-500 {
    font-weight: 500;
  }
  .md\:u-fw-600 {
    font-weight: 600;
  }
  .md\:u-fw-700 {
    font-weight: 700;
  }
  .md\:u-fw-800 {
    font-weight: 800;
  }
  .md\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-fw-100 {
    font-weight: 100;
  }
  .lg\:u-fw-200 {
    font-weight: 200;
  }
  .lg\:u-fw-300 {
    font-weight: 300;
  }
  .lg\:u-fw-400 {
    font-weight: 400;
  }
  .lg\:u-fw-500 {
    font-weight: 500;
  }
  .lg\:u-fw-600 {
    font-weight: 600;
  }
  .lg\:u-fw-700 {
    font-weight: 700;
  }
  .lg\:u-fw-800 {
    font-weight: 800;
  }
  .lg\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-fw-100 {
    font-weight: 100;
  }
  .xl\:u-fw-200 {
    font-weight: 200;
  }
  .xl\:u-fw-300 {
    font-weight: 300;
  }
  .xl\:u-fw-400 {
    font-weight: 400;
  }
  .xl\:u-fw-500 {
    font-weight: 500;
  }
  .xl\:u-fw-600 {
    font-weight: 600;
  }
  .xl\:u-fw-700 {
    font-weight: 700;
  }
  .xl\:u-fw-800 {
    font-weight: 800;
  }
  .xl\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 90em) {
  .xxl\:u-fw-100 {
    font-weight: 100;
  }
  .xxl\:u-fw-200 {
    font-weight: 200;
  }
  .xxl\:u-fw-300 {
    font-weight: 300;
  }
  .xxl\:u-fw-400 {
    font-weight: 400;
  }
  .xxl\:u-fw-500 {
    font-weight: 500;
  }
  .xxl\:u-fw-600 {
    font-weight: 600;
  }
  .xxl\:u-fw-700 {
    font-weight: 700;
  }
  .xxl\:u-fw-800 {
    font-weight: 800;
  }
  .xxl\:u-fw-900 {
    font-weight: 900;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-fw-100 {
    font-weight: 100;
  }
  .xs-down\:u-fw-200 {
    font-weight: 200;
  }
  .xs-down\:u-fw-300 {
    font-weight: 300;
  }
  .xs-down\:u-fw-400 {
    font-weight: 400;
  }
  .xs-down\:u-fw-500 {
    font-weight: 500;
  }
  .xs-down\:u-fw-600 {
    font-weight: 600;
  }
  .xs-down\:u-fw-700 {
    font-weight: 700;
  }
  .xs-down\:u-fw-800 {
    font-weight: 800;
  }
  .xs-down\:u-fw-900 {
    font-weight: 900;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-fw-100 {
    font-weight: 100;
  }
  .sm-down\:u-fw-200 {
    font-weight: 200;
  }
  .sm-down\:u-fw-300 {
    font-weight: 300;
  }
  .sm-down\:u-fw-400 {
    font-weight: 400;
  }
  .sm-down\:u-fw-500 {
    font-weight: 500;
  }
  .sm-down\:u-fw-600 {
    font-weight: 600;
  }
  .sm-down\:u-fw-700 {
    font-weight: 700;
  }
  .sm-down\:u-fw-800 {
    font-weight: 800;
  }
  .sm-down\:u-fw-900 {
    font-weight: 900;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-fw-100 {
    font-weight: 100;
  }
  .md-down\:u-fw-200 {
    font-weight: 200;
  }
  .md-down\:u-fw-300 {
    font-weight: 300;
  }
  .md-down\:u-fw-400 {
    font-weight: 400;
  }
  .md-down\:u-fw-500 {
    font-weight: 500;
  }
  .md-down\:u-fw-600 {
    font-weight: 600;
  }
  .md-down\:u-fw-700 {
    font-weight: 700;
  }
  .md-down\:u-fw-800 {
    font-weight: 800;
  }
  .md-down\:u-fw-900 {
    font-weight: 900;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-fw-100 {
    font-weight: 100;
  }
  .lg-down\:u-fw-200 {
    font-weight: 200;
  }
  .lg-down\:u-fw-300 {
    font-weight: 300;
  }
  .lg-down\:u-fw-400 {
    font-weight: 400;
  }
  .lg-down\:u-fw-500 {
    font-weight: 500;
  }
  .lg-down\:u-fw-600 {
    font-weight: 600;
  }
  .lg-down\:u-fw-700 {
    font-weight: 700;
  }
  .lg-down\:u-fw-800 {
    font-weight: 800;
  }
  .lg-down\:u-fw-900 {
    font-weight: 900;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-fw-100 {
    font-weight: 100;
  }
  .xl-down\:u-fw-200 {
    font-weight: 200;
  }
  .xl-down\:u-fw-300 {
    font-weight: 300;
  }
  .xl-down\:u-fw-400 {
    font-weight: 400;
  }
  .xl-down\:u-fw-500 {
    font-weight: 500;
  }
  .xl-down\:u-fw-600 {
    font-weight: 600;
  }
  .xl-down\:u-fw-700 {
    font-weight: 700;
  }
  .xl-down\:u-fw-800 {
    font-weight: 800;
  }
  .xl-down\:u-fw-900 {
    font-weight: 900;
  }
}
.xxl-down\:u-fw-100 {
  font-weight: 100;
}

.xxl-down\:u-fw-200 {
  font-weight: 200;
}

.xxl-down\:u-fw-300 {
  font-weight: 300;
}

.xxl-down\:u-fw-400 {
  font-weight: 400;
}

.xxl-down\:u-fw-500 {
  font-weight: 500;
}

.xxl-down\:u-fw-600 {
  font-weight: 600;
}

.xxl-down\:u-fw-700 {
  font-weight: 700;
}

.xxl-down\:u-fw-800 {
  font-weight: 800;
}

.xxl-down\:u-fw-900 {
  font-weight: 900;
}

.xs-up\:u-fw-100 {
  font-weight: 100;
}

.xs-up\:u-fw-200 {
  font-weight: 200;
}

.xs-up\:u-fw-300 {
  font-weight: 300;
}

.xs-up\:u-fw-400 {
  font-weight: 400;
}

.xs-up\:u-fw-500 {
  font-weight: 500;
}

.xs-up\:u-fw-600 {
  font-weight: 600;
}

.xs-up\:u-fw-700 {
  font-weight: 700;
}

.xs-up\:u-fw-800 {
  font-weight: 800;
}

.xs-up\:u-fw-900 {
  font-weight: 900;
}

@media (min-width: 34em) {
  .sm-up\:u-fw-100 {
    font-weight: 100;
  }
  .sm-up\:u-fw-200 {
    font-weight: 200;
  }
  .sm-up\:u-fw-300 {
    font-weight: 300;
  }
  .sm-up\:u-fw-400 {
    font-weight: 400;
  }
  .sm-up\:u-fw-500 {
    font-weight: 500;
  }
  .sm-up\:u-fw-600 {
    font-weight: 600;
  }
  .sm-up\:u-fw-700 {
    font-weight: 700;
  }
  .sm-up\:u-fw-800 {
    font-weight: 800;
  }
  .sm-up\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 48em) {
  .md-up\:u-fw-100 {
    font-weight: 100;
  }
  .md-up\:u-fw-200 {
    font-weight: 200;
  }
  .md-up\:u-fw-300 {
    font-weight: 300;
  }
  .md-up\:u-fw-400 {
    font-weight: 400;
  }
  .md-up\:u-fw-500 {
    font-weight: 500;
  }
  .md-up\:u-fw-600 {
    font-weight: 600;
  }
  .md-up\:u-fw-700 {
    font-weight: 700;
  }
  .md-up\:u-fw-800 {
    font-weight: 800;
  }
  .md-up\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-fw-100 {
    font-weight: 100;
  }
  .lg-up\:u-fw-200 {
    font-weight: 200;
  }
  .lg-up\:u-fw-300 {
    font-weight: 300;
  }
  .lg-up\:u-fw-400 {
    font-weight: 400;
  }
  .lg-up\:u-fw-500 {
    font-weight: 500;
  }
  .lg-up\:u-fw-600 {
    font-weight: 600;
  }
  .lg-up\:u-fw-700 {
    font-weight: 700;
  }
  .lg-up\:u-fw-800 {
    font-weight: 800;
  }
  .lg-up\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-fw-100 {
    font-weight: 100;
  }
  .xl-up\:u-fw-200 {
    font-weight: 200;
  }
  .xl-up\:u-fw-300 {
    font-weight: 300;
  }
  .xl-up\:u-fw-400 {
    font-weight: 400;
  }
  .xl-up\:u-fw-500 {
    font-weight: 500;
  }
  .xl-up\:u-fw-600 {
    font-weight: 600;
  }
  .xl-up\:u-fw-700 {
    font-weight: 700;
  }
  .xl-up\:u-fw-800 {
    font-weight: 800;
  }
  .xl-up\:u-fw-900 {
    font-weight: 900;
  }
}
@media (min-width: 90em) {
  .xxl-up\:u-fw-100 {
    font-weight: 100;
  }
  .xxl-up\:u-fw-200 {
    font-weight: 200;
  }
  .xxl-up\:u-fw-300 {
    font-weight: 300;
  }
  .xxl-up\:u-fw-400 {
    font-weight: 400;
  }
  .xxl-up\:u-fw-500 {
    font-weight: 500;
  }
  .xxl-up\:u-fw-600 {
    font-weight: 600;
  }
  .xxl-up\:u-fw-700 {
    font-weight: 700;
  }
  .xxl-up\:u-fw-800 {
    font-weight: 800;
  }
  .xxl-up\:u-fw-900 {
    font-weight: 900;
  }
}
.u-lh-xs {
  line-height: 1.2;
}

@media (max-width: 33.9375em) {
  .xs\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-lh-xs {
    line-height: 1.2;
  }
}
.xs-up\:u-lh-xs {
  line-height: 1.2;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 48em) {
  .md-up\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-lh-xs {
    line-height: 1.2;
  }
}
@media (min-width: 90em) {
  .xxl\:u-lh-xs {
    line-height: 1.2;
  }
}
.xxl-down\:u-lh-xs {
  line-height: 1.2;
}

@media (min-width: 90em) {
  .xxl-up\:u-lh-xs {
    line-height: 1.2;
  }
}
.u-lh-sm {
  line-height: 1.4;
}

@media (max-width: 33.9375em) {
  .xs\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-lh-sm {
    line-height: 1.4;
  }
}
.xs-up\:u-lh-sm {
  line-height: 1.4;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 48em) {
  .md-up\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-lh-sm {
    line-height: 1.4;
  }
}
@media (min-width: 90em) {
  .xxl\:u-lh-sm {
    line-height: 1.4;
  }
}
.xxl-down\:u-lh-sm {
  line-height: 1.4;
}

@media (min-width: 90em) {
  .xxl-up\:u-lh-sm {
    line-height: 1.4;
  }
}
.u-lh-md {
  line-height: 1.6;
}

@media (max-width: 33.9375em) {
  .xs\:u-lh-md {
    line-height: 1.6;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-lh-md {
    line-height: 1.6;
  }
}
.xs-up\:u-lh-md {
  line-height: 1.6;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-lh-md {
    line-height: 1.6;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-lh-md {
    line-height: 1.6;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 48em) {
  .md-up\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-lh-md {
    line-height: 1.6;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-lh-md {
    line-height: 1.6;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-lh-md {
    line-height: 1.6;
  }
}
@media (min-width: 90em) {
  .xxl\:u-lh-md {
    line-height: 1.6;
  }
}
.xxl-down\:u-lh-md {
  line-height: 1.6;
}

@media (min-width: 90em) {
  .xxl-up\:u-lh-md {
    line-height: 1.6;
  }
}
.u-lh-lg {
  line-height: 1.8;
}

@media (max-width: 33.9375em) {
  .xs\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-lh-lg {
    line-height: 1.8;
  }
}
.xs-up\:u-lh-lg {
  line-height: 1.8;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 48em) {
  .md-up\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-lh-lg {
    line-height: 1.8;
  }
}
@media (min-width: 90em) {
  .xxl\:u-lh-lg {
    line-height: 1.8;
  }
}
.xxl-down\:u-lh-lg {
  line-height: 1.8;
}

@media (min-width: 90em) {
  .xxl-up\:u-lh-lg {
    line-height: 1.8;
  }
}
.u-lh-xl {
  line-height: 2;
}

@media (max-width: 33.9375em) {
  .xs\:u-lh-xl {
    line-height: 2;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-lh-xl {
    line-height: 2;
  }
}
.xs-up\:u-lh-xl {
  line-height: 2;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-lh-xl {
    line-height: 2;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-lh-xl {
    line-height: 2;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 48em) {
  .md-up\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-lh-xl {
    line-height: 2;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-lh-xl {
    line-height: 2;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-lh-xl {
    line-height: 2;
  }
}
@media (min-width: 90em) {
  .xxl\:u-lh-xl {
    line-height: 2;
  }
}
.xxl-down\:u-lh-xl {
  line-height: 2;
}

@media (min-width: 90em) {
  .xxl-up\:u-lh-xl {
    line-height: 2;
  }
}
.u-ov-hidden {
  overflow: hidden !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ov-hidden {
    overflow: hidden !important;
  }
}
.xs-up\:u-ov-hidden {
  overflow: hidden !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ov-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ov-hidden {
    overflow: hidden !important;
  }
}
.xxl-down\:u-ov-hidden {
  overflow: hidden !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ov-hidden {
    overflow: hidden !important;
  }
}
.u-ov-visible {
  overflow: visible !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ov-visible {
    overflow: visible !important;
  }
}
.xs-up\:u-ov-visible {
  overflow: visible !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ov-visible {
    overflow: visible !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ov-visible {
    overflow: visible !important;
  }
}
.xxl-down\:u-ov-visible {
  overflow: visible !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ov-visible {
    overflow: visible !important;
  }
}
.u-ov-scroll {
  overflow: scroll !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xs-up\:u-ov-scroll {
  overflow: scroll !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xxl-down\:u-ov-scroll {
  overflow: scroll !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 90em) {
  .xxl-up\:u-ov-scroll {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.u-ov-auto {
  overflow: auto !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xs-up\:u-ov-auto {
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xxl-down\:u-ov-auto {
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 90em) {
  .xxl-up\:u-ov-auto {
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.u-ovx-hidden {
  overflow-x: hidden !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
.xs-up\:u-ovx-hidden {
  overflow-x: hidden !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
.xxl-down\:u-ovx-hidden {
  overflow-x: hidden !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovx-hidden {
    overflow-x: hidden !important;
  }
}
.u-ovx-visible {
  overflow-x: visible !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
.xs-up\:u-ovx-visible {
  overflow-x: visible !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
.xxl-down\:u-ovx-visible {
  overflow-x: visible !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovx-visible {
    overflow-x: visible !important;
  }
}
.u-ovx-scroll {
  overflow-x: scroll !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xs-up\:u-ovx-scroll {
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xxl-down\:u-ovx-scroll {
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovx-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.u-ovx-auto {
  overflow-x: auto !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xs-up\:u-ovx-auto {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xxl-down\:u-ovx-auto {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovx-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.u-ovy-hidden {
  overflow-y: hidden !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
.xs-up\:u-ovy-hidden {
  overflow-y: hidden !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
.xxl-down\:u-ovy-hidden {
  overflow-y: hidden !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovy-hidden {
    overflow-y: hidden !important;
  }
}
.u-ovy-visible {
  overflow-y: visible !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
.xs-up\:u-ovy-visible {
  overflow-y: visible !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
.xxl-down\:u-ovy-visible {
  overflow-y: visible !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovy-visible {
    overflow-y: visible !important;
  }
}
.u-ovy-scroll {
  overflow-y: scroll !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xs-up\:u-ovy-scroll {
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xxl-down\:u-ovy-scroll {
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovy-scroll {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
}
.u-ovy-auto {
  overflow-y: auto !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xs-up\:u-ovy-auto {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.xxl-down\:u-ovy-auto {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 90em) {
  .xxl-up\:u-ovy-auto {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.u-pos-static {
  position: static;
}

@media (max-width: 33.9375em) {
  .xs\:u-pos-static {
    position: static;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-pos-static {
    position: static;
  }
}
.xs-up\:u-pos-static {
  position: static;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-pos-static {
    position: static;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-pos-static {
    position: static;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-pos-static {
    position: static;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-pos-static {
    position: static;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-pos-static {
    position: static;
  }
}
@media (min-width: 48em) {
  .md-up\:u-pos-static {
    position: static;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-pos-static {
    position: static;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-pos-static {
    position: static;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-pos-static {
    position: static;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-pos-static {
    position: static;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-pos-static {
    position: static;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-pos-static {
    position: static;
  }
}
@media (min-width: 90em) {
  .xxl\:u-pos-static {
    position: static;
  }
}
.xxl-down\:u-pos-static {
  position: static;
}

@media (min-width: 90em) {
  .xxl-up\:u-pos-static {
    position: static;
  }
}
.u-pos-relative {
  position: relative;
}

@media (max-width: 33.9375em) {
  .xs\:u-pos-relative {
    position: relative;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-pos-relative {
    position: relative;
  }
}
.xs-up\:u-pos-relative {
  position: relative;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-pos-relative {
    position: relative;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-pos-relative {
    position: relative;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 48em) {
  .md-up\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-pos-relative {
    position: relative;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-pos-relative {
    position: relative;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-pos-relative {
    position: relative;
  }
}
@media (min-width: 90em) {
  .xxl\:u-pos-relative {
    position: relative;
  }
}
.xxl-down\:u-pos-relative {
  position: relative;
}

@media (min-width: 90em) {
  .xxl-up\:u-pos-relative {
    position: relative;
  }
}
.u-pos-absolute {
  position: absolute;
}

@media (max-width: 33.9375em) {
  .xs\:u-pos-absolute {
    position: absolute;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-pos-absolute {
    position: absolute;
  }
}
.xs-up\:u-pos-absolute {
  position: absolute;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-pos-absolute {
    position: absolute;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-pos-absolute {
    position: absolute;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 48em) {
  .md-up\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-pos-absolute {
    position: absolute;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-pos-absolute {
    position: absolute;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-pos-absolute {
    position: absolute;
  }
}
@media (min-width: 90em) {
  .xxl\:u-pos-absolute {
    position: absolute;
  }
}
.xxl-down\:u-pos-absolute {
  position: absolute;
}

@media (min-width: 90em) {
  .xxl-up\:u-pos-absolute {
    position: absolute;
  }
}
.u-pos-fixed {
  position: fixed;
}

@media (max-width: 33.9375em) {
  .xs\:u-pos-fixed {
    position: fixed;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-pos-fixed {
    position: fixed;
  }
}
.xs-up\:u-pos-fixed {
  position: fixed;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-pos-fixed {
    position: fixed;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-pos-fixed {
    position: fixed;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 48em) {
  .md-up\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-pos-fixed {
    position: fixed;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-pos-fixed {
    position: fixed;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-pos-fixed {
    position: fixed;
  }
}
@media (min-width: 90em) {
  .xxl\:u-pos-fixed {
    position: fixed;
  }
}
.xxl-down\:u-pos-fixed {
  position: fixed;
}

@media (min-width: 90em) {
  .xxl-up\:u-pos-fixed {
    position: fixed;
  }
}
.u-pos-sticky {
  position: sticky;
}

@media (max-width: 33.9375em) {
  .xs\:u-pos-sticky {
    position: sticky;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-pos-sticky {
    position: sticky;
  }
}
.xs-up\:u-pos-sticky {
  position: sticky;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-pos-sticky {
    position: sticky;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-pos-sticky {
    position: sticky;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 48em) {
  .md-up\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-pos-sticky {
    position: sticky;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-pos-sticky {
    position: sticky;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-pos-sticky {
    position: sticky;
  }
}
@media (min-width: 90em) {
  .xxl\:u-pos-sticky {
    position: sticky;
  }
}
.xxl-down\:u-pos-sticky {
  position: sticky;
}

@media (min-width: 90em) {
  .xxl-up\:u-pos-sticky {
    position: sticky;
  }
}
.u-sb-smooth {
  scroll-behavior: smooth;
}

.u-ta-left {
  text-align: left !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ta-left {
    text-align: left !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ta-left {
    text-align: left !important;
  }
}
.xs-up\:u-ta-left {
  text-align: left !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ta-left {
    text-align: left !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ta-left {
    text-align: left !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ta-left {
    text-align: left !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ta-left {
    text-align: left !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ta-left {
    text-align: left !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ta-left {
    text-align: left !important;
  }
}
.xxl-down\:u-ta-left {
  text-align: left !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ta-left {
    text-align: left !important;
  }
}
.u-ta-center {
  text-align: center !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ta-center {
    text-align: center !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ta-center {
    text-align: center !important;
  }
}
.xs-up\:u-ta-center {
  text-align: center !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ta-center {
    text-align: center !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ta-center {
    text-align: center !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ta-center {
    text-align: center !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ta-center {
    text-align: center !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ta-center {
    text-align: center !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ta-center {
    text-align: center !important;
  }
}
.xxl-down\:u-ta-center {
  text-align: center !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ta-center {
    text-align: center !important;
  }
}
.u-ta-right {
  text-align: right !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ta-right {
    text-align: right !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ta-right {
    text-align: right !important;
  }
}
.xs-up\:u-ta-right {
  text-align: right !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ta-right {
    text-align: right !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ta-right {
    text-align: right !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ta-right {
    text-align: right !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ta-right {
    text-align: right !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ta-right {
    text-align: right !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ta-right {
    text-align: right !important;
  }
}
.xxl-down\:u-ta-right {
  text-align: right !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ta-right {
    text-align: right !important;
  }
}
.u-ta-justify {
  text-align: justify !important;
}

@media (max-width: 33.9375em) {
  .xs\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (max-width: 33.9375em) {
  .xs-down\:u-ta-justify {
    text-align: justify !important;
  }
}
.xs-up\:u-ta-justify {
  text-align: justify !important;
}

@media (min-width: 34em) and (max-width: 47.9375em) {
  .sm\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (max-width: 47.9375em) {
  .sm-down\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 34em) {
  .sm-up\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .md\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (max-width: 61.9375em) {
  .md-down\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 48em) {
  .md-up\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 62em) and (max-width: 74.9375em) {
  .lg\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (max-width: 74.9375em) {
  .lg-down\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 62em) {
  .lg-up\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 75em) and (max-width: 89.9375em) {
  .xl\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (max-width: 89.9375em) {
  .xl-down\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 75em) {
  .xl-up\:u-ta-justify {
    text-align: justify !important;
  }
}
@media (min-width: 90em) {
  .xxl\:u-ta-justify {
    text-align: justify !important;
  }
}
.xxl-down\:u-ta-justify {
  text-align: justify !important;
}

@media (min-width: 90em) {
  .xxl-up\:u-ta-justify {
    text-align: justify !important;
  }
}
.l-container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.l-container.is-xs {
  width: 30rem;
}
.l-container.is-sm {
  width: 40rem;
}
.l-container.is-md {
  width: 52.125rem;
}
.l-container.is-lg {
  width: 72.25rem;
}
.l-container.is-xl {
  width: 100%;
}
.l-container.is-max {
  width: 100%;
}
.l-container .l-container {
  padding-left: 0;
  padding-right: 0;
}

.container.is-md {
  width: 52.125rem;
}
.container.is-sm {
  width: 40rem;
}
.container.is-xs {
  width: 30rem;
}
.container.is-lg {
  width: 80rem;
}
.container.is-xl {
  width: 100%;
}
.container.is-max {
  width: 100%;
}
@media (max-width: 61.9375em) {
  .container.is-md-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-liv-columns {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 1;
}

.l-liv-columns__column-once {
  flex-basis: 100%;
  max-width: 100%;
  border-right: solid 2px #d6dcde;
}
.l-liv-columns__column-once .container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.l-liv-columns__column .container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-liv-columns__column.is-even {
  border-right: solid 2px #d6dcde;
  flex: 1;
  min-width: 33.33%;
  max-width: 40rem;
}
.l-liv-columns__column.is-main {
  flex: 1;
}
@media (min-width: 75em) {
  .l-liv-columns__column.is-sub {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (max-width: 74.9375em) {
  .l-liv-columns__column.is-sub {
    display: none;
  }
}
.l-liv-columns__column.is-search {
  flex: 0 0 16rem;
  max-width: 16rem;
}

.l-liv-column-contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.l-liv-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.l-liv-page__end {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.l-liv-tab-contents {
  height: 100%;
}

.l-liv-tab-contents__content {
  height: 100%;
  flex-direction: column;
  display: none;
}
input:nth-child(1):checked ~ .l-liv-column-contents__content .l-liv-tab-contents__content:nth-child(1) {
  display: flex;
}
input:nth-child(2):checked ~ .l-liv-column-contents__content .l-liv-tab-contents__content:nth-child(2) {
  display: flex;
}
input:nth-child(3):checked ~ .l-liv-column-contents__content .l-liv-tab-contents__content:nth-child(3) {
  display: flex;
}
input:nth-child(4):checked ~ .l-liv-column-contents__content .l-liv-tab-contents__content:nth-child(4) {
  display: flex;
}
input:nth-child(5):checked ~ .l-liv-column-contents__content .l-liv-tab-contents__content:nth-child(5) {
  display: flex;
}

.l-liv-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-liv-wrapper__end {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 48em) {
  body.is-biz {
    padding-left: 15rem;
  }
}

.l-biz-wrapper {
  min-height: calc(var(--vh, 1vh) * 100 - 50px);
  display: flex;
  flex-direction: column;
}

.l-biz-wrapper__start {
  flex: 1;
}
body.is-ie11 .l-biz-wrapper__start {
  min-height: 100vh;
}

.a-checkbox {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.a-checkbox input {
  position: fixed;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
}
.a-checkbox span {
  font-size: 1em;
  line-height: 1.4;
  cursor: pointer;
  display: inline-block;
  padding-left: calc(0.875em + .375em);
  transition: all 0.2s ease-out;
}
.a-checkbox a {
  margin-right: 0.25rem;
}
.a-checkbox:hover span {
  text-decoration: underline;
}
.a-checkbox.has-link:hover span {
  text-decoration: none;
}
.a-checkbox span::before,
.a-checkbox span::after {
  height: 0.875em;
  width: 0.875em;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.2s ease-out;
}
.a-checkbox span::before {
  content: "";
  display: block;
  border-radius: calc(0.875em / 5);
  background-color: #f5f5f7;
  border: solid 1px #B7BDC1;
}
.a-checkbox input:checked + span::before {
  background-color: #2d4b87;
  border-color: #2d4b87;
}
.a-checkbox input:checked + span::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e876";
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 48;
  font-size: calc(0.875em * .9);
  line-height: 1;
  display: flex;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  margin-left: 0.1em;
  margin-top: 0.06em;
}
.a-checkbox input:disabled + span:before {
  background-color: #EDEEEF;
  border: none;
}
.a-checkbox.is-disabled {
  color: #9494a0;
  text-decoration: none;
  pointer-events: none;
}
.a-checkbox.is-required span::before,
.a-checkbox.is-required span::after {
  content: none;
}
.a-checkbox.is-required input {
  position: relative;
  top: 0.0625em;
  visibility: visible;
  height: auto;
  width: auto;
  overflow: visible;
  opacity: 1;
  transform: scale(1.125);
}

.a-form-label {
  font-size: 0.8888888889rem;
  line-height: 1.5;
  font-weight: 600;
}
.a-form-label.is-required::after, .a-form-label.is-optional::after {
  display: inline-block;
  transform: scale(0.75);
  position: relative;
  top: -0.1875em;
  left: -0.0625em;
}
.a-form-label.is-required::after {
  content: "(必須)";
  color: #F01E28;
}
.a-form-label.is-optional::after {
  content: "(任意)";
  color: #606069;
}
.a-form-label.is-lg {
  font-size: 1rem;
}
@media (min-width: 48em) {
  .a-form-label.is-lg.is-required::after, .a-form-label.is-lg.is-optional::after {
    transform: scale(0.55);
  }
}
.a-form-label .a-badge {
  margin-left: 0.5em;
  vertical-align: middle;
}

.a-no-map {
  background-color: #e2e2e2;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-no-map::before {
  content: "NO MAP";
  color: #9494a0;
  text-align: center;
  font-size: 0.8888888889rem;
  line-height: 1;
}

.a-owner-announcement-text {
  width: 100%;
}
@media (max-width: 33.9375em) {
  .a-owner-announcement-text img {
    width: calc(100% + 2.5em);
    max-width: 9999px;
    margin-right: -1.25em;
    margin-left: -1.25em;
  }
}

.a-slide-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
input:checked ~ .a-slide-overlay {
  display: block;
}

.a-text-link {
  text-decoration: underline;
}
.a-text-link:hover, .a-text-link:active {
  text-decoration: none;
}
.a-text-link:link {
  color: #1A0DAB;
}
.a-text-link:visited {
  color: #660099;
}
.a-text-link:hover {
  color: #660099;
}
.a-text-link:active {
  color: #660099;
}

.a-help-link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding-right: 1.125em;
  position: relative;
  text-decoration: none;
}
.a-help-link:hover, .a-help-link:active {
  text-decoration: underline;
}
.a-help-link > *:first-child {
  cursor: pointer;
}
.a-help-link::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e887";
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
  font-size: 1rem;
  display: inline-flex;
  color: #F01E28;
  text-decoration: none;
  transition: all 0.2s ease-out;
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.6;
}
.a-help-link:hover > *:first-child {
  text-decoration: underline;
}
.a-help-link:hover::after {
  text-decoration: none;
  opacity: 1;
}

.a-back-link {
  color: #1E2D3C;
  display: flex;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  transition: all 0.2s ease-out;
}
.a-back-link:hover {
  color: #F01E28;
}
body.is-biz-page .a-back-link {
  color: #ffffff;
}
body.is-biz-page .a-back-link:hover {
  color: #ffe0e4;
}
@media (min-width: 48em) {
  .a-back-link {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .a-back-link {
    font-size: 1.3333333333rem;
  }
}

.a-close {
  display: flex;
  height: 100%;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-out;
  z-index: 5;
}
.a-close::before {
  content: none;
  display: block;
  height: 2px;
  border-radius: 1px;
  background-color: #1E2D3C;
  transition: all 0.2s ease-out;
  width: 24px;
}
.a-close:hover::before {
  background-color: #F01E28;
}
.a-close:hover span::before,
.a-close:hover span::after {
  background-color: #F01E28;
}
.a-close span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 24px;
  width: 24px;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
}
.a-close span::before, .a-close span::after {
  content: "";
  display: block;
  height: 2px;
  top: 50%;
  left: auto;
  right: auto;
  bottom: auto;
  position: absolute;
  border-radius: 1px;
  background-color: #1E2D3C;
  transition: all 0.2s ease-out;
  width: 24px;
  transform: translate(-50%, -50%);
}
.a-close span::before {
  transform: rotate(-45deg);
}
.a-close span::after {
  transform: rotate(45deg);
}

.a-hamburger {
  display: flex;
  height: 100%;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.a-hamburger::before {
  content: "";
  display: block;
  height: 2px;
  border-radius: 1px;
  background-color: #1E2D3C;
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .a-hamburger::before {
    width: 24px;
  }
}
@media (max-width: 47.9375em) {
  .a-hamburger::before {
    width: 24px;
  }
}
.a-hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .a-hamburger span {
    height: 24px;
    width: 24px;
  }
}
@media (max-width: 47.9375em) {
  .a-hamburger span {
    height: 24px;
    width: 24px;
  }
}
.a-hamburger span::before, .a-hamburger span::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  border-radius: 1px;
  background-color: #1E2D3C;
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .a-hamburger span::before, .a-hamburger span::after {
    width: 24px;
  }
}
@media (max-width: 47.9375em) {
  .a-hamburger span::before, .a-hamburger span::after {
    width: 24px;
  }
}
.a-hamburger span::before {
  top: 4px;
}
.a-hamburger span::after {
  bottom: 4px;
}
@media (min-width: 48em) {
  .a-hamburger:hover::before {
    background-color: #F01E28;
  }
  .a-hamburger:hover span::before,
  .a-hamburger:hover span::after {
    background-color: #F01E28;
  }
}

.a-note {
  font-size: 0.75em;
  font-weight: 600;
}
.a-note:last-child {
  margin-left: 0.75em;
}
.a-note.is-accent {
  color: #F01E28;
}
.a-note.is-success {
  color: #42bda2;
}
.a-note::before {
  content: "※";
  position: relative;
  top: -0.125em;
}
.a-note.add-margin-top-and-bottom {
  margin-top: 0.25em;
  margin-bottom: 0.25rem;
}

.a-status-badge {
  font-weight: 400;
  background-color: #ffffff;
  color: #606069;
  border-color: #9494a0;
}
.a-status-badge.is-unexpanded {
  background-color: #ffffff;
  color: #606069;
}
.a-status-badge.is-requested_estimate {
  background-color: #F01E28;
  border-color: #F01E28;
  color: #ffffff;
}
.a-status-badge.is-offered {
  background-color: #FEBB02;
  border-color: #FEBB02;
  color: #1E2D3C;
}
.a-status-badge.is-estimated {
  background-color: #54585d;
  border-color: #ffffff;
  color: #ffffff;
}
.a-status-badge.is-requested_contract {
  background-color: #FEBB02;
  border-color: #FEBB02;
  color: #1E2D3C;
}
.a-status-badge.is-contracted {
  background-color: #29c3d4;
  border-color: #29c3d4;
  color: #ffffff;
}
.a-status-badge.is-failed, .a-status-badge.is-canceled, .a-status-badge.is-invalid {
  background-color: #54585d;
  border-color: #54585d;
  color: #ffffff;
}
.a-status-badge.is-ended {
  background-color: #54585d;
  border-color: #ffffff;
  color: #ffffff;
}
.a-status-badge.is-expired_estimate {
  background-color: #1E2D3C;
  border-color: #1E2D3C;
  color: #ffffff;
  opacity: 0.7;
}
.a-status-badge.is-estimate_accepting {
  background-color: #42bda2;
  border-color: #42bda2;
  color: #ffffff;
}
.a-status-badge.is-expanded {
  background-color: #42bda2;
  border-color: #42bda2;
  color: #ffffff;
}
.a-status-badge.is-draft {
  background-color: #F01E28;
  border-color: #F01E28;
  color: #ffffff;
}
.a-status-badge.is-contract-created {
  background-color: #FEBB02;
  border-color: #FEBB02;
  color: #1E2D3C;
}
.a-status-badge.is-contract-updated {
  background-color: #FEBB02;
  border-color: #FEBB02;
  color: #1E2D3C;
}
.a-status-badge.is-contract-contracted {
  background-color: #29c3d4;
  border-color: #29c3d4;
  color: #ffffff;
}
.a-status-badge.is-contract-canceling {
  background-color: #54585d;
  border-color: #54585d;
  color: #ffffff;
}
.a-status-badge.is-contract-canceled {
  background-color: #54585d;
  border-color: #54585d;
  color: #ffffff;
}
.a-status-badge.is-contract-rejected {
  background-color: #54585d;
  border-color: #54585d;
  color: #ffffff;
}
.a-status-badge.is-tippy {
  background-color: #29c3d4;
  border-color: #29c3d4;
  color: #ffffff;
}
table .a-status-badge {
  width: 100%;
}
.a-status-badge.is-web_estate_entry.is-activated {
  background-color: #29c3d4;
  border-color: #29c3d4;
  color: #ffffff;
}
.a-status-badge.is-web_estate_entry.is-activating {
  background-color: #F01E28;
  border-color: #F01E28;
  color: #ffffff;
}
.a-status-badge.is-web_estate_entry.is-selected_company {
  background-color: #FEBB02;
  border-color: #FEBB02;
  color: #ffffff;
}
.a-status-badge.is-web_estate_entry.is-entried {
  background-color: #54585d;
  border-color: #ffffff;
  color: #ffffff;
}
.a-status-badge.is-estimate-offer-accept {
  background-color: #29c3d4;
  border-color: #29c3d4;
  color: #ffffff;
}
.a-status-badge.is-estimate-offer-reject {
  background-color: #54585d;
  border-color: #ffffff;
  color: #ffffff;
}
.a-status-badge.is-partner-project {
  border: none;
  border-radius: 0.3em;
  font-weight: 600;
  font-size: 0.75rem;
  padding-left: 0.75em;
  padding-right: 0.75em;
  height: 1.75em;
}
.a-status-badge.is-partner-project i:first-child {
  font-size: 0.75rem;
}
.a-status-badge.is-partner-project.is-info {
  color: #ffffff;
}
.a-status-badge.is-partner-project.is-secondary {
  background-color: #ebebeb;
}
@media (max-width: 47.9375em) {
  .a-status-badge.is-partner-project {
    font-size: 0.6875rem;
    padding-left: 0.6875em;
    padding-right: 0.6875em;
    height: 1.9em;
  }
  .a-status-badge.is-partner-project i:first-child {
    font-size: 0.6875rem;
  }
}

.a-toggle-checkbox {
  height: 0;
  width: 0;
  display: block;
  overflow: hidden;
  position: fixed;
  opacity: 0;
  visibility: hidden;
}

.a-no-image {
  background-color: #e2e2e2;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-no-image::before {
  content: "NO IMAGE";
  color: #9494a0;
  text-align: center;
  font-size: 0.8888888889rem;
  line-height: 1;
}

.img-thumbnail {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.a-notice {
  pointer-events: none;
  color: #c3c3d0;
  display: flex;
  height: 100%;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
}
.a-notice.is-active {
  cursor: pointer;
  pointer-events: auto;
  color: #1E2D3C;
}
.a-notice.is-active::before {
  content: "";
  display: block;
  height: 0.75rem;
  width: 0.75rem;
  background-color: #F01E28;
  box-shadow: #ffffff 0 0 0 1px;
  border-radius: 50%;
  position: absolute;
  right: 3px;
  top: 7px;
}
.a-notice span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .a-notice span {
    height: 24px;
    width: 24px;
  }
}
@media (max-width: 47.9375em) {
  .a-notice span {
    height: 24px;
    width: 24px;
  }
}
.a-notice span::before, .a-notice span::after {
  content: "";
  display: none;
  height: 2px;
  position: absolute;
  border-radius: 1px;
  background-color: #1E2D3C;
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .a-notice span::before, .a-notice span::after {
    width: 24px;
  }
}
@media (max-width: 47.9375em) {
  .a-notice span::before, .a-notice span::after {
    width: 24px;
  }
}
body.is-biz-page .a-notice span::before, body.is-biz-page .a-notice span::after {
  background-color: #ffffff;
}
.a-notice span::before {
  top: 0;
}
.a-notice span::after {
  bottom: 0;
}
@media (min-width: 48em) {
  .a-notice:hover::before {
    background-color: #F01E28;
  }
  .a-notice:hover span::before,
  .a-notice:hover span::after {
    background-color: #F01E28;
  }
}

.a-radio {
  position: relative;
  overflow: hidden;
}
.a-radio input {
  position: absolute;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
}
.a-radio span {
  font-size: 1em;
  line-height: 1.4;
  cursor: pointer;
  display: inline-block;
  padding-left: calc(0.875rem + .375em);
  transition: all 0.2s ease-out;
}
.a-radio:hover span {
  text-decoration: underline;
}
.a-radio span::before,
.a-radio span::after {
  height: 0.875rem;
  width: 0.875rem;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.2s ease-out;
  border-radius: 50%;
}
.a-radio span::before {
  content: "";
  display: block;
  background-color: #f5f5f7;
  border: solid 1px #B7BDC1;
}
.a-radio input:checked + span::before {
  background-color: #2d4b87;
  border-color: #2d4b87;
}
.a-radio input:checked + span::after {
  content: "";
  display: block;
  background-color: #ffffff;
  border: solid calc(0.875rem - (0.875rem * .68)) #2d4b87;
}
.a-radio input:disabled + span {
  color: #9494a0;
  text-decoration: none;
  pointer-events: none;
}
.a-radio input:disabled + span:before {
  background-color: #EDEEEF;
  border: none;
}
.a-radio.is-disabled {
  color: #9494a0;
  text-decoration: none;
  pointer-events: none;
}

.a-text-input {
  border: solid 1px #dcdcde;
  width: 100%;
  font-size: 1rem;
  color: #1E2D3C;
  padding: 0.5rem 0.625rem;
  background-color: #fafbfb;
  border-radius: 0.25rem;
  transition: all 0.2s ease-out;
  vertical-align: bottom;
  min-height: 2.25rem;
}
.a-text-input:hover {
  background-color: #ffffff;
}
.a-text-input:focus {
  background-color: #ffffff;
  border-color: #2d4b87;
  box-shadow: 0 0 0 3px rgba(45, 75, 135, 0.2);
}
.a-text-input.is-clickable {
  cursor: pointer;
}
.a-select .a-text-input.is-clickable {
  padding-right: 1.625rem;
}
.a-text-input.is-clickable:hover {
  background-color: #ffffff;
  border-color: #2d4b87;
  box-shadow: 0 0 0 3px rgba(45, 75, 135, 0.2);
}
.a-text-input:-moz-read-only {
  color: #9494a0;
  box-shadow: none;
  background-color: #EDEEEF;
  line-height: 1;
}
.a-text-input.is-inputed, .a-text-input.is-disabled, .a-text-input:disabled, .a-text-input:read-only {
  color: #9494a0;
  box-shadow: none;
  background-color: #EDEEEF;
  line-height: 1;
}
.a-text-input.is-disabled, .a-text-input:disabled {
  pointer-events: none;
}
.a-text-input.is-light-bg {
  background-color: #EDEEEF;
}
.a-text-input.is-no-focus-border:focus {
  border-color: #dcdcde;
  box-shadow: none;
}

input.a-text-input {
  line-height: 1.125rem;
}
input.a-text-input.is-xs {
  width: 4rem;
}
input.a-text-input.is-sm {
  width: 8rem;
}
input.a-text-input.is-md {
  width: 10rem;
}
input.a-text-input.is-lg {
  width: 16rem;
}

textarea.a-text-input {
  line-height: 1.5;
}
textarea.a-text-input.is-sm {
  min-height: 8rem;
}
textarea.a-text-input.is-md {
  min-height: 12rem;
}
textarea.a-text-input.is-lg {
  min-height: 16rem;
}

label.a-text-input {
  display: flex;
}

.a-avatar {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 50%;
}

.a-block-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.a-block-link:hover {
  background-color: #f5f5f7;
}
.a-block-link.has-right-icon {
  position: relative;
  padding-right: 2em;
}
.a-block-link.has-right-icon i {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translate(0, -50%);
}

.a-circle-image {
  border-radius: 50%;
  height: 100%;
  width: 100%;
}

.a-form-help {
  color: #9494a0;
  font-size: 0.8rem;
  line-height: 1.5;
}
.a-form-help:not(:first-child) {
  margin-top: 0.375em;
}
.a-form-help.is-danger {
  color: #F01E28;
}
.a-form-help .a-form-help__attention::before {
  content: "※";
  position: absolute;
  left: 0;
  top: -0.125em;
}
.a-form-help .a-form-help__attention {
  padding-left: 1em;
  position: relative;
}

.a-long-text > *:first-child {
  margin-top: 0;
}
.a-long-text > *:last-child {
  margin-bottom: 0;
}
.a-long-text h2 {
  font-size: 1.375em;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: 600;
  border-left: 0.375em solid #F01E28;
  background-color: #f5f5f7;
  padding: 0.5em 0.625em;
}
.a-long-text h1 + h2 {
  margin-top: 1em;
}
.a-long-text * + h2 {
  margin-top: 1.4em;
}
.a-long-text h2 + h3 {
  margin-top: 1.4em;
}
.a-long-text * + h2,
.a-long-text * + h3 {
  margin-top: 1.5em;
}
.a-long-text * + h4,
.a-long-text * + h5 {
  margin-top: 1em;
}
.a-long-text h3 {
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.625em;
  padding-bottom: 0.1875em;
  border-bottom: solid 1px #dcdcde;
}
.a-long-text h4 {
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.625em;
}
.a-long-text h5 {
  font-size: 1em;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.625em;
}
.a-long-text p {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.a-long-text a {
  word-break: break-all;
  text-decoration: underline;
}
.a-long-text a:link {
  color: #1A0DAB;
}
.a-long-text a:visited {
  color: #660099;
}
.a-long-text a:hover {
  color: #660099;
}
.a-long-text a:active {
  color: #660099;
}
.a-long-text a:hover, .a-long-text a:active {
  text-decoration: none;
}
p .a-long-text a {
  word-break: break-all;
}
.a-long-text a:hover img {
  border-color: #dbdde0;
}
.a-long-text a.a-button {
  text-decoration: none;
  color: #ffffff;
}
.a-long-text code {
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  -webkit-hyphens: none;
          hyphens: none;
}
.a-long-text pre {
  padding: 0;
  margin-bottom: 1.5em;
}
.a-long-text pre code {
  border: solid 1px #d2d5d8;
  font-size: 0.9375em;
  line-height: 1.5;
  overflow: auto;
  display: block;
  width: 100%;
  padding: 0.875em;
}
.a-long-text p code,
.a-long-text li code {
  font-size: 0.875em;
  line-height: 1.7;
  color: #1E2D3C;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  border: solid 1px #d2d5d8;
  background-color: #f6f7f7;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 0.125rem;
}
.a-long-text hr {
  display: block;
  margin-top: 1.5em;
  margin-bottom: 2em;
}
.a-long-text hr:before {
  display: block;
  font-size: 0.9375rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.25rem;
  text-indent: -0.25rem;
}
.a-long-text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid transparent;
}
@media (max-width: 47.9375em) {
  .a-long-text img {
    max-width: 100% !important;
  }
}
.a-long-text img.is-xs {
  max-width: 10em;
}
.a-long-text img.is-sm {
  max-width: 20em;
}
.a-long-text img.is-md {
  max-width: 30em;
}
.a-long-text ol {
  list-style-type: decimal;
}
.a-long-text > ul {
  list-style-type: disc;
}
.a-long-text > ol {
  list-style-type: decimal;
}
.a-long-text li ul,
.a-long-text li ol {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.a-long-text li > ul {
  list-style-type: circle;
}
.a-long-text li > ul > li > ul {
  list-style-type: square;
}
.a-long-text ul,
.a-long-text ol {
  list-style-position: outside;
  margin-left: 1.75em;
  margin-bottom: 1.5em;
}
.a-long-text ul:last-child,
.a-long-text ol:last-child {
  margin-bottom: 0;
}
.a-long-text li {
  font-size: 1em;
  line-height: 1.607;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.a-long-text li:first-child {
  margin-top: 0;
}
.a-long-text li:last-child {
  margin-bottom: 0;
}
.a-long-text li input {
  margin-right: 0.25rem;
}
.a-long-text p + ul,
.a-long-text p + ol {
  margin-top: 1em;
}
.a-long-text div,
.a-long-text nav {
  margin-bottom: 1.5em;
}
.a-long-text table {
  width: 100%;
}
.a-long-text table:not(:last-child) {
  margin-bottom: 2em;
}
.a-long-text th,
.a-long-text td {
  border: solid 1px #a5abb1;
  padding: 0.5em 0.625em;
  font-size: 0.875em;
  line-height: 1.6;
}
.a-long-text th {
  background-color: #edeeef;
}
.a-long-text tbody tr:nth-child(even) {
  background-color: #fbfbfb;
}
.a-long-text blockquote {
  padding-left: 1.125em;
  margin-top: 1.5em;
  margin-bottom: 2em;
  position: relative;
  border-left: solid 0.25em #e9eaec;
}
.a-long-text blockquote ol {
  list-style-type: decimal;
}
.a-long-text blockquote > ul {
  list-style-type: disc;
}
.a-long-text blockquote > ol {
  list-style-type: decimal;
}
.a-long-text blockquote li ul,
.a-long-text blockquote li ol {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.a-long-text blockquote li > ul {
  list-style-type: circle;
}
.a-long-text blockquote li > ul > li > ul {
  list-style-type: square;
}
p + .a-long-text blockquote {
  margin-top: 3em;
  margin-bottom: 2.5em;
}
.a-long-text blockquote code {
  font-style: normal;
}
.a-long-text blockquote > *:last-child {
  margin-bottom: 0 !important;
}
.a-long-text details {
  font-size: fz(2);
  line-height: 1.8;
  margin-top: 1.5em;
  border: solid 1px #d2d5d8;
  border-radius: 0.25rem;
}
.a-long-text details summary {
  font-size: 1em;
  line-height: 1.8;
  margin-top: 0;
  cursor: pointer;
  padding: 0.5em 1em;
  outline: none;
}
.a-long-text details summary + div {
  padding: 0.5em 1em;
}
.a-long-text details summary + div *:last-child {
  margin-bottom: 0;
}
.a-long-text details[open] summary {
  border-bottom: solid 1px #d2d5d8;
}
.a-long-text iframe {
  display: block;
  max-width: 100%;
  margin-top: 1.5em;
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
}
.a-long-text .is-accent {
  color: #F01E28;
}
.a-long-text * ol {
  list-style-type: decimal;
}
.a-long-text * > ul {
  list-style-type: disc;
}
.a-long-text * > ol {
  list-style-type: decimal;
}
.a-long-text * li ul,
.a-long-text * li ol {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.a-long-text * li > ul {
  list-style-type: circle;
}
.a-long-text * li > ul > li > ul {
  list-style-type: square;
}

.a-select {
  width: 100%;
  cursor: pointer;
  position: relative;
  background-color: #fafbfb;
  border-radius: 0.25rem;
  color: #1E2D3C;
}
body.is-ie11 .a-select {
  width: auto;
}
.a-select > select {
  height: 2.25rem;
}
.a-select ul {
  line-height: 1.5;
}
.a-select li {
  display: inline;
  line-height: 1.5;
}
.a-select li:not(:last-child)::after {
  content: "、";
}
.a-select.is-inputed {
  display: flex;
  align-items: center;
  padding-left: 1em;
  color: #9494a0;
  border: solid 1px #dcdcde;
  background-color: #f5f5f7;
  pointer-events: none;
  cursor: not-allowed;
}
.a-select.is-inputed::before {
  content: none;
}
.a-select:hover {
  background-color: #ffffff;
}
.a-select.without-before::before {
  content: none;
}
.a-select select,
.a-select .a-select__blank {
  width: 100%;
  padding-left: 0.75em;
  padding-right: 1.5em;
  border: solid 1px #dcdcde;
  border-radius: 0.25rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  color: #1E2D3C;
  transition: all 0.2s ease-out;
}
body.is-ie11 .a-select select,
body.is-ie11 .a-select .a-select__blank {
  width: auto;
}
.a-select select:hover,
.a-select .a-select__blank:hover {
  border-color: #2d4b87;
  box-shadow: 0 0 0 0.1875rem rgba(45, 75, 135, 0.25);
}
.a-select select:disabled,
.a-select .a-select__blank:disabled {
  background-color: #e2e2e2;
  pointer-events: none;
}

.a-select__blank {
  display: flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 1.875rem 0.5rem 0.5rem;
}

.a-sub-action {
  font-size: 1em;
  line-height: 1.4;
  color: #9494a0;
  text-decoration: underline;
}
.a-sub-action:hover, .a-sub-action:active {
  text-decoration: none;
}

.a-unit {
  font-size: 1rem;
  line-height: 1.4;
}

.a-badge {
  text-transform: none;
  display: inline-flex;
  border: solid 1px;
  border-radius: 1em;
  font-family: system-ui, sans-serif;
  white-space: nowrap;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  font-weight: 400;
}
.a-badge:not(:first-child) {
  margin-left: 0.1875em;
}
.a-badge:not(:last-child) {
  margin-right: 0.1875em;
}
.a-badge i:first-child {
  margin-right: 0.5em;
  padding-left: 0.25em;
}
.a-badge span:last-child {
  padding-right: 0.125em;
}
.a-badge.is-block {
  width: 100%;
  display: flex;
}
.a-badge.is-primary {
  background-color: #2d4b87;
  color: #ffffff;
  border-color: #2d4b87;
}
.a-badge.is-secondary {
  background-color: #FAFAFB;
  color: #1E2D3C;
  border-color: #cdcdce;
}
.a-badge.is-info {
  background-color: #29c3d4;
  color: #1E2D3C;
  border-color: #29c3d4;
}
.a-badge.is-success {
  background-color: #42bda2;
  color: #ffffff;
  border-color: #42bda2;
}
.a-badge.is-warning {
  background-color: #FEBB02;
  color: #1E2D3C;
  border-color: #d09902;
}
.a-badge.is-accent {
  background-color: #F01E28;
  color: #ffffff;
  border-color: #F01E28;
}
.a-badge.is-disabled {
  background-color: #e2e2e2;
  color: #1E2D3C;
  border-color: #b9b9b9;
  color: #9494a0;
}
.a-badge.is-dark {
  background-color: #505050;
  color: #ffffff;
  border-color: #505050;
}
.a-badge.is-bordered-primary {
  background-color: #d4edff;
  border-color: #2d4b87;
  color: #2d4b87;
}
.a-badge.is-bordered-accent {
  background-color: #FEE0E4;
  border-color: #F01E28;
  color: #b6171e;
}
.a-badge.is-bordered-warning {
  background-color: #fff1cb;
  border-color: #FEBB02;
  color: #846101;
}
.a-badge.is-bordered-info {
  background-color: #e2f8fb;
  border-color: #29c3d4;
  color: #1f94a1;
}
.a-badge.is-bordered-success {
  background-color: #ddf7f1;
  border-color: #42bda2;
  color: #32907b;
}
.a-badge.is-xs {
  font-size: 0.625rem;
  padding-left: 0.625em;
  padding-right: 0.625em;
  height: 1.75em;
}
.a-badge.is-xs i:first-child {
  font-size: 0.625rem;
}
.a-badge.is-sm {
  font-size: 0.6875rem;
  padding-left: 0.6875em;
  padding-right: 0.6875em;
  height: 1.9em;
}
.a-badge.is-sm i:first-child {
  font-size: 0.6875rem;
}
.a-badge.is-md {
  font-size: 0.75rem;
  padding-left: 0.75em;
  padding-right: 0.75em;
  height: 1.75em;
  padding-top: 0.125em;
}
.a-badge.is-md i:first-child {
  font-size: 0.75rem;
}
.a-badge.is-tel {
  background-color: #1c6497;
  color: #ffffff;
  border-color: #1c6497;
}
.a-badge.is-email {
  background-color: #44793b;
  color: #ffffff;
  border-color: #44793b;
}
.a-badge.is-message {
  background-color: #651b77;
  color: #ffffff;
  border-color: #651b77;
}
.a-badge.is-online_meeting {
  background-color: #5d6821;
  color: #ffffff;
  border-color: #5d6821;
}
.a-badge.is-offline_meeting {
  background-color: #85361e;
  color: #ffffff;
  border-color: #85361e;
}
.a-badge.is-etc {
  background-color: #6b6b6b;
  color: #ffffff;
  border-color: #6b6b6b;
}
.a-badge.is-information_collecting {
  background-color: #2d4b87;
  color: #ffffff;
  border-color: #2d4b87;
}
.a-badge.is-estimate_requested {
  background-color: #42bda2;
  color: #ffffff;
  border-color: #42bda2;
}
.a-badge.is-inactivated {
  background-color: #FEBB02;
  color: #1E2D3C;
  border-color: #d09902;
}

.a-block-radio span {
  position: relative;
  border: solid 1px #dcdcde;
  font-size: 1em;
  line-height: 1.4;
  display: flex;
  border-radius: 0.25rem;
  min-height: 2.5rem;
  align-items: center;
  cursor: pointer;
  padding-left: calc(0.875rem + 1em);
  padding-right: 0.75em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  transition: all 0.2s ease-out;
}
body.is-ie11 .a-block-radio span {
  padding-top: 0.6875em;
  padding-bottom: 0.6875em;
}
.a-block-radio:hover span {
  border-color: #F01E28;
  box-shadow: 0 0 0 0.1875rem rgba(240, 30, 40, 0.25);
}
.a-block-radio span::before,
.a-block-radio span::after {
  height: 0.875rem;
  width: 0.875rem;
  text-decoration: none;
  position: absolute;
  left: 0.375rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.2s ease-out;
  border-radius: 50%;
}
.a-block-radio span::before {
  content: "";
  display: block;
  background-color: #f5f5f7;
  border: solid 1px #dcdcde;
}
.a-block-radio input:checked + span {
  border-color: #53E698;
  background-color: #E0FFEC;
}
.a-block-radio:hover input:checked + span {
  pointer-events: none;
  box-shadow: none;
}
.a-block-radio input:checked + span::before {
  background-color: #2d4b87;
  border-color: #2d4b87;
}
.a-block-radio input:checked + span::after {
  content: "";
  display: block;
  background-color: #ffffff;
  border: solid calc(0.875rem - (0.875rem * .68)) #2d4b87;
}

.a-circled-number {
  height: 2em;
  width: 2em;
  border-radius: 50%;
  font-size: 1em;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D9D9D9;
}

.a-form-map {
  height: 16rem;
  width: 100%;
  background-color: #EDEEEF;
}

.lpBox {
  border: 2px solid #ffffff;
  transition: 0.2s;
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.a-short-text > *:first-child {
  margin-top: 0;
}
.a-short-text > *:last-child {
  margin-bottom: 0;
}
.a-short-text h2 {
  font-size: 1.125em;
  line-height: 1.4;
  margin-top: 1em;
  margin-bottom: 0.75em;
  font-weight: 600;
}
.a-short-text p {
  font-size: 1em;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 1em;
}
.a-short-text ol {
  list-style-type: decimal;
}
.a-short-text > ul {
  list-style-type: disc;
}
.a-short-text > ol {
  list-style-type: decimal;
}
.a-short-text li ul,
.a-short-text li ol {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.a-short-text li > ul {
  list-style-type: circle;
}
.a-short-text li > ul > li > ul {
  list-style-type: square;
}
.a-short-text ul,
.a-short-text ol {
  list-style-position: outside;
  margin-left: 1.75em;
  margin-bottom: 1.5em;
}
.a-short-text ul.is-notes {
  list-style: none;
  margin-left: 1.25em;
}
.a-short-text ul.is-notes li::before {
  content: "※";
  display: inline-block;
  margin-right: 0.125em;
}
.a-short-text li {
  font-size: 1em;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0.125em;
}
.a-short-text a {
  word-break: break-all;
  text-decoration: underline;
}
.a-short-text a:link {
  color: #1A0DAB;
}
.a-short-text a:visited {
  color: #660099;
}
.a-short-text a:hover {
  color: #660099;
}
.a-short-text a:active {
  color: #660099;
}
.a-short-text a:hover, .a-short-text a:active {
  text-decoration: none;
}
p .a-short-text a {
  word-break: break-all;
}
.a-short-text dl {
  line-height: 1.6;
}
.a-short-text dl div {
  display: flex;
}
.a-short-text dl div:not(:first-child) {
  margin-top: 0.25em;
}
.a-short-text dt {
  flex-basis: 6em;
  margin-right: 1em;
  position: relative;
}
.a-short-text dt::after {
  content: ":";
  position: absolute;
  right: 0;
  top: -0.0625em;
}
.a-short-text dd {
  flex: 100;
}
.a-short-text strong.is-accent {
  color: #F01E28;
}
.a-short-text.is-emphasized {
  font-weight: bold;
  font-size: 1rem;
}
.a-short-text.is-accent {
  font-weight: bold;
  color: #F01E28;
}

.a-sub-label {
  font-size: 0.8888888889rem;
  line-height: 1.4;
}

.chartjs-render-monitor {
  max-width: 100%;
  height: auto !important;
}

.a-bar-graph {
  background-color: #dcdcde;
  height: 0.5rem;
  border-radius: 1rem;
  overflow: hidden;
}
.a-bar-graph .a-bar-graph__inner {
  background-color: #F01E28;
  height: 100%;
}

.a-block-title {
  display: flex;
  background-color: #EDEEEF;
  padding: 0.5em 0.875em;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.a-company-rank__rank {
  height: 1.25rem;
  width: auto;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.375rem;
  border-radius: 1em;
  background-color: #EDEEEF;
  position: relative;
  top: -1px;
}
.a-company-rank.is-a .a-company-rank__rank, .a-company-rank.is-b .a-company-rank__rank {
  color: #ffffff;
  background-color: #F01E28;
}
.a-company-rank.is-md .a-company-rank__rank {
  font-size: 0.8888888889rem;
}

.a-company-rank__score {
  font-family: YakuHanJPs, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.8125em;
  margin-left: 0.125em;
  opacity: 0.8;
}

.a-company-rank__name {
  color: #1E2D3C;
}

.a-form-notice {
  color: #42bda2;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.a-form-notice:not(:first-child) {
  margin-top: 0.375em;
}
.a-form-notice.is-danger {
  color: #F01E28;
}

.a-map {
  border: solid 1px #dcdcde;
  height: 28rem;
  border-radius: 0.25rem;
}

.a-simple-label {
  font-size: 1em;
  line-height: 1.4;
}

.a-table {
  width: 100%;
  background-color: #ffffff;
}
.a-table.is-bdt-0 tr:first-child th,
.a-table.is-bdt-0 tr:first-child td {
  border-top: none;
}
.a-table th,
.a-table td {
  border: solid 1px #d6dcde;
  padding: 0.5em 0.625em;
  font-size: 1em;
  line-height: 1.5;
}
.a-table th.is-actions,
.a-table td.is-actions {
  text-align: center;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  white-space: nowrap;
}
@media (min-width: 48em) {
  .a-table th.is-actions .a-button,
  .a-table td.is-actions .a-button {
    min-width: 6em;
  }
}
@media (max-width: 47.9375em) {
  .a-table th.is-actions .a-button.is-xs,
  .a-table td.is-actions .a-button.is-xs {
    min-height: 2.75em;
  }
}
.a-table th.is-sm-text,
.a-table td.is-sm-text {
  font-size: 0.8rem;
}
.a-table th p.is-xs-text,
.a-table td p.is-xs-text {
  font-size: 0.625rem;
  color: #606069;
}
.a-table th.is-accent,
.a-table td.is-accent {
  font-weight: bold;
  color: #F01E28;
}
.a-table th .a-avatar,
.a-table td .a-avatar {
  height: 2rem;
  width: 2rem;
}
.a-table thead th label {
  display: block;
  padding: 0.5em 0.625em;
  margin: -0.5em -0.625em;
  cursor: pointer;
}
.a-table tbody tr {
  transition: all 0.2s ease-out;
}
.a-table tbody tr.is-gold_partner_certification_canceled {
  background-color: #EDEEEF;
}
.a-table tbody tr:nth-child(even) {
  background-color: #fbfbfb;
}
.a-table tbody tr:nth-child(even).is-gold_partner_certification_canceled {
  background-color: #EDEEEF;
}
.a-table.is-hover tbody tr:hover {
  background-color: #f5f5f7;
}
.a-table.is-hover tbody tr:hover.is-gold_partner_certification_canceled {
  background-color: #EDEEEF;
}
.a-table th {
  white-space: nowrap;
  background-color: #f5f5f7;
}
.a-table.is-sticky-header th {
  border-bottom: none;
}
.a-table.is-sticky-header th:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: solid 1px #d6dcde;
}
.a-table.is-sticky-header tr:nth-child(1) th {
  position: sticky;
  top: -1px;
  z-index: 2;
}
.a-table.is-sticky-header tr:nth-child(2) th {
  position: sticky;
  top: 31px;
  z-index: 2;
}
.a-table.is-sticky-header tr:nth-child(3) th {
  position: sticky;
  top: 63px;
  z-index: 2;
}
.a-table.is-sticky-header tr:nth-child(4) th {
  position: sticky;
  top: 95px;
  z-index: 2;
}
.a-table td {
  word-break: break-all;
}
.a-table td .a-button:not(:last-child) {
  margin-right: 0.5em;
}
.a-table td .a-button:first-child:last-child {
  margin-right: 0;
}
.a-table td ul {
  list-style-type: disc;
  margin-left: 1.5em;
}
.a-table td ul:not(:first-child) {
  margin-top: 0.75em;
}
.a-table td li {
  font-size: 1em;
  line-height: 1.4;
  font-weight: 400;
}
.a-table td li:not(:first-child) {
  margin-top: 0.25em;
}

.a-basic-table th,
.a-basic-table td {
  border: solid 1px #dcdcde;
  padding: 0.75em;
}

.a-border {
  height: 1px;
  display: block;
  background-color: #dcdcde;
}

.a-date-input {
  position: relative;
}
@media (min-width: 62em) {
  .a-date-input .a-text-input {
    padding-right: 2.75rem;
  }
}

@media (min-width: 62em) {
  .a-date-input__picker {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: 2.75rem;
    width: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
}
@media (max-width: 61.9375em) {
  .a-date-input__picker {
    display: none;
  }
}

.a-horizontal-border {
  height: 1px;
  width: 100%;
  background-color: #dcdcde;
  display: block;
  border: none;
}

.melitList a {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  color: #1E2D3C;
  border-radius: 5px;
  border: 2px solid #F01E28;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: block;
  padding: 0 0.2rem 2rem;
  background: #ffffff;
}
.melitList span {
  position: relative;
  top: -1rem;
  border-radius: 3px;
  font-size: 70%;
  padding: 0.5rem 0.8rem;
  line-height: 1;
  display: inline-block;
  background: #F01E28;
  color: #ffffff;
}
.melitList strong {
  display: block;
}
.melitList small {
  margin-top: 0.2rem;
  letter-spacing: 1px;
  display: block;
  color: #F01E28;
  font-size: 50%;
}

.a-simple-value {
  font-size: 1em;
  line-height: 1.4;
}

.a-table .a-th-action {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 0.625em;
  margin: -0.5em -0.625em calc(-0.5em + 1px);
  cursor: pointer;
}
.a-th-action__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 1.25rem;
  width: 1.25rem;
  margin-left: 0.375rem;
  border: solid 1px #dcdcde;
  border-radius: 0.125rem;
  background-color: #ffffff;
  transition: all 0.2s ease-out;
}
.a-th-action:hover .a-th-action__icon {
  background-color: #e6e6e6;
  border-color: #c6c6c8;
}
.a-th-action.is-active {
  color: #F01E28;
}
.a-th-action.is-active .a-th-action__icon {
  background-color: #ffc5cc;
  border-color: #ff798c;
}

.a-bordered-headding {
  font-size: 1em;
  line-height: 1.4;
  font-weight: 600;
  padding-bottom: 0.25em;
  border-bottom: solid 1px #B7BDC1;
}

.a-disabled-tel-link a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.a-license {
  height: 1.25rem;
  width: auto;
  padding-left: 0.75em;
  padding-right: 0.75em;
  font-size: 0.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.375rem;
  border-radius: 1em;
  position: relative;
  top: -1px;
}
.a-license.is-constructer {
  background-color: #FEBB02;
}
.a-license.is-demolition {
  background-color: #EDEEEF;
}
.a-license + .a-license {
  margin-left: 0.25rem;
}

.a-minimum-block {
  height: 2.75rem;
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-stars {
  display: flex;
  color: #F01E28;
  justify-content: space-between;
}

.a-title-count {
  font-size: 0.5em;
  line-height: 1.5;
  display: inline-flex;
  align-items: baseline;
  margin-left: 1em;
  padding-left: 0.625em;
  padding-right: 0.625em;
  border-radius: 1em;
  border: solid 1px;
  vertical-align: middle;
  position: relative;
  top: -0.125rem;
}

.a-title-count__number {
  white-space: nowrap;
  font-size: 1.125em;
  font-weight: 700;
}

.a-title-count__unit {
  margin-left: 0.125em;
}

.a-block-label {
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3125em 0.4375em;
}
.a-block-label.is-accent {
  color: #ffffff;
  background-color: #F01E28;
}

.a-button {
  font-family: YakuHanJPs, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  text-transform: none;
  display: inline-flex;
  border: solid 1px;
  border-radius: 0.25rem;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
}
.a-button * {
  pointer-events: none;
}
.a-button.is-block {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.a-button:focus {
  outline: none;
}
.a-button:disabled {
  cursor: default;
  pointer-events: none;
}
@media (min-width: 48em) {
  .is-button-group .a-button {
    margin-right: -1px;
  }
  .is-button-group .a-button:hover, .is-button-group .a-button:active {
    position: relative;
  }
  .is-button-group li:not(:first-child):not(:last-child) .a-button {
    border-radius: 0;
  }
  .is-button-group li:first-child .a-button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .is-button-group li:last-child .a-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.a-button i:first-child {
  margin-right: 0.35em;
}
.a-button i:last-child {
  margin-left: 0.35em;
}
.a-button i.material-symbols-rounded:first-child,
.a-button i.material-symbols-rounded:last-child {
  font-size: 1.5em;
}
.a-button.is-primary, .a-button.is-submit {
  background-color: #2d4b87;
  content: "72.87";
  color: #ffffff;
  border-color: #2d4b87;
}
.a-button.is-primary:hover, .a-button.is-primary:focus, .a-button.is-primary:active, .a-button.is-submit:hover, .a-button.is-submit:focus, .a-button.is-submit:active {
  background-color: #203661;
  border-color: #2d4b87;
}
.a-button.is-primary:focus, .a-button.is-primary:active, .a-button.is-submit:focus, .a-button.is-submit:active {
  box-shadow: 0 0 0 0.1875rem rgba(45, 75, 135, 0.25);
}
.a-button.is-primary.is-disabled, .a-button.is-primary:disabled:not(.text-clear), .a-button.is-submit.is-disabled, .a-button.is-submit:disabled:not(.text-clear) {
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  border-color: #2a477f;
}
.a-button.is-secondary, .a-button.is-back, .a-button.is-index, .a-button.is-show, .a-button.is-search, .a-button.is-edit, .a-button.is-new, .a-button.is-select-file, .a-button.is-add, .a-button.is-copy {
  background-color: #FAFAFB;
  content: "250.114";
  color: #1E2D3C;
  border-color: #DEE0E2;
}
.a-button.is-secondary:hover, .a-button.is-secondary:focus, .a-button.is-secondary:active, .a-button.is-back:hover, .a-button.is-back:focus, .a-button.is-back:active, .a-button.is-index:hover, .a-button.is-index:focus, .a-button.is-index:active, .a-button.is-show:hover, .a-button.is-show:focus, .a-button.is-show:active, .a-button.is-search:hover, .a-button.is-search:focus, .a-button.is-search:active, .a-button.is-edit:hover, .a-button.is-edit:focus, .a-button.is-edit:active, .a-button.is-new:hover, .a-button.is-new:focus, .a-button.is-new:active, .a-button.is-select-file:hover, .a-button.is-select-file:focus, .a-button.is-select-file:active, .a-button.is-add:hover, .a-button.is-add:focus, .a-button.is-add:active, .a-button.is-copy:hover, .a-button.is-copy:focus, .a-button.is-copy:active {
  background-color: #EDEEEF;
  border-color: #DEE0E2;
}
.a-button.is-secondary:focus, .a-button.is-secondary:active, .a-button.is-back:focus, .a-button.is-back:active, .a-button.is-index:focus, .a-button.is-index:active, .a-button.is-show:focus, .a-button.is-show:active, .a-button.is-search:focus, .a-button.is-search:active, .a-button.is-edit:focus, .a-button.is-edit:active, .a-button.is-new:focus, .a-button.is-new:active, .a-button.is-select-file:focus, .a-button.is-select-file:active, .a-button.is-add:focus, .a-button.is-add:active, .a-button.is-copy:focus, .a-button.is-copy:active {
  box-shadow: 0 0 0 0.1875rem rgba(250, 250, 251, 0.25);
}
.a-button.is-secondary.is-disabled, .a-button.is-secondary:disabled:not(.text-clear), .a-button.is-back.is-disabled, .a-button.is-back:disabled:not(.text-clear), .a-button.is-index.is-disabled, .a-button.is-index:disabled:not(.text-clear), .a-button.is-show.is-disabled, .a-button.is-show:disabled:not(.text-clear), .a-button.is-search.is-disabled, .a-button.is-search:disabled:not(.text-clear), .a-button.is-edit.is-disabled, .a-button.is-edit:disabled:not(.text-clear), .a-button.is-new.is-disabled, .a-button.is-new:disabled:not(.text-clear), .a-button.is-select-file.is-disabled, .a-button.is-select-file:disabled:not(.text-clear), .a-button.is-add.is-disabled, .a-button.is-add:disabled:not(.text-clear), .a-button.is-copy.is-disabled, .a-button.is-copy:disabled:not(.text-clear) {
  color: rgba(30, 45, 60, 0.4);
  pointer-events: none;
  border-color: #ebebec;
}
.a-button.is-info {
  background-color: #29c3d4;
  content: "150.892";
  color: #1E2D3C;
  border-color: #29c3d4;
}
.a-button.is-info:hover, .a-button.is-info:focus, .a-button.is-info:active {
  background-color: #219ca9;
  border-color: #29c3d4;
}
.a-button.is-info:focus, .a-button.is-info:active {
  box-shadow: 0 0 0 0.1875rem rgba(41, 195, 212, 0.25);
}
.a-button.is-info.is-disabled, .a-button.is-info:disabled:not(.text-clear) {
  color: rgba(30, 45, 60, 0.4);
  pointer-events: none;
  border-color: #27b7c7;
}
.a-button.is-success {
  background-color: #42bda2;
  content: "149.145";
  color: #ffffff;
  border-color: #42bda2;
}
.a-button.is-success:hover, .a-button.is-success:focus, .a-button.is-success:active {
  background-color: #359782;
  border-color: #42bda2;
}
.a-button.is-success:focus, .a-button.is-success:active {
  box-shadow: 0 0 0 0.1875rem rgba(66, 189, 162, 0.25);
}
.a-button.is-success.is-disabled, .a-button.is-success:disabled:not(.text-clear) {
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  border-color: #3eb298;
}
.a-button.is-warning {
  background-color: #FEBB02;
  content: "185.943";
  color: #1E2D3C;
  border-color: #d09902;
}
.a-button.is-warning:hover, .a-button.is-warning:focus, .a-button.is-warning:active {
  background-color: #cc9601;
  border-color: #c18e02;
}
.a-button.is-warning:focus, .a-button.is-warning:active {
  box-shadow: 0 0 0 0.1875rem rgba(254, 187, 2, 0.25);
}
.a-button.is-warning.is-disabled, .a-button.is-warning:disabled:not(.text-clear) {
  color: rgba(30, 45, 60, 0.4);
  pointer-events: none;
  border-color: #efb002;
}
.a-button.is-danger, .a-button.is-delete, .a-button.is-accent {
  background-color: #F01E28;
  content: "93.93";
  color: #ffffff;
  border-color: #F01E28;
}
.a-button.is-danger:hover, .a-button.is-danger:focus, .a-button.is-danger:active, .a-button.is-delete:hover, .a-button.is-delete:focus, .a-button.is-delete:active, .a-button.is-accent:hover, .a-button.is-accent:focus, .a-button.is-accent:active {
  background-color: #cd0e17;
  border-color: #F01E28;
}
.a-button.is-danger:focus, .a-button.is-danger:active, .a-button.is-delete:focus, .a-button.is-delete:active, .a-button.is-accent:focus, .a-button.is-accent:active {
  box-shadow: 0 0 0 0.1875rem rgba(240, 30, 40, 0.25);
}
.a-button.is-danger.is-disabled, .a-button.is-danger:disabled:not(.text-clear), .a-button.is-delete.is-disabled, .a-button.is-delete:disabled:not(.text-clear), .a-button.is-accent.is-disabled, .a-button.is-accent:disabled:not(.text-clear) {
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  border-color: #e21c26;
}
.a-button.is-disabled {
  background-color: #e2e2e2;
  content: "226";
  color: #1E2D3C;
  border-color: #b9b9b9;
}
.a-button.is-disabled:hover, .a-button.is-disabled:focus, .a-button.is-disabled:active {
  background-color: #c9c9c9;
  border-color: #acacac;
}
.a-button.is-disabled:focus, .a-button.is-disabled:active {
  box-shadow: 0 0 0 0.1875rem rgba(226, 226, 226, 0.25);
}
.a-button.is-disabled.is-disabled, .a-button.is-disabled:disabled:not(.text-clear) {
  color: rgba(30, 45, 60, 0.4);
  pointer-events: none;
  border-color: #d4d4d4;
}
.a-button.is-muted {
  border: none;
  min-height: 0 !important;
  height: auto;
  border-radius: 0 !important;
  text-decoration: underline;
  color: #9494a0;
  font-weight: 400 !important;
  padding: 0 !important;
  min-width: 0 !important;
}
.a-button.is-muted:hover, .a-button.is-muted:active {
  text-decoration: none;
}
.a-button.is-bordered-primary {
  background-color: #d4edff;
  border-color: #2d4b87;
  color: #2d4b87;
}
.a-button.is-bordered-primary:hover {
  opacity: 0.8;
}
.a-button.is-bordered-accent {
  background-color: #FEE0E4;
  border-color: #F01E28;
  color: #F01E28;
}
.a-button.is-bordered-accent:hover {
  opacity: 0.8;
}
.a-button.is-bordered-warning {
  background-color: #fff1cb;
  border-color: #FEBB02;
  color: #846101;
}
.a-button.is-bordered-warning:hover {
  opacity: 0.8;
}
.a-button.is-bordered-info {
  background-color: #e2f8fb;
  border-color: #29c3d4;
  color: #1f94a1;
}
.a-button.is-bordered-info:hover {
  opacity: 0.8;
}
.a-button.is-bordered-success {
  background-color: #ddf7f1;
  border-color: #42bda2;
  color: #32907b;
}
.a-button.is-bordered-success:hover {
  opacity: 0.8;
}
.a-button.is-biz-primary {
  background-color: #F01E28;
  content: "93.93";
  color: #ffffff;
  border-color: #F01E28;
}
.a-button.is-biz-primary:hover, .a-button.is-biz-primary:focus, .a-button.is-biz-primary:active {
  background-color: #cd0e17;
  border-color: #F01E28;
}
.a-button.is-biz-primary:focus, .a-button.is-biz-primary:active {
  box-shadow: 0 0 0 0.1875rem rgba(240, 30, 40, 0.25);
}
.a-button.is-biz-primary.is-disabled, .a-button.is-biz-primary:disabled:not(.text-clear) {
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  border-color: #e21c26;
}
.a-button.is-biz-default {
  background-color: #FAFAFB;
  content: "250.114";
  color: #1E2D3C;
  border-color: #DEE0E2;
}
.a-button.is-biz-default:hover, .a-button.is-biz-default:focus, .a-button.is-biz-default:active {
  background-color: #EDEEEF;
  border-color: #DEE0E2;
}
.a-button.is-biz-default:focus, .a-button.is-biz-default:active {
  box-shadow: 0 0 0 0.1875rem rgba(250, 250, 251, 0.25);
}
.a-button.is-biz-default.is-disabled, .a-button.is-biz-default:disabled:not(.text-clear) {
  color: rgba(30, 45, 60, 0.4);
  pointer-events: none;
  border-color: #ebebec;
}
.a-button.is-xs {
  font-size: 0.75rem;
  padding-left: 0.75em;
  padding-right: 0.75em;
  min-height: 2em;
  font-weight: 700;
}
.a-button.is-xs i {
  font-size: 0.8888888889rem;
}
.a-button.is-sm {
  font-size: 0.8125rem;
  padding-left: 1.015625em;
  padding-right: 1.015625em;
  min-height: 2.4578125em;
  font-weight: 700;
}
.a-button.is-sm i {
  font-size: 1rem;
}
.a-button.is-md {
  font-size: 1rem;
  padding-left: 1em;
  padding-right: 1em;
  min-height: 2.4em;
  font-weight: 700;
}
.a-button.is-md i {
  font-size: 1.1428571429rem;
}
.a-button.is-lg {
  font-size: 1rem;
  padding-left: 1em;
  padding-right: 1em;
  min-height: 3rem;
  font-weight: 700;
}
.a-button.is-lg i {
  font-size: 1.3333333333rem;
}
.a-button.is-xl {
  font-weight: 700;
}
@media (min-width: 48em) {
  .a-button.is-xl {
    font-size: 1.5rem;
    padding-left: 1.125em;
    padding-right: 1.125em;
    min-height: 2.85em;
  }
}
@media (max-width: 47.9375em) {
  .a-button.is-xl {
    font-size: 1.25rem;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    min-height: 3em;
  }
}
.a-button.is-xl i {
  font-size: 1.6rem;
}
@media (max-width: 47.9375em) {
  .a-button.is-sm-fs-13 {
    font-size: 0.8rem;
  }
}
@media (min-width: 48em) {
  .a-button.is-md-fs-16 {
    font-size: 1rem;
  }
}
.a-button.is-delete-icon-button {
  padding-left: 0;
  padding-right: 0;
  width: 1.75em;
  min-width: 1.75em;
  height: 1.75em;
  min-height: 1.75em;
  margin-left: 1em;
}
.a-button.is-borderless {
  border: 0;
}
.a-button.has-description {
  padding-top: 0.625em;
  padding-bottom: 0.625em;
  min-height: 0;
}
.a-button.has-description span.a-button__description {
  display: block;
  flex-basis: 100%;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
@media (min-width: 48em) {
  .a-button.has-description span.a-button__description {
    font-size: 0.8rem;
  }
}
@media (max-width: 47.9375em) {
  .a-button.has-description span.a-button__description {
    font-size: 0.625rem;
  }
}
.a-button.has-description.is-lg {
  font-size: 1.3333333333rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.a-button.has-description.is-lg span.a-button__description {
  margin-bottom: 0.375rem;
}
.a-button.has-description.is-xl {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.a-button.has-description.is-xl span.a-button__description {
  margin-bottom: 0.375rem;
}
.a-button.has-right-icon {
  position: relative;
}
.a-button.has-right-icon i {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translate(0, -50%);
}
.a-button.is-multi-lines {
  line-height: 1.4;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  height: auto;
}

.a-button__short-text {
  letter-spacing: 0.04em;
  text-indent: 0.2em;
}

input[type=submit].a-button,
input[type=reset].a-button,
input[type=button].a-button {
  display: inline-block;
  vertical-align: middle;
}
input[type=submit].a-button.is-block,
input[type=reset].a-button.is-block,
input[type=button].a-button.is-block {
  width: 100%;
  display: block;
}

.a-button-group {
  display: flex;
}
.a-button-group > *:not(:last-child) {
  margin-right: -1px;
}
.a-button-group li:first-child .a-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.a-button-group li:last-child .a-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.a-button-group li:not(:first-child):not(:last-child) .a-button {
  border-radius: 0;
}

.button__image {
  width: 1.5em;
  margin: -0.25em 0.5em -0.25em 0;
}

.a-form-error {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 0.3125em;
  font-weight: 600;
  color: #F01E28;
  display: none;
}
.has-error .a-form-error {
  display: block;
}

.a-listed-feature {
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
}
.a-listed-feature i {
  margin-right: 0.125em;
}

.a-precautions {
  list-style: none;
}
.a-precautions li {
  position: relative;
  padding-left: 0.9375em;
  line-height: 1.45;
}
.a-precautions li:not(:first-child) {
  margin-top: 0.125em;
}
.a-precautions li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: -0.125em;
}

.stepNumber {
  background: #F01E28;
  font-size: 75%;
  color: #ffffff;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  vertical-align: middle;
}

.a-title {
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 48em) {
  .a-title.is-xl {
    font-size: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .a-title.is-xl {
    font-size: 1.75rem;
  }
}
@media (min-width: 48em) {
  .a-title.is-lg {
    font-size: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .a-title.is-lg {
    font-size: 1.375rem;
  }
}
@media (min-width: 48em) {
  .a-title.is-md {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .a-title.is-md {
    font-size: 1.3333333333rem;
  }
}
@media (min-width: 48em) {
  .a-title.is-sm {
    font-size: 1.3333333333rem;
  }
}
@media (max-width: 47.9375em) {
  .a-title.is-sm {
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  .a-title.is-xs {
    font-size: 1.1428571429rem;
  }
}
@media (max-width: 47.9375em) {
  .a-title.is-xs {
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  .a-title.is-xxs {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .a-title.is-xxs {
    font-size: 0.8888888889rem;
  }
}
.a-title.is-left-bordered {
  position: relative;
  padding-left: 0.75em;
}
.a-title.is-left-bordered::before {
  content: "";
  display: block;
  height: 100%;
  width: 0.25em;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F01E28;
  border-radius: 0.0625em;
}
.a-title.is-attached-caret {
  position: relative;
  padding-left: 1em;
}
.a-title.is-attached-caret::before {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e5df";
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 48;
  font-size: 1.5em;
  color: #F01E28;
  display: block;
  height: 0.75em;
  width: 0.75em;
  position: absolute;
  left: -0.25em;
  top: 0;
}
.a-title.is-attached-bottom-line.is-all {
  padding-bottom: 0.4375em;
  position: relative;
}
.a-title.is-attached-bottom-line.is-all::before {
  content: "";
  height: 0.25rem;
  width: 3em;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background-color: #F01E28;
  border-radius: 0.25rem;
}
@media (min-width: 48em) {
  .a-title.is-attached-bottom-line.is-md-up {
    padding-bottom: 0.4375em;
    position: relative;
  }
  .a-title.is-attached-bottom-line.is-md-up::before {
    content: "";
    height: 0.25rem;
    width: 3em;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background-color: #F01E28;
    border-radius: 0.25rem;
  }
}
.a-title.is-accent {
  color: #F01E28;
}

.a-file-preview-card {
  height: 4rem;
  background: #FAFAFB;
  border: 1px solid #DEE0E2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 0.675rem;
  padding-right: 1rem;
}
.a-file-preview-card__icon {
  font-size: 1.6rem;
}
.a-file-preview-card__icon.is-pdf-file {
  color: #F01E28;
}
.a-file-preview-card__icon.is-image-file {
  color: #001DC6;
}
.a-file-preview-card__text {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8888888889rem;
  line-height: 1.25rem;
  padding-left: 0.675rem;
}

.a-fa-icon {
  margin: 0 4px;
  font-size: 17px;
}
.a-fa-icon.info {
  color: #29c3d4;
}

.a-circle-user-avatar i {
  font-size: 40px;
}

.a-icon-badge {
  display: flex;
  align-items: center;
}
.a-icon-badge i {
  margin-left: 0.25em;
}
.a-icon-badge.is-success i {
  color: #42bda2;
}
.a-icon-badge.is-danger i {
  color: #F01E28;
}
.a-icon-badge.is-canceled i {
  color: inherit;
}

.a-gold-partner-certification-badge {
  display: inline-flex;
}
.a-gold-partner-certification-badge img {
  height: 17.5px;
}

.m-comments-count {
  display: flex;
  align-items: center;
}
.m-stars + .m-comments-count {
  margin-left: 0.75em;
}

.m-comments-count__icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.3125em;
}
.m-comments-count__icon i {
  transform: scale(-1, 1);
  font-size: 1rem;
}

.m-evaluation {
  display: flex;
  align-items: center;
  height: inherit;
  line-height: 1;
  flex-wrap: wrap;
}
.m-evaluation * {
  height: inherit;
}

.m-evaluation__point {
  display: flex;
  align-items: center;
  margin-right: 0.5em;
}

.m-evaluation__point-label {
  margin-right: 0.25em;
  white-space: nowrap;
}

.m-evaluation__point-score {
  margin-left: 0.25em;
  font-size: 1.125em;
  font-weight: 600;
}

.m-evaluation__point-score-detail {
  font-weight: 400;
  margin-left: 0.25rem;
  color: #9494a0;
}

@media (min-width: 48em) {
  .m-long-text .a-button.is-block {
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.m-long-text.is-low ol {
  list-style: none;
  counter-reset: number;
  margin-left: 0;
}
.m-long-text.is-low ol li {
  padding-left: 2.5em;
  position: relative;
}
.m-long-text.is-low ol li::before {
  font-size: 1.125em;
  width: 2em;
  text-align: right;
  font-family: monospace;
  counter-increment: number;
  content: counter(number) ".";
  display: block;
  position: absolute;
  left: 0;
  top: 0.15625em;
}
.m-long-text.is-low li {
  line-height: 1.8;
}
.m-long-text.is-low li ol,
.m-long-text.is-low li ul {
  margin-top: 1em;
  margin-bottom: 1em;
}
.m-long-text.is-low li li::before {
  content: "(" counter(number) ")";
}
.m-long-text.is-low li li:not(:first-child) {
  margin-top: 1em;
}
.m-long-text .kijinai_list-box_4 {
  border-radius: 5px;
  padding: 1rem;
  border: 2px solid #EEE;
}
.m-long-text .toc {
  background: #f7f7f7;
  padding: 1rem;
}
.m-long-text .toc::before {
  font-size: 110%;
  margin-bottom: 1rem;
  content: "─　目次　─";
  text-align: center;
  display: block;
  font-weight: bold;
}
.m-long-text .kijinai_list-box_5 {
  margin-top: 2rem;
  border-radius: 5px;
  padding: 1.5rem 1rem 1rem;
  border: 1px solid #3f97d6;
  position: relative;
}
.m-long-text .kijinai_list-box_5 h3 {
  border-radius: 5px;
  font-size: 1rem;
  padding: 5px 15px;
  line-height: 1.2;
  position: absolute;
  top: -1em;
  left: 1em;
  font-weight: bold;
  background: #3f97d6;
  color: #ffffff;
}
.m-long-text .kannrenn_1 {
  border-radius: 5px;
  padding: 1rem;
  border: 2px solid #EEE;
}
.m-long-text .kannrenn_1::before {
  font-size: 115%;
  color: #3f97d6;
  font-weight: bold;
  content: "関連する記事";
  margin-bottom: 0.5em;
  display: block;
}
.m-long-text .www-blockquote {
  color: #999;
  position: relative;
  margin-top: 1.3rem;
  border-radius: 5px;
  padding: 1.3rem;
  font-style: italic;
  background: #f7f7f7;
}
.m-long-text .www-blockquote::before {
  top: -10px;
  left: 1.2rem;
  line-height: 1;
  content: "“";
}
.m-long-text .www-blockquote::before, .m-long-text .www-blockquote::after {
  font-size: 3rem;
  color: #3f97d6;
  position: absolute;
}
.m-long-text .www-blockquote::after {
  line-height: 0;
  bottom: -8px;
  right: 1.2rem;
  content: "”";
}
.m-long-text .nav-by-structure__items {
  list-style: none;
  margin-left: 0;
}
.m-long-text .nav-by-structure__items .a-button {
  color: #1E2D3C;
}
.m-long-text .u-list-reset ul,
.m-long-text .u-list-reset ol {
  list-style: none;
  margin-left: 0;
}
.m-long-text .u-list-reset li {
  margin: 0;
}
.m-long-text .a-block-link {
  text-decoration: none !important;
  color: #1E2D3C !important;
}
@media (min-width: 48em) {
  .m-long-text .m-half-items {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
@media (min-width: 48em) {
  .m-long-text .m-half-items__item {
    margin-right: -2px !important;
  }
}
@media (max-width: 47.9375em) {
  .m-long-text .m-half-items__item:not(:first-child) {
    margin-top: -2px !important;
  }
}
.m-long-text .www-centerd-title {
  text-align: center;
  background: none;
  border-left: none;
  position: relative;
}
.m-long-text .www-centerd-title::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 0.25rem;
  width: 7.5rem;
  background-color: #F01E28;
  transform: translate(-50%, 0);
}
.m-long-text .www-caption {
  display: block;
  text-align: center;
}
.m-long-text .www-price-table img {
  width: 7.5rem;
}

.m-stack-links-list__item:not(:first-child) {
  border-top: dashed 1px #dcdcde;
}

.m-stack-links-list__item-link {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  display: block;
  color: #1E2D3C;
  text-decoration: none;
}
.m-stack-links-list__item-link:hover, .m-stack-links-list__item-link:active {
  text-decoration: underline;
}
.m-stack-links-list__item-link:hover {
  color: #F01E28;
}

.m-checkboxes ul,
.m-radios ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.625em;
  margin-right: -0.625em;
  margin-bottom: -0.625em;
}
.m-checkboxes li,
.m-radios li {
  padding-left: 0.625em;
  padding-right: 0.625em;
  margin-bottom: 0.625em;
}

.m-data-list.has-border-top {
  border-top: solid 1px #dcdcde;
}
.m-data-list.has-border-bottom {
  border-bottom: solid 1px #dcdcde;
}

@media (min-width: 62em) {
  .m-data-list__items {
    display: flex;
    flex-wrap: wrap;
  }
}
.m-data-list__items.has-border-top {
  border-top: solid 1px #dcdcde;
}
.m-data-list__items.has-border-bottom {
  border-bottom: solid 1px #dcdcde;
}

.m-data-list__item {
  border-bottom: solid 1px #dcdcde;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.5;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 62em) {
  .m-data-list__item {
    flex-basis: 50%;
    max-width: 50%;
  }
  .m-data-list__item.is-wide {
    flex-basis: 100%;
    max-width: 100%;
  }
  .m-data-list__item:nth-child(odd):last-child {
    flex-basis: 100%;
    max-width: 100%;
    border-right: none;
  }
  .m-data-list__item:nth-child(odd):nth-last-child(2) {
    border-bottom: none;
  }
}
.m-data-list__item:nth-child(odd) {
  border-right: solid 1px #dcdcde;
}
.m-data-list__item:last-child {
  border-bottom: none;
}
.m-data-list__item.is-stack {
  display: block;
}

.m-data-list__item-label {
  margin-right: 0.5em;
  font-weight: 600;
  font-size: 0.9375em;
}
.m-data-list__item-label::after {
  content: ":";
  margin-left: 0.25em;
}
.m-data-list__item.is-stack .m-data-list__item-label {
  margin-right: 0;
  margin-bottom: 0.25em;
}
.m-data-list__item.is-stack .m-data-list__item-label::after {
  content: none;
}

.m-data-list__item-value + .m-data-list__item-value {
  border-top: 1px dotted #dcdcde;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.m-price {
  font-size: 1em;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
}
.m-price > *:not(:first-child) {
  margin-left: 0.1875em;
}
.m-price > * {
  white-space: nowrap;
}
.m-price .is-lg {
  font-size: 1.125em;
}
.m-price .is-sm {
  font-size: 0.875em;
  align-self: flex-end;
}
.m-price .is-bold {
  font-weight: 700;
}

.m-price__option {
  font-size: 0.875em;
}
.m-price__option:last-child {
  margin-left: 0.1875em;
}

@media (min-width: 48em) {
  .m-price__unit {
    font-size: 0.9375em;
  }
}
@media (max-width: 47.9375em) {
  .m-price__unit {
    font-size: 0.875em;
  }
}

.m-price__option {
  font-size: 0.875em;
}
.m-price__option:not(:first-child) {
  margin-left: 0.25em;
}
.m-price__option::before {
  content: "（";
}
.m-price__option::after {
  content: "）";
}

.m-price__label {
  font-size: 0.875em;
}
.m-price__label:not(:first-child) {
  margin-left: 0.25em;
}

.m-price__text-input {
  position: relative;
}
@media (min-width: 48em) {
  .m-price__text-input {
    width: 5em;
  }
}
@media (max-width: 47.9375em) {
  .m-price__text-input {
    width: 4em;
  }
}
@media (min-width: 48em) {
  .m-price__text-input.is-price {
    width: 7em;
  }
}
@media (max-width: 47.9375em) {
  .m-price__text-input.is-price {
    width: 7em;
  }
}
body.is-ie11 .m-price__text-input {
  min-width: 6em;
}
.m-price__text-input:not(:first-child) {
  margin-left: 0.5em;
  margin-right: 0.25em;
}
.m-price__text-input.is-date {
  width: 12em;
}
.m-price__text-input input[type=text], .m-price__text-input input[type=number] {
  text-align: right;
}
.m-price__text-input.is-inputed {
  width: auto;
}

.m-price__text-input-helper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.m-price__text-input-helper > span {
  display: inline-block;
  font-size: 12px;
  text-align: right;
}

.m-price__select-box {
  width: 4em;
  align-self: flex-end;
}
.m-price__select-box:not(:first-child) {
  margin-left: 0.5em;
  margin-right: 0.25em;
}

.m-price__math-symbol {
  align-self: center;
}

.m-stars {
  display: flex;
  align-items: center;
}

.m-stars__star {
  width: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 0.0625em;
  margin-right: 0.0625em;
}
.m-stars__star i {
  font-size: 1.1428571429rem;
  color: #FEBB02;
}

@media (max-width: 47.9375em) {
  .m-biz-introduction-content [class*=col-]:not(:first-child) {
    margin-top: 1.25rem;
  }
}
.m-biz-introduction-content .row:not(:first-child) {
  margin-top: 1.25rem;
}
.m-biz-introduction-content img.has-shadow {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.4);
}

.m-biz-introduction-content__child {
  background-color: #fce5e8;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
}
.m-biz-introduction-content__child:not(:first-child) {
  margin-top: 1rem;
}
.m-biz-introduction-content__child:not(:last-child) {
  margin-bottom: 1rem;
}

.m-biz-introduction-content__child-title {
  font-size: 1.3333333333rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.75em;
}
.m-biz-introduction-content__child-title:not(:first-child) {
  margin-top: 1.5em;
}

.m-biz-introduction-content__child-title-symbol {
  height: 1.75em;
  width: 1.75em;
  border: solid 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.25em;
  font-family: monospace;
}

.m-biz-introduction-content__child-body img {
  width: 22rem;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 47.9375em) {
  .m-biz-introduction-content__child-body [class*=col-]:not(:first-child) {
    margin-top: 1.25rem;
  }
}

@media (min-width: 48em) {
  .m-estate-switcher {
    display: flex;
    align-items: center;
  }
}

.m-estate-switcher__title {
  font-size: 0.8888888889rem;
  line-height: 1;
}
@media (min-width: 48em) {
  .m-estate-switcher__title {
    margin-right: 0.875rem;
  }
}
@media (max-width: 47.9375em) {
  .m-estate-switcher__title {
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 48em) {
  .m-estate-switcher__end {
    flex: 1;
  }
}

.m-inputed-content__header {
  display: flex;
  background-color: #EDEEEF;
  padding: 0.375rem 0.75rem;
}

.m-inputed-content__title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.m-inputed-content__body {
  margin-top: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.m-inputed-content__body .a-table th {
  font-size: 0.8888888889rem;
}

.m-prices-with-detail {
  display: flex;
  align-items: flex-end;
}

.m-prices-with-detail__start {
  display: inline-flex;
  align-items: center;
  margin-left: -0.1875em;
  margin-right: -0.1875em;
  font-size: 1.1428571429rem;
  padding-right: 0.5em;
}
.m-prices-with-detail__start .m-price__number {
  font-weight: 700;
  font-size: 1.125em;
}
.m-prices-with-detail__start .m-price__unit {
  font-size: 0.875em;
  align-self: flex-end;
  color: #606069;
}

.m-prices-with-detail__end .m-prices-with-detail__details {
  color: #9494a0;
  font-size: 0.8888888889rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -0.1875em;
  margin-right: -0.1875em;
}
.m-prices-with-detail__end .m-prices-with-detail__details::before {
  content: "（";
}
.m-prices-with-detail__end .m-prices-with-detail__details::after {
  content: "）";
}
body.is-ie11 .m-prices-with-detail__end .m-prices-with-detail__details {
  flex-basis: calc(100% - 10.75em);
}

.m-prices-with-detail__price {
  padding-left: 0.1875em;
  padding-right: 0.1875em;
}

.m-star-rating {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  flex: 1;
}
.m-star-rating .m-star-rating__stars {
  width: 6em;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.m-star-rating .a-stars {
  width: 6em;
}
.m-star-rating .a-stars i {
  display: flex;
  width: 1.2em;
  justify-content: center;
}

.m-star-rating__score {
  font-size: 1.375rem;
  font-weight: 600;
  color: #F01E28;
}

.m-star-rating__stars-background .a-stars {
  color: #9494a0;
}

.m-star-rating__stars-rating {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.js-thumbnail-preview-container + .js-thumbnail-preview-container {
  margin-top: 1.5rem;
}

.m-biz-introduction-nav-link {
  display: flex;
  text-decoration: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 2px #F01E28;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.25rem;
  height: 100%;
  position: relative;
  transition: all 0.2s ease-out;
}
.m-biz-introduction-nav-link::before {
  border: solid 2px #F01E28;
  background-color: #ffffff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  font-weight: 600;
  color: #F01E28;
}
@media (min-width: 48em) {
  .m-biz-introduction-nav-link::before {
    height: 2rem;
    width: 2rem;
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .m-biz-introduction-nav-link::before {
    height: 1.5rem;
    width: 1.5rem;
    left: -0.75rem;
    top: -0.75rem;
    font-size: 0.8888888889rem;
  }
}
[class*=col-]:nth-child(1) .m-biz-introduction-nav-link::before {
  content: "1";
}
[class*=col-]:nth-child(2) .m-biz-introduction-nav-link::before {
  content: "2";
}
[class*=col-]:nth-child(3) .m-biz-introduction-nav-link::before {
  content: "3";
}
[class*=col-]:nth-child(4) .m-biz-introduction-nav-link::before {
  content: "4";
}
[class*=col-]:nth-child(5) .m-biz-introduction-nav-link::before {
  content: "5";
}
[class*=col-]:nth-child(6) .m-biz-introduction-nav-link::before {
  content: "6";
}
.m-biz-introduction-nav-link:hover {
  background-color: rgba(240, 30, 40, 0.1);
}

.m-biz-introduction-nav-link__label {
  font-size: 0.8888888889rem;
  line-height: 1.4;
  color: #1E2D3C;
  font-weight: 600;
}

.m-biz-introduction-nav-link__image-container {
  margin-top: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
@media (max-width: 47.9375em) {
  .m-biz-introduction-nav-link__image-container {
    display: none;
  }
}

.m-biz-introduction-nav-link__image {
  width: 100%;
}

.m-flash {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: solid 1px;
  position: relative;
  z-index: 100;
  font-size: 0.8888888889rem;
  display: none;
}
.is-classic_entries .m-flash, .is-proxies-web_estate_entries .m-flash {
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}
.m-flash.is-notice {
  background-color: rgba(66, 189, 162, 0.3);
  border-color: #42bda2;
  color: #215f51;
}
.m-flash.is-warning {
  background-color: rgba(254, 187, 2, 0.3);
  border-color: #FEBB02;
  color: #7f5e01;
}
.m-flash.is-alert {
  background-color: rgba(240, 30, 40, 0.3);
  border-color: #F01E28;
  color: #780f14;
}
.m-flash.is-info {
  background-color: rgba(41, 195, 212, 0.3);
  border-color: #29c3d4;
  color: #15626a;
}
input:checked + .m-flash {
  display: block;
}
body.is-admin-page .m-flash .container {
  margin-left: auto;
  margin-right: auto;
}
.m-flash + .m-flash {
  margin-top: -1px;
}

.m-flash__inner {
  display: flex;
  align-items: flex-start;
}
.is-classic_entries .m-flash__inner, .is-proxies-web_estate_entries .m-flash__inner {
  padding: 0 1.5rem;
}

.m-flash__body {
  flex: 100;
  text-align: center;
}
.m-flash__body ul {
  display: flex;
  flex-wrap: wrap;
}
.m-flash__body li {
  line-height: 1.6;
}
.m-flash__body li:not(:last-child)::after {
  content: "、";
}
.m-flash__body.a-short-text a,
.m-flash__body.a-short-text a:visited {
  text-decoration: underline;
  color: #1A0DAB;
}
.m-flash__body.a-short-text a:hover, .m-flash__body.a-short-text a:active,
.m-flash__body.a-short-text a:visited:hover,
.m-flash__body.a-short-text a:visited:active {
  text-decoration: none;
}

.m-flash__close {
  height: 2.75rem;
  width: 2.75rem;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  opacity: 0.6;
  align-items: center;
  justify-content: center;
  margin-right: calc(2rem / -2);
  margin-top: -1rem;
  margin-bottom: -1rem;
  cursor: pointer;
  padding-bottom: 0.25rem;
  transition: all 0.2s ease-out;
}
.m-flash__close:hover {
  opacity: 1;
}
.is-classic_entries .m-flash__close, .is-proxies-web_estate_entries .m-flash__close {
  margin: 0;
  padding: 0;
  transform: translate(0, -50%);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2px;
}

.m-inputed-item {
  display: flex;
}
.m-inputed-item + .m-inputed-item {
  margin-top: 0.5rem;
}

.m-inputed-item__label {
  font-size: 1rem;
  line-height: 1.4;
}
.m-inputed-item__label::after {
  content: ":";
  display: inline-block;
  padding-left: 0.375em;
  padding-right: 0.375em;
}

.m-inputed-item__value {
  font-size: 1rem;
  line-height: 1.4;
}
.m-inputed-item__value.is-changed {
  color: #F01E28;
  font-weight: bold;
}

.m-pseud-table__items {
  display: flex;
  flex-wrap: wrap;
}

.m-pseud-table__item {
  border: solid 1px #dcdcde;
  margin-right: -1px;
  margin-bottom: -1px;
}
@media (min-width: 62em) {
  .m-pseud-table__item {
    flex: 0 0 33.33%;
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .m-pseud-table__item {
    flex: 0 0 50%;
  }
}
@media (max-width: 47.9375em) {
  .m-pseud-table__item {
    flex: 0 0 100%;
  }
}
.m-pseud-table__item .a-blank {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9494a0;
}

.m-pseud-table__item-label,
.m-pseud-table__item-value {
  padding: 0.5em 0.625em;
  line-height: 1.4;
}

.m-pseud-table__item-label {
  border-bottom: solid 1px #dcdcde;
  background-color: #f5f5f7;
  font-size: 0.8888888889rem;
  font-weight: 600;
  text-align: center;
}

.m-pseud-table__item-value {
  padding: 0.625em;
  line-height: 1.5;
}
@media (min-width: 48em) {
  .m-pseud-table__item-value {
    height: calc(100% - 2.125rem);
  }
}

.m-tabs-nav {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
}
.m-tabs-nav::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #dcdcde;
  position: absolute;
  left: 0;
  bottom: 0;
}

.m-tabs-nav__items {
  display: flex;
  position: relative;
  z-index: 1;
}

.m-tabs-nav__item {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.m-tabs-nav__item-link {
  display: flex;
  text-decoration: none;
  width: 100%;
  border: solid 1px #dcdcde;
  font-size: 1em;
  line-height: 1.4;
  white-space: nowrap;
  color: #9494a0;
  text-align: center;
  justify-content: center;
  padding: 0.75em 1em;
  border-top-left-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
  background-color: #FAFAFB;
  transition: all 0.2s ease-out;
}
.m-tabs-nav__item-link:hover {
  color: #1E2D3C;
  background-color: #e9e9ed;
  border-color: #c8c8c9;
  border-bottom-color: #dcdcde;
}
.m-tabs-nav__item-link.is-active, .m-tabs-nav__item-link.is-active:hover {
  background-color: #ffffff;
  border-color: #dcdcde;
  border-bottom-color: #ffffff;
  color: #F01E28;
  cursor: default;
}

.m-address-with-kana__full-address {
  text-decoration: underline;
  cursor: pointer;
}

.m-border-blocks__items {
  display: flex;
  flex-wrap: wrap;
}

.m-border-blocks__item {
  margin-right: -1px;
  margin-bottom: -1px;
}
@media (min-width: 48em) {
  .m-border-blocks__item {
    flex: 0 0 25%;
  }
}
@media (max-width: 47.9375em) {
  .m-border-blocks__item {
    flex: 0 0 33.33%;
  }
}

.m-form-description:not(:last-child) {
  margin-bottom: 1.25em;
}
.m-form-description .a-precautions {
  font-size: 0.875em;
  margin-top: 0.75em;
}

.m-form-description__title {
  font-size: 1em;
  line-height: 1.4;
}

.o-invoice:not(:first-child) {
  margin-top: 1rem;
}

.o-invoice__inner {
  text-decoration: none;
  color: #1E2D3C;
  border: solid 1px #dcdcde;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .o-invoice__inner {
    display: flex;
  }
}
@media (max-width: 47.9375em) {
  .o-invoice__inner {
    display: block;
  }
}
.o-invoice__inner:hover {
  background-color: #ffe0e4;
}
.o-invoice__inner.is-disabled {
  pointer-events: none;
}

.o-invoice__start {
  flex: 1;
}

@media (min-width: 48em) {
  .o-invoice__end {
    width: 10rem;
    border-left: solid 1px #dcdcde;
  }
}

.o-invoice__start,
.o-invoice__end {
  display: flex;
  flex-direction: column;
}

.o-invoice__start-header,
.o-invoice__end-header {
  padding: 0.5rem;
  background-color: #EDEEEF;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 48em) {
  .o-invoice__start-header,
  .o-invoice__end-header {
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .o-invoice__start-header,
  .o-invoice__end-header {
    text-align: left;
  }
}

@media (max-width: 47.9375em) {
  .o-invoice__end-header {
    background-color: transparent;
    border-top: solid 1px #dcdcde;
  }
}

@media (min-width: 48em) {
  .o-invoice__start-body {
    padding: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-invoice__start-body {
    padding: 0.5rem;
  }
}
.o-invoice__start-body .m-price {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 600;
}
.o-invoice__start-body .m-inline-data {
  margin-top: 0.5rem;
}
@media (min-width: 48em) {
  .o-invoice__start-body .m-inline-data {
    display: flex;
  }
}
.o-invoice__start-body .m-inline-data__item {
  display: flex;
  font-size: 0.8888888889rem;
  align-items: center;
}
@media (max-width: 47.9375em) {
  .o-invoice__start-body .m-inline-data__item {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 48em) {
  .o-invoice__start-body .m-inline-data__item:not(:first-child) {
    margin-left: 1em;
  }
}
.o-invoice__start-body .m-inline-data__label:after {
  content: ":";
  padding-left: 0.25em;
  padding-right: 0.25em;
}

@media (min-width: 48em) {
  .o-invoice__end-body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 47.9375em) {
  .o-invoice__end-body {
    padding: 0 0.5rem 0.5rem 0.5rem;
  }
}
.o-invoice__end-body .a-icon-badge {
  font-size: 0.8888888889rem;
}

.o-invoice__status {
  align-self: center;
}

.m-shade-card {
  border: solid 1px #dcdcde;
  border-radius: 0.25rem;
  background-color: #f5f5f7;
}
@media (max-width: 47.9375em) {
  .m-shade-card {
    margin-top: 1.125rem;
  }
}
@media (min-width: 48em) {
  .m-shade-card:not(:first-child) {
    margin-top: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .m-shade-card:not(:first-child) {
    margin-top: 1.125rem;
  }
}

.m-total-star-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 15rem;
}
@media (max-width: 47.9375em) {
  .m-total-star-rating {
    margin-left: auto;
    margin-right: auto;
  }
}

.m-article-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-decoration: none;
  align-items: flex-end;
}
@media (min-width: 48em) {
  .m-article-link {
    display: flex;
  }
}
@media (max-width: 47.9375em) {
  .m-article-link {
    display: block;
  }
}

@media (min-width: 48em) {
  .m-article-link__start {
    flex: 1;
    padding-right: 1rem;
  }
}

@media (min-width: 48em) {
  .m-article-link__end {
    flex: 0 0 6rem;
  }
}
@media (max-width: 47.9375em) {
  .m-article-link__end {
    margin-top: 0.25rem;
  }
}

.m-article-link__title {
  font-size: 1rem;
  line-height: 1.3;
  color: #1E2D3C;
  transition: all 0.2s ease-out;
}
a.m-article-link .m-article-link__title {
  text-decoration: underline;
}
a.m-article-link:hover .m-article-link__title {
  text-decoration: none;
  color: #F01E28;
}

.m-article-link__date {
  font-size: 0.8rem;
  line-height: 1.3;
  color: #9494a0;
  text-align: right;
  display: block;
  white-space: nowrap;
}

.m-form-group {
  margin-bottom: -0.5rem;
}

.m-form-group__items {
  display: flex;
  align-items: center;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  flex-wrap: wrap;
  margin-bottom: -0.5rem;
  padding-bottom: 0.5rem;
}

.m-form-group__item {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  display: flex;
  align-self: center;
  padding-bottom: 0.5rem;
}
.m-form-group__item.is-unit {
  align-self: flex-end;
  padding-right: 0.75em;
}
.m-form-group__item.is-symbol {
  align-self: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.m-simple-block {
  display: flex;
  border: solid 1px #dcdcde;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
}
.m-simple-block:hover {
  position: relative;
  z-index: 1;
}

a.m-simple-block {
  color: #1E2D3C;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
a.m-simple-block:hover {
  position: relative;
  z-index: 1;
  border-color: #F01E28;
  color: #F01E28;
  background-color: #ffe0e4;
}

.m-user-header.is-gray {
  background-color: #f5f5f7;
}

@media (min-width: 48em) {
  .m-user-header__inner {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.m-user-header__main {
  flex: 1;
}
@media (min-width: 48em) {
  .m-user-header__main:not(:last-child) {
    margin-right: 1rem;
  }
}

.m-user-header__actions {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-bottom: -0.5rem;
}
@media (min-width: 48em) {
  .m-user-header__actions {
    max-width: 20rem;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__actions {
    padding-top: 0.75rem;
  }
}

.m-user-header__action {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 48em) {
  .m-user-header__action {
    flex: 0 0 10rem;
    width: 10rem;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__action {
    flex: 0 0 50%;
  }
}

.m-user-header__row {
  display: flex;
  align-items: center;
}
.m-user-header__row + .m-user-header__row {
  margin-top: 0.5rem;
}

.m-user-header__col.is-max {
  flex: 1;
}
.m-user-header__col:not(:first-child) {
  margin-left: 1rem;
}

@media (min-width: 48em) {
  .m-user-header__image {
    height: 4.5rem;
    width: 4.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__image {
    height: 3.5rem;
    width: 3.5rem;
  }
}

@media (min-width: 48em) {
  .m-user-header__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__title {
    font-size: 1.3333333333rem;
  }
}

.m-user-header__kana {
  font-size: 0.625em;
}

.m-user-header__info {
  margin-top: 0.125em;
}
@media (min-width: 48em) {
  .m-user-header__info {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__info {
    font-size: 0.8rem;
  }
}

.m-user-header__tel {
  line-height: 1.5;
}
.m-user-header__tel a {
  color: #1A0DAB;
}

.m-user-header__address {
  line-height: 1.5;
}

.m-user-header__evaluation {
  line-height: 1.5;
  margin-top: 0.25em;
  display: flex;
  max-width: 100%;
}
@media (min-width: 48em) {
  .m-user-header__evaluation {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__evaluation {
    font-size: 0.8rem;
    margin-right: -4rem;
  }
}

@media (min-width: 48em) {
  .m-user-header__total {
    display: flex;
    align-items: center;
  }
}

.m-user-header__total-price {
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  margin-top: -0.125em;
}
@media (min-width: 48em) {
  .m-user-header__total-price {
    font-size: 1rem;
    margin-right: 0.75em;
  }
}
@media (max-width: 47.9375em) {
  .m-user-header__total-price {
    font-size: 0.8888888889rem;
    margin-bottom: 0.5em;
  }
}

.m-user-header__total-price-label {
  margin-right: 0.5em;
}

.m-bar-graph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8888888889rem;
}
.m-bar-graph .a-label {
  font-size: 0.8888888889rem;
}
.m-bar-graph .a-bar-graph {
  flex: 1;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

@media (min-width: 48em) {
  .m-centered-actions__items {
    display: flex;
    justify-content: center;
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

@media (min-width: 48em) {
  .m-centered-actions__item {
    flex-basis: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .m-centered-actions__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}

@media (min-width: 48em) {
  .m-half-items {
    display: flex;
  }
}

.m-half-items__item {
  flex-basis: 50%;
}
.m-half-items__item .a-block-link {
  border: solid 2px #dcdcde;
  height: 4rem;
  font-size: 1.1428571429rem;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 47.9375em) {
  [class*=col-]:not(:first-child) .m-stacked-image-content {
    margin-top: 1.5rem;
  }
}

.m-stacked-image-content.entry_modal {
  margin-top: 1rem;
}

.m-stacked-image-content__image-container {
  display: block;
  cursor: pointer;
  position: relative;
}

.m-stacked-image-content__image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 0.25rem;
}

.m-stacked-image-content__body {
  margin-top: 1em;
  font-size: 0.8888888889rem;
}

.m-bar-graphs__item:not(:first-child) {
  margin-top: 0.75em;
}

.m-bar-graphs__help {
  text-align: right;
  margin-top: 0.5rem;
}

.m-bar-graphs__help-link {
  font-size: 0.8888888889rem;
}

.m-comments-item {
  border: solid 1px #dcdcde;
  padding: 1rem;
  border-radius: 0.25rem;
}

.m-comments-item__header {
  display: flex;
  margin-bottom: 0.625rem;
}

@media (min-width: 48em) {
  .m-comments-item__header-left {
    flex-basis: 2.75rem;
    height: 2.75rem;
    width: 2.75rem;
  }
}
@media (max-width: 47.9375em) {
  .m-comments-item__header-left {
    flex-basis: 2.25rem;
    height: 2.25rem;
    width: 2.25rem;
  }
}

.m-comments-item__header-right {
  flex: 100;
  padding-left: 0.75rem;
}

.m-comments-item__author-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.m-comments-item__name {
  font-size: 0.8888888889rem;
  line-height: 1.4;
}

.m-comments-item__address {
  font-size: 0.8888888889rem;
  line-height: 1.4;
  color: #9494a0;
  margin-top: 0.1875em;
}

.m-comments-item__evaluation {
  font-size: 0.8888888889rem;
  margin-top: 0.1875em;
}

.m-comments-item__body {
  font-size: 0.8888888889rem;
}

.comment_display_buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.m-inline-block-list {
  margin-left: -0.5em;
  margin-right: -0.5em;
  margin-bottom: -0.5em;
}

.m-inline-block-list__item {
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-bottom: 0.5em;
}

.m-page-body-contents__item:not(:first-child) {
  margin-top: 1.5rem;
}

.m-stacked-value .a-simple-label {
  font-size: 0.8888888889rem;
  line-height: 1.4;
}
.m-stacked-value .a-simple-value {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0.25em;
}
.m-stacked-value.has-datetimepicker {
  position: relative;
}

.m-welcome-content-banner {
  background-color: #F01E28;
  font-family: YakuHanJPs, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.m-welcome-content-banner.has-arrow-bottom {
  position: relative;
}
@media (min-width: 48em) {
  .m-welcome-content-banner.has-arrow-bottom {
    margin-bottom: -0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .m-welcome-content-banner.has-arrow-bottom {
    margin-bottom: -0.25rem;
  }
}
.m-welcome-content-banner.has-arrow-bottom::before {
  content: "";
  display: block;
  border-style: solid;
  border-color: transparent;
  border-top-color: #F01E28;
  border-width: calc(2.75rem / 2) calc(2.5rem / 2);
  position: absolute;
  left: 50%;
  bottom: calc(2.5rem * -1);
  transform: translate(-50%, 0);
}

@media (min-width: 48em) {
  .m-welcome-content-banner__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .m-welcome-content-banner__inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.m-welcome-content-banner__message {
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 48em) {
  .m-welcome-content-banner__message {
    font-size: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .m-welcome-content-banner__message {
    font-size: 1.1428571429rem;
  }
}

.m-basic-form .m-form-item:not(:last-child) {
  margin-bottom: 1.5em;
}
.m-basic-form .m-check-list {
  margin-top: 0.25em;
}
.m-basic-form .a-form-label {
  margin-bottom: 0.25em;
}

.m-form-item__end .a-form-help {
  margin-top: 0.5em;
  font-size: 0.8888888889rem;
}

.m-basic-form__items {
  margin-bottom: 1.5em;
}

@media (min-width: 48em) {
  .m-basic-form__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: calc(1em / -2);
    margin-right: calc(1em / -2);
    margin-bottom: calc(1em * -1);
  }
  .m-basic-form__actions > * {
    padding-left: calc(1em / 2);
    padding-right: calc(1em / 2);
    margin-bottom: 1em;
  }
  .m-basic-form__actions .m-form-action {
    flex: 1;
  }
}
@media (min-width: 48em) and (min-width: 48em) {
  .m-basic-form__actions .m-form-action {
    max-width: 20rem;
  }
}
@media (max-width: 47.9375em) {
  .m-basic-form__actions .m-form-action + .m-form-action {
    margin-top: 0.75em;
  }
}

.m-empty-message {
  padding: 1rem 2rem;
}
@media (max-width: 47.9375em) {
  .m-empty-message {
    padding: 1rem;
  }
}

.m-empty-message__image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48em) {
  .m-empty-message__image {
    width: 8.75rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .m-empty-message__image {
    width: 6.5rem;
    margin-bottom: 1rem;
  }
}

.m-empty-message__title {
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 48em) {
  .m-empty-message__title {
    font-size: 1.3333333333rem;
  }
}
@media (max-width: 47.9375em) {
  .m-empty-message__title {
    font-size: 1rem;
  }
}

.m-empty-message__body {
  text-align: center;
  margin-top: 0.5em;
}
@media (max-width: 47.9375em) {
  .m-empty-message__body {
    text-align: left;
    font-size: 0.8888888889rem;
  }
}

.m-inline-check-list .a-checkbox {
  white-space: nowrap;
}

.m-inline-check-list__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: calc(1em / -2);
  margin-right: calc(1em / -2);
  margin-bottom: calc(1em * -1);
}
.m-inline-check-list__items > * {
  padding-left: calc(1em / 2);
  padding-right: calc(1em / 2);
  margin-bottom: 1em;
}

.m-stacked-values {
  margin-top: 1.5rem;
}
.m-stacked-values:first-child {
  margin-top: 0;
}

.m-stacked-values__item {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.m-stacked-values__item:not(:first-child) {
  border-top: dashed 1px #dcdcde;
}

.m-stacked-values__note {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 0.75em;
  color: #F01E28;
  font-weight: 600;
  text-align: center;
  background-color: #ffe0e4;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 28rem;
  max-width: 100%;
  border-radius: 0.25rem;
}

.m-stacked-values__icon {
  position: relative;
  top: -0.0625em;
  margin-right: 0.25em;
}

.m-stacked-values__item-delete {
  margin-bottom: 0.5rem;
}

.m-stacked-values__item-add {
  margin-top: 0.75em;
}

.m-welcome-content-notes {
  margin-top: 2em;
  font-size: 0.8rem;
}

.m-welcome-content-notes__items {
  display: flex;
  counter-reset: item;
}

.m-welcome-content-notes__item:not(:last-child) {
  margin-right: 1em;
}
.m-welcome-content-notes__item::before {
  counter-increment: item;
  content: "※" counter(item);
  display: inline-block;
  margin-right: 0.125em;
  color: #9494a0;
}

.m-timestamp-message-item {
  text-align: center;
}
@media (min-width: 48em) {
  .m-timestamp-message-item {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .m-timestamp-message-item {
    font-size: 0.8rem;
  }
}

.m-system-message-item__caption {
  position: relative;
  color: rgba(30, 45, 60, 0.7);
}
.m-system-message-item__caption .m-system-message-item__caption-icon {
  display: flex;
  background: #edeeef;
  color: #a1a9ae;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 47.9375em) {
  .m-system-message-item__caption {
    margin-left: 38px;
    line-height: 1rem;
    font-size: 0.8rem;
  }
  .m-system-message-item__caption .m-system-message-item__caption-icon {
    position: absolute;
    left: -38px;
    height: 2.25rem;
    width: 2.25rem;
    font-size: 1rem;
  }
}
@media (min-width: 48em) {
  .m-system-message-item__caption {
    margin-left: 42px;
    line-height: 1.25rem;
    font-size: 0.8888888889rem;
  }
  .m-system-message-item__caption .m-system-message-item__caption-icon {
    position: absolute;
    left: -42px;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.1428571429rem;
  }
}
.m-system-message-item__message-content {
  border: solid 1px #f2f3f4;
}
@media (max-width: 47.9375em) {
  .m-system-message-item__message-content {
    margin-left: 1.125rem;
    padding: 1rem;
    font-size: 0.8888888889rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 48em) {
  .m-system-message-item__message-content {
    margin-left: 1.25rem;
    padding: 1.25rem;
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .m-system-message-item__message-content > p + p {
    margin-top: 0.8888888889rem;
  }
}
@media (min-width: 48em) {
  .m-system-message-item__message-content > p + p {
    margin-top: 1rem;
  }
}
.m-system-message-item__timestamp, .m-system-message-item__read {
  font-size: 0.8rem;
  color: rgba(30, 45, 60, 0.7);
  line-height: 1rem;
  text-align: right;
}

.m-user-message-item {
  display: grid;
  grid-template-rows: fit-content(1rem) 1fr;
}
@media (max-width: 47.9375em) {
  .m-user-message-item {
    grid-template-columns: fit-content(2.5rem) fit-content(100%) fit-content(2.75rem);
  }
}
@media (min-width: 48em) {
  .m-user-message-item {
    grid-template-columns: fit-content(2.75rem) fit-content(100%) fit-content(2.75rem);
  }
}
.m-user-message-item__sender-image {
  border-radius: 50%;
}
@media (max-width: 47.9375em) {
  .m-user-message-item__sender-image {
    height: 2.25rem;
    width: 2.25rem;
  }
}
@media (min-width: 48em) {
  .m-user-message-item__sender-image {
    height: 2.5rem;
    width: 2.5rem;
  }
}
.m-user-message-item__sender-image.is-owner-image {
  color: #a1a9ae;
}
@media (max-width: 47.9375em) {
  .m-user-message-item__sender-image.is-owner-image {
    font-size: 2.25rem;
  }
}
@media (min-width: 48em) {
  .m-user-message-item__sender-image.is-owner-image {
    font-size: 2.5rem;
  }
}
.m-user-message-item__sender-name {
  color: rgba(30, 45, 60, 0.7);
}
@media (max-width: 47.9375em) {
  .m-user-message-item__sender-name {
    line-height: 1rem;
    font-size: 0.8rem;
  }
}
@media (min-width: 48em) {
  .m-user-message-item__sender-name {
    line-height: 1.25rem;
    font-size: 0.8888888889rem;
  }
}
.m-user-message-item__timestamp {
  position: relative;
  font-size: 0.8rem;
  line-height: 1rem;
  color: rgba(30, 45, 60, 0.7);
  align-self: flex-end;
}
.m-user-message-item__timestamp.is-read::before {
  content: "既読";
  position: absolute;
  bottom: 1rem;
}
.m-user-message-item.is-sent-by-others .m-user-message-item__sender-image {
  grid-column: 1/2;
  grid-row: 1/3;
  margin-right: 0.25rem;
}
.m-user-message-item.is-sent-by-others .m-user-message-item__sender-name {
  grid-column: 2/3;
  grid-row: 1/2;
}
.m-user-message-item.is-sent-by-others .m-user-message-item__message-content {
  grid-column: 2/3;
  grid-row: 2/3;
}
.m-user-message-item.is-sent-by-others .m-user-message-item__timestamp {
  grid-column: 3/4;
  grid-row: 2/3;
  margin-left: 0.25rem;
}
.m-user-message-item.is-sent-by-others .m-user-message-item__timestamp.is-read::before {
  left: 0;
}
.m-user-message-item.is-sent-by-me .m-user-message-item__sender-image {
  grid-column: 3/4;
  grid-row: 1/3;
  margin-left: 0.25rem;
}
.m-user-message-item.is-sent-by-me .m-user-message-item__sender-name {
  grid-column: 2/3;
  grid-row: 1/2;
  text-align: end;
}
.m-user-message-item.is-sent-by-me .m-user-message-item__message-content {
  grid-column: 2/3;
  grid-row: 2/3;
}
.m-user-message-item.is-sent-by-me .m-user-message-item__timestamp {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-right: 0.25rem;
}
.m-user-message-item.is-sent-by-me .m-user-message-item__timestamp.is-read::before {
  right: 0;
}

.m-message-balloon__attachment {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 18px;
}
@media (max-width: 47.9375em) {
  .m-message-balloon__attachment {
    min-height: 3.5rem;
  }
}
@media (min-width: 48em) {
  .m-message-balloon__attachment {
    min-height: 4rem;
  }
}
.m-message-balloon__message-text {
  word-break: break-word;
}
@media (max-width: 47.9375em) {
  .m-message-balloon__message-text {
    padding: 0.75rem;
    line-height: 1.25rem;
    font-size: 0.8888888889rem;
  }
}
@media (min-width: 48em) {
  .m-message-balloon__message-text {
    padding: 1rem;
    line-height: 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .m-message-balloon__message-text > p + p {
    margin-top: 0.8888888889rem;
  }
}
@media (min-width: 48em) {
  .m-message-balloon__message-text > p + p {
    margin-top: 1rem;
  }
}
.m-message-balloon__attachment + .m-message-balloon__message-text {
  margin-top: 1px;
}
.m-message-balloon__attachment:last-child, .m-message-balloon__message-text:last-child {
  border-bottom-right-radius: 1.375rem;
  border-bottom-left-radius: 1.375rem;
}
.m-message-balloon.is-sent-by-me .m-message-balloon__attachment, .m-message-balloon.is-sent-by-me .m-message-balloon__message-text {
  background-color: #ffe8ea;
}
.m-message-balloon.is-sent-by-me .m-message-balloon__attachment:first-child, .m-message-balloon.is-sent-by-me .m-message-balloon__message-text:first-child {
  border-top-left-radius: 1.375rem;
}
.m-message-balloon.is-sent-by-others .m-message-balloon__attachment, .m-message-balloon.is-sent-by-others .m-message-balloon__message-text {
  background-color: #edeeef;
}
.m-message-balloon.is-sent-by-others .m-message-balloon__attachment:first-child, .m-message-balloon.is-sent-by-others .m-message-balloon__message-text:first-child {
  border-top-right-radius: 1.375rem;
}

.m-message-attachment {
  display: flex;
  align-items: center;
}
.m-message-attachment__icon {
  font-size: 26.67px;
}
.m-message-attachment__icon.is-image-file {
  color: #001DC6;
}
.m-message-attachment__icon.is-pdf-file {
  color: #F01E28;
}
.m-message-attachment__filename {
  margin-left: 10px;
  color: #1E2D3C;
}
@media (max-width: 47.9375em) {
  .m-message-attachment__filename {
    font-size: 0.8888888889rem;
    line-height: 1rem;
  }
}
@media (min-width: 48em) {
  .m-message-attachment__filename {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

.m-alert {
  padding: 1rem;
  border: solid 1px;
  font-size: 0.8888888889rem;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}
.m-alert.is-notice {
  background-color: rgba(66, 189, 162, 0.3);
  border-color: #42bda2;
  color: #215f51;
}
.m-alert.is-warning {
  background-color: rgba(254, 187, 2, 0.3);
  border-color: #FEBB02;
  color: #7f5e01;
}
.m-alert.is-alert {
  background-color: rgba(240, 30, 40, 0.3);
  border-color: #F01E28;
  color: #780f14;
}
.m-alert.is-info {
  background-color: rgba(41, 195, 212, 0.3);
  border-color: #29c3d4;
  color: #15626a;
}
.m-alert > p {
  margin: 5px 0;
  line-height: initial;
}

.m-biz-project-navigation-item__header {
  font-size: 1.1428571429rem;
  font-weight: bold;
  color: #606069;
}
.m-biz-project-navigation-item__actions {
  margin-top: 1rem;
}

.m-biz-project-navigation-actions__action + .m-biz-project-navigation-actions__action {
  margin-top: 0.5rem;
}

.m-biz-project-navigation-action__help {
  display: inline-block;
  margin-top: 0.375rem;
  font-size: 0.8rem;
  color: #9494a0;
  line-height: 1.3;
}

@media (min-width: 48em) {
  .estimate__body-actions {
    margin-top: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate__body-actions {
    margin-top: 1.5rem;
  }
}

@media (min-width: 48em) {
  .estimate__footer {
    padding-bottom: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate__footer {
    padding-bottom: 1rem;
  }
}
.estimate.has-fixed-bottom-nav .estimate__footer {
  border-top: solid 1px #dcdcde;
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .estimate.has-fixed-bottom-nav .estimate__footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate.has-fixed-bottom-nav .estimate__footer {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: sticky;
    bottom: 0;
    z-index: 10;
  }
}

@media (min-width: 48em) {
  .estimate__footer-actions:not(:first-child) {
    margin-top: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate__footer-actions:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.o-announcements {
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.a-form-label + .o-form-file-uploads {
  margin-top: 0.5rem;
}

.o-form-file-uploads__item {
  max-width: 100%;
}
@media (min-width: 48em) {
  .o-form-file-uploads__item {
    width: 20rem;
  }
}
@media (max-width: 47.9375em) {
  .o-form-file-uploads__item {
    width: 100%;
  }
}
.o-form-file-uploads__item:not(:first-child) {
  margin-top: 1rem;
}
.o-form-file-uploads__item.is-centered {
  margin-left: auto;
  margin-right: auto;
}

.a-file-upload {
  position: relative;
}

.a-file-upload__preview {
  height: 10rem;
  border: solid 1px #dcdcde;
  overflow: hidden;
  padding: 0.75rem;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.a-file-upload__preview:not(:last-child) {
  border-bottom: none;
}
.a-file-upload__preview:last-child {
  border-radius: 0.25rem;
}
.a-file-upload__preview.is-map {
  height: 16rem;
}
.a-file-upload__preview .is-delete-icon-button {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
.a-file-upload__preview .js-thumbnail-preview-area,
.a-file-upload__preview .street-view-thumb {
  height: 100%;
  width: 100%;
}

.a-file-upload__action {
  position: relative;
  z-index: 1;
}
.a-file-upload__action .a-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.a-file-upload__action.is-inline {
  display: inline-block;
}

.o-form-file-uploads__add {
  margin-top: 1.5rem;
  width: 20rem;
  max-width: 100%;
}

.a-file-upload__filename {
  display: inline-block;
  margin-right: 2rem;
  height: 2rem;
}

.o-page-description {
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: #f5f5f7;
}
@media (min-width: 48em) {
  .o-page-description {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-page-description {
    font-size: 0.8rem;
  }
}
.o-page-description.is-bg-base {
  background-color: #ffffff;
}

.o-page-description__note {
  display: block;
  color: #F01E28;
  position: relative;
  padding-left: 1em;
}
.o-page-description__note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: -0.0625em;
  margin-right: 0.125em;
}

.pagination {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.pagination__items {
  display: flex;
  align-items: center;
}

.pagination__item {
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  font-size: 0.8rem;
  line-height: 1;
  display: flex;
  color: #9494a0;
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.pagination__item.is-current {
  background-color: #F01E28;
  color: #ffffff;
  border-radius: 0.25rem;
}

.pagination__page-count {
  font-size: 0.8888888889rem;
  letter-spacing: 0.0625rem;
  text-indent: -0.0625rem;
  margin-right: 0.5rem;
}

.pagination__item-link {
  height: 2rem;
  width: 2rem;
  display: flex;
  text-decoration: none;
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in;
  color: #9494a0;
  border: solid 1px;
}
.pagination__item-link:hover {
  border-color: #F01E28;
  color: #F01E28;
}
.pagination__item-link.is-active {
  background-color: #F01E28;
  color: #ffffff;
  border-color: #F01E28;
}
.pagination__item-link i {
  font-size: 20px;
}

.application-global-nav {
  background-color: #1E2D3C;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.application-global-nav .container {
  padding-left: 0;
  padding-right: 0;
}
body.is-biz-page .application-global-nav {
  background-color: #EDEEEF;
}
body.has-no-fixed-bottom-nav .application-global-nav {
  display: none;
}

.application-global-nav__items {
  display: flex;
  justify-content: center;
}
@media (min-width: 48em) {
  .application-global-nav__items {
    height: 72px;
  }
}
@media (max-width: 47.9375em) {
  .application-global-nav__items {
    height: 56px;
  }
}
@media (max-width: 61.9375em) {
  body.is-smartphone.is-ios:not(.is-safari) .application-global-nav__items, body.is-pc.is-mac .application-global-nav__items {
    height: 83px;
  }
}

.application-global-nav__item {
  flex: 1;
  max-width: 240px;
  height: 100%;
}
@media (min-width: 48em) {
  .application-global-nav__item {
    border-left: solid 1px #000216;
  }
  .application-global-nav__item:last-child {
    border-right: solid 1px #000216;
  }
}

.application-global-nav__item-link {
  height: 100%;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease-out;
  color: rgba(255, 255, 255, 0.6);
}
.application-global-nav__item-link:hover {
  background-color: #475666;
}
body.is-biz-page .application-global-nav__item-link {
  color: #1E2D3C;
}
body.is-biz-page .application-global-nav__item-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #F01E28;
}
.application-global-nav__item-link.active {
  color: white;
}

.application-global-nav__item-link-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 5.5rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48em) {
  .application-global-nav__item-link-inner {
    padding-top: 12px;
  }
}
@media (max-width: 47.9375em) {
  .application-global-nav__item-link-inner {
    padding-top: 8px;
  }
}

.application-global-nav__item-link-unread-mark {
  position: absolute;
  right: 0;
  top: 0.5rem;
  font-size: 0.625rem;
  line-height: 1;
  transform: scale(0.85, 0.85);
  border: solid 1px;
  padding: 0.125rem 0.1875rem;
  border-radius: 0.25rem;
  background-color: #FEBB02;
  border-color: #FEBB02;
  color: #1E2D3C;
}
body.is-biz-page .application-global-nav__item-link-unread-mark {
  background-color: #F01E28;
  color: #ffffff;
  border-color: #F01E28;
}

.application-global-nav__item-link-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.application-global-nav__item-link-label {
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media (min-width: 48em) {
  .application-global-nav__item-link-label {
    height: 16px;
    font-size: 0.8rem;
  }
}
@media (max-width: 47.9375em) {
  .application-global-nav__item-link-label {
    height: 12px;
    font-size: 11px;
  }
}

.estimate_offer-detail-item {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .estimate_offer-detail-item {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate_offer-detail-item {
    font-size: 0.8888888889rem;
  }
}
.estimate_offer-detail-item:first-child {
  border-top: solid 1px #dcdcde;
}
.estimate_offer-detail-item.is-inline {
  flex-direction: column;
}

.estimate_offer-detail-item__label {
  padding-right: 1rem;
  text-align: right;
  font-weight: 600;
}
@media (min-width: 48em) {
  .estimate_offer-detail-item__label {
    flex-basis: 10rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate_offer-detail-item__label {
    flex-basis: 6rem;
  }
}
.is-inline .estimate_offer-detail-item__label {
  margin-bottom: 0.5rem;
  flex-basis: 0;
  text-align: left;
}

.estimate_offer-detail-item__value {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.o-back {
  border-top: dashed 1px #dcdcde;
}

.o-back__inner {
  display: flex;
  align-items: center;
}
@media (min-width: 48em) {
  .o-back__inner {
    height: 3.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-back__inner {
    height: 3rem;
  }
}

.o-back__link {
  height: 100%;
  display: flex;
  align-items: center;
  color: #1E2D3C;
  transition: all 0.2s ease-out;
  text-decoration: none;
}
@media (min-width: 48em) {
  .o-back__link {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-back__link {
    font-size: 0.8888888889rem;
  }
}
.o-back__link::before {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e314";
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 48;
  font-size: 1.5em;
  display: inline-block;
  margin-right: 0.25em;
}
.o-back__link:hover {
  color: #F01E28;
}

.o-back__link-label {
  text-decoration: none;
}
.o-back__link:hover .o-back__link-label {
  text-decoration: underline;
}

.o-form__description {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.o-form__description:not(:first-child) {
  margin-top: 0.375em;
}
@media (max-width: 47.9375em) {
  .o-form__description {
    font-size: 0.8888888889rem;
  }
}
.o-form__description.is-muted {
  color: #9494a0;
}
@media (min-width: 48em) {
  .o-form__description.is-muted {
    font-size: 0.8rem;
  }
}
@media (max-width: 47.9375em) {
  .o-form__description.is-muted {
    font-size: 0.8rem;
  }
}
.o-block-check-list.is-2-items + .o-form__description, .app-button + .o-form__description {
  margin-top: 1rem;
}

.o-form__item {
  position: relative;
}
.o-form__item:not(:first-child) {
  margin-top: 1.25rem;
}
.o-form__item .a-form-label + .a-text-input,
.o-form__item .a-form-label + .a-select,
.o-form__item .a-form-label + .o-form__input-area,
.o-form__item .a-form-label + .o-form__input-group,
.o-form__item .a-form-label + .m-checkboxes {
  margin-top: 0.25rem;
}
.o-form__item .a-form-label.is-lg + .a-text-input,
.o-form__item .a-form-label.is-lg + .a-select,
.o-form__item .a-form-label.is-lg + .o-form__input-area,
.o-form__item .a-form-label.is-lg + .o-form__input-group,
.o-form__item .a-form-label.is-lg + .m-checkboxes {
  margin-top: 0.5rem;
}
.a-form-help + .o-form__item {
  margin-top: 0.75rem;
}
.o-form__item .select2 {
  width: 100% !important;
}
.o-form__item__text {
  margin-top: 5px;
  margin-left: 5px;
}
@media (min-width: 48em) {
  .o-form__item.is-inline {
    display: flex;
    align-items: center;
  }
  .o-form__item.is-inline .a-form-label,
  .o-form__item.is-inline .o-form__item-start {
    flex-basis: 10rem;
    padding-right: 1.5rem;
    text-align: right;
  }
  .o-form__item.is-inline .a-form-label.is-lg,
  .o-form__item.is-inline .o-form__item-start.is-lg {
    flex-basis: 16rem;
    width: 16rem;
  }
  .o-form__item.is-inline .a-form-label .a-form-label,
  .o-form__item.is-inline .o-form__item-start .a-form-label {
    padding-right: 0;
  }
  .o-form__item.is-inline .a-form-label.is-top {
    align-self: flex-start;
    margin-top: 0.375em;
  }
  .o-form__item.is-inline .o-form__item-end,
  .o-form__item.is-inline .a-form-label + * {
    flex: 1;
  }
}
.o-form__item.is-inline-all {
  display: flex;
  align-items: center;
}
.o-form__item.is-inline-all > .a-form-label {
  flex-basis: 5rem;
  text-align: right;
}
@media (min-width: 48em) {
  .o-form__item.is-inline-all > .a-form-label {
    margin-right: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-form__item.is-inline-all > .a-form-label {
    margin-right: 1rem;
    margin-left: -0.5em;
  }
}
.o-form__item.is-inline-all .a-form-label.is-top {
  align-self: flex-start;
  margin-top: 0.375em;
}
@media (min-width: 48em) {
  .o-form__items > .o-form__item.is-inline {
    border-bottom: dashed 1px #dcdcde;
    padding-bottom: 1.25rem;
  }
}
.o-form__item [class*=col-] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.o-form__item .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-top: 0.375em;
}
.welcome-form .o-form__item .row {
  margin-top: 0;
}

.is-inline .o-form__item-label-area + .o-form__item-input-area {
  flex: 100;
}
.is-inline-all .o-form__item-input-area {
  flex: 100;
}
.is-inline-all:first-child .o-form__item-input-area {
  margin-top: 0;
}
.a-form-label + .o-form__item-input-area {
  margin-top: 0.25rem;
  flex: 100;
}
.is-inline-all > .a-form-label + .o-form__item-input-area {
  margin-top: 0.25rem;
}
.o-form__item-input-area.is-inline {
  display: flex;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.o-form__item-input-area + .o-form__item-input-area {
  margin-top: 0.5rem;
}

.o-form__item-input-area-item {
  flex: 1;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.o-form__item-input-area-item .a-text-input,
.o-form__item-input-area-item select {
  height: 2.75rem;
}

.o-form__input-with-unit {
  display: flex;
}

.o-form__input-unit {
  align-self: flex-end;
  font-size: 0.8125em;
  line-height: 1.4;
  margin-left: 0.5em;
}

.o-form__item-map-area {
  height: 30rem;
}

.o-form__inline-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -1.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
.o-form__inline-items .o-form__item {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.o-form__inline-items .o-form__item:first-child {
  margin-top: 1.25rem;
}
.o-form__inline-items .a-form-label {
  flex-basis: auto;
  white-space: nowrap;
  margin-right: 1rem;
}

.o-form__items + .o-form__actions {
  margin-top: 1.25rem;
}

@media (min-width: 48em) {
  .o-form__actions-items {
    display: flex;
    justify-content: center;
    margin-left: -0.375rem;
    margin-right: -0.375rem;
    position: relative;
  }
}

@media (min-width: 48em) {
  .o-form__actions-item {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    max-width: 18rem;
    flex-basis: 18rem;
  }
  .o-form__actions-item.is-sub {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 47.9375em) {
  .o-form__actions-item {
    width: 100%;
  }
  .o-form__actions-item:not(:first-child) {
    margin-top: 0.75rem;
  }
}
@media (min-width: 48em) {
  .o-form__actions-item.is-lg {
    max-width: 24rem;
    flex-basis: 24rem;
  }
}

.o-form__items + .o-form__items {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: solid 1px #dcdcde;
}

.o-form__input-with-supplement_text {
  display: flex;
  align-items: center;
}
.o-form__input-with-supplement_text .text_prefix {
  width: 10rem;
  text-align: right;
}
.o-form__input-with-supplement_text span.text_left {
  margin-right: 1rem;
}
.o-form__input-with-supplement_text span.text_right {
  margin-left: 0.5rem;
}

.o-form__item-group {
  display: flex;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.o-form__item-group:not(:first-child) {
  margin-top: 1.25rem;
}
.o-form__item-group .o-form__item {
  flex: 1;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.o-form__item-group .o-form__item:not(:first-child) {
  margin-top: 0;
}

.o-form__input-group {
  display: flex;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.o-form__input-group .o-form__input {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 47.9375em) {
  .o-form__input-group.sm-down\:u-d-block .o-form__input:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.o-form__item-conversioned {
  font-size: 0.8888888889rem;
  line-height: 1.4;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.o-form__item-conversioned-value::before {
  content: "=";
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.o-form__actions-nav {
  margin-top: 0.75rem;
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 48em) {
  .o-form__actions-nav {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-form__actions-nav {
    font-size: 0.8rem;
  }
}
.o-form__actions-nav a {
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.o-form__actions-nav a:first-child {
  margin-left: 0;
}
.o-form__actions-nav .o-form__actions-nav-icon {
  width: 18%;
}
.o-form__actions-nav .o-form__actions-nav-text {
  margin-left: 2%;
  width: 80%;
  line-height: 1.4;
}

.o-form__actions-sub {
  margin-top: 1rem;
}
@media (min-width: 48em) {
  .o-form__actions-sub {
    text-align: right;
  }
}
@media (max-width: 47.9375em) {
  .o-form__actions-sub {
    text-align: center;
  }
}

.o-form__actions-text {
  text-decoration: underline;
  cursor: pointer;
  color: #9494a0;
}
.o-form__actions-text:hover, .o-form__actions-text:active {
  text-decoration: none;
}

.o-form__password-link {
  text-align: right;
}
.o-form__password-link a {
  color: #F01E28;
  text-decoration: underline;
}
.o-form__password-link a:hover, .o-form__password-link a:active {
  text-decoration: none;
}

.o-form__item-nested {
  position: relative;
  padding-right: 2rem;
}
.o-form__item-nested + .o-form__item-nested {
  margin-top: 2rem;
}

.o-form__item-nested-remove {
  position: absolute;
  right: 0;
  bottom: 0;
}

.o-form__item-nested-item:not(:first-child) {
  margin-top: 1rem;
}

.o-form__inline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  row-gap: 16px;
  border-bottom: 1px solid #ccc;
  padding: 0 1rem 1rem 1rem;
  margin-bottom: 16px;
}
.o-form__inline .o-form__items {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.o-form__inline .o-form__item {
  margin: 0;
}
.o-form__inline .o-form__inline-content {
  width: 100%;
  height: 100%;
}
.o-form__inline .o-form__inline-content form {
  width: 100%;
}

.o-page-header {
  background-color: #1E2D3C;
  color: #ffffff;
}
@media (min-width: 48em) {
  .o-page-header {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }
}
@media (max-width: 47.9375em) {
  .o-page-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.o-page-header.is-accent-shade {
  background-color: #ffe0e4;
  color: #1E2D3C;
}

.o-page-header__title {
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 48em) {
  .o-page-header__title {
    flex: 100;
    font-size: 1.3333333333rem;
  }
}
@media (max-width: 47.9375em) {
  .o-page-header__title {
    font-size: 1rem;
  }
}

@media (max-width: 47.9375em) {
  .prefecture-building-types {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.prefecture-building-types__items {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 48em) {
  .prefecture-building-types__items {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-building-types__items {
    border-top: solid 1px #dcdcde;
  }
}

@media (min-width: 48em) {
  .prefecture-building-types__item {
    font-size: 0.8888888889rem;
    line-height: 1;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 0.5rem;
    flex-basis: 20%;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-building-types__item {
    flex-basis: 50%;
    font-size: 0.8rem;
    line-height: 1;
  }
}

.prefecture-building-types__item-link {
  color: #1E2D3C;
}
@media (min-width: 48em) {
  .prefecture-building-types__item-link {
    display: flex;
    text-decoration: none;
    border: solid 1px #dcdcde;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0.75rem;
    line-height: 1.4;
    border-radius: 0.25rem;
    font-size: 0.8888888889rem;
    background-color: #ffffff;
    transition: all 0.2s ease-out;
  }
  .prefecture-building-types__item-link:hover {
    border-color: #F01E28;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-building-types__item-link {
    display: flex;
    text-decoration: none;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1px #dcdcde;
    color: #1E2D3C;
  }
  .prefecture-building-types__item:nth-child(2n-1) .prefecture-building-types__item-link {
    border-left: solid 1px #dcdcde;
    border-right: solid 1px #dcdcde;
  }
}

.application-header {
  position: sticky;
  top: 0;
  z-index: 200;
}
@media (min-width: 48em) {
  .application-header {
    height: 64px;
  }
}
@media (max-width: 47.9375em) {
  .application-header {
    height: 56px;
  }
}
body.is-liv-page .application-header {
  background-color: #ffffff;
  border-bottom: solid 1px #dcdcde;
}
body.is-biz-page .application-header {
  background-color: #F01E28;
  color: #ffffff;
}
.application-header > .l-container {
  height: 100%;
}
@media (min-width: 48em) {
  .application-header > .l-container {
    padding: 0 8px;
  }
}
@media (max-width: 47.9375em) {
  .application-header > .l-container {
    padding: 0 4px;
  }
}

.application-header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.application-header__title {
  display: flex;
  font-weight: 600;
  height: inherit;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48em) {
  .application-header__title {
    font-size: 1.1428571429rem;
  }
}
@media (max-width: 47.9375em) {
  .application-header__title {
    font-size: 1rem;
  }
}

.application-header__title-inner {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.application-header__hamburger {
  height: 48px;
  width: 48px;
  position: relative;
}
@media (min-width: 62em) {
  body.is-biz .application-header__hamburger {
    display: none;
  }
}

.application-header__back {
  padding-left: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #1E2D3C;
  transition: all 0.2s ease-out;
  width: 72px;
  height: 56px;
  position: relative;
}
.application-header__back:hover {
  color: #F01E28;
}

.application-header__notice {
  height: 48px;
  width: 48px;
}

.application-header__notice-label {
  font-size: 1.3333333333rem;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.application-header__menu {
  width: 2.5rem;
}

.estimate_offer-detail__introduction {
  margin-top: 1rem;
}

.estimate_offer-detail__items {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.estimate_offer-detail__actions {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.estimate_offer_reject_reason__label {
  text-decoration: underline;
  cursor: pointer;
}
.estimate_offer_reject_reason__label:hover, .estimate_offer_reject_reason__label:active {
  text-decoration: none;
}

.estimate_offer-reject_reason__items {
  list-style-type: disc;
  margin-left: 1.5em;
}
.estimate_offer-reject_reason__items li {
  font-size: 1em;
  line-height: 1.4;
  font-weight: 400;
}
.estimate_offer-reject_reason__items li:not(:first-child) {
  margin-top: 0.25em;
}

.o-block-check-list {
  font-size: 0.8888888889rem;
}
@media screen and (max-width: 320px) {
  .o-block-check-list {
    font-size: 0.8rem;
  }
}

.o-block-check-list__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-bottom: -0.5rem;
}

.o-block-check-list__item {
  position: relative;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  margin-bottom: 0.5rem;
}
.o-block-check-list.is-2-items .o-block-check-list__item {
  flex-basis: 50%;
}
body.is-ie11 .o-block-check-list.is-2-items .o-block-check-list__item {
  flex-basis: calc(50% - 0.625rem);
}

.o-google-map {
  position: relative;
}
.o-google-map .gm-iv-address,
.o-google-map .gm-fullscreen-control {
  display: none;
}
.o-google-map .o-google-map__inactive-label {
  display: inline;
}
.o-google-map .o-google-map__active-label {
  display: none;
}

.o-google-map__toggle {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 2;
}

.o-google-map__view {
  display: none;
}
.o-google-map__view.is-active {
  display: block;
}

@media (max-width: 47.9375em) {
  .o-google-map__view-inner {
    height: 18rem;
  }
}
@media (min-width: 48em) {
  .o-google-map__view-inner {
    height: 24rem;
  }
}
.o-google-map__view-inner > div {
  height: 100%;
  width: 100%;
}
@media (min-width: 62em) {
  .o-modal .o-google-map__view-inner {
    height: 32rem;
  }
}

.o-google-map__action {
  color: #ffffff;
  background-color: #86939d;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.o-google-map__action-items {
  display: inline-flex;
  position: relative;
}
.o-google-map__action-items::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translate(-50%, 0);
  border-style: solid;
  border-color: transparent;
  border-width: 14px 6px;
  border-bottom-color: #ffffff;
}

.o-google-map__action-item-action {
  padding: 0.5em 0.75em;
  border: solid 1px #ffffff;
  cursor: pointer;
}
@media (min-width: 48em) {
  .o-google-map__action-item-action {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-google-map__action-item-action {
    font-size: 0.8rem;
  }
}
.o-google-map__action-item:first-child .o-google-map__action-item-action {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.o-google-map__action-item:last-child .o-google-map__action-item-action {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.o-google-map__action-item:not(:last-child) .o-google-map__action-item-action {
  border-right: none;
}
.o-google-map__action-item-action.is-active {
  background-color: #F01E28;
  cursor: default;
}

.o-pill-tabs-nav {
  background-color: #EDEEEF;
}

.o-pill-tabs-nav__items {
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 48em) {
  .o-pill-tabs-nav__items {
    font-size: 0.8888888889rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-pill-tabs-nav__items {
    font-size: 0.8rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.o-pill-tabs-nav__item:not(:first-child) {
  flex-basis: 50%;
}
@media (max-width: 47.9375em) {
  .o-pill-tabs-nav__item {
    margin-right: -1px;
    margin-bottom: -1px;
  }
}
.o-pill-tabs-nav__item:not(:last-child) {
  flex-basis: calc(50% + 1px);
}
@media (min-width: 48em) {
  .o-pill-tabs-nav__item:not(:last-child) {
    margin-right: -1px;
  }
}

.o-pill-tabs-nav__item-link {
  border: solid 1px #B7BDC1;
  background-color: #ffffff;
  color: #606069;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  height: 2.5em;
  width: 100%;
  transition: all 0.2s ease-out;
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
@media (min-width: 48em) {
  .o-pill-tabs-nav__item:first-child .o-pill-tabs-nav__item-link {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
}
@media (max-width: 47.9375em) {
  .o-pill-tabs-nav__item:first-child .o-pill-tabs-nav__item-link {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
}
@media (min-width: 48em) {
  .o-pill-tabs-nav__item:last-child .o-pill-tabs-nav__item-link {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
}
@media (max-width: 47.9375em) {
  .o-pill-tabs-nav__item:last-child .o-pill-tabs-nav__item-link {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
}
.o-pill-tabs-nav__item-link:hover {
  z-index: 2;
  color: #F01E28;
  border-color: #F01E28;
  box-shadow: 0 0 0 0.1875rem rgba(240, 30, 40, 0.25);
}
.o-pill-tabs-nav__item-link.is-active {
  background-color: #ffe0e4;
  pointer-events: none;
  border-color: #F01E28;
  color: #F01E28;
  position: relative;
  z-index: 1;
}
.o-pill-tabs-nav__item-link.is-disabled {
  pointer-events: none;
  background-color: #e2e2e2;
}
.o-pill-tabs-nav__item-link.is-notifying:after {
  content: "";
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: #F01E28;
  margin-left: 0.5rem;
  transition: all 0.2s ease-out;
}

.o-pill-tabs-nav__item-number {
  position: absolute;
  right: 0;
  top: -10px;
  height: 1rem;
  width: 1rem;
  background-color: #F01E28;
  font-size: 0.8rem;
  display: flex;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (max-width: 47.9375em) {
  .o-pill-tabs-nav.is-one-line .o-pill-tabs-nav__item {
    min-width: 0;
    flex: 0 0 33.33%;
  }
}
@media (max-width: 47.9375em) {
  .o-pill-tabs-nav.is-one-line .o-pill-tabs-nav__item .o-pill-tabs-nav__item-link {
    border-radius: 0;
  }
}
@media (max-width: 47.9375em) {
  .o-pill-tabs-nav.is-one-line .o-pill-tabs-nav__item:first-child .o-pill-tabs-nav__item-link {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
}
.o-pill-tabs-nav.is-one-line .o-pill-tabs-nav__item:last-child {
  flex: 0 0 33.33%;
}
@media (max-width: 47.9375em) {
  .o-pill-tabs-nav.is-one-line .o-pill-tabs-nav__item:last-child .o-pill-tabs-nav__item-link {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
}

@media (max-width: 47.9375em) {
  .prefecture-cities {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.prefecture-cities__items {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 48em) {
  .prefecture-cities__items {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-cities__items {
    border-top: solid 1px #dcdcde;
  }
}

@media (min-width: 48em) {
  .prefecture-cities__item {
    font-size: 0.8888888889rem;
    line-height: 1;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 0.5rem;
    flex-basis: 20%;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-cities__item {
    flex-basis: 33.33%;
    font-size: 0.8rem;
    line-height: 1;
  }
}

.prefecture-cities__item-link {
  color: #1E2D3C;
}
@media (min-width: 48em) {
  .prefecture-cities__item-link {
    display: flex;
    text-decoration: none;
    border: solid 1px #dcdcde;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0.75rem;
    line-height: 1.4;
    border-radius: 0.25rem;
    font-size: 0.8888888889rem;
    background-color: #ffffff;
    transition: all 0.2s ease-out;
  }
  .prefecture-cities__item-link:hover {
    border-color: #F01E28;
    background-color: #fef2f2;
    color: #F01E28;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-cities__item-link {
    display: flex;
    text-decoration: none;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1px #dcdcde;
    color: #1E2D3C;
  }
  .prefecture-cities__item:nth-child(3n-1) .prefecture-cities__item-link {
    border-left: solid 1px #dcdcde;
    border-right: solid 1px #dcdcde;
  }
}

@media (min-width: 48em) {
  .auth-form {
    margin-top: 6rem;
  }
}
@media (max-width: 47.9375em) {
  .auth-form {
    margin-top: 4rem;
  }
}
@media (min-width: 48em) {
  .auth-form.has-no-header {
    margin-top: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .auth-form.has-no-header {
    margin-top: 2rem;
  }
}

.auth-form__header {
  margin-bottom: 1rem;
}

.auth-form__logo {
  width: 16rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.auth-form__title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 48em) {
  .auth-form .o-card__body {
    padding: 1.5em 2em 1.75em;
  }
}

.form-page-header {
  text-align: center;
  background-color: #ffe0e4;
  line-height: 1.5;
  padding: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .form-page-header__info {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .form-page-header__info {
    font-size: 1.1428571429rem;
  }
}

.o-box-links-container {
  display: flex;
  padding-bottom: 1px;
  overflow: hidden;
  position: relative;
  padding-top: 2.5rem;
  margin-top: -2.5rem;
}
@media (max-width: 47.9375em) {
  .o-box-links-container {
    padding-bottom: 56px;
  }
}
.o-box-links-container .o-box-links {
  flex-basis: 100%;
  min-width: 100%;
  max-width: 100%;
  background-color: #ffffff;
}
.o-box-links-container input + .o-box-links {
  position: absolute;
  top: 2.5rem;
  transition: all 0.4s ease-out;
}
@media (min-width: 48em) {
  .o-box-links-container input + .o-box-links {
    left: -100%;
  }
}
@media (max-width: 47.9375em) {
  .o-box-links-container input + .o-box-links {
    left: -150vw;
  }
}
.o-box-links-container input:checked + .o-box-links {
  position: absolute;
  left: 0;
  z-index: 2;
  opacity: 1;
}
.o-box-links-container input:checked + .o-box-links::before {
  content: "";
  height: 240px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #ffffff;
}

.o-box-links__back {
  position: absolute;
  right: 0;
  top: -2.5rem;
}

.o-box-links {
  display: flex;
  flex-wrap: wrap;
}

.o-box-links__item {
  margin: 0 -1px -1px 0;
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .o-box-links__item {
    flex: 0 0 33.33%;
  }
}
@media (max-width: 47.9375em) {
  .o-box-links__item {
    flex: 0 0 50%;
  }
}

.o-box-links__item-link {
  display: flex;
  text-decoration: none;
  position: relative;
  left: 0;
  top: 0;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  color: #1E2D3C;
  height: 3.5rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: solid 1px #dcdcde;
  background-color: #ffffff;
  padding-right: 1rem;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.o-box-links__item-link:hover {
  background-color: rgba(240, 30, 40, 0.1);
  color: #F01E28;
  border-color: #F01E28;
  position: relative;
  z-index: 1;
}

.o-box-links__item-icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.o-main-actions + .o-main-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: dashed 1px #dcdcde;
}

.o-main-actions__important-message {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}

.o-main-actions__important-message + .o-main-actions__items {
  margin-top: 0.25rem;
}
@media (min-width: 48em) {
  .o-main-actions__items {
    display: flex;
    justify-content: center;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-main-actions__items.is-inline-sm {
    display: flex;
    justify-content: center;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    flex-wrap: wrap;
    margin-bottom: -0.5rem;
  }
}

@media (min-width: 48em) {
  .o-main-actions__item {
    flex-basis: 18rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-main-actions__items.is-inline-sm .o-main-actions__item {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    flex-basis: 50%;
    margin-bottom: 0.5rem;
  }
  .o-main-actions__items.is-inline-sm .o-main-actions__item .a-button {
    padding-left: 0;
    padding-right: 0;
  }
  .o-main-actions__items.is-inline-sm .o-main-actions__item.is-full-width {
    flex-basis: 100%;
  }
  .o-main-actions__item:not(:first-child) {
    margin-top: 0.5rem;
  }
  .o-main-actions__items.is-inline-sm .o-main-actions__item:not(:first-child) {
    margin-top: 0;
  }
}

.o-main-actions__note {
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-main-actions__note.is-accent {
  color: #F01E28;
}
@media (min-width: 48em) {
  .o-main-actions__note {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-main-actions__note {
    font-size: 0.8888888889rem;
  }
}

.o-main-actions__note-label::after {
  content: ":";
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

@media (max-width: 47.9375em) {
  .o-main-actions.is-accurate .o-main-actions__items.is-inline-sm .o-main-actions__item {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    flex-basis: 33.33%;
    margin-bottom: 0.5rem;
  }
  .o-main-actions.is-accurate .o-main-actions__items.is-inline-sm .o-main-actions__item .a-button {
    padding-left: 0;
    padding-right: 0;
    height: 2.75rem;
    line-height: 1.4;
  }
}

.o-row-price {
  color: #606069;
  width: 100%;
}
@media (min-width: 62em) {
  .o-row-price {
    margin-left: -1em;
    margin-right: -1em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.o-row-price__information {
  display: flex;
}

.o-row-price__label {
  white-space: normal;
  align-self: center;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 62em) {
  .o-row-price__label {
    text-align: right;
    padding-left: 1em;
    padding-right: 1em;
    width: 12em;
  }
  .o-row-price__label.is-text-input {
    width: 18em;
  }
  .o-row-price__label.is-sm {
    width: 7em;
  }
}
@media (max-width: 61.9375em) {
  .o-row-price__label {
    display: block;
    margin-bottom: 0.5em;
  }
  .o-row-price__label.is-text-input {
    margin-bottom: 0.75em;
  }
}
.o-row-price__label .m-price__text-input {
  width: 100%;
}

.o-row-price__label-added {
  font-size: 0.875em;
  font-weight: 600;
}

@media (min-width: 62em) {
  .o-row-price__availability {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media (max-width: 61.9375em) {
  .o-row-price__availability {
    margin-bottom: 0.25em;
    padding-left: 0.5em;
  }
}

.o-row-price__delete {
  margin-right: 0.5em;
}

.o-row-price__values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
@media (min-width: 62em) {
  .o-row-price__values {
    margin-left: -0.25em;
    margin-right: -0.25em;
  }
}
@media (max-width: 61.9375em) {
  .o-row-price__values {
    margin-left: -0.25em;
    margin-right: -0.25em;
    margin-bottom: -0.75em;
  }
}
.o-row-price__values.is-max {
  flex: 100;
}

.o-row-price__item.is-max {
  flex: 100;
}
.o-row-price__item:first-child:last-child {
  flex: 100;
}
@media (min-width: 62em) {
  .o-row-price__item {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .o-row-price__item.has-label {
    margin-left: 1em;
  }
}
@media (max-width: 61.9375em) {
  .o-row-price__item {
    padding-left: 0.25em;
    padding-right: 0.25em;
    margin-bottom: 0.75em;
  }
  .o-row-price__item.is-total {
    position: absolute;
    right: 0;
    top: -1.75em;
    padding: 0;
    margin-bottom: 0;
    color: #9494a0;
  }
  .o-row-price__item.is-total.is-custom-field {
    top: -4.75em;
  }
}

@media (min-width: 48em) {
  .prefecture-content__header {
    font-size: 1.75rem;
    margin-bottom: 1em;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-content__header {
    font-size: 1rem;
    background-color: #f5f5f7;
    border-bottom: solid 1px #dcdcde;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

@media (max-width: 47.9375em) {
  .prefecture-content__body {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.prefecture-content__title {
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}

.prefecture-content__sub-title {
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media (min-width: 48em) {
  .prefecture-content__sub-title {
    font-size: 1.3333333333rem;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-content__sub-title {
    font-size: 1rem;
  }
}

@media (min-width: 48em) {
  .prefecture-content__rankings {
    display: flex;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}

@media (min-width: 48em) {
  .prefecture-content__ranking {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    flex-basis: 50%;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-content__ranking:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.prefecture-content__table .a-table {
  text-align: center;
}
@media (min-width: 48em) {
  .prefecture-content__table .a-table {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-content__table .a-table {
    font-size: 0.8rem;
  }
}

.prefecture-content__table-inner {
  overflow-x: auto;
  overflow-y: hidden;
}

@media (min-width: 48em) {
  .prefecture-content__description:not(:first-child) {
    margin-top: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-content__description:not(:first-child) {
    margin-top: 1rem;
  }
}
@media (min-width: 48em) {
  .prefecture-content__description {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .prefecture-content__description {
    font-size: 0.8888888889rem;
  }
}

.prefecture-content__chart {
  margin-top: 1rem;
}

.prefecture-content__show-more {
  margin-top: 1rem;
  width: 24rem;
  display: flex;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.prefecture-content__show-more span:last-child {
  display: none;
}
input:checked + .prefecture-content__show-more span:first-child {
  display: none;
}
input:checked + .prefecture-content__show-more span:last-child {
  display: inline;
}

.prefecture-content__more {
  display: none;
  margin-top: 1rem;
}
input:checked + * + .prefecture-content__more {
  display: block;
}

@media (min-width: 48em) {
  body.is-biz {
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 47.9375em) {
  body.is-biz {
    padding-bottom: 3.125rem;
  }
}
body.has-no-fixed-bottom-nav {
  padding-bottom: 0;
}
@media (min-width: 48em) {
  body.has-contact-link {
    padding-bottom: calc(5.5rem + 3.5rem + (1rem * 2));
  }
}
@media (max-width: 47.9375em) {
  body.has-contact-link {
    padding-bottom: calc(4.5rem + 4.5rem + (0.25rem * 2));
  }
}
body.has-fixed-bottom-button {
  padding-bottom: 3.75rem;
}
@media (min-width: 48em) {
  body.is-biz.has-fixed-bottom-nav {
    padding-bottom: 0;
  }
}

.js-modal-checkbox {
  opacity: 0;
  height: 0;
  width: 0;
  position: fixed;
  overflow: hidden;
}

body.is-modal-active {
  overflow: hidden;
}

.o-map__footer {
  padding-top: 1rem;
}

@keyframes delay-overflow {
  0% {
    overflow: hidden;
  }
  99% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
.o-side-nav {
  overflow: hidden;
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  transition: width 0.2s ease-out;
  width: 0;
}
input:checked ~ .o-side-nav {
  z-index: 5;
}
@media (min-width: 62em) {
  input:checked ~ .o-side-nav {
    width: 33.3333333333vw;
  }
}
@media (max-width: 61.9375em) {
  input:checked ~ .o-side-nav {
    width: 80vw;
  }
}
body.is-ie11 .o-side-nav {
  overflow: visible;
  display: none;
}
body.is-ie11 input:checked ~ .o-side-nav {
  display: block;
}

.o-side-nav__header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.o-side-nav__header-logo {
  height: 32px;
  margin-left: 16px;
}

.o-side-nav__header-close-button {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.o-side-nav__header-close-button-icon {
  font-size: 40px;
}

.o-side-nav__inner {
  position: relative;
  overflow: scroll;
  transition: all 0.2s ease-out;
  height: 100%;
}
@media (min-width: 62em) {
  .o-side-nav__inner {
    width: 33.3333333333vw;
  }
}
@media (max-width: 61.9375em) {
  .o-side-nav__inner {
    width: 80vw;
  }
}

.o-side-nav__subheader {
  background-color: #DEE0E2;
  height: 32px;
  padding: 8px 0 8px 16px;
  font-weight: 700;
  font-size: 0.8888888889rem;
}

.o-side-nav__item-link {
  display: flex;
  text-decoration: none;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  color: #1E2D3C;
  position: relative;
  align-items: center;
  padding-left: 32px;
  font-size: 0.8888888889rem;
  height: 56px;
  transition: all 0.2s ease-out;
  border-bottom: solid 1px rgba(30, 45, 60, 0.1);
}
.o-side-nav__item:last-child .o-side-nav__item-link {
  border-bottom: none;
}
.o-side-nav__section:last-child .o-side-nav__item-link {
  border-bottom: solid 1px rgba(30, 45, 60, 0.1);
}
.o-side-nav.is-notice .o-side-nav__item-link {
  padding: 0.75em 1em;
}
.o-side-nav.is-notice .o-side-nav__item-link .o-side-nav__item-icon {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.5rem;
}
body.is-ie11 .o-side-nav__item-link {
  height: 2.75rem;
}
.o-side-nav__item-link:hover {
  background-color: #EDEEEF;
}

.estimate-project-detail {
  padding: 1em;
}
@media (min-width: 48em) {
  .estimate-project-detail {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-project-detail {
    font-size: 0.8888888889rem;
  }
}

.estimate-project-detail__item:not(:first-child) {
  margin-top: 0.75em;
  padding-top: 0.75rem;
  border-top: dashed 1px #dcdcde;
}

.estimate-project-detail-label {
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.estimate-project-detail-value {
  font-size: 0.8888888889rem;
}

.contacts__selector {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px #dcdcde;
}
.contacts__selector .o-sort-selector .o-sort-selector__checkbox {
  margin: 0;
}

.contacts-item {
  border-bottom: solid 1px #dcdcde;
}

.contacts-item__inner {
  position: relative;
  display: flex;
}
@media (min-width: 48em) {
  .contacts-item__inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .contacts-item__inner {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.contacts-item__link {
  transition: all 0.2s ease-out;
  display: block;
  color: #1E2D3C;
  text-decoration: none;
  padding-left: 1rem;
  padding-right: 1rem;
}
.contacts-item__link:hover .contacts-item__name {
  text-decoration: underline;
  color: #F01E28;
}
.contacts-item.is-unread .contacts-item__link {
  background-color: #ffe0e4;
}

.contacts-item__kana {
  font-size: 0.75em;
}

.contacts-item__image-container {
  position: relative;
}
@media (min-width: 48em) {
  .contacts-item__image-container {
    flex-basis: 4rem;
    height: 4rem;
    width: 4rem;
    margin-right: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .contacts-item__image-container {
    flex-basis: 2.75rem;
    height: 2.75rem;
    width: 2.75rem;
    margin-left: -0.5rem;
    margin-right: 0.625rem;
  }
}
@media (min-width: 48em) {
  .contacts-item__image-container.is-sm {
    flex-basis: 2.75rem;
    height: 2.75rem;
    width: 2.75rem;
  }
}
@media (max-width: 47.9375em) {
  .contacts-item__image-container.is-sm {
    flex-basis: 2rem;
    height: 2rem;
    width: 2rem;
  }
}

.contacts-item__unread-mark {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  vertical-align: middle;
  border-radius: 50%;
  background-color: #F01E28;
  margin-right: 0.25em;
}
@media (min-width: 48em) {
  .contacts-item__unread-mark {
    position: relative;
    top: -0.125em;
  }
}
@media (max-width: 47.9375em) {
  .contacts-item__unread-mark {
    position: relative;
    top: -0.0625em;
  }
}

.owner_announcement__image {
  font-size: 2rem;
  transform: rotate(-20deg);
  display: flex;
  background: #eeeef0;
  color: #9494a0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.contacts-item__image {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.contacts-item__main {
  flex: 100;
}

.contacts-item__main-header {
  display: flex;
  justify-content: space-between;
}

.contacts-item__name {
  line-height: 1.4;
  font-weight: 700;
  flex: 100;
}
@media (min-width: 48em) {
  .contacts-item__name {
    font-size: 1.1428571429rem;
  }
}
@media (max-width: 47.9375em) {
  .contacts-item__name {
    font-size: 1rem;
  }
}

.contacts-item__message-date {
  line-height: 1.4;
  color: #9494a0;
}
.contacts-item__message-date span {
  margin-left: 0.25em;
}
@media (min-width: 48em) {
  .contacts-item__message-date {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .contacts-item__message-date {
    font-size: 0.8rem;
  }
}

.contacts-item__address {
  line-height: 1.4;
  margin-top: 0.25em;
  font-size: 0.8888888889rem;
}

.contacts-item__last-message {
  margin-top: 0.5em;
  font-size: 0.8rem;
}
.contacts-item__last-message p {
  color: #9494a0;
  line-height: 1.3;
}

.contacts-item__status {
  display: inline-flex;
  padding-left: 0.5em;
  padding-right: 0.5em;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  margin-right: 0.25rem;
  height: 1rem;
  align-items: center;
  position: relative;
  top: 0.125em;
}
.contacts-item__status.is-requested_estimate, .contacts-item__status.is-offered {
  background-color: #F01E28;
  color: #ffffff;
}
.contacts-item__status.is-before_request_estimate, .contacts-item__status.is-estimated, .contacts-item__status.is-contracted {
  background-color: #42bda2;
  color: #ffffff;
}
.contacts-item__status.is-failed, .contacts-item__status.is-canceled {
  background-color: #e2e2e2;
  color: #9494a0;
}

.contacts-item__status-address {
  display: flex;
  align-items: flex-start;
  margin-top: 0.25rem;
}
.contacts-item__status-address > * {
  margin-top: 0;
}

.js-tabs__tab-pane {
  display: none;
}
.js-tabs__tab-pane.is-active {
  display: block;
}

.o-calculating {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
}

.o-calculating__inner {
  background-color: #1E2D3C;
  width: 8rem;
  padding: 1.5rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}
.o-calculating__inner p {
  line-height: 1;
  margin-bottom: 0.375em;
  width: 100%;
}
.o-calculating.is-initial .o-calculating__inner {
  width: 20rem;
}
.o-calculating.is-initial .o-calculating__inner p {
  margin-top: -0.125em;
  margin-bottom: 0.75em;
}
.o-calculating.is-initial .o-calculating__inner p span {
  display: block;
  line-height: 1.6;
  margin-top: -0.1875rem;
}
.o-calculating.is-initial .o-calculating__inner p i {
  font-size: 3em;
  margin-bottom: 1.25rem;
}

.o-calculating__icon-container {
  position: relative;
  font-size: 3em;
  height: 1em;
  width: 1em;
  margin-left: auto;
  margin-right: auto;
}

.o-calculating__icon {
  height: 100%;
  width: 100%;
}

.floor_area-description {
  background-color: #FFFFCC;
  border-radius: 0.25rem;
  margin: 0.5rem;
  padding: 0.75rem;
}
.floor_area-description ul {
  list-style: inside;
  margin: 0.5rem;
}
.floor_area-description li {
  margin-top: 0.5rem;
}

.o-message-alert {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.o-message-alert__inner {
  padding: 0.75em 1.5em;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.8888888889rem;
  background-color: rgba(0, 0, 0, 0.8);
  width: 30rem;
  max-width: calc(100vw - 3rem);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.o-message-alert__inner p {
  line-height: 1.6;
}

.o-message-alert__close {
  display: block;
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.25rem);
  cursor: pointer;
  transform: rotate(45deg);
}
@media (min-width: 48em) {
  .o-message-alert__close {
    height: 2.125rem;
    width: 2.125rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-alert__close {
    height: 1.75rem;
    width: 1.75rem;
  }
}
.o-message-alert__close::before {
  content: "";
  display: block;
  background-color: #1E2D3C;
  height: 100%;
  width: 0.125rem;
  border-radius: 0.125rem;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.o-message-alert__close::after {
  content: "";
  display: block;
  background-color: #1E2D3C;
  height: 0.125rem;
  width: 100%;
  border-radius: 0.125rem;
  position: absolute;
  right: 0;
  top: 50%;
}

.o-sort-selector {
  font-size: 1rem;
}

.o-sort-selector__checkbox {
  margin-top: 0.5em;
  margin-bottom: -0.5em;
  text-align: right;
}
@media (min-width: 48em) {
  .o-sort-selector__checkbox .a-checkbox {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-sort-selector__checkbox .a-checkbox {
    font-size: 0.8888888889rem;
  }
}

.project-introduced, .project-failed-reason {
  border-top: dashed 1px #abb0b2;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background-color: #EDEEEF;
  color: #9494a0;
}
@media (min-width: 48em) {
  .project-introduced, .project-failed-reason {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .project-introduced, .project-failed-reason {
    font-size: 0.8rem;
  }
}

@media (min-width: 48em) {
  .project-introduced__inner, .project-failed-reason__inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.project-introduced__fee, .project-failed-reason__master, .project-failed-reason__comment {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-introduced__fee-label::after, .project-failed-reason__master-label::after, .project-failed-reason__comment-label::after {
  content: ":";
}

.project-introduced__fee-value, .project-failed-reason__master-value, .project-failed-reason__comment-value {
  margin-left: 0.25em;
  color: #1E2D3C;
  font-weight: 700;
}

.project-introduced__company {
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 48em) {
  .project-introduced__company {
    margin-left: 0.5rem;
  }
}

.contacts__item {
  padding: 10px 20px;
  border-bottom: 1px solid #dcdcde;
}

.content_last_message {
  color: #a9a9a9;
}

.contact_name {
  font-size: 19px;
}

.message_date {
  color: #a9a9a9;
}

.message-form {
  background: #ffffff;
  display: flex;
  justify-content: center;
  padding: 0.75rem 0.5rem 0.75rem 1.25rem;
}
body.is-admin-page .message-form {
  position: static;
}
body.is-admin-page .message-form.is-absolute {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
body.is-admin-page .message-form.is-sticky {
  position: sticky;
  left: auto;
  bottom: 0;
  right: auto;
  z-index: 4;
}
.message-form__file-input-area {
  margin-right: 0.875rem;
}
.message-form__file-input-label {
  margin-top: 0.75rem;
  display: block;
  cursor: pointer;
  overflow: hidden;
  font-size: 1.3333333333rem;
  transition: all 0.2s ease-out;
}
.message-form__file-input-label:hover {
  color: #F01E28;
}
.message-form__file-input-label .message-form__file-input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.message-form .message-form__textarea {
  flex: 1;
  min-width: 0;
}
@media (min-width: 48em) {
  .message-form .message-form__textarea {
    max-width: 34.5rem;
  }
}
.message-form .message-form__textarea-file-area {
  padding: 1rem;
  height: 6rem;
  background: #EDEEEF;
  margin: 1px 0px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.message-form .message-form__textarea-file-area.is-hidden {
  display: none;
  box-shadow: none;
}
@media (max-width: 47.9375em) {
  .message-form .message-form__textarea-file-area {
    border-radius: 1.5rem 1.5rem 0px 0px;
  }
}
@media (min-width: 48em) {
  .message-form .message-form__textarea-file-area {
    border-radius: 0.25rem 0.25rem 0px 0px;
  }
}
.message-form .message-form__textarea-textarea {
  padding: 0.75rem;
  transition: all 0.1s ease-out;
  font-size: 1rem;
  line-height: 1.25rem;
  border: none;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 47.9375em) {
  .message-form .message-form__textarea-textarea {
    border-radius: 1.5rem;
    max-height: 6.5rem;
  }
}
@media (min-width: 48em) {
  .message-form .message-form__textarea-textarea {
    max-height: 32rem;
  }
}
.message-form .message-form__textarea-textarea:focus {
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.message-form .message-form__action {
  margin-left: 0.5rem;
}
.message-form .message-form__action-button {
  width: 4rem;
  height: 44px;
  font-size: 0.8888888889rem;
  border: none;
}
.message-form__file-input-description {
  font-size: 0.8rem;
  margin-left: 0.25em;
  white-space: nowrap;
}
.message-form .message-form__to-top {
  opacity: 0;
  color: #9494a0;
  position: absolute;
  right: 0;
  top: -2.5rem;
  height: 2.5rem;
  width: 2.5rem;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: #1E2D3C;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  transition: all 0.2s ease-out;
}
.message-form .message-form__to-top.is-active {
  opacity: 1;
}
.message-form .message-form__next-action {
  padding-bottom: 0.5rem;
  max-width: 100%;
}
@media (min-width: 48em) {
  .message-form .message-form__next-action {
    width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.message-form__textarea-file-area:not(.is-hidden) ~ .message-form__textarea-textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}

.administrator-action-log-form {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
  background: #ffffff;
  border-top: solid 1px #dcdcde;
}
body.is-admin-page .administrator-action-log-form {
  position: static;
}
body.is-admin-page .administrator-action-log-form.is-absolute {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
body.is-admin-page .administrator-action-log-form.is-sticky {
  position: sticky;
  left: auto;
  bottom: 0;
  right: auto;
  z-index: 4;
}

.administrator-action-log-form__inner {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.administrator_action_logs .administrator-action-log-form__inner {
  padding-top: 0;
}

.administrator-action-log-form__actions {
  margin-top: 0.5rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.administrator-action-log-form__actions-left {
  width: 100%;
  display: flex;
  padding-right: 0.75rem;
}
.administrator-action-log-form__actions-left .a-select + .a-select {
  margin-left: 0.5em;
}
.administrator-action-log-form__actions-left .a-select > select {
  height: 2rem;
}

.administrator-action-log-form__actions-right {
  display: flex;
  justify-content: flex-end;
}

.administrator-action-log-form__action {
  display: flex;
  align-items: center;
}
.administrator-action-log-form__action .a-button {
  min-width: 6rem;
}

.administrator-action-logs-template_items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 100%;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.administrator-action-logs-template_item {
  box-sizing: border-box;
  width: 32%;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #DEE0E2;
  border-radius: 8px;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}
.administrator-action-logs-template_item:hover {
  background: #F4F5F6;
  cursor: pointer;
}
.administrator-action-logs-template_item h3 {
  font-family: "Hiragino Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 14.29px;
  line-height: 100%;
  color: #1E2D3C;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
.administrator-action-logs-template_item p {
  font-family: "Hiragino Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 12.88px;
  line-height: 170%;
  color: rgba(30, 45, 60, 0.7);
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 1;
}

.administrator-action-logs-carbon-copy_companies {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 0;
  margin-bottom: 36px;
}
.administrator-action-logs-carbon-copy_companies > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 16px;
  width: 45%;
}

.administrator-action-logs-carbon-copy_companies-group__header {
  width: 100%;
  padding: 8px;
  font-weight: 600;
  color: #444;
  text-align: center;
}

.administrator-action-logs-carbon-copy_companies-group {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 16px;
  overflow-y: auto;
}

.o-card {
  border: solid 1px #dcdcde;
  font-size: 1rem;
  border-radius: 0.25rem;
  background-color: #ffffff;
}
.o-modal .o-card {
  border: none;
  max-height: calc(100vh - 5rem);
  overflow: auto;
}
@media (max-width: 47.9375em) {
  .o-modal .o-card {
    width: calc(100vw - 2rem);
  }
}
.o-card.is-line-form {
  margin-top: 1rem;
}
.o-card.is-md {
  width: 30rem;
  max-width: calc(100vw - 2rem);
}
.o-card.is-lg {
  width: 60rem;
  max-width: calc(100vw - 2rem);
}
@media (min-width: 48em) {
  [class*=col-] .o-card {
    height: 100%;
  }
}
.o-card + .o-card {
  margin-top: 1rem;
}

.o-card__header {
  padding: 0.75em 1em;
}
.o-card.is-line-form .o-card__header {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.o-card__title {
  font-size: 1em;
  line-height: 1.4;
  font-weight: 600;
}
.o-card__title.is-lg {
  font-size: 1.1428571429rem;
}

.o-card .o-card__header + .m-data-list {
  border-top: solid 1px #dcdcde;
}

.actions-item-margin {
  margin-top: 20px;
  margin-bottom: 20px;
}

.o-form__bottom-margin {
  margin-bottom: 100px;
}

.edit-button {
  width: 265px !important;
  background: #E3E3E6 !important;
  border: #E3E3E6;
}

.example-add {
  margin-top: 52px;
  margin-bottom: 100px;
}

.o-card__body {
  padding: 0.75em 1em;
}
.o-card__header + .o-card__body, .m-data-list + .o-card__body {
  border-top: solid 1px #dcdcde;
}

.o-card__footer {
  padding: 0.75em 1em;
  border-top: solid 1px #dcdcde;
}

.o-card__columns {
  display: flex;
}
.o-card__header + .o-card__columns {
  border-top: solid 1px #dcdcde;
}

.o-card__column {
  flex: 1;
}
.o-card__column + .o-card__column {
  border-left: solid 1px #dcdcde;
}

.o-card__cols {
  margin-bottom: -1.5rem;
}

.o-card__col-inner {
  margin-bottom: 1.5rem;
}

p.is-center {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.o-card__actions {
  display: flex;
  align-items: center;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.o-card__action {
  min-width: 15rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.o-card__action.is-sub {
  min-width: 0;
}

.o-modal-form {
  background-color: #ffffff;
  overflow-y: auto;
}
@media (min-width: 48em) {
  .o-modal-form {
    border-radius: 0.25rem;
    width: 55rem;
    max-height: calc(100vh - 6rem);
    max-width: calc(100vw - 3rem);
  }
  .o-modal-form .o-form__item.is-inline .a-form-label {
    min-width: 8rem;
  }
}
@media (max-width: 47.9375em) {
  .o-modal-form {
    height: 80vh;
    width: 100vw;
  }
}
.o-modal-form.is-lx {
  width: 60rem;
}

.o-modal-form__header {
  padding: 0.625em 1rem;
  border-bottom: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .o-modal-form__header {
    font-size: 1.3333333333rem;
  }
}
@media (max-width: 47.9375em) {
  .o-modal-form__header {
    font-size: 1.1428571429rem;
  }
}

.o-modal-form__title {
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}

.o-modal-form__body {
  padding: 1rem;
}

@keyframes delay-overflow {
  0% {
    overflow: hidden;
  }
  99% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
.o-speech-balloon-nav {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 3;
  transition: max-height 0.2s ease-out;
  max-height: 0;
}
input:checked ~ .o-speech-balloon-nav {
  z-index: 5;
}
input:checked ~ .o-speech-balloon-nav {
  max-height: 10rem;
  animation-name: delay-overflow;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
}
input:checked ~ .o-speech-balloon-nav::before, input:checked ~ .o-speech-balloon-nav::after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 0.75rem 0.5rem;
  border-color: transparent;
  position: absolute;
  right: 0.6875rem;
  z-index: 3;
}
input:checked ~ .o-speech-balloon-nav::before {
  border-bottom-color: #d6dcde;
  top: -1.5rem;
}
input:checked ~ .o-speech-balloon-nav::after {
  border-bottom-color: #ffffff;
  top: -1.375rem;
}
body.is-ie11 .o-speech-balloon-nav {
  overflow: visible;
  display: none;
}
body.is-ie11 input:checked ~ .o-speech-balloon-nav {
  display: block;
}

.o-speech-balloon-nav__inner {
  position: relative;
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .o-speech-balloon-nav__inner {
    border-radius: 0.25rem;
    min-width: 14rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 0.125rem;
  }
}

.o-speech-balloon-nav__item-link {
  display: flex;
  text-decoration: none;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  color: #1E2D3C;
  align-items: center;
  padding: 0.5em 1em;
  position: relative;
  min-height: 2.75rem;
  transition: all 0.2s ease-out;
  border-left-width: solid;
  border-left-width: 1px;
  border-left-width: #d6dcde;
  border-right-width: solid;
  border-right-width: 1px;
  border-right-width: #d6dcde;
  border-top: solid 1px #dcdcde;
  background-color: #ffffff;
}
.o-speech-balloon-nav__item:first-child .o-speech-balloon-nav__item-link {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  border-top-color: #d6dcde;
}
.o-speech-balloon-nav__item:last-child .o-speech-balloon-nav__item-link {
  border-bottom: solid 1px #d6dcde;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.o-speech-balloon-nav__item-link:hover {
  z-index: 1;
  background-color: #fff0f2;
  color: #F01E28;
}
body.is-ie11 .o-speech-balloon-nav__item-link {
  height: 2.75rem;
}

.service-evaluations__items {
  margin-top: 1rem;
}

.service-evaluations__item:not(:first-child) {
  margin-top: 1rem;
}

.service-evaluations__items.u-d-none {
  display: none;
}
input:checked + .service-evaluations__items.u-d-none {
  display: block;
}

.service-evaluation {
  border-radius: 0.25rem;
  overflow: hidden;
  padding: 0.75rem 1rem;
  background-color: #f5f5f7;
}

@media (min-width: 48em) {
  .service-evaluation__inner {
    display: flex;
  }
}
@media (max-width: 47.9375em) {
  .service-evaluation__inner {
    display: block;
  }
}

@media (min-width: 48em) {
  .service-evaluation__image-container {
    flex-basis: 12rem;
    margin-right: 1rem;
    height: 8rem;
    width: 12rem;
  }
}
@media (max-width: 47.9375em) {
  .service-evaluation__image-container {
    height: 5rem;
    width: 7rem;
    float: left;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

.service-evaluation__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-evaluation__main {
  flex: 100;
}

.service-evaluation__title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.service-evaluation__body {
  margin-top: 0.25em;
}
.service-evaluation__body p {
  font-size: 0.8888888889rem;
  line-height: 1.4;
}
.service-evaluation__body p:not(:first-child) {
  margin-top: 1em;
}

@media (min-width: 48em) {
  .contents {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .contents {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 48em) {
  .o-modal-help .contents {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 47.9375em) {
  .o-modal-help .contents {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.o-empty__inner {
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 48em) {
  .o-empty__inner {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-empty__inner {
    font-size: 0.8888888889rem;
  }
}

.o-modal-help {
  background-color: #ffffff;
  border-radius: 0.25rem;
  width: 32rem;
  max-height: calc(100vh - 6rem);
  max-width: calc(100vw - 3rem);
  overflow-y: auto;
}
.o-modal-help.has-date-picker {
  overflow: visible;
}
@media (max-width: 47.9375em) {
  .o-modal-help {
    max-height: calc(100vh - 10rem);
  }
}

.o-modal-help__header {
  border-bottom: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .o-modal-help__header {
    padding: 0.625rem 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-modal-help__header {
    padding: 0.625rem 1rem;
  }
}

.o-modal-help__title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.o-modal-help__body {
  font-size: 0.8888888889rem;
}
@media (min-width: 48em) {
  .o-modal-help__body {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-modal-help__body {
    padding: 0.75rem 1rem;
  }
}
@media (min-width: 48em) {
  .o-modal-help__body:first-child {
    padding: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-modal-help__body:first-child {
    padding: 1rem;
  }
}
.o-modal-help__body .o-modal-help__header-image {
  height: 10rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.o-modal-help__body .o-modal-help__header-image img {
  height: 100%;
}

.o-stacked-nav {
  width: 5rem;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #1E2D3C;
  overflow-y: auto;
  z-index: 2;
}
@media (max-width: 47.9375em) {
  .o-stacked-nav {
    display: none;
  }
}

.o-stacked-nav__items {
  display: flex;
  flex-direction: column;
}

.o-stacked-nav__item {
  display: flex;
  height: 4.5rem;
  width: 100%;
  border-bottom: 0.0625rem solid #4b5763;
}

.o-stacked-nav__item-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.o-stacked-nav__item-link.is-active {
  background-color: #F01E28;
  position: relative;
}
.o-stacked-nav__item-link.is-active::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-style: solid;
  border-color: transparent;
  border-right-color: #ffffff;
  border-width: 0.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.o-stacked-nav__item-link-icon {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  justify-content: center;
  align-items: center;
}
.o-stacked-nav__item-link-icon i {
  font-size: 1.75rem;
}

.o-stacked-nav__item-link-label {
  font-size: 0.625rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}

.total-price {
  padding: 0.75em 1em;
}
@media (min-width: 48em) {
  .total-price {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .total-price {
    font-size: 0.8888888889rem;
  }
}

.total-price__item {
  display: flex;
  align-items: center;
}
.total-price__item:not(:first-child) {
  border-top: dashed 1px #dcdcde;
  padding-top: 0.5em;
  margin-top: 0.375em;
}
.total-price__item:last-child {
  padding-top: 0.375em;
  border-top: solid 2px #dcdcde;
}
.total-price__item.is-important {
  font-weight: 700;
  font-size: 1.25em;
}
.total-price__item.is-supplement {
  font-size: 0.8em;
  color: #606069;
}
.total-price__item.margin-top {
  margin-top: 1em;
}

.total-price__item-value {
  flex: 100;
  display: flex;
  justify-content: flex-end;
}
.total-price__item-value .m-price__unit {
  font-size: 0.875em;
}

.total-price__footer {
  border-top: solid 1px #dcdcde;
  padding-top: 0.375em;
  padding-bottom: 0.375em;
}
@media (min-width: 48em) {
  .total-price__footer {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .total-price__footer {
    font-size: 0.8rem;
  }
}

.total-price__expiration-date {
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.total-price__expiration-date-label {
  display: flex;
  align-items: center;
}
.total-price__expiration-date-label::after {
  content: ":";
  display: block;
  margin-left: 0.125em;
  margin-right: 0.125em;
}

@media (min-width: 48em) {
  .contract__footer {
    padding-bottom: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .contract__footer {
    padding-bottom: 1rem;
  }
}
.contract.has-fixed-bottom-nav .contract__footer {
  border-top: solid 1px #dcdcde;
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .contract.has-fixed-bottom-nav .contract__footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .contract.has-fixed-bottom-nav .contract__footer {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: sticky;
    bottom: 0;
    z-index: 10;
  }
}

@media (min-width: 48em) {
  .contract__footer-actions:not(:first-child) {
    margin-top: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .contract__footer-actions:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.message-app-bar .inner-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.message-app-bar .profile-image {
  margin: 0px 4px;
}
@media (min-width: 48em) {
  .message-app-bar .profile-image {
    height: 2rem;
    width: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .message-app-bar .profile-image {
    height: 1.5rem;
    width: 1.5rem;
  }
}
.message-app-bar .text {
  font-family: "Hiragino Kaku Gothic Pro";
  margin: 0px 4px;
}
@media (min-width: 48em) {
  .message-app-bar .text {
    font-size: 1.1428571429rem;
  }
}
@media (max-width: 47.9375em) {
  .message-app-bar .text {
    font-size: 1rem;
  }
}

.o-fixed-bottom-button {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #f5f5f7;
  border-top: solid 1px #dcdcde;
}

.o-fixed-bottom-button__inner {
  height: 100%;
  height: 3.75rem;
  display: flex;
  align-items: center;
}

.o-modal-image {
  display: block;
}
@media (min-width: 48em) {
  .o-modal-image {
    max-width: calc(100vw - 2rem);
    width: 48.125rem;
  }
}
@media (max-width: 47.9375em) {
  .o-modal-image {
    max-width: calc(100vw - 2rem);
    width: 100vw;
  }
}

.o-modal-image__image {
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 6rem);
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.sticky-bottom-actions {
  position: sticky;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background-color: #f5f5f7;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 48em) {
  .sticky-bottom-actions__items {
    display: flex;
    justify-content: center;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}

@media (min-width: 48em) {
  .sticky-bottom-actions__item {
    max-width: 24rem;
    flex-basis: 50%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.welcome-page-body__home-contents {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
body.is-biz-top-page .welcome-page-body__home-contents {
  padding-bottom: 0;
}

@media (min-width: 48em) {
  .welcome-page-body__text-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-page-body__text-container {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    font-size: 0.8888888889rem;
  }
}

.demolition-companies {
  position: relative;
}

.demolition-companies__items {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.demolition-companies__item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.demolition-company {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: #f5f5f7;
}

@media (min-width: 48em) {
  .demolition-company__image-container {
    height: 10rem;
  }
}
@media (max-width: 47.9375em) {
  .demolition-company__image-container {
    height: 55vw;
  }
}

.demolition-company__image {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.demolition-company__body {
  background-color: #ffffff;
  border-top: solid 1px #dcdcde;
  padding: 0.75rem 1rem;
}

.demolition-company__name {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1E2D3C;
}

.demolition-company__address {
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.125em;
  color: #1E2D3C;
}

.demolition-company__license {
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.125em;
  color: #1E2D3C;
}

.demolition-companies__action {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  height: 2.75rem;
  width: 2.75rem;
  background-color: #ffffff;
  border-radius: 50%;
  border: solid 1px #dcdcde;
}
.demolition-companies__action.is-prev {
  left: -1.375rem;
}
.demolition-companies__action.is-next {
  right: -1.375rem;
}
@media (max-width: 47.9375em) {
  .demolition-companies__action.is-prev {
    left: -1rem;
  }
  .demolition-companies__action.is-next {
    right: -1rem;
  }
}

.modal-service-evaluation {
  background-color: #ffffff;
}

.o-admin-footer {
  border-top: solid 1px #dcdcde;
}

.o-admin-footer__inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.o-admin-footer__copyright {
  display: flex;
  align-items: center;
}
.o-admin-footer__copyright i {
  font-size: 0.8888888889rem;
}

.o-modal {
  display: none;
  color: #1E2D3C;
  height: 92vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
}
input:checked + .o-modal {
  display: block;
}
.o-modal .container {
  padding-left: 0;
  padding-right: 0;
}

.o-modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.o-modal__close {
  display: block;
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.25rem);
  cursor: pointer;
  transform: rotate(45deg);
}
@media (min-width: 48em) {
  .o-modal__close {
    height: 2.125rem;
    width: 2.125rem;
  }
}
@media (max-width: 47.9375em) {
  .o-modal__close {
    height: 1.75rem;
    width: 1.75rem;
  }
}
.o-modal__close::before {
  content: "";
  display: block;
  background-color: #ffffff;
  height: 100%;
  width: 0.125rem;
  border-radius: 0.125rem;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.o-modal__close::after {
  content: "";
  display: block;
  background-color: #ffffff;
  height: 0.125rem;
  width: 100%;
  border-radius: 0.125rem;
  position: absolute;
  right: 0;
  top: 50%;
}

.o-modal__overlay {
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden=false] .o-modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .o-modal__content {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .o-modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .o-modal__content {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .o-modal__overlay,
.micromodal-slide .o-modal__content {
  will-change: transform;
}

@media (min-width: 48em) {
  .o-thanks-message {
    padding: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-thanks-message {
    padding: 0.25rem 0.25rem 0.5rem;
  }
}

.o-thanks-message__title {
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 48em) {
  .o-thanks-message__title {
    font-size: 1.1428571429rem;
  }
}
@media (max-width: 47.9375em) {
  .o-thanks-message__title {
    font-size: 1.1428571429rem;
  }
}

.o-thanks-message__title-icon {
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.25em;
  display: block;
  text-align: center;
}
@media (min-width: 48em) {
  .o-thanks-message__title-icon {
    font-size: 1.75em;
  }
}
@media (max-width: 47.9375em) {
  .o-thanks-message__title-icon {
    font-size: 1.5em;
  }
}

.o-thanks-message__body {
  margin-top: 1em;
}
@media (min-width: 48em) {
  .o-thanks-message__body {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-thanks-message__body {
    font-size: 0.8888888889rem;
  }
}
.o-thanks-message__body .a-button.is-primary {
  color: #ffffff;
  text-decoration: none;
}

.o-thanks-message__contact {
  text-align: center;
}
@media (min-width: 48em) {
  .o-thanks-message__contact {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-thanks-message__contact {
    margin-top: 0.75rem;
    font-size: 1.3333333333rem;
  }
}

.welcome-page-header__inner {
  display: flex;
  justify-content: space-between;
}

.welcome-page-header__title {
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 48em) {
  .welcome-page-header__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-page-header__title {
    font-size: 1.1428571429rem;
  }
}

@media (min-width: 48em) {
  .estimate-actions:not(:first-child) {
    margin-top: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-actions:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.estimate-actions__items {
  display: flex;
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.estimate-actions__item {
  flex-basis: 50%;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.estimate-actions__item > [class*=-button].is-block {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 47.9375em) {
  html body .estimate-actions__item-action.a-button.is-lg {
    font-size: 0.8rem;
    height: 2.75rem;
  }
  html body .estimate-actions__item-action.a-button.is-lg.estimate__footer-contract-action {
    height: 2.25rem;
    min-height: 2.25rem;
    font-size: 0.8rem;
  }
}

.estimate-price-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (min-width: 48em) {
  .estimate-price-total {
    font-size: 1rem;
    width: 23.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 47.9375em) {
  .estimate-price-total {
    font-size: 0.8rem;
  }
}
.estimate-price-total.is-accurate {
  justify-content: center;
}

.estimate-price-total__label {
  font-weight: 700;
  margin-right: 0.375em;
}
html body .estimate-price-total__label {
  padding-right: 1.0625em;
}

.estimate-price-total__price {
  display: flex;
  align-items: baseline;
}

.estimate-price-total__value .m-price__number {
  font-weight: 700;
  font-size: 1.125em;
}

.estimate-price-total__expiration-date {
  display: flex;
  align-items: baseline;
  color: #606069;
}
@media (min-width: 48em) {
  .estimate-price-total__expiration-date {
    font-size: 0.875em;
  }
}
@media (max-width: 47.9375em) {
  .estimate-price-total__expiration-date {
    font-size: 0.75em;
  }
}
.estimate-price-total__expiration-date .estimate-price-total__expiration-date-number {
  color: #1E2D3C;
}

.estimate-price-total__expiration-date-number {
  font-size: 1.125em;
  font-weight: 700;
  margin-left: 0.125em;
  margin-right: 0.125em;
}

.estimate-version-nav {
  border-bottom: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .estimate-version-nav {
    margin-top: -1.75rem;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-version-nav {
    margin-top: -1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 48em) {
  .estimate-version-nav__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-version-nav__inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.estimate-version-nav__header {
  margin-bottom: 0.5em;
}
@media (min-width: 48em) {
  .estimate-version-nav__header {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-version-nav__header {
    font-size: 0.8888888889rem;
  }
}

.estimate-version-nav__title {
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.25rem;
}
.estimate-version-nav__title.is-accent {
  color: #F01E28;
}

.estimate-version-nav__message {
  text-align: center;
  line-height: 1.4;
  display: block;
  cursor: pointer;
}
@media (min-width: 48em) {
  .estimate-version-nav__message {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-version-nav__message {
    font-size: 0.8rem;
  }
}

.estimate-version-nav__message-link {
  text-decoration: underline;
  color: #1A0DAB;
  font-size: 0.875em;
}
.estimate-version-nav__message:hover .estimate-version-nav__message-link {
  text-decoration: none;
}

.estimate-version-nav__items {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48em) {
  .estimate-version-nav__items {
    margin-top: 1rem;
    width: 24rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-version-nav__items {
    margin-top: 0.875rem;
  }
}

.estimate-version-nav__item {
  flex: 1;
}
@media (min-width: 48em) {
  .estimate-version-nav__item {
    font-size: 0.8rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate-version-nav__item {
    font-size: 0.8rem;
  }
}
.estimate-version-nav__item:first-child {
  border-right: solid 1px #dcdcde;
}
.estimate-version-nav__item:last-child {
  border-left: solid 1px #dcdcde;
}

.estimate-version-nav__item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 100%;
  width: 100%;
}
.estimate-version-nav__item-link.is-inactive {
  pointer-events: none;
  color: #9494a0;
}
.estimate-version-nav__item:first-child .estimate-version-nav__item-link::before {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e314";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
.estimate-version-nav__item:last-child .estimate-version-nav__item-link::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e315";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

a.estimate-version-nav__item-link .estimate-version-nav__item-link-label {
  text-decoration: underline;
}
a.estimate-version-nav__item-link .estimate-version-nav__item-link-label:hover {
  text-decoration: none;
}

.estimate_change_type-link {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 0.875em;
}

.estimate_offers-item {
  display: flex;
  border-bottom: solid 1px #dcdcde;
  color: #1E2D3C;
  text-decoration: none;
}
.estimate_offers-item:last-child {
  border-bottom: none;
}

.estimate_offers-item.is-closed .estimate_offers-item__right {
  background-color: #f5f5f7;
}

.estimate_offers-item__left {
  display: flex;
  align-items: center;
}
@media (min-width: 48em) {
  .estimate_offers-item__left {
    width: 8rem;
  }
}
@media (max-width: 47.9375em) {
  .estimate_offers-item__left {
    width: 5.5rem;
  }
}

.estimate_offers-item__image img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.estimate_offers-item__right {
  flex-grow: 1;
  padding: 0.75rem;
}

.estimate_offers-item__title {
  font-weight: 600;
  font-size: 1.1428571429rem;
}
.estimate_offers-item .estimate_offers-item__title:hover {
  text-decoration: underline;
  color: #F01E28;
}
.estimate_offers-item.is-closed .estimate_offers-item__title:hover {
  text-decoration: none;
  color: #1E2D3C;
}

.estimate_offers-item__demolition_type,
.estimate_offers-item__starts_work,
.estimate_offers-item__date,
.estimate_offers-item-requirement-matching-rate {
  margin-top: 0.5rem;
  font-size: 0.8888888889rem;
  color: #9494a0;
}

.closed_estaimte_offers-item {
  margin-top: 0.5rem;
  font-size: 0.8888888889rem;
  color: #F01E28;
}

.estimate_offers-item__date {
  display: flex;
}

.estimate_offers-item__date-label::after {
  content: "：";
}

.estimate_offers-item-requirement-matching-rate {
  display: flex;
}

.estimate_offers-item__requirement-matching-rate-label::after {
  content: "：";
}

.estimate_offers-item__requirement-matching-rate-value,
.estimate_offers-item__warning-notice {
  font-weight: bold;
  color: #F01E28;
}

.companies-item {
  position: relative;
}
@media (min-width: 48em) {
  .companies-item {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.companies-item + .companies-item {
  margin-top: 1rem;
}

.companies-item__inner {
  background-color: #ffffff;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  padding: 1rem;
}
@media (min-width: 48em) {
  .companies-item__inner {
    flex: 1;
  }
}

.companies-item__counts {
  display: flex;
  gap: 0.25rem;
}

.companies-item__count {
  border: solid 1px #dcdcde;
  display: flex;
  align-items: center;
  height: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 1rem;
}
.companies-item__count i {
  font-size: 1.1428571429rem;
  margin-right: 0.25rem;
}
.companies-item__count.is-amount i {
  color: #FEBB02;
}
.companies-item__count.is-size i {
  color: #758088;
}

.companies-item.is-selected .companies-item__main-link {
  pointer-events: none;
  background-color: #d0d0d8;
  border-color: #a6a6ad;
}
.companies-item.is-selected .companies-item__main-link::before {
  background-color: #f5f5f7;
  border-color: #a6a6ad;
}
.companies-item.is-selected .companies-item__main-link::after {
  opacity: 1;
  color: #9494a0;
}

.companies-item__label-selected {
  background-color: #F01E28;
  border: solid 1px #c01820;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 600;
  padding-left: 0.75em;
  padding-right: 0.75em;
  margin-left: 0.75em;
  position: relative;
  top: -2px;
}

@media (min-width: 48em) {
  .companies-item__name {
    font-size: 1.1428571429rem;
    line-height: 1.4;
    font-weight: 600;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__name {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
  }
}
.companies-item__name .a-status-badge {
  margin-left: 0.5em;
}
.companies-item__name.is-masked {
  font-size: 0.8888888889rem;
  margin-bottom: 0.25em;
}
.companies-item__name .companies-item__name-gold-partner-certification {
  display: block;
}
@media (min-width: 48em) {
  .companies-item__name .companies-item__name-gold-partner-certification {
    height: 1rem;
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__name .companies-item__name-gold-partner-certification {
    height: 0.875rem;
    margin-bottom: 0.125rem;
  }
}

.companies-item__name-gold-partner-certification:hover {
  cursor: pointer;
}
.companies-item__name-gold-partner-certification img {
  height: 100%;
  vertical-align: top;
}

.companies-item__author-status {
  margin-left: 1rem;
}

.estimates-author__status {
  margin-left: 1rem;
}

.companies-item__read-mark {
  font-weight: 400;
}
.companies-item__read-mark.is-created {
  background-color: #F01E28;
  border-color: #F01E28;
  color: #ffffff;
}
.companies-item__read-mark.is-updated {
  background-color: #29c3d4;
  border-color: #29c3d4;
  color: #ffffff;
}

@media (min-width: 48em) {
  .companies-item__meta {
    margin-top: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__meta {
    margin-top: 0.25rem;
  }
}

.companies-item__address {
  line-height: 1.4;
  display: flex;
  align-items: center;
}
@media (min-width: 48em) {
  .companies-item__address {
    font-size: 0.8888888889rem;
    margin-top: 0.75rem;
  }
  .companies-item__address i {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__address {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
  .companies-item__address i {
    font-size: 0.8888888889rem;
  }
}
.companies-item__address i {
  margin-right: 0.25rem;
  color: #9494a0;
}

.companies-item__estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1E2D3C;
  background-color: #EDEEEF;
}
@media (min-width: 48em) {
  .companies-item__estimate {
    font-size: 1.1428571429rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__estimate {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (min-width: 48em) {
  .companies-item__estimate-label {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__estimate-label {
    font-size: 0.8rem;
  }
}

.companies-item__estimate-price {
  font-size: 1.1428571429rem;
  font-weight: 700;
}

@media (min-width: 48em) {
  .companies-item__counts {
    font-size: 0.8rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__counts {
    font-size: 0.8rem;
  }
}

@media (min-width: 48em) {
  .companies-item__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__actions {
    margin-top: 1rem;
  }
}

@media (min-width: 48em) {
  .companies-item__action {
    flex: 1;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__action:not(:first-child) {
    margin-top: 0.5rem;
  }
  .companies-item__action .a-button.is-lg {
    height: 2.75rem;
  }
}

.companies-item__estimate-price-empty {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.25em;
  color: #F01E28;
}

.companies-item__dates {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.125rem;
}
@media (min-width: 48em) {
  .companies-item__dates {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    line-height: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__dates {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    line-height: 1rem;
  }
}

.companies-item__date:first-child {
  margin-right: 1em;
}

.companies-item__date-label::after {
  content: ":";
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.companies-item__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.companies-item__image {
  border-radius: 50%;
}
@media (min-width: 48em) {
  .companies-item__image {
    height: 4.5rem;
    width: 4.5rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item__image {
    height: 4rem;
    width: 4rem;
  }
}

.companies-item-nav__items {
  display: flex;
}

.companies-item-nav__item {
  flex: 1;
  border-right: 1px solid #B7BDC1;
}
.companies-item-nav__item:last-child {
  border-right: none;
}

.companies-item-nav__link {
  display: flex;
  height: 2.75rem;
  width: 100%;
  line-height: 1.3;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1E2D3C;
  background-color: #DEE0E2;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .companies-item-nav__link {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .companies-item-nav__link {
    font-size: 0.8rem;
  }
}
.companies-item-nav__link:hover {
  background-color: #B7BDC1;
}
.companies-item-nav__item:first-child .companies-item-nav__link {
  border-bottom-left-radius: 0.25rem;
}
.companies-item-nav__item:last-child .companies-item-nav__link {
  border-bottom-right-radius: 0.25rem;
}

.estimates-actions {
  padding-bottom: 1.75rem;
}

@media (min-width: 48em) {
  .estimates-actions__items {
    display: flex;
    justify-content: center;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}

@media (min-width: 48em) {
  .estimates-actions__item {
    max-width: 24rem;
    flex-basis: 50%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.estimates-actions__item-description {
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
  color: #F01E28;
  margin-bottom: 0.5em;
}

.estimates-message {
  margin-top: -1px;
  border-top-width: 1px;
  border-top-width: solid;
  border-top-width: #FEBB02;
  border-bottom-width: 1px;
  border-bottom-width: solid;
  border-bottom-width: #FEBB02;
}
.estimates-message.is-warning {
  background-color: #fff1cb;
  border-color: #FEBB02;
  color: #80600a;
}
.estimates-message.is-info {
  background-color: #e2f8fb;
  border-color: #29c3d4;
  color: #0a6973;
}

.estimates-message__inner {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  display: flex;
  justify-content: center;
}
@media (min-width: 48em) {
  .estimates-message__inner {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .estimates-message__inner {
    font-size: 0.8rem;
  }
}

.estimates-message__label {
  margin-right: 0.25em;
}
.estimates-message__label::after {
  content: ":";
}

.estimates-message__value {
  font-weight: 600;
}

.estimates-view-actions__inner {
  display: flex;
  align-items: center;
  margin-left: -0.375rem;
  margin-right: -0.375rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.estimates-view-actions__action {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.estimates-view-actions__action:first-child {
  flex: 100;
}
.estimates-view-actions__action:last-child {
  flex-basis: 8rem;
  width: 8rem;
}

.estimates-view-actions__view-changer.a-button.is-block {
  display: none;
  min-height: 2.25rem;
}
.estimates-view-actions__view-changer.a-button.is-block.is-active {
  display: flex;
}

.gm-estimate-item__link {
  text-decoration: none;
}

.gm-estimate-item__price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: #1E2D3C;
  margin-top: -0.1875em;
  margin-bottom: -0.125em;
}
@media (min-width: 48em) {
  .gm-estimate-item__price {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .gm-estimate-item__price {
    font-size: 1rem;
  }
}
.gm-estimate-item__price .m-price__number {
  font-size: 1em;
  color: #F01E28;
  font-weight: 600;
}
.gm-estimate-item__price .m-price__unit {
  font-size: 0.75em;
  color: #9494a0;
}

.gm-style .gm-style-iw-t::after {
  height: 0;
  width: 0;
}

.estimates-description {
  margin-bottom: 1.5em;
}
@media (min-width: 48em) {
  .estimates-description {
    font-size: 0.9375rem;
  }
}
@media (max-width: 47.9375em) {
  .estimates-description {
    font-size: 0.8888888889rem;
  }
}

.estimates-project {
  background-color: #1E2D3C;
  color: #ffffff;
}
@media (min-width: 48em) {
  .estimates-project {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }
}
@media (max-width: 47.9375em) {
  .estimates-project {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}

@media (max-width: 47.9375em) {
  html body .estimates-project__address.a-title {
    font-size: 1.1428571429rem;
  }
}

.estimates__body {
  padding-bottom: 2rem;
}

.estimates__title {
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
  font-weight: 600;
}

.estimates__description {
  font-size: 0.8888888889rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1rem;
}

.estimates__items {
  margin-bottom: -1rem;
  padding-bottom: 1.5rem;
}

.estimates__g-map-container {
  position: absolute;
  z-index: 5;
  width: 100vw;
}
@media (min-width: 48em) {
  .estimates__g-map-container {
    bottom: 3.5rem;
  }
}
@media (max-width: 47.9375em) {
  .estimates__g-map-container {
    bottom: 3.125rem;
  }
}

.estimates__g-map {
  height: 100%;
  width: 100%;
}

.projects-item-introduced {
  color: #9494a0;
  line-height: 1.4;
}
@media (min-width: 48em) {
  .projects-item-introduced {
    display: inline-flex;
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .projects-item-introduced {
    display: flex;
    font-size: 0.8888888889rem;
  }
}
.projects-item-introduced::before {
  content: "(";
  margin-right: 0.125em;
}
.projects-item-introduced::after {
  content: ")";
  margin-left: 0.125em;
}
.projects-item-introduced__company {
  display: inline-block;
  margin-left: 0.5em;
}

.projects-item-introduced__fee-label::after {
  content: ":";
}

.projects-item-introduced__fee-value {
  margin-left: 0.25em;
  color: #1E2D3C;
  font-weight: 600;
}

.projects-item {
  border-bottom: solid 1px #dcdcde;
  padding: 20px 16px;
}
.projects-item:first-child {
  border-top: solid 1px #dcdcde;
}

.projects-item__inner {
  text-decoration: none;
  color: #1E2D3C;
  transition: all 0.2s ease-out;
}
@media (min-width: 48em) {
  .projects-item__inner {
    display: flex;
  }
}
@media (max-width: 47.9375em) {
  .projects-item__inner {
    display: flex;
    align-items: center;
    min-height: 6rem;
  }
}
.projects-item__inner.projects-item__inner-colored {
  background-color: rgba(254, 187, 2, 0.2);
}

a.projects-item__inner:hover .projects-item__title {
  text-decoration: underline;
  color: #F01E28;
}

.projects-item__kana {
  font-size: 0.75em;
}

.projects-item__left {
  width: 80px;
  height: 80px;
  margin-right: 8px;
}

.projects-item__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.projects-item__image {
  height: 100%;
  width: 100%;
  min-height: 3.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.projects-item__owner-name {
  line-height: 1;
  margin-bottom: 8px;
}

.projects-item__alert-badge {
  font-weight: 600;
  margin-bottom: 0.25em;
}

.projects-item__labels {
  margin-bottom: 0.25em;
}
.projects-item__labels .projects-item__label {
  background-color: #F01E28;
  color: #ffffff;
  border-radius: 0.25rem;
  padding: 0.25em 0.5em;
  font-weight: bold;
}

.projects-item__title {
  line-height: 1;
  font-weight: 600;
  font-size: 1rem;
}

.projects-item__address {
  margin-bottom: 2px;
  color: #9494a0;
  font-size: 0.8888888889rem;
  line-height: 16px;
}
@media (min-width: 48em) {
  .projects-item__address {
    font-weight: 600;
  }
}
@media (max-width: 47.9375em) {
  .projects-item__address {
    font-weight: 400;
  }
}

.projects-item__meta-items {
  font-size: 0.8888888889rem;
  margin-top: 0.25em;
  color: #9494a0;
}

.projects-item__meta-item {
  display: inline;
  line-height: inherit;
}
.projects-item__meta-item:not(:last-child)::after {
  content: "、";
}

.projects-item__dates {
  color: #9494a0;
  font-size: 0.8888888889rem;
  line-height: 1;
}

.projects-item__estimate-date {
  display: flex;
  line-height: 1.4;
}

.projects-item__estimate-date-label::after {
  content: ":";
  display: inline-block;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.375rem;
  margin-right: -0.375rem;
  margin-bottom: -0.75rem;
  padding-bottom: 1rem;
}

.city-list__item {
  margin-bottom: 0.75rem;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.nav-by-region__item + .nav-by-region__item {
  margin-top: 1.5rem;
}

.quotation {
  border: solid 1px #dcdcde;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 48em) {
  .quotation {
    padding: 1.5rem 1.5rem 0;
  }
}
@media (max-width: 47.9375em) {
  .quotation {
    padding: 1em 1em 0;
  }
}

.quotation__header {
  border-bottom: solid 1px #dcdcde;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.25rem;
}

.quotation__title {
  font-size: 1.3333333333rem;
  line-height: 1.4;
  font-weight: 600;
}

.quotation__labels {
  display: flex;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.quotation__label {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.quotation__show-button {
  width: 6rem;
}
.quotation__show-button i {
  transition: all 0.2s ease-out;
}
input:checked ~ p .quotation__show-button i {
  transform: rotate(180deg);
}

@media (min-width: 48em) {
  .quotation__show-button-container {
    display: none;
  }
}
@media (max-width: 47.9375em) {
  .quotation__show-button-container {
    text-align: right;
    margin-top: -1.5rem;
  }
}

@media (max-width: 47.9375em) {
  .quotation__hidden {
    display: none;
  }
  input:checked ~ .quotation__hidden {
    display: block;
  }
}
@media (min-width: 48em) {
  .quotation__hidden table {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 47.9375em) {
  .quotation__hidden table {
    margin-bottom: 1em;
  }
}
.quotation__hidden table tfoot {
  background-color: rgba(229, 0, 32, 0.2);
}

.static-page-body {
  font-size: 1rem;
}
.static-page-body img.is-f-left,
.static-page-body img.is-f-right {
  border: none;
}
@media (min-width: 48em) {
  .static-page-body img.is-f-left,
  .static-page-body img.is-f-right {
    width: 20em;
  }
  .static-page-body img.is-f-left.is-sm,
  .static-page-body img.is-f-right.is-sm {
    width: 16em;
  }
}
@media (max-width: 47.9375em) {
  .static-page-body img.is-f-left,
  .static-page-body img.is-f-right {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
}
@media (min-width: 48em) {
  .static-page-body img.is-f-left {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
  }
}
@media (min-width: 48em) {
  .static-page-body img.is-f-right {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
  }
}
.static-page-body img.is-middle {
  width: 80%;
  margin: 0 auto;
}
.static-page-body img.is-middle.is-sm {
  max-width: 100%;
}
@media (min-width: 48em) {
  .static-page-body img.is-middle.is-sm {
    width: 60%;
  }
}
@media (max-width: 47.9375em) {
  .static-page-body img.is-middle.is-sm {
    width: 80%;
  }
}
.static-page-body img.bordered {
  border: 1px solid #ccc;
}
.static-page-body img.is-bordered {
  border: 1px solid #d6dcde;
}
.static-page-body h2,
.static-page-body h3 {
  clear: both;
}
.static-page-body + .static-page-body {
  margin-top: 2em;
}
.static-page-body p.clear-both {
  clear: both;
}

.static-page-header {
  background-color: #1E2D3C;
}
.static-page-header.is-primary {
  background-color: #2d4b87;
}
.o-breadcrambs + .static-page-header {
  margin-top: -1px;
}

.static-page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
@media (min-width: 48em) {
  .static-page-header__inner {
    min-height: 5rem;
  }
}
@media (max-width: 47.9375em) {
  .static-page-header__inner {
    min-height: 3.5rem;
  }
}
@media (min-width: 48em) {
  .static-page-header-label + .static-page-header .static-page-header__inner {
    min-height: 4rem;
  }
}
@media (max-width: 47.9375em) {
  .static-page-header-label + .static-page-header .static-page-header__inner {
    min-height: 3rem;
  }
}

.static-page-header__title {
  line-height: 1.4;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 48em) {
  .static-page-header__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .static-page-header__title {
    font-size: 1.3333333333rem;
  }
}

.static-page__main-visual {
  border-bottom: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .static-page__main-visual {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .static-page__main-visual {
    padding-top: 1.25rem;
    padding-bottom: 0;
  }
}

.static-page__main-visual-action {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 48em) {
  .static-page__body-inner {
    display: flex;
  }
}

@media (min-width: 48em) {
  .static-page__body-main {
    flex: 100;
  }
}

@media (min-width: 48em) {
  .static-page__body-sub {
    flex-basis: 20rem;
    padding-left: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .static-page__body-sub {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-top: 1.5rem;
  }
}

@media (min-width: 48em) {
  .static-page__body-sub-inner {
    position: sticky;
    top: 0;
  }
}

@media (min-width: 48em) {
  .static-page__body-container {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .static-page__body-container {
    padding-top: 1.25rem;
    padding-bottom: 0;
  }
}

.company-main-visual {
  background-image: url(/company-main-visual.jpg);
  background-size: cover;
  background-position: center top;
  position: relative;
}
.company-main-visual::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.company-main-visual .container {
  height: 100%;
}
@media (min-width: 48em) {
  .company-main-visual {
    height: 22rem;
  }
}
@media (max-width: 47.9375em) {
  .company-main-visual {
    height: 16em;
  }
}
.company-main-visual .home-last-action-score-images {
  max-width: 30rem;
}

.company-main-visual__inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-main-visual__title-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48em) {
  .company-main-visual__title-logo {
    height: auto;
    width: 12rem;
    margin-bottom: 2.25rem;
  }
}
@media (max-width: 47.9375em) {
  .company-main-visual__title-logo {
    height: auto;
    width: 8rem;
    margin-bottom: 1.75rem;
  }
}

.nav-by-structure__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -1rem;
}

.nav-by-structure__item {
  flex: 0 0 25%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}

.nav-by-structure__item-link {
  display: flex;
  height: 3.25rem;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.service-area {
  position: relative;
  background-image: url(/japan-map.png);
  background-size: contain;
  background-position: center;
}
@media (min-width: 48em) {
  .service-area {
    height: 20rem;
  }
}
@media (max-width: 47.9375em) {
  .service-area {
    height: 15rem;
  }
}

.service-area__image {
  height: auto;
  width: 100%;
}

.service-area__description {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}
.service-area__description p {
  font-size: 1.3333333333rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.static-page-header-label {
  background-color: #2d4b87;
}

.static-page-header-label__inner {
  font-size: 0.8888888889rem;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  margin-top: -1px;
}

.static-page-nav {
  border: solid 1px #dcdcde;
  overflow: hidden;
}
@media (min-width: 48em) {
  .static-page-nav {
    border-radius: 0.25rem;
  }
}
@media (max-width: 47.9375em) {
  .static-page-nav {
    border-left-width: none;
    border-right-width: none;
  }
}
.static-page-nav + .static-page-nav {
  margin-top: 1.5rem;
}

.static-page-nav__header {
  border-bottom: solid 1px #dcdcde;
  padding: 0.75rem 1rem;
}

.static-page-nav__title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}

.static-page-nav__item-link {
  display: block;
  text-decoration: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #9494a0;
  background-color: #fcfcfc;
  transition: all 0.2s ease-out;
}
.static-page-nav__item-link:hover {
  color: #1E2D3C;
}
.static-page-nav__item:not(:first-child) .static-page-nav__item-link {
  border-top: solid 1px #dcdcde;
}

.static-page-nav__items.u-d-none {
  display: none;
}
input:checked + * + .static-page-nav__items.u-d-none {
  display: block;
}
.static-page-nav__items.u-d-none .static-page-nav__item:first-child .static-page-nav__item-link {
  border-top: solid 1px #dcdcde;
}
.static-page-nav__items.u-d-none .static-page-nav__item-link {
  color: #1E2D3C;
  background-color: #ffffff;
}

label.static-page-nav__item-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
label.static-page-nav__item-link i {
  transition: all 0.2s ease-out;
}
input:checked + label.static-page-nav__item-link {
  background-color: rgba(240, 30, 40, 0.1);
  color: #F01E28;
}
input:checked + label.static-page-nav__item-link i {
  transform: rotate(180deg);
}

.static-tsubo-unit-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.static-tsubo-unit-price .m-price {
  display: inline-flex;
}
.static-tsubo-unit-price .m-price__number {
  font-weight: 700;
  font-size: 1.5em;
  color: #F01E28;
}
.static-tsubo-unit-price .m-price__unit {
  font-size: 0.875em;
  align-self: flex-end;
  color: #606069;
}

.static-tsubo-unit-price__start {
  padding-right: 1rem;
}

.appointment_entry-item {
  margin-bottom: 0.5rem;
}
.appointment_entry-item:last-child {
  margin-bottom: 0;
}

.o-sticky-back {
  font-size: 1.3333333333rem;
  border-bottom: solid 1px #dcdcde;
  position: sticky;
  z-index: 2;
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .o-sticky-back {
    top: calc(3rem + 1px);
  }
}
@media (max-width: 47.9375em) {
  .o-sticky-back {
    top: calc(2.75rem + 1px);
  }
}
@media (min-width: 48em) {
  body.is-biz .o-sticky-back {
    top: 0;
  }
}
@media (max-width: 47.9375em) {
  body.is-biz .o-sticky-back {
    top: 0;
  }
}

.o-sticky-back__inner {
  display: flex;
  align-items: center;
}
@media (min-width: 48em) {
  .o-sticky-back__inner {
    height: 2.75rem;
  }
}
@media (max-width: 47.9375em) {
  .o-sticky-back__inner {
    height: 2.25rem;
  }
}

.o-sticky-back__link-container {
  font-size: 1rem;
  line-height: 1.4;
  height: inherit;
}

.o-sticky-back__link {
  text-decoration: none;
  color: #1E2D3C;
  height: inherit;
  display: flex;
  align-items: center;
}
.o-sticky-back__link i {
  margin-right: 0.5em;
}
.o-sticky-back__link:hover span {
  text-decoration: underline;
}

.o-message-items {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-width: 36rem;
}
.o-message-items__message {
  display: flex;
}
.o-message-items__message.is-sent-by-me {
  margin-left: 2.5rem;
  justify-content: flex-end;
}
.o-message-items__message.is-sent-by-others {
  margin-right: 2.5rem;
  justify-content: flex-start;
}
.o-message-items__message.is-sent-by-system {
  justify-content: center;
}
@media (max-width: 47.9375em) {
  .o-message-items__day + .o-message-items__message.is-sent-by-me {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__day + .o-message-items__message.is-sent-by-me {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__day + .o-message-items__message.is-sent-by-others {
    margin-top: 1rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__day + .o-message-items__message.is-sent-by-others {
    margin-top: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__day + .o-message-items__message.is-sent-by-system {
    margin-top: 0.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__day + .o-message-items__message.is-sent-by-system {
    margin-top: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__day {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__day {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__message.is-sent-by-me {
    margin-top: 0.25rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__message.is-sent-by-me {
    margin-top: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__message.is-sent-by-others {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__message.is-sent-by-others {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__message.is-sent-by-system {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-me + .o-message-items__message.is-sent-by-system {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__day {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__day {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__message.is-sent-by-me {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__message.is-sent-by-me {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__message.is-sent-by-others {
    margin-top: 0.25rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__message.is-sent-by-others {
    margin-top: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__message.is-sent-by-system {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-others + .o-message-items__message.is-sent-by-system {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__day {
    margin-top: 0.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__day {
    margin-top: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__message.is-sent-by-me {
    margin-top: 1rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__message.is-sent-by-me {
    margin-top: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__message.is-sent-by-others {
    margin-top: 1rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__message.is-sent-by-others {
    margin-top: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__message.is-sent-by-system {
    margin-top: 0.5rem;
  }
}
@media (min-width: 48em) {
  .o-message-items__message.is-sent-by-system + .o-message-items__message.is-sent-by-system {
    margin-top: 1rem;
  }
}

.o-messages-body__header {
  padding: 1.5rem 0 1.75rem;
}
.o-messages-body__messages {
  padding: 0.75rem 0;
}

.o-messages {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.o-messages__body {
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.o-messages__form {
  border-top: solid 1px #dcdcde;
}
@media (max-width: 47.9375em) {
  .o-messages__form {
    margin-bottom: 6vh;
  }
}
@media (min-width: 48em) {
  .o-sticky-back + .o-messages {
    height: calc(100% - 2.75rem);
  }
}
@media (max-width: 47.9375em) {
  .o-sticky-back + .o-messages {
    height: calc(100% - 2.25rem);
  }
}

.modal .modal-dialog {
  max-width: none;
  margin: 20px;
}
.modal .modal-content {
  height: auto;
  width: 680px;
  max-width: 100%;
  max-height: calc(100vh - 2.5rem);
}
.modal .map-area {
  height: 100%;
}

.modal__header {
  padding: 0.75rem 1rem;
  border-bottom: solid 1px #dcdcde;
}

.modal__title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.modal__body {
  padding: 1rem;
}

.modal-url {
  display: flex;
}

.modal-url__start {
  flex: 1;
  max-width: calc(100% - 4rem);
  margin-right: 0.5rem;
}

.modal-url__end {
  flex: 0 0 3.5rem;
}

.modal__url {
  max-width: 100%;
  border-radius: 0.25rem;
  background-color: #EDEEEF;
  padding: 0.5rem 0.75rem;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  word-break: break-all;
  border: solid 1px #dcdcde;
}

#loginUrlModal .modal-content, #reEntryUrlModal .modal-content {
  height: auto;
  width: auto;
  margin: auto;
  max-width: 90%;
}
#loginUrlModal .modal-dialog, #reEntryUrlModal .modal-dialog {
  display: flex;
  min-height: 100%;
}

#createCustomMessage .modal-content {
  height: auto;
  width: auto;
  margin: auto;
  max-width: 60%;
}
#createCustomMessage .custom_message_form {
  padding: 20px;
}

.custom_field_form {
  display: flex;
  align-items: flex-end;
}
.custom_field_form:not(:first-child) {
  margin-top: 10px;
}

.o-liv-column-pagination {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.o-liv-column-pagination .pagination {
  margin-top: 0;
}

.o-liv-detail-search {
  background-color: #f5f5f7;
  border-left: solid 1px #dcdcde;
  width: 16rem;
  height: 100%;
}

.o-liv-detail-search__form {
  height: 100%;
}

.o-liv-detail-search__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.o-liv-detail-search__header {
  border-bottom: solid 1px #dcdcde;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.o-liv-detail-search__title {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}

.o-liv-detail-search__items {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  overflow-y: auto;
  max-height: 100%;
}
.o-liv-detail-search__items .container {
  height: 100%;
}

.o-liv-detail-search__item:not(:first-child) {
  margin-top: 0.75rem;
}
.o-liv-detail-search__item .select2 {
  width: 100% !important;
}
.o-liv-detail-search__item .a-form-label {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25em;
}
.o-liv-detail-search__item .select2-container,
.o-liv-detail-search__item .a-select {
  display: block;
  width: 100%;
  min-width: 11rem;
}
.o-liv-detail-search__item .a-select select option:not(:default) {
  background-color: #ffffff;
}

.o-liv-detail-search__actions {
  width: 100%;
  border-top: solid 1px #dcdcde;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: #f5f5f7;
}

body .select2-container .select2-selection--single {
  height: 2.25rem;
  border-color: #dcdcde;
}
body .select2-container .select2-selection--single:hover {
  background-color: #ffffff;
  border-color: #2d4b87;
  box-shadow: 0 0 0 3px rgba(45, 75, 135, 0.2);
}
body .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.25rem;
  padding-left: 0.75em;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.125rem;
}
body .select2-results {
  font-size: 0.8888888889rem;
}
body .select2-container--default .select2-selection--single .select2-selection__clear {
  display: flex;
  height: 1.125em;
  width: 1.125em;
  border-radius: 50%;
  background-color: #EDEEEF;
  font-size: 0.75rem;
  line-height: 1;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.1875em;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translate(0, -50%);
}

.o-liv-project-values {
  margin-bottom: 1.5rem;
}

.o-liv-table-tools {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.o-liv-table-tools .o-liv-page-count {
  margin-bottom: 0;
}

.o-liv-table-tools__start {
  flex: 1;
}

.o-liv-table-tools__end {
  flex: 0 0 2.75rem;
}

.o-liv-about-phone {
  background-color: #EDEEEF;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
  border-radius: 4px;
  position: relative;
}

.o-liv-about-phone__number {
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}
.o-liv-about-phone__number .a-badge {
  margin-right: 0.25rem;
  position: relative;
  top: 0.125em;
}
.o-liv-about-phone__number .is-blank {
  color: #606069;
  font-size: 0.8888888889rem;
}

.o-liv-about-phone__time {
  margin-top: 0.25rem;
}

.o-liv-about-phone__time-label {
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 600;
}

.o-liv-about-phone__time-value {
  font-size: 0.8rem;
  line-height: 1.4;
  display: flex;
  margin-top: 0.125rem;
}

.o-liv-about-phone__time-summary {
  text-decoration: underline;
  cursor: pointer;
}
.o-liv-about-phone__time-summary:hover, .o-liv-about-phone__time-summary:active {
  text-decoration: none;
}

.o-liv-about-phone__time-tooltip {
  display: none;
  position: absolute;
  margin-top: 1.25rem;
  width: 100%;
  background-color: white;
  padding: 0.5rem;
  border: solid 1px #dcdcde;
  border-radius: 4px;
  z-index: 2;
}
.o-liv-about-phone__time-tooltip p {
  line-height: 1.6;
}
.o-liv-about-phone__time-tooltip p:not(:first-child) {
  margin-top: 1em;
}
.o-liv-about-phone__time-summary:hover + .o-liv-about-phone__time-tooltip {
  display: block;
}
.a-table .o-liv-about-phone__time-tooltip {
  width: 20rem;
  margin-top: 0.25rem;
}

.o-liv-company-list {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.o-liv-company-list__items {
  flex: 1;
  overflow-y: auto;
}

.l-liv-column-contents__content__actions {
  background-color: #ffffff;
}

.o-liv-page-count {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: right;
}

.o-liv-table-setting {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  height: 100vh;
  background: #ffffff;
  width: 20rem;
  border-left: solid 1px #dcdcde;
}
input:checked + .o-liv-table-setting {
  display: block;
}

.o-liv-table-setting__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.o-liv-table-setting__header {
  border-bottom: solid 1px #dcdcde;
  padding: 0.5rem 1rem;
}

.o-liv-table-setting__footer {
  border-top: solid 1px #dcdcde;
  padding: 0.75rem 1rem;
}

.o-liv-table-setting__title {
  font-size: 0.8888888889rem;
  line-height: 1.4;
  font-weight: 600;
}

.o-liv-table-setting__body {
  padding: 0.75rem 1rem;
  height: 100%;
  flex: 1;
  overflow-y: auto;
}

.o-liv-table-setting__item:not(:first-child) {
  margin-top: 0.75rem;
}

.o-liv-table-setting__buttons .a-button {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  display: block;
  line-height: calc(2rem - 2px);
  height: 2rem;
}
.o-liv-table-setting__buttons .a-button.is-secondary {
  color: #9494a0;
}
.o-liv-table-setting__buttons .is-inactive {
  display: block;
}
.o-liv-table-setting__buttons .is-active {
  display: none;
}
input:checked + .o-liv-table-setting__buttons .is-inactive {
  display: none;
}
input:checked + .o-liv-table-setting__buttons .is-active {
  display: block;
}

.o-liv-table-setting__close {
  position: absolute;
  left: -2.5rem;
  top: 0;
  background-color: #f5f5f7;
  border-radius: 0 0 0 0.25rem;
  border: solid 1px #dcdcde;
  height: 2.25rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.o-liv-user-timeline-container {
  width: 100%;
  height: calc(100vh - 100px);
  padding-left: 32px;
  overflow-y: scroll;
}

.o-liv-user-timeline {
  width: 100%;
  height: 100%;
  padding: 8px;
}

.o-liv-user-timeline__outer {
  border-left: 2px solid #ccc;
  margin: 8px;
  padding-bottom: 32px;
}

.o-liv-user-timeline__item {
  position: relative;
  padding: 0 16px;
  margin-bottom: 2.5rem;
  overflow-wrap: break-word;
}
.o-liv-user-timeline__item:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  left: -9px;
  background: #ccc;
}

.o-liv-user-timeline__item-header {
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.o-liv-user-timeline__item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.o-liv-user-timeline__item-content > p {
  color: gray;
}

.o-liv-user-timeline__item-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.o-liv-user-timeline__item-title > span {
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  color: inherit;
}

.o-liv-user-timeline__item-title-icon {
  width: 24px;
  color: #333;
}

.biz-cases__cases-items {
  margin-bottom: -2rem;
}

@media (min-width: 48em) {
  .o-biz-city-selector {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-city-selector {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8888888889rem;
  }
}
.o-biz-city-selector .m-form-item {
  border: solid 1px #dcdcde;
}

.o-biz-city-selector__header {
  font-size: 1em;
  line-height: 1.4;
  font-weight: 600;
  background-color: #f5f5f7;
  padding: 0.5em 1em;
  border-bottom: solid 1px #dcdcde;
}

@media (min-width: 48em) {
  .o-biz-city-selector__index-title {
    margin-top: -3.25rem;
    padding-top: 3.25rem;
  }
}

.o-biz-city-selector__cities {
  padding: 1em;
}

.o-biz-city-selector__inner {
  display: flex;
  align-items: flex-start;
}
@media (min-width: 48em) {
  .o-biz-city-selector__inner {
    flex-direction: column-reverse;
  }
}

.o-biz-city-selector__main {
  width: 100%;
}

.o-biz-city-selector__nav {
  font-size: 1rem;
  position: sticky;
  top: 0;
}
@media (min-width: 48em) {
  .o-biz-city-selector__nav {
    width: 100%;
    margin-bottom: 1rem;
  }
  .o-biz-city-selector__nav .m-one-character-blocks__items {
    display: flex;
  }
  .o-biz-city-selector__nav .m-one-character-blocks__item {
    flex: 1;
  }
  .o-biz-city-selector__nav .m-one-character-blocks__item:last-child .a-minimum-block {
    border-right: solid 1px #dcdcde;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-city-selector__nav {
    margin-right: -0.5em;
    margin-left: 0.75em;
  }
  .o-biz-city-selector__nav .m-one-character-blocks__item:first-child .a-minimum-block {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .o-biz-city-selector__nav .m-one-character-blocks__item:last-child .a-minimum-block {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
}
.o-biz-city-selector__nav .a-minimum-block {
  border: solid 1px #dcdcde;
  color: #1E2D3C;
  display: flex;
  text-decoration: none;
  background-color: #ffffff;
  transition: all 0.2s ease-out;
}
.o-biz-city-selector__nav .a-minimum-block:hover {
  position: relative;
  z-index: 1;
  color: #F01E28;
  background-color: #ffe0e4;
}
@media (min-width: 48em) {
  .o-biz-city-selector__nav .a-minimum-block {
    width: 100%;
    border-right: none;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-city-selector__nav .a-minimum-block {
    margin-bottom: -1px;
  }
}

.o-biz-footer {
  border-top: solid 1px #dcdcde;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 48em) {
  .o-biz-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.o-biz-footer__inner {
  display: flex;
  justify-content: space-between;
}

.o-biz-footer__nav-items {
  display: flex;
  justify-content: space-around;
}

.o-biz-footer__nav-item {
  font-size: 0.8888888889rem;
  line-height: 1.4;
  margin-right: 1em;
}
.o-biz-footer__nav-item:last-child {
  margin-right: 0;
}

.o-biz-footer__nav-item-link {
  color: #1E2D3C;
  transition: all 0.2s ease-out;
  text-decoration: none;
}
.o-biz-footer__nav-item-link:hover, .o-biz-footer__nav-item-link:active {
  text-decoration: underline;
}
.o-biz-footer__nav-item-link:hover {
  color: #F01E28;
}

@media (max-width: 47.9375em) {
  .o-biz-footer__start {
    flex: 1;
  }
}

@media (max-width: 47.9375em) {
  .o-biz-footer__end {
    display: none;
  }
}

.o-biz-footer__copylight {
  font-size: 0.8888888889rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
}

.o-biz-footer__copylight-link {
  color: #1E2D3C;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease-out;
  text-decoration: none;
  margin-right: 0.25em;
}
.o-biz-footer__copylight-link:hover, .o-biz-footer__copylight-link:active {
  text-decoration: underline;
}
.o-biz-footer__copylight-link i {
  font-size: 0.8888888889rem;
}
.o-biz-footer__copylight-link:hover {
  text-decoration: none;
  color: #F01E28;
}

.o-biz-header {
  background-color: #ffffff;
  border-bottom: solid 1px #dcdcde;
}
@media (max-width: 47.9375em) {
  .o-biz-header .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 48em) {
  .o-biz-header {
    height: 48px;
  }
}

.o-biz-header__inner {
  position: relative;
  z-index: 102;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 47.9375em) {
  .o-biz-header__inner {
    height: 2.75rem;
  }
}

.o-biz-header__title {
  display: flex;
  font-weight: 600;
  height: inherit;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48em) {
  .o-biz-header__title {
    display: none;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-header__title {
    font-size: 0.9375rem;
  }
}

.o-biz-header__note {
  border-bottom: solid 1px #dcdcde;
  line-height: 1.4;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48em) {
  .o-biz-header__note {
    display: none;
  }
}

.o-biz-header__note-inner {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.o-biz-header__title-inner {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.o-biz-header__end {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 47.9375em) {
  .o-biz-header__end {
    width: 5rem;
    padding: 0.5rem;
  }
}
@media (min-width: 48em) {
  .o-biz-header__end {
    height: 48px;
  }
}

.o-biz-header__hamburger {
  height: 100%;
  width: 2.5rem;
  position: relative;
}

.o-biz-header__notice {
  height: 100%;
  width: 2.5rem;
}

.o-biz-header__notice-label {
  font-size: 1.3333333333rem;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.o-biz-header__home {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media (min-width: 48em) {
  .o-biz-header__home {
    height: 48px;
  }
}

.o-biz-header__slide-nav {
  height: 100%;
}

.o-biz-header__home-link {
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  display: flex;
  text-decoration: none;
}
body.is-ie11 .o-biz-header__home-link img {
  width: 100%;
}

@media (min-width: 48em) {
  .o-biz-header__home-link-image {
    height: 1.6rem;
  }
}
@media (min-width: 48em) {
  .o-biz-header__home-link-image.is-type_logo {
    display: none;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-header__home-link-image.is-logo {
    display: none;
  }
}
.o-biz-header__home-link-image.is-type_logo {
  width: 1.5rem;
}
.o-biz-header__home-link-image.is-gold_partner_certification {
  height: 100%;
  margin-left: 0.5rem;
}
@media (min-width: 48em) {
  .o-biz-header__home-link-image.is-gold_partner_certification {
    height: 80%;
    margin-left: 1rem;
  }
}

@media (min-width: 48em) {
  .o-biz-introduction-nav {
    margin-bottom: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-introduction-nav {
    margin-bottom: 1rem;
  }
}

.o-biz-introduction-nav__items {
  margin-bottom: -1rem;
}

.o-biz-introduction-nav__item {
  height: 100%;
  padding-bottom: 1rem;
}
[class*=col-]:not(:last-child) .o-biz-introduction-nav__item::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: calc(50% - 0.5rem);
  height: 4rem;
  width: 1rem;
  transform: translate(0, -50%);
  margin-bottom: 1rem;
  background-image: url(/introduction-nav/introduction-nav-next.svg);
  background-position: center center;
}

@media (min-width: 48em) {
  .o-biz-page-body {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-page-body {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 48em) {
  .o-biz-prefecture-selector {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-prefecture-selector {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8888888889rem;
  }
}

@media (min-width: 48em) {
  .o-biz-partial-infos__inner {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-partial-infos__inner {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 48em) {
  .o-biz-partial-infos__items {
    border: solid 1px #dcdcde;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-partial-infos__items {
    border-bottom: solid 1px #dcdcde;
  }
}

.o-biz-partial-infos__item .m-article-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.o-biz-partial-infos__item + .o-biz-partial-infos__item {
  border-top: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .o-biz-partial-infos__item + .o-biz-partial-infos__item {
    border-top-style: dashed;
  }
}
.o-biz-partial-infos__item .m-article-link__title {
  font-size: 0.8888888889rem;
}

.o-biz-partial-infos__end {
  margin-top: 0.25rem;
}

.o-biz-partial-infos__to-index {
  text-align: right;
}
@media (max-width: 47.9375em) {
  .o-biz-partial-infos__to-index {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.o-biz-partial-infos__to-index-link {
  text-decoration: underline;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #F01E28;
}
.o-biz-partial-infos__to-index-link:hover, .o-biz-partial-infos__to-index-link:active {
  text-decoration: none;
}

.o-biz-first-actions {
  border-bottom: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .o-biz-first-actions {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-first-actions {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.o-biz-global-nav {
  border-width: 0;
  border-right-width: 1px;
  border-color: #DDE0E3;
  border-style: solid;
  background-color: white;
  position: fixed;
}
@media (min-width: 48em) {
  .o-biz-global-nav {
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: 15rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-global-nav {
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
  }
  body.has-fixed-bottom-nav .o-biz-global-nav {
    display: block;
  }
}
.o-biz-global-nav .container {
  padding-left: 0;
  padding-right: 0;
}

.o-biz-global-nav__items {
  display: flex;
}
@media (min-width: 48em) {
  .o-biz-global-nav__items {
    flex-direction: column;
  }
}

@media (min-width: 48em) {
  .o-biz-global-nav__item {
    height: 4.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-global-nav__item {
    flex: 1;
  }
}

.o-biz-global-nav__item-link {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-out;
}
.o-biz-global-nav__item-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #F01E28;
}
@media (min-width: 48em) {
  .o-biz-global-nav__item-link {
    height: 100%;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 47.9375em) {
  .o-biz-global-nav__item-link {
    height: 100%;
  }
}
.o-biz-global-nav__item-link.is-active {
  color: red;
}
@media (min-width: 48em) {
  .o-biz-global-nav__item-link.is-active::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-right-color: #ffffff;
    border-width: 0.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
}

.o-biz-global-nav__item-icon {
  padding: 2rem 2.5rem;
}
@media (max-width: 47.9375em) {
  .o-biz-global-nav__item-icon {
    display: none;
  }
}

.o-biz-global-nav__item-link-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2rem;
  position: relative;
}
@media (min-width: 48em) {
  .o-biz-global-nav__item-link-inner {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-global-nav__item-link-inner {
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    flex-direction: column;
    height: 56px;
    width: 100%;
    padding-top: 8px;
    padding-left: 0;
  }
}

.o-biz-global-nav__item-link-unread-mark {
  position: absolute;
  right: 0;
  top: 0.5rem;
  font-size: 0.625rem;
  line-height: 1;
  transform: scale(0.85, 0.85);
  border: solid 1px;
  padding: 0.125rem 0.1875rem;
  border-radius: 0.25rem;
  background-color: #F01E28;
  border-color: #F01E28;
  color: #ffffff;
  position: initial;
}

.o-biz-global-nav__item-link-icon {
  color: rgb(30, 45, 60);
}
@media (min-width: 48em) {
  .o-biz-global-nav__item-link-icon {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-global-nav__item-link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }
}

.o-biz-global-nav__item-link-label {
  color: rgb(30, 45, 60);
}
@media (min-width: 48em) {
  .o-biz-global-nav__item-link-label {
    font-size: 0.875rem;
    font-weight: 600;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-global-nav__item-link-label {
    font-size: 11px;
    font-weight: bold;
    height: 12px;
    display: flex;
    align-items: center;
  }
}

.o-biz-infos__item {
  border-bottom: solid 1px #dcdcde;
}
.o-biz-infos__item .m-article-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 48em) {
  .o-biz-infos__item .m-article-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.o-biz-nav {
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 3;
  transition: width 0.2s ease-out;
  width: 0;
}
input:checked ~ .o-biz-nav {
  z-index: 5;
}
@media (min-width: 48em) {
  .o-biz-nav {
    left: 0;
    top: 0;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-nav {
    left: 0;
    top: 0;
  }
}
@media (min-width: 48em) {
  input:checked ~ .o-biz-nav {
    width: 20rem;
  }
}
@media (max-width: 47.9375em) {
  input:checked ~ .o-biz-nav {
    width: 16rem;
  }
}
body.is-ie11 .o-biz-nav {
  overflow: visible;
  display: none;
}
body.is-ie11 input:checked ~ .o-biz-nav {
  display: block;
}

.o-biz-nav__inner {
  position: relative;
  transition: all 0.2s ease-out;
  min-height: 100%;
  background-color: #ffffff;
}
@media (max-width: 47.9375em) {
  .o-biz-nav__inner {
    width: 16rem;
  }
}
@media (min-width: 48em) {
  .o-biz-nav__inner {
    width: 20rem;
  }
}
@media (max-width: 47.9375em) {
  input:checked ~ .o-biz-nav .o-biz-nav__inner {
    width: 16rem;
  }
}
@media (min-width: 48em) {
  input:checked ~ .o-biz-nav .o-biz-nav__inner {
    width: 20rem;
  }
}

.o-biz-nav__header {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.o-biz-nav__head-logo {
  width: 60%;
  margin-left: 16px;
}
.o-biz-nav__head-logo img {
  height: 32px;
}

.o-biz-nav__head-cross {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.o-biz-nav__item-subheader {
  display: flex;
  text-decoration: none;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  color: #1E2D3C;
  align-items: center;
  background: #e3e3e6;
  padding: 8px 0 8px 16px;
  font-weight: 700;
  position: relative;
  height: 32px;
  transition: all 0.2s ease-out;
  border-bottom: solid 1px rgba(30, 45, 60, 0.1);
}
.o-biz-nav.is-notice .o-biz-nav__item-subheader {
  font-size: 0.8rem;
  padding: 0.75em 1em 0.75em 0.5em;
}
.o-biz-nav.is-notice .o-biz-nav__item-subheader .o-biz-nav__item-icon {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.5rem;
}
body.is-ie11 .o-biz-nav__item-subheader {
  height: 2.75rem;
}

.o-biz-nav__item-link {
  display: flex;
  text-decoration: none;
  font-size: 0.8888888889rem;
  line-height: 1.4;
  color: #1E2D3C;
  align-items: center;
  padding-left: 32px;
  position: relative;
  min-height: 56px;
  transition: all 0.2s ease-out;
  border-bottom: solid 1px rgba(30, 45, 60, 0.1);
}
.o-biz-nav.is-notice .o-biz-nav__item-link {
  font-size: 0.8rem;
  padding: 0.75em 1em 0.75em 0.5em;
}
.o-biz-nav.is-notice .o-biz-nav__item-link .o-biz-nav__item-icon {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.5rem;
}
.o-biz-nav__item-link:hover {
  background: #fee0e4;
}
body.is-ie11 .o-biz-nav__item-link {
  height: 2.75rem;
}

.o-biz-page-header {
  font-size: 1.3333333333rem;
  border-bottom: solid 1px #dcdcde;
  background-color: #f5f5f7;
}
@media (max-width: 47.9375em) {
  .o-biz-page-header {
    display: none;
  }
}

.o-biz-page-header__inner {
  display: flex;
  align-items: center;
  height: 2.75em;
}

.o-biz-page-header__title {
  line-height: 1.4;
  font-weight: 600;
}

.o-biz-page-header__note {
  margin-left: 1.5rem;
}

.o-biz-visual-page-header {
  position: relative;
}
.o-biz-visual-page-header::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}

.o-biz-visual-page-header__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.o-biz-visual-page-header__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48em) {
  .o-biz-visual-page-header__inner {
    height: 25rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-visual-page-header__inner {
    height: 14rem;
  }
}

.o-biz-visual-page-header__title {
  line-height: 1.4;
  color: #ffffff;
  font-weight: 600;
}
@media (min-width: 48em) {
  .o-biz-visual-page-header__title {
    font-size: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .o-biz-visual-page-header__title {
    font-size: 2rem;
  }
}

.o-biz-project-navigation__item:not(:first-child) {
  margin-top: 2rem;
}

.o-owner-contact-item {
  background-color: #ffffff;
  transition: all 0.2s ease-out;
}
.o-owner-contact-item:hover {
  background-color: #DEE0E2;
}

.o-owner-contact-item__link {
  display: block;
  padding: 0 1rem 1rem;
  text-decoration: none;
}

.o-owner-contact-item__inner {
  display: flex;
  padding-top: 1rem;
  border-top: solid 1px #edeeef;
}
.o-owner-contact-item:first-child .o-owner-contact-item__inner {
  border-top: none;
}

.o-owner-contact-item__image-container {
  flex-shrink: 0;
  margin-right: 0.5rem;
  align-self: center;
}
@media (min-width: 48em) {
  .o-owner-contact-item__image-container {
    height: 4rem;
    width: 4rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-item__image-container {
    height: 3rem;
    width: 3rem;
  }
}

.o-owner-contact-item__owner-announcement-image {
  display: flex;
  background: #eeeef0;
  color: #9494a0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
@media (min-width: 48em) {
  .o-owner-contact-item__owner-announcement-image i {
    font-size: 2.6666666667rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-item__owner-announcement-image i {
    font-size: 2rem;
  }
}

.o-owner-contact-item__image {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.o-owner-contact-item__main-header {
  display: flex;
  justify-content: space-between;
}

.o-owner-contact-item__main {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 2.5rem;
}

.o-owner-contact-item__name {
  color: #1E2D3C;
  font-weight: 700;
  line-height: 1rem;
  align-self: end;
}
@media (min-width: 48em) {
  .o-owner-contact-item__name {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-item__name {
    font-size: 0.8888888889rem;
  }
}

.o-owner-contact-item__message-date {
  justify-self: end;
  align-self: end;
  color: #9494a0;
}
@media (min-width: 48em) {
  .o-owner-contact-item__message-date {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-item__message-date {
    font-size: 0.8rem;
  }
}

.o-owner-contact-item__address {
  grid-column-start: 1;
  grid-column-end: 3;
  color: #1E2D3C;
  line-height: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (min-width: 48em) {
  .o-owner-contact-item__address {
    height: 1.5rem;
    padding-top: 0.5rem;
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-item__address {
    height: 1.25rem;
    padding-top: 0.25rem;
    font-size: 0.8rem;
  }
}
.is-estates-contacts-index .o-owner-contact-item__address {
  display: none;
}

.o-owner-contact-item__last-message {
  color: #9494a0;
  line-height: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 48em) {
  .o-owner-contact-item__last-message {
    height: 1.5rem;
    padding-top: 0.5rem;
    -webkit-line-clamp: 1;
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-item__last-message {
    height: 2.25rem;
    padding-top: 0.25rem;
    -webkit-line-clamp: 2;
    font-size: 0.8rem;
  }
}

.o-owner-contact-item__unread-mark {
  display: inline-block;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 50%;
  background-color: #F01E28;
  justify-self: end;
}
@media (min-width: 48em) {
  .o-owner-contact-item__unread-mark {
    margin-top: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-item__unread-mark {
    margin-top: 1rem;
  }
}

@media (min-width: 48em) {
  .o-owner-contact-items {
    max-width: 688px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-contact-items {
    padding-top: 1rem;
  }
}

.o-owner-contact-pagination__container {
  background-color: #ffffff;
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: center;
}
.o-owner-contact-pagination__container .pagination {
  padding-top: 1rem;
  width: 100%;
  justify-content: center;
  margin-top: 0;
  border-top: solid 1px #edeeef;
}

body.is-estates-contacts-index, body.is-contacts-index {
  background-color: #edeeef;
}

.o-owner-contacts .o-owner-page-header {
  background-color: #ffffff;
  border-bottom: solid 1px #dcdcde;
}

.o-owner-enrty-form-header {
  text-align: center;
  background-color: #ffe0e4;
  line-height: 1.5;
  padding: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .o-owner-enrty-form-header__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-enrty-form-header__title {
    font-size: 1.1428571429rem;
  }
}

.o-owner-message-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.o-owner-message-header__image {
  border-radius: 50%;
}
@media (max-width: 47.9375em) {
  .o-owner-message-header__image {
    height: 3.5rem;
    width: 3.5rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 48em) {
  .o-owner-message-header__image {
    height: 4rem;
    width: 4rem;
    margin-bottom: 1rem;
  }
}
.o-owner-message-header__image.is-owner-image {
  color: #a1a9ae;
}
@media (max-width: 47.9375em) {
  .o-owner-message-header__image.is-owner-image i {
    font-size: 3.5rem;
  }
}
@media (min-width: 48em) {
  .o-owner-message-header__image.is-owner-image i {
    font-size: 4rem;
  }
}
.o-owner-message-header__title {
  margin-bottom: 1rem;
  line-height: 1.25rem;
  font-size: 1.1428571429rem;
  font-weight: bold;
}
.o-owner-message-header__tel {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  line-height: 1rem;
  font-size: 1rem;
}
.o-owner-message-header__tel i {
  font-size: 1rem;
}
.o-owner-message-header__tel-icon {
  opacity: 0.6;
}
.o-owner-message-header__tel-link {
  margin-left: 0.35rem;
  font-weight: 300;
}
.o-owner-message-header__tel-link a {
  text-decoration-thickness: from-font;
}
.o-owner-message-header__estimate-amount {
  display: flex;
  height: 1.25rem;
  margin-bottom: 0.25rem;
  align-items: flex-end;
}
.o-owner-message-header__estimate-amount-label {
  font-size: 0.8888888889rem;
}
.o-owner-message-header__estimate-amount-value {
  margin-left: 0.5rem;
  line-height: 1.25rem;
  font-size: 1.1428571429rem;
  font-weight: bold;
}
.o-owner-message-header__detail-link {
  width: 12.5rem;
}
.o-owner-message-header__company-name {
  flex-grow: 1;
}
.o-owner-message-header__allow-forward-ios-icon {
  width: 12px;
  height: 12px;
  color: rgba(30, 45, 60, 0.4);
  font-size: 12px;
}

@media (min-width: 48em) {
  .o-owner-page-body {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-page-body {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.o-owner-page-header {
  background-color: #EDEEEF;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.flow .o-owner-page-header, .is-estates-projects .o-owner-page-header {
  background-color: #ffffff;
  border-bottom: solid 1px #dcdcde;
}

.o-owner-security-pack-banner {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48em) {
  .o-owner-security-pack-banner {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-security-pack-banner {
    width: 100%;
  }
}
@media (min-width: 48em) {
  .o-owner-security-pack-banner:not(:first-child) {
    margin-top: 1rem;
  }
}
@media (min-width: 48em) {
  .o-owner-page-header + .o-owner-security-pack-banner {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-owner-page-header + .o-owner-security-pack-banner {
    margin-top: 1.25rem;
  }
}

.o-lp-accent-card {
  border: solid 2px #F01E28;
  background-color: #ffffff;
  border-radius: 0.5rem;
}
@media (max-width: 47.9375em) {
  [class*=col-]:not(:first-child) .o-lp-accent-card {
    margin-top: 1rem;
  }
}

.o-lp-accent-card__header {
  border-bottom: solid 2px #F01E28;
  background-color: #F01E28;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.o-lp-accent-card__title {
  font-size: 1.1428571429rem;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
}

.o-lp-accent-card__body {
  padding: 1.5rem;
}

@media (max-width: 47.9375em) {
  .o-lp-accent-card__body-image {
    width: 11rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.o-lp-accent-card__description {
  margin-top: 1rem;
}
.o-lp-accent-card__description p {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
}

.o-lp-constructor-top-action__inner {
  display: flex;
  justify-content: center;
}
.o-lp-constructor-top-action__inner .a-button {
  width: 25rem;
}
@media (min-width: 48em) {
  .o-lp-constructor-top-action__inner .a-button {
    width: 30rem;
  }
}

.o-lp-guarantee-detail__title {
  font-size: 1.3333333333rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.o-lp-guarantee-detail__items {
  border: solid 1px #dcdcde;
  margin-top: 0.75rem;
}

.o-lp-guarantee-detail__item {
  display: flex;
}
.o-lp-guarantee-detail__item:not(:first-child) {
  border-top: solid 1px #dcdcde;
}

.o-lp-guarantee-detail__item-label {
  border-right: dashed 1px #dcdcde;
  flex: 0 0 7rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.4;
  text-align: right;
  letter-spacing: 0.08em;
  background-color: #f1f1f1;
}

.o-lp-guarantee-detail__item-value {
  padding: 1rem;
}
.o-lp-guarantee-detail__item-value ol {
  list-style: decimal;
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 1.75em;
}
.o-lp-guarantee-detail__item-value li:not(:first-child) {
  margin-top: 0.25em;
}

.o-lp-guarantee-detail__item-value-link-container {
  margin-top: 0.75rem;
  text-align: right;
}

.o-lp-guarantee-detail__item-value-link i {
  margin-right: 0.5em;
  color: #1E2D3C;
}

.o-lp-guarantee-features__items {
  display: flex;
  justify-content: space-between;
  width: 36rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.o-lp-guarantee-features__item {
  border: solid 2px #F01E28;
  background-color: #ffffff;
  color: #F01E28;
  font-weight: 700;
  padding: 0.375em 1em;
  border-radius: 0.5rem;
  letter-spacing: 0.08em;
}
@media (min-width: 48em) {
  .o-lp-guarantee-features__item {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 48em) {
  .o-lp-guarantee-features__item-label {
    margin-right: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-features__item-label {
    text-align: center;
  }
}

.o-lp-guarantee-features__item-price {
  font-size: 2rem;
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-features__item-price {
    margin-top: 0.25rem;
    text-align: center;
  }
}

.o-lp-guarantee-main-visual {
  background-image: url(/lp-guarantee/o-lp-guarantee-main-visual.svg);
  background-size: cover;
  background-position: center bottom;
  position: relative;
}
.o-lp-guarantee-main-visual::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.o-lp-guarantee-main-visual .container {
  height: 100%;
}
@media (min-width: 48em) {
  .o-lp-guarantee-main-visual {
    height: 22rem;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual {
    height: auto;
  }
}
.o-lp-guarantee-main-visual .home-last-action-score-images {
  max-width: 23rem;
}

.o-lp-guarantee-main-visual__inner {
  position: relative;
  height: 100%;
  width: 100%;
}
@media (min-width: 48em) {
  .o-lp-guarantee-main-visual__inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual__inner {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}

@media (min-width: 48em) {
  .o-lp-guarantee-main-visual__title-option {
    display: inline-block;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual__title-option {
    display: block;
  }
}

@media (min-width: 48em) {
  .o-lp-guarantee-main-visual__title-option-text {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: inline-block;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual__title-option-text {
    font-size: 1.3333333333rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    text-align: center;
    text-indent: 0.08em;
  }
}

.o-lp-guarantee-main-visual__title {
  margin-top: 0.25rem;
}
@media (min-width: 48em) {
  .o-lp-guarantee-main-visual__title {
    font-size: 3.125rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual__title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    text-align: center;
    margin-bottom: 0.5rem;
    text-indent: 0.08em;
  }
}

@media (min-width: 48em) {
  .o-lp-guarantee-main-visual__image-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
  }
}

.o-lp-guarantee-recommend__title {
  font-size: 1.3333333333rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
}
.o-lp-guarantee-recommend__title span {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.o-lp-guarantee-recommend__body {
  margin-top: 1.5rem;
}

.o-lp-guarantee-recommend__action {
  font-family: YakuHanJPs, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  text-transform: none;
  display: inline-flex;
  border: solid 1px;
  border-radius: 0.25rem;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
  height: 3.75rem;
  width: 26rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #F01E28;
  content: "93.93";
  color: #ffffff;
  border-color: #F01E28;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  display: flex;
  position: relative;
}
.o-lp-guarantee-recommend__action * {
  pointer-events: none;
}
.o-lp-guarantee-recommend__action.is-block {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.o-lp-guarantee-recommend__action:focus {
  outline: none;
}
.o-lp-guarantee-recommend__action:disabled {
  cursor: default;
  pointer-events: none;
}
@media (min-width: 48em) {
  .is-button-group .o-lp-guarantee-recommend__action {
    margin-right: -1px;
  }
  .is-button-group .o-lp-guarantee-recommend__action:hover, .is-button-group .o-lp-guarantee-recommend__action:active {
    position: relative;
  }
  .is-button-group li:not(:first-child):not(:last-child) .o-lp-guarantee-recommend__action {
    border-radius: 0;
  }
  .is-button-group li:first-child .o-lp-guarantee-recommend__action {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .is-button-group li:last-child .o-lp-guarantee-recommend__action {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.o-lp-guarantee-recommend__action i:first-child {
  margin-right: 0.35em;
}
.o-lp-guarantee-recommend__action i:last-child {
  margin-left: 0.35em;
}
.o-lp-guarantee-recommend__action i.material-symbols-rounded:first-child,
.o-lp-guarantee-recommend__action i.material-symbols-rounded:last-child {
  font-size: 1.5em;
}
.o-lp-guarantee-recommend__action:hover, .o-lp-guarantee-recommend__action:focus, .o-lp-guarantee-recommend__action:active {
  background-color: #cd0e17;
  border-color: #F01E28;
}
.o-lp-guarantee-recommend__action:focus, .o-lp-guarantee-recommend__action:active {
  box-shadow: 0 0 0 0.1875rem rgba(240, 30, 40, 0.25);
}
.o-lp-guarantee-recommend__action.is-disabled, .o-lp-guarantee-recommend__action:disabled:not(.text-clear) {
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  border-color: #e21c26;
}
.o-lp-guarantee-recommend__action i {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translate(0, -50%);
}

.o-lp-constructor-header {
  background-color: #1E2D3C;
  padding-top: 0.625em;
  padding-bottom: 0.625em;
}
@media (min-width: 48em) {
  .o-lp-constructor-header {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-constructor-header {
    font-size: 1.1428571429rem;
  }
}
.o-lp-constructor-header .a-title {
  color: #ffffff;
}

.o-lp-guarantee-description {
  background-color: #ffffff;
  margin-top: 3rem;
  border-radius: 1rem;
  padding: 2rem;
}

.o-lp-guarantee-description__title {
  background-color: #F01E28;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  border-radius: 3rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  width: 24rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.o-lp-guarantee-description__contents {
  margin-top: 2rem;
}

.o-lp-guarantee-description__content {
  border-top: solid 1px #dcdcde;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 48em) {
  .o-lp-guarantee-description__content {
    display: flex;
  }
}
.o-lp-guarantee-description__content:last-child {
  padding-bottom: 0;
}

@media (min-width: 48em) {
  .o-lp-guarantee-description__content-image {
    width: 45rem;
    padding-left: 3rem;
    align-self: center;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-description__content-image img {
    display: block;
    margin-top: 1rem;
  }
}

@media (min-width: 48em) {
  .o-lp-guarantee-description__content-text {
    padding-left: 1.5rem;
  }
}

.o-lp-guarantee-description__content-title {
  font-size: 1.1428571429rem;
  line-height: 1.4;
  color: #F01E28;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.o-lp-guarantee-description__content-body {
  margin-top: 0.25rem;
}
.o-lp-guarantee-description__content-body p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1.6em;
}
.o-lp-guarantee-description__content-body *:first-child {
  margin-top: 0;
}

.o-lp-guarantee-description__link {
  text-decoration: underline;
}
.o-lp-guarantee-description__link:hover, .o-lp-guarantee-description__link:active {
  text-decoration: none;
}
.o-lp-guarantee-description__link i {
  margin-right: 0.5em;
  color: #1E2D3C;
}

.o-lp-guarantee-faq__header {
  border-top: solid 2px #F01E28;
  border-bottom: solid 2px #F01E28;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.o-lp-guarantee-faq__title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
}

.o-lp-guarantee-faq__body {
  margin-top: 3rem;
  width: 47.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.o-lp-guarantee-faq__item:not(:first-child) {
  margin-top: 4rem;
}

.o-lp-guarantee-faq__item-label {
  position: relative;
  padding-left: 3.5rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #F01E28;
  padding-top: 0.5em;
}
.o-lp-guarantee-faq__item-label::before {
  content: "Q";
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background-color: #F01E28;
  font-size: 1.3333333333rem;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}

.o-lp-guarantee-faq__item-value {
  margin-top: 2rem;
  position: relative;
  padding-left: 3.5rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  padding-top: 0.5em;
}
.o-lp-guarantee-faq__item-value::before {
  content: "A";
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 2px #F01E28;
  font-size: 1.3333333333rem;
  line-height: 1;
  color: #F01E28;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}

.o-lp-guarantee-main-visual-features {
  margin-bottom: 1.5rem;
}

.o-lp-guarantee-main-visual-features__items {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual-features__items {
    width: 18.75rem;
  }
}

.o-lp-guarantee-main-visual-features__item {
  background-color: #faa00a;
  font-weight: 700;
  padding: 0.375em 1em;
  border-radius: 0.5rem;
  letter-spacing: 0.08em;
  position: relative;
}
@media (min-width: 48em) {
  .o-lp-guarantee-main-visual-features__item {
    display: flex;
    align-items: center;
  }
}
.o-lp-guarantee-main-visual-features__item::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0.75rem 0.5rem;
  border-color: transparent;
  border-top-color: #faa00a;
  position: absolute;
  left: 2rem;
  bottom: -1.5rem;
}

@media (min-width: 48em) {
  .o-lp-guarantee-main-visual-features__item-label {
    margin-right: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual-features__item-label {
    text-align: center;
  }
}

.o-lp-guarantee-main-visual-features__item-price {
  font-size: 2rem;
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-main-visual-features__item-price {
    margin-top: 0.25rem;
    text-align: center;
  }
}

.o-lp-guarantee-prepared {
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  position: relative;
}
@media (min-width: 48em) {
  .o-lp-guarantee-prepared {
    font-size: 1.75rem;
  }
}
@media (max-width: 47.9375em) {
  .o-lp-guarantee-prepared {
    font-size: 1.3333333333rem;
  }
}
.o-lp-guarantee-prepared::before, .o-lp-guarantee-prepared::after {
  content: "";
  height: 0.5rem;
  width: 6rem;
  background-color: #F01E28;
  border-radius: 1rem;
  display: block;
}
.o-lp-guarantee-prepared::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: rotate(-15deg);
  margin-left: -0.25rem;
}
.o-lp-guarantee-prepared::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: rotate(15deg);
  margin-right: -0.25rem;
}

.o-lp-guarantee-safety__body .m-long-text {
  font-weight: 700;
}

.o-dev-local-nav {
  padding-top: 0.75rem;
  background-color: #FAFAFB;
  font-size: 0.8rem;
}

.o-dev-style-guide-sections {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.h-sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 101;
}

@media (max-width: 47.9375em) {
  .h-hidden-sm-down {
    display: none;
  }
}

@media (min-width: 48em) {
  .h-hidden-md-up {
    display: none;
  }
}

.t-company__main-images {
  background-color: #EDEEEF;
}
@media (max-width: 47.9375em) {
  .t-company__main-images .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.t-company__contents {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 47.9375em) {
  .t-company__content:not(:first-child) {
    margin-top: 2rem;
  }
}

.t-company__contents-row:not(:first-child) {
  margin-top: 2.5rem;
}

@media (max-width: 47.9375em) {
  .col-xs-12 + .col-xs-12 .t-company__content {
    margin-top: 2.5rem;
  }
}

.o-card .t-company .l-container {
  padding-left: 0;
  padding-right: 0;
}
.o-card .t-company [class*=col-] {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.o-card .t-company .m-bar-graphs__help {
  display: none;
}
.o-card .t-company .t-company__content:not(:first-child) {
  margin-top: 2rem;
}
.o-card .t-company .col-xs-12 + .col-xs-12 .t-company__content {
  margin-top: 2.5rem;
}
.o-card .t-company [class*=col-]:not(:first-child) .m-stacked-image-content {
  margin-top: 1.5rem;
}
.o-card .t-company .t-company__contents {
  padding-bottom: 1rem;
}
.o-card .t-company .o-owner-company-images__item-inner {
  pointer-events: none;
}

.t-biz-projects-show-main {
  display: flex;
  justify-content: space-around;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 47.9375em) {
  .t-biz-projects-show-main {
    display: block;
  }
}
@media (min-width: 48em) {
  .t-biz-projects-show-main__detail {
    max-width: 28rem;
  }
}
@media (min-width: 62em) {
  .t-biz-projects-show-main__detail {
    max-width: 32rem;
  }
}
@media (max-width: 47.9375em) {
  .t-biz-projects-show-main__navigation {
    margin-top: 2rem;
  }
}
@media (min-width: 48em) {
  .t-biz-projects-show-main__navigation {
    width: 10rem;
  }
}
@media (min-width: 62em) {
  .t-biz-projects-show-main__navigation {
    width: 12rem;
  }
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
.material-symbols-rounded.is-filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}
.material-symbols-rounded.is-bold {
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 48;
}

.welcome-content.is-colored-pink {
  background-color: #fce5e8;
}
.welcome-content.is-colored-gray {
  background-color: #f5f5f7;
}
.welcome-content.is-colored-yellow {
  background-color: #fff8eb;
}
.welcome-content.is-top-bordered {
  border-top: solid 1px #dcdcde;
}
.welcome-content.is-pd-0 .welcome-content__inner {
  padding-top: 0;
  padding-bottom: 0;
}
.welcome-content.is-background-image {
  position: relative;
}
.welcome-content.is-background-image::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.welcome-content.is-background-image .welcome-content__inner {
  position: relative;
  z-index: 3;
}

@media (min-width: 48em) {
  .welcome-content__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

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

.welcome-content__body {
  margin-top: 2.5rem;
}
.welcome-content__step-header + .welcome-content__body {
  margin-top: 1.5rem;
}

.welcome-content__title {
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-indent: 0.03em;
  padding-bottom: 0.4375em;
  position: relative;
}
@media (min-width: 48em) {
  .welcome-content__title {
    font-size: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__title {
    font-size: 1.6rem;
  }
}
.welcome-content__title::before {
  content: "";
  height: 0.25rem;
  width: 3em;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background-color: #F01E28;
  border-radius: 0.25rem;
}
@media (min-width: 48em) {
  .welcome-content__title.is-sm {
    font-size: 1.6rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__title.is-sm {
    font-size: 1.3333333333rem;
  }
}
@media (min-width: 48em) {
  .welcome-content__title.is-xs {
    font-size: 1.3333333333rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__title.is-xs {
    font-size: 1.1428571429rem;
  }
}

.welcome-content__steps-title {
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-indent: 0.03em;
  padding-bottom: 0.4375em;
  padding-top: 1em;
  padding-bottom: 1em;
  position: relative;
}
@media (min-width: 48em) {
  .welcome-content__steps-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__steps-title {
    font-size: 1.75rem;
  }
}

.welcome-content__steps-arrow {
  max-width: 15rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.welcome-content__title-important {
  font-size: 1.325em;
}

.welcome-content__title-label:first-child {
  display: block;
  font-size: 0.75em;
}

.welcome-content__title-added {
  font-size: 1rem;
  line-height: 1.4;
  display: block;
  text-align: center;
  letter-spacing: 0;
}

.welcome-content__sub-title {
  line-height: 1.5;
  margin-top: 1.125em;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 48em) {
  .welcome-content__sub-title {
    font-size: 1.1875rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__sub-title {
    font-size: 1.1428571429rem;
  }
}
.welcome-content__sub-title.is-lg-font {
  line-height: 1.4;
  margin-top: 2rem;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 48em) {
  .welcome-content__sub-title.is-lg-font {
    font-size: 1.8rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__sub-title.is-lg-font {
    font-size: 1.7rem;
  }
}

.welcome-content__background-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.welcome-content__step-title {
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 600;
  border-left: solid 0.375rem #F01E28;
  padding-left: 0.75rem;
}

.welcome-content__step-label {
  font-size: 0.8888888889rem;
  display: block;
  line-height: 1;
  margin-bottom: 0.125em;
}

.welcome-content__step-number {
  font-size: 1.1428571429rem;
  margin-left: 0.125em;
}

.welcome-content__more {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48em) {
  .welcome-content__more {
    width: 20rem;
    margin-top: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-content__more {
    width: 100%;
    margin-top: 1.75rem;
  }
}

.welcome-content__headline {
  font-size: 1.75rem;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
  background: #F01E28;
  padding: 1.5rem;
}
.welcome-content__headline::after {
  left: 50%;
  margin-left: -10px;
  position: absolute;
  bottom: -15px;
  font-size: 20px;
  line-height: 1;
  content: "▼";
  color: #F01E28;
}

.welcome-content__headline-number {
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  padding: 0.5rem;
  border-bottom: none;
}
.welcome-content__headline-number::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 100%;
  background: #F01E28;
  height: 3px;
}
.welcome-content__headline-number .headline__text {
  background: #fce5e8;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
}
.welcome-content__headline-number .headline__text strong {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.welcome-content__headline-number .headline__text span {
  position: relative;
  border-radius: 3px;
  font-size: 70%;
  padding: 0.4rem 0.6rem;
  display: inline-block;
  background: #F01E28;
  color: #ffffff;
  font-weight: bold;
}

.welcome-fixed-actions {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
  background-color: #1E2D3C;
}
@media (min-width: 48em) {
  .welcome-fixed-actions {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-fixed-actions {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.welcome-fixed-actions__items {
  display: flex;
  justify-content: center;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.welcome-fixed-actions__item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 48em) {
  .welcome-fixed-actions__item.is-phone {
    flex-basis: 13.5rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-fixed-actions__item.is-phone {
    flex-basis: 10.5rem;
  }
}
.welcome-fixed-actions__item.is-estate {
  flex: 100;
}
.welcome-fixed-actions__item .a-button span {
  margin-right: 0.625rem;
}
@media (min-width: 48em) {
  .welcome-fixed-actions__item .a-button {
    font-size: 1rem;
    padding-left: 1em;
    padding-right: 1em;
    min-height: 2.4em;
  }
}
.welcome-fixed-actions__item .welcome-header-contact {
  color: #ffffff;
}
.welcome-fixed-actions__item .welcome-header-contact__number {
  justify-content: center;
}

.welcome-footer {
  background-color: #1E2D3C;
  color: #ffffff;
  font-size: 0.8888888889rem;
}
@media (min-width: 48em) {
  .welcome-footer {
    padding-top: 2rem;
    padding-bottom: 5.5rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-footer {
    padding-top: 1.25rem;
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 48em) {
  .welcome-footer.is-biz {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-footer.is-biz {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.welcome-footer__info:not(:first-child) {
  margin-top: 1.5rem;
}
@media (min-width: 48em) {
  .welcome-footer__info {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.welcome-footer__copyright {
  font-size: 1em;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
@media (max-width: 47.9375em) {
  .welcome-footer__copyright {
    justify-content: center;
  }
}

.welcome-footer__copyright-icon {
  display: inline-flex;
  margin-right: 0.125em;
}
.welcome-footer__copyright-icon i {
  font-size: 0.8888888889rem;
}

.is-biz-thanks {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.welcome-header-contact {
  line-height: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

a.welcome-header-contact {
  text-decoration: none;
  color: #1E2D3C;
}
a.welcome-header-contact .welcome-header-contact__number {
  text-decoration: underline;
}

.welcome-header-contact__number {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  display: flex;
  align-items: center;
}
@media (min-width: 48em) {
  .welcome-header-contact__number {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-header-contact__number {
    font-size: 1.1428571429rem;
  }
}
@media screen and (max-width: 320px) {
  .welcome-header-contact__number {
    font-size: 0.8888888889rem;
  }
}

.welcome-header-contact__number-icon {
  height: auto;
  width: 1em;
  margin-right: 0.1875em;
  border-radius: 1px;
}
.welcome-header-contact__number-icon.is-phone {
  position: relative;
  top: -0.125em;
}

.welcome-header-contact__business-hours {
  text-align: center;
  margin-top: 0.125em;
}
@media (min-width: 48em) {
  .welcome-header-contact__business-hours {
    font-size: 0.8rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-header-contact__business-hours {
    font-size: 0.625rem;
  }
}

@media (max-width: 47.9375em) {
  .home-operating-company__image-container {
    margin-bottom: 1rem;
  }
}

.home-operating-company__items {
  border: solid 1px #dcdcde;
}

.home-operating-company__item {
  display: flex;
}
.home-operating-company__item:not(:last-child) {
  border-bottom: solid 1px #dcdcde;
}

.home-operating-company__item-label,
.home-operating-company__item-value {
  padding: 0.8em;
  line-height: 1.5;
}
@media (min-width: 48em) {
  .home-operating-company__item-label,
  .home-operating-company__item-value {
    font-size: 0.9375rem;
  }
}
@media (max-width: 47.9375em) {
  .home-operating-company__item-label,
  .home-operating-company__item-value {
    font-size: 0.8rem;
  }
}

.home-operating-company__item-label {
  flex-basis: 8.5em;
  text-align: right;
  background-color: #f5f5f7;
  border-right: dashed 1px #dcdcde;
}

.home-operating-company__item-value {
  flex: 100;
}
.home-operating-company__item-value li {
  line-height: 1.5;
}
.home-operating-company__item-value li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.home-operating-company__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.home-operating-company__more-link {
  font-size: 1rem;
  line-height: 1;
  color: #F01E28;
  text-decoration: underline;
}
.home-operating-company__more-link:hover, .home-operating-company__more-link:active {
  text-decoration: none;
}
.home-operating-company__more-link i {
  margin-left: 0.25em;
}

.main-visual__image {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.introducer-entries-main-visual {
  background-color: #d9eaf1;
}

.is_show_sp-kv-contents {
  display: none;
}

@media (max-width: 640px) {
  .is_show_pc-kv-contents {
    display: none;
  }
  .is_show_sp-kv-contents {
    display: block;
  }
}
/* introducer-entries-main-visual */
.introducer-entries-main-visual__inner {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background-image: radial-gradient(50% 95.93% at 50% 50%, #ffffff 29.16%, #d9eaf1 100%);
}

.introducer-entries-main-visual__inner-pc {
  display: grid;
  grid-template-columns: 900fr 258fr;
  align-items: flex-end;
}

.introducer-entries-main-visual__inner-sp {
  background-image: url(/assets/introducer_entries/main_visual/kv-sp-f23299f2ee2ba00c747965959c60ac9ad47cf0a374baab1e11c429edcca76162.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 640/504;
  display: grid;
  grid-template-columns: 2fr 5fr;
  grid-template-rows: 1fr 1fr 1.2fr;
  align-items: center;
}

.introducer-entries-main-visual__inner-pc-img {
  padding-right: 8px;
  padding-bottom: 12px;
  padding-top: 8px;
}

.introducer-entries-main-visual__catch {
  background-color: #e71f29;
  position: relative;
  padding: 8px;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.introducer-entries-main-visual__catch::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #e71f29;
  top: 100%;
  left: 50%;
}

@media (max-width: 992px) {
  .introducer-entries-main-visual__catch {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .introducer-entries-main-visual__catch {
    font-size: 20px;
  }
  .introducer-entries-main-visual__inner {
    display: grid;
    aspect-ratio: 640/504;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .introducer-entries-main-visual__catch {
    font-size: 18px;
  }
}
.municipality-coordination {
  background-image: url(/assets/introducer_entries/ja-map-0ca358181e0e0d5f370d1de8ba7b8f4aa82795bdfec5e2b7df85863698a560c5.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  gap: 40px;
  overflow: hidden;
}
@media (max-width: 47.9375em) {
  .municipality-coordination {
    background-size: cover;
  }
}
@media (max-width: 74.9375em) {
  .municipality-coordination {
    gap: 24px;
  }
}
.municipality-coordination__inner {
  max-width: 768px;
  width: 100%;
}
@media (max-width: 74.9375em) {
  .municipality-coordination__inner {
    padding: 0 40px;
  }
}
@media (max-width: 47.9375em) {
  .municipality-coordination__inner {
    padding: 0 16px;
  }
}
.municipality-coordination .splide-wrapper {
  max-width: 2000px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
}

.splide__list-item-municipality-logo-image {
  border-radius: 12px;
  width: 240px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.basic-paragraph {
  font-size: 16px;
  line-height: 1.7;
}

.municipality-coordination {
  padding: 80px 0;
}

.municipality-coordination {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 74.9375em) {
  .municipality-coordination {
    padding: 48px 0;
  }
}
@media (max-width: 47.9375em) {
  .municipality-coordination {
    background-size: cover;
  }
}
@media (max-width: 74.9375em) {
  .municipality-coordination {
    gap: 24px;
  }
}
.municipality-coordination__inner {
  padding-left: 2rem;
  padding-right: 2rem;
  width: 72.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

@media (max-width: 74.9375em) {
  .municipality-coordination__inner {
    padding: 0 40px;
  }
}
@media (max-width: 47.9375em) {
  .municipality-coordination__inner {
    padding: 0 16px;
  }
}
.municipality-coordination .splide-wrapper {
  max-width: 2000px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
}

.splide__list-item-municipality-logo-image {
  border-radius: 12px;
  width: 240px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

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

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (min-width: 48em) {
  .top-article-lists__items {
    display: flex;
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

@media (min-width: 48em) {
  .top-article-lists__item {
    flex: 1;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .top-article-lists__item:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.top-article-lists__item-inner {
  border: solid 1px #dcdcde;
  border-radius: 0.25rem;
}

.top-article-lists__item-header {
  border-bottom: solid 1px #dcdcde;
  padding: 0.75rem;
}

.top-article-lists__item-title {
  font-size: 1.1428571429rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}

.top-article-lists__item-footer {
  padding: 0.75rem;
  border-top: solid 1px #dcdcde;
}

.welcome-form:not(:last-child) {
  border-bottom: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .welcome-form {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-form {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.welcome-form .complement__header {
  text-align: center;
  margin-bottom: 0.75em;
}
@media (min-width: 48em) {
  .welcome-form .complement__header {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-form .complement__header {
    font-size: 1.3333333333rem;
  }
}
@media screen and (max-width: 320px) {
  .welcome-form .complement__header {
    font-size: 1rem;
  }
}

.welcome-form__header {
  margin-bottom: 1rem;
}

.welcome-form__title {
  display: block;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 48em) {
  .welcome-form__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-form__title {
    font-size: 1.3333333333rem;
  }
}
@media screen and (max-width: 320px) {
  .welcome-form__title {
    font-size: 1rem;
  }
}
.welcome-form__title.is-step {
  margin-bottom: 0;
  font-size: 1rem;
}

.welcome-form__description {
  font-size: 0.8888888889rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5em;
}

.welcome-form__important-note {
  line-height: 1.4;
  text-align: center;
  color: #F01E28;
}
.welcome-form__important-note::before {
  content: "※";
  position: relative;
  top: -0.0625em;
  margin-right: 0.125em;
}

.welcome-form__form > .o-form__items > .o-form__item:not(:first-child),
.welcome-form__form > .o-form__items > .o-form__item-group:not(:first-child) {
  margin-top: 0.75rem;
}
.welcome-form__form .o-form__item-group .o-form__item:not(:first-child) {
  margin-top: 0;
}
.welcome-form__title.is-sm + .welcome-form__form {
  margin-top: 0.5rem;
}

@media (min-width: 48em) {
  .welcome-form__main-action-item.o-form__actions-item,
  .o-form__actions-item.is-lg {
    flex-basis: 26rem;
    max-width: 26rem;
  }
}

[class*=a-button].welcome-form__main-action {
  font-size: 1.5rem;
  font-weight: 700;
  min-height: 3.75rem;
}
@media screen and (max-width: 320px) {
  [class*=a-button].welcome-form__main-action {
    font-size: 1.3333333333rem;
    min-height: 3.25rem;
  }
}
[class*=a-button].welcome-form__main-action .welcome-form__is-free {
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  padding: 0.3rem 0.4rem;
  font-size: 0.75em;
  color: #F01E28;
  background-color: #ffffff;
}

.welcome-form__form > .o-form__items > .o-form__item:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: dashed 1px #dcdcde;
}

.welcome-form__item-title {
  line-height: 1.4;
  font-weight: 600;
  display: block;
  margin-bottom: 1em;
  padding: 0.5em 0.75em;
  background-color: #f5f5f7;
  border-left: solid 0.375em #F01E28;
}
@media (min-width: 48em) {
  .welcome-form__item-title {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .welcome-form__item-title {
    font-size: 0.8888888889rem;
  }
}

.welcome-form__message {
  padding: 1em 1.25em;
  border-radius: 0.25rem;
  background-color: #c6ebe3;
  color: #0d2620;
  text-align: center;
}
@media (min-width: 48em) {
  .welcome-form__message {
    font-size: 0.8888888889rem;
    margin-bottom: 2em;
  }
}
@media (max-width: 47.9375em) {
  .welcome-form__message {
    font-size: 0.8rem;
    margin-bottom: 1.5em;
  }
}
.welcome-form__message p {
  line-height: 1.5;
}

.a-select::before {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e5c5";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
  font-size: 1.3333333333rem;
  display: flex;
  color: #1E2D3C;
  align-items: center;
  justify-content: center;
  height: 0.75rem;
  width: 0.75rem;
  position: absolute;
  right: 0.5em;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
}

.estate-projects {
  background-color: #edeeef;
}
.estate-projects ~ .o-owner-banners {
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .estate-projects ~ .o-owner-banners {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .estate-projects ~ .o-owner-banners {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 48em) {
  .estate-projects__sections {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .estate-projects__sections {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (min-width: 48em) {
  .estate-projects__section:not(:first-child) {
    margin-top: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .estate-projects__section:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.estate-projects__section-header {
  margin-bottom: 1.25rem;
}
@media (min-width: 48em) {
  .estate-projects__section-header {
    font-size: 1.1428571429rem;
  }
}
@media (max-width: 47.9375em) {
  .estate-projects__section-header {
    font-size: 1rem;
  }
}

@media (min-width: 48em) {
  .notification-method-form {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .notification-method-form {
    margin-top: 2rem;
  }
}

.owner_authenticate_token_expired {
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 48em) {
  .owner_authenticate_token_expired {
    margin-top: 4rem;
  }
}
.owner_authenticate_token_expired__header {
  margin-bottom: 1rem;
}
.owner_authenticate_token_expired__header img {
  width: 240px;
  margin-bottom: 1rem;
}
@media (min-width: 48em) {
  .owner_authenticate_token_expired__header img {
    margin-bottom: 2rem;
  }
}
.owner_authenticate_token_expired__body {
  margin-bottom: 2rem;
}
.owner_authenticate_token_expired__action {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.owner_authenticate_token_expired__contact > * {
  margin-bottom: 0.75rem;
}
.owner_authenticate_token_expired__contact > *:last-child {
  margin-bottom: 0;
}

iframe.sign-form {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 50px);
  border: none;
}

.change_contracts .o-pill-tabs-nav {
  background-color: #ffffff;
}
.change_contracts .is-changed {
  color: #F01E28;
  font-weight: bold;
}

.invoice-card {
  border: solid 1px #dcdcde;
  border-radius: 0.25rem;
  background-color: #f5f5f7;
}
@media (max-width: 47.9375em) {
  .invoice-card {
    margin-top: 1.125rem;
  }
}
.invoice-card:not(:first-child) {
  margin-top: 0.5rem;
}

.invoice-card__body {
  padding: 0.75em 1em;
}
@media (min-width: 48em) {
  .invoice-card__body {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375em) {
  .invoice-card__body {
    font-size: 0.8888888889rem;
  }
}

.invoice-card__title {
  font-weight: 600;
  font-size: 1.25em;
}

.invoice-detail {
  font-size: 1.25em;
  margin: 0.5rem 0;
}

.invoice-amount-description {
  font-size: 0.9rem;
  display: block;
  position: relative;
  padding-left: 1em;
  text-align: left;
}
.invoice-amount-description::before {
  content: "※";
  position: absolute;
  left: 0;
  top: -0.0625em;
  margin-right: 0.125em;
}
.invoice-amount-description:not(:first-child) {
  margin-top: 0.25rem;
}

.bank-account-items {
  margin-top: 0.5rem;
}

.bank-account-item {
  display: flex;
  align-items: center;
}
.bank-account-item:not(:first-child) {
  margin-top: 0.25em;
}

.bank-account-label {
  display: flex;
  align-items: center;
}
.bank-account-label::after {
  content: ":";
  display: block;
  margin-left: 0.125em;
  margin-right: 0.125em;
}

.bank-account-value {
  flex: 100;
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
}

body.is-owner_admin_messages-index {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
body.is-owner_admin_messages-index .application-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.is-owner_company_messages-index {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
body.is-owner_company_messages-index .application-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 48em) {
  .owner-settings-form {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 47.9375em) {
  .owner-settings-form {
    margin-top: 2rem;
  }
}
.owner-settings-form .contact-activation-label {
  padding-bottom: 0.25rem;
}
.owner-settings-form .contact-activation-label .a-button {
  margin-left: 0.25rem;
}

.floating-container {
  position: fixed;
}
@media (min-width: 48em) {
  .floating-container {
    right: 1rem;
    bottom: calc(1rem + 72px);
  }
}
@media (max-width: 47.9375em) {
  .floating-container {
    width: 100%;
    position: fixed;
    bottom: calc(56px + 1rem);
  }
}
@media (max-width: 61.9375em) {
  body.is-smartphone.is-ios:not(.is-safari) .floating-container, body.is-pc.is-mac .floating-container {
    bottom: calc(83px + 1rem);
  }
}

.contact-to-admin {
  display: flex;
  text-decoration: none;
  color: #1E2D3C;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
  border: solid 1px #F01E28;
  background-color: #ffe0e4;
  background-image: linear-gradient(0deg, #e6cacd, #ffe0e4);
  border-radius: 0.25rem;
  padding: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px 0px;
}
@media (min-width: 48em) {
  .contact-to-admin {
    height: 3.75rem;
    width: 13.5rem;
  }
}
@media (max-width: 47.9375em) {
  .contact-to-admin {
    height: 3rem;
    width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-to-admin__image {
  border-radius: 50%;
}
@media (min-width: 48em) {
  .contact-to-admin__image {
    width: 2.25rem;
    margin-right: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .contact-to-admin__image {
    width: 2rem;
    margin-right: 0.75rem;
  }
}

.contact-to-admin__label {
  font-size: 0.6875rem;
  line-height: 1;
}

.contact-to-admin__title {
  font-size: 0.875rem;
  line-height: 1.15;
  margin-top: 0.25rem;
  font-weight: 600;
}

.flow-item {
  position: relative;
}
.flow-item + .flow-item::before {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e5c5";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #b7bdc1;
}
@media (min-width: 48em) {
  .flow-item + .flow-item::before {
    height: 3.5rem;
  }
}
@media (max-width: 47.9375em) {
  .flow-item + .flow-item::before {
    height: 2.75rem;
  }
}

.flow-item__inner {
  border-radius: 0.25rem;
  background-color: #ffffff;
  position: relative;
}
@media (min-width: 48em) {
  .flow-item__inner {
    padding: 1.5rem;
  }
}
@media (max-width: 47.9375em) {
  .flow-item__inner {
    padding: 1.25rem;
  }
}
.flow-item.is-active .flow-item__inner {
  border: solid 2px #F01E28;
}
.flow-item.is-not-ready .flow-item__inner {
  background-color: #f5f5f7;
}

.flow-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.flow-item.is-done .flow-item__header::after {
  content: "完了";
  height: 20px;
  width: 42px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 700;
  background-color: #20B917;
}

.flow-item__number {
  display: inline-block;
  margin-right: 0.375em;
}

@media (min-width: 48em) {
  .flow-item__title {
    font-size: 1.1428571429rem;
    line-height: 1.125;
    font-weight: 700;
  }
}
@media (max-width: 47.9375em) {
  .flow-item__title {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
  }
}

.flow-item__body {
  border-top: solid 1px #dcdcde;
}
@media (min-width: 48em) {
  .flow-item__body {
    margin-top: 1.25rem;
    padding-top: 0.75rem;
  }
}
@media (max-width: 47.9375em) {
  .flow-item__body {
    margin-top: 1rem;
    padding-top: 0.5rem;
  }
}
.flow-item__body + .flow-item__body {
  border-top: solid 1px #d6dcde;
}
.flow-item.is-done .flow-item__body {
  display: none;
}

@media (min-width: 48em) {
  .flow-item__description {
    font-size: 0.8888888889rem;
  }
}
@media (max-width: 47.9375em) {
  .flow-item__description {
    font-size: 0.8888888889rem;
  }
}
.flow-item__description ul.flow-item__description__list {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  list-style: initial;
}
.flow-item__description ul.flow-item__description__list li {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.flow-item__deadline {
  margin-top: 1rem;
  text-align: center;
}

.flow-item__deadline-inner {
  align-items: center;
  border: dashed 1px #FEBB02;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background-color: #fff1cb;
  border-radius: 0.1875rem;
}

.flow-item__deadline-label {
  display: inline-flex;
  align-items: center;
}
.flow-item__deadline-label:after {
  content: ":";
  display: block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.flow-item__actions {
  margin-top: 1rem;
}
@media (min-width: 48em) {
  .flow-item__actions.has-2-actions {
    display: flex;
    align-items: flex-end;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .flow-item__actions.has-2-actions .flow-item__action {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .flow-item__actions.has-2-actions .flow-item__action:not(:first-child) {
    margin-top: 0.75rem;
  }
}
.flow-item:not(.is-active) .flow-item__actions {
  display: none;
}

.flow-item__notice {
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
  color: #9494a0;
}
@media (min-width: 48em) {
  .flow-item__notice {
    margin-bottom: 0.375rem;
  }
}
@media (max-width: 47.9375em) {
  .flow-item__notice {
    margin-bottom: 0.25rem;
  }
}
.flow-item__notice.is-active {
  color: #F01E28;
}

.flow-item__notice-number {
  font-weight: 600;
}

.flow-item__action {
  width: 20rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flow-item__footer {
  margin-top: 1rem;
}

@media (min-width: 48em) {
  .flow {
    padding-bottom: 5rem;
  }
}
@media (max-width: 47.9375em) {
  .flow {
    padding-bottom: 5rem;
  }
}
.flow .o-owner-banners {
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .flow .o-owner-banners {
    margin-top: 4rem;
  }
}
@media (max-width: 47.9375em) {
  .flow .o-owner-banners {
    margin-top: 1.5rem;
  }
}
@media (min-width: 48em) {
  .flow .o-owner-banners .o-owner-banners__banner:not(:first-child) {
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.9375em) {
  .flow .o-owner-banners .o-owner-banners__banner:not(:first-child) {
    margin-top: 1rem;
  }
}

.flow__items {
  background-color: #edeeef;
}
@media (min-width: 48em) {
  .flow__items {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 47.9375em) {
  .flow__items {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }
}

.message_contacts {
  border-bottom: 1px solid #FAFAFB;
}

.contact_member_image {
  height: 6.25rem;
  width: 6.25rem;
  border-radius: 50%;
}

.contacts_index a {
  text-decoration: none;
  border: none;
  color: #2a2a2f;
}

.a-contact-company__tel {
  color: #ffffff;
}

@media (min-width: 48em) {
  body.is-liv-page.has-fixed-bottom-nav {
    padding-bottom: 72px;
  }
}
@media (max-width: 47.9375em) {
  body.is-liv-page.has-fixed-bottom-nav {
    padding-bottom: 56px;
  }
}
@media (max-width: 61.9375em) {
  body.is-liv-page.has-fixed-bottom-nav.is-smartphone.is-ios:not(.is-safari), body.is-liv-page.has-fixed-bottom-nav.is-pc.is-mac {
    padding-bottom: 83px;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent escape-svg(url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#000'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>")) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: subtract(100%, 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: subtract(100%, 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: subtract(100%, 3.5rem);
  }
  .modal-dialog-centered {
    min-height: subtract(100%, 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}

@media (min-width: 576px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: "";
  display: inline-block;
  position: absolute;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}

.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .btn[data-action=clear]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .btn[data-action=today]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}

.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}

.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

.bootstrap-datetimepicker-widget .picker-switch td span,
.bootstrap-datetimepicker-widget .picker-switch td i {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0.25rem;
  padding: 0.5em;
}

.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #dee2e6;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}

.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #f8f9fa;
}

.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

.bootstrap-datetimepicker-widget table td.cw {
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  color: #dee2e6;
}

.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #f8f9fa;
  cursor: pointer;
}

.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #dee2e6;
}

.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

.bootstrap-datetimepicker-widget table td.today:before {
  content: "";
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #dee2e6;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #dee2e6;
  color: #007bff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #dee2e6;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table td span,
.bootstrap-datetimepicker-widget table td i {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0.25rem;
}

.bootstrap-datetimepicker-widget table td span:hover,
.bootstrap-datetimepicker-widget table td i:hover {
  background: #f8f9fa;
}

.bootstrap-datetimepicker-widget table td span.active,
.bootstrap-datetimepicker-widget table td i.active {
  background-color: #dee2e6;
  color: #007bff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bootstrap-datetimepicker-widget table td span.old,
.bootstrap-datetimepicker-widget table td i.old {
  color: #dee2e6;
}

.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td i.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover,
.bootstrap-datetimepicker-widget table td i.disabled:hover {
  background: none;
  color: #dee2e6;
  cursor: not-allowed;
}

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}

.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}

.input-group.date .input-group-addon {
  cursor: pointer;
}

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

.datetimepicker__icon-time {
  vertical-align: middle;
}
.datetimepicker__icon-time::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e8b5";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.datetimepicker__icon-date {
  vertical-align: middle;
}
.datetimepicker__icon-date::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\ebcc";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.datetimepicker__icon-up {
  vertical-align: middle;
}
.datetimepicker__icon-up::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e5d8";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.datetimepicker__icon-down {
  vertical-align: middle;
}
.datetimepicker__icon-down::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e5db";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.datetimepicker__icon-previous {
  vertical-align: middle;
}
.datetimepicker__icon-previous::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e314";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.datetimepicker__icon-next {
  vertical-align: middle;
}
.datetimepicker__icon-next::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e315";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.datetimepicker__icon-clear {
  vertical-align: middle;
}
.datetimepicker__icon-clear::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e872";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.datetimepicker__icon-close {
  vertical-align: middle;
}
.datetimepicker__icon-close::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "\e5cd";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
