/* l-body
---------------------------------------------------------------*/
.l-body {
  padding: 10px;
  line-height: 1.4;
  background: #ffffff;
}
.l-body + .l-body {
  margin-top: 100px;
}
.l-body * {
  font-family: 'Consolas', monospace !important;
}
.l-body a {
  color: #2773eb;
}
.l-body b {
  font-weight: 600;
}
.l-body code {
  display: inline-block;
  max-width: 100%;
  padding: 0 10px;
  line-height: 34px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  background-color: #fdfde2;
}
.l-body input[type="text"] {
  min-width: 150px;
  margin-bottom: 0 !important;
}
.l-body input[type="text"]:focus {
  border-color: #2773eb !important;
}
.l-body input[type="radio"],
.l-body input[type="checkbox"] {
  cursor: pointer;
}
.l-body select {
  min-width: 150px;
  margin-bottom: 0 !important;
}
.l-body select option {
  background: #ffffff !important;
}
.l-body select.w--60 {
  max-width: 60px;
  min-width: auto;
}
.l-body select.green {
  background-color: #4caf50;
  border-color: transparent !important;
}
.l-body select.orange {
  background-color: #f39c12;
  border-color: transparent !important;
}
.l-body select:focus {
  border-color: #2773eb !important;
}
.l-body textarea {
  height: 100px !important;
  margin-bottom: 0;
}
.l-body textarea.h--300 {
  height: 300px !important;
}
.l-body textarea:focus {
  border-color: #2773eb !important;
}
.l-body label {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  line-height: 1.4 !important;
}
.l-body label input {
  margin-right: 6px !important;
}
.l-body label span {
  font-weight: 600;
  white-space: nowrap;
  margin-right: 10px;
}
.l-body label span + input {
  margin-right: 0 !important;
}
.l-body label input + span {
  margin-right: 0;
  margin-left: 10px;
}
.l-body label:hover {
  text-decoration: underline;
}
.l-body label.no-hover {
  text-decoration: none !important;
}
.l-body ::-moz-placeholder {
  color: #999999 !important;
}
.l-body :-ms-input-placeholder {
  color: #999999 !important;
}
.l-body ::-webkit-input-placeholder {
  color: #999999 !important;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.c-tab {
  width: 100%;
}
.c-tab__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid #2773eb;
}
.c-tab__link {
  color: inherit;
  font-size: 16px;
  padding: 6px 10px;
  margin-right: 6px;
  position: relative;
  white-space: nowrap;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .c-tab__link {
    font-size: 14px;
  }
}
.c-tab__link:before {
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  background: rgba(0, 0, 0, 0);
}
.c-tab__link:hover:before,
.c-tab__link--active:before {
  opacity: 1;
  background: #2773eb;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.c-tab__item {
  display: none;
  padding: 16px 0;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.c-tab__item--active {
  display: block;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-list {
  margin: 0;
  width: 100%;
  padding: 16px;
  padding-top: 10px;
  overflow: auto;
  max-height: 300px;
  background: #f8f8f8;
}
@media (max-width: 767px) {
  .c-list {
    padding: 10px;
    padding-top: 4px;
    max-height: 200px;
  }
}
.c-list ul {
  padding-left: 20px;
  padding-bottom: 6px;
}
.c-list li {
  list-style: none;
  margin-top: 6px;
}
.c-list--count {
  margin-top: 10px;
  text-align: left;
  max-height: 140px;
  background: #ffffff;
  border: 1px solid #E6E6E6;
  padding: 10px 10px 10px 40px;
}
.c-list--count li {
  margin-top: 0;
  list-style: unset;
}
.c-list--count li + li {
  margin-top: 6px;
}
.c-block {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-block + .c-block {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .c-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-block__column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .c-block__column {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-block__column + .c-block__column {
  padding-left: 16px;
}
@media (max-width: 767px) {
  .c-block__column + .c-block__column {
    padding-left: 0;
    padding-top: 10px;
  }
}
.c-block--bg {
  padding: 16px;
  display: block;
  background: #f8f8f8;
}
.c-block--no-flex {
  display: block;
}
.c-title {
  font-weight: 600;
  margin-bottom: -8px;
  font-family: Verdana, sans-serif !important;
}
@media (max-width: 767px) {
  .c-title {
    font-size: 13px;
  }
}
.c-title--big {
  font-size: 22px;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .c-title--big {
    font-size: 16px;
  }
}
.c-table {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.c-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.c-table tbody {
  border: 0;
}
.c-table tbody th {
  padding: 0;
  white-space: nowrap;
  border: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
  .c-table tbody th {
    display: none;
  }
}
.c-table tbody td {
  padding: 0;
  border: 1px solid #e6e6e6;
  -webkit-transition: background-color 0.12s;
  transition: background-color 0.12s;
}
.c-table tbody tr:nth-of-type(even) {
  background: #f8f8f8;
}
.c-table__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  text-align: center;
}
.c-table__item--nowrap {
  white-space: nowrap;
}
.c-table__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.c-table__row + .c-table__row {
  margin-top: 10px;
}
.c-table__arrow {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
}
.c-table__arrow:after {
  width: 6px;
  height: 6px;
  content: '';
  margin-top: -1px;
  margin-left: 6px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 2px solid;
  border-bottom: 2px solid;
}
.c-table__arrow--active {
  color: #2773eb;
}
.c-table__arrow--active:after {
  border: 0;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
}
@media (min-width: 1025px) {
  .c-table__arrow:hover {
    color: #2773eb;
  }
  .c-table__arrow:hover:after {
    border-color: #2773eb;
  }
}
.c-table__review {
  position: relative;
}
.c-table__review--admin {
  font-weight: 600;
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.c-table--green {
  color: #4caf50;
}
@media (max-width: 767px) {
  .c-table--responsive tbody td {
    width: 100%;
    display: block;
    line-height: 1.2;
    text-align: center;
    margin-bottom: -1px;
  }
  .c-table--responsive tbody tr {
    display: block;
  }
  .c-table--responsive tbody tr td:last-of-type {
    margin-bottom: 10px;
  }
  .c-table--responsive tbody tr:last-of-type td:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-table--responsive tbody th {
    display: none;
  }
}
.c-alert {
  width: 100%;
  padding: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .c-alert {
    padding: 10px;
  }
}
.c-alert--red {
  color: #a94442;
  background: #f2dede;
}
.c-alert--blue {
  color: #31708f;
  background: #d9edf7;
}
.c-alert--green {
  color: #3c763d;
  background: #dff0d8;
  padding-left: 44px;
}
.c-alert--green:before {
  top: 0;
  left: 16px;
  bottom: 5px;
  content: '';
  width: 16px;
  height: 6px;
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left: 3px solid #3c763d;
  border-bottom: 3px solid #3c763d;
}
.c-alert--orange {
  color: #8a6d3b;
  background: #fcf8e3;
}
.c-alert a {
  color: #3498db;
  margin-left: 6px;
  border-bottom: 1px dashed #3498db;
}
@media (min-width: 1025px) {
  .c-alert a:hover {
    text-decoration: none;
    border-bottom-style: solid;
  }
}
.c-alert--mt-10 {
  margin-top: 10px;
}
.c-modal {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow: auto;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.c-modal--active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-modal__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  min-height: 100%;
}
@media (min-width: 768px) {
  .c-modal__wrap {
    height: auto;
    padding: 50px 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-modal__wrap {
    left: 0;
    right: 0;
    position: absolute;
  }
}
.c-modal__content {
  padding: 30px;
  position: relative;
  background: #ffffff;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media (max-width: 767px) {
  .c-modal__content {
    width: 100vw;
    overflow: auto;
    min-height: 100vh;
  }
}
@media (min-width: 768px) {
  .c-modal__content {
    width: 700px;
    max-width: 100%;
  }
}
.c-modal__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: fixed;
  -webkit-transition: -webkit-transform .12s;
  transition: -webkit-transform .12s;
  transition: transform .12s;
  transition: transform .12s, -webkit-transform .12s;
}
@media (min-width: 768px) {
  .c-modal__close {
    position: absolute;
  }
}
.c-modal__close:after,
.c-modal__close:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  content: '';
  height: 60%;
  margin: auto;
  position: absolute;
  background: #bbbbbb;
  -webkit-transition: background .3s;
  transition: background .3s;
}
.c-modal__close:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal__close:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1025px) {
  .c-modal__close:hover:after,
  .c-modal__close:hover:before {
    background: #333333;
  }
}
@media (min-width: 1025px) {
  .c-modal--no-scroll {
    overflow: hidden;
  }
  .c-modal--no-scroll body {
    padding-right: 17px;
  }
  @supports (-ms-ime-align:auto) {
    .c-modal--no-scroll body {
      padding-right: 12px;
    }
  }
  .c-modal--no-scroll body .c-modal--full .c-modal__content {
    width: -webkit-calc(100vw - 17px);
    width: calc(100vw - 17px);
  }
  @supports (-ms-ime-align:auto) {
    .c-modal--no-scroll body .c-modal--full .c-modal__content {
      width: -webkit-calc(100vw - 12px);
      width: calc(100vw - 12px);
    }
  }
}
@media (min-width: 768px) {
  .c-modal--300 .c-modal__content {
    width: 300px;
  }
  .c-modal--400 .c-modal__content {
    width: 400px;
  }
  .c-modal--500 .c-modal__content {
    width: 500px;
  }
  .c-modal--600 .c-modal__content {
    width: 600px;
  }
  .c-modal--full .c-modal__wrap {
    padding: 0;
  }
  .c-modal--full .c-modal__content {
    width: 100vw;
    border-radius: 0;
    min-height: 100vh;
    -webkit-box-shadow: 0 0 0 20px #ffffff;
            box-shadow: 0 0 0 20px #ffffff;
  }
}
a.c-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  color: #ffffff;
  /*padding: 0 20px;*/
  position: relative;
  background: #2773eb;
  -webkit-transition: background .12s;
  transition: background .12s;
}
@media (max-width: 767px) {
  a.c-button {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  a.c-button:active {
    -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
            transform: translateY(3px);
  }
}
a.c-button:hover {
  text-decoration: none;
  background: #135bcc;
}
a.c-button--link {
  color: #2773eb;
  padding: 0 10px;
  background: transparent;
}
a.c-button--link:hover {
  background: transparent;
  text-decoration: underline;
}
a.c-button--green {
  background: #4caf50;
}
a.c-button--green:hover {
  background: #449d48;
}
a.c-button--plus {
  font-size: 15px;
}
@media (min-width: 768px) {
  a.c-button--plus {
    padding-left: 32px;
  }
}
a.c-button--plus:after,
a.c-button--plus:before {
  top: 0;
  left: 16px;
  bottom: 0;
  width: 2px;
  height: 40%;
  content: '';
  margin: auto;
  position: absolute;
  background: #ffffff;
}
a.c-button--plus:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
a.c-button--save {
  font-size: 15px;
}
@media (min-width: 768px) {
  a.c-button--save {
    padding-left: 32px;
  }
}
a.c-button--save:before {
  top: 0;
  left: 14px;
  bottom: 4px;
  content: '';
  width: 14px;
  height: 7px;
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.c-remove {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
  min-width: 20px;
  position: relative;
}
.c-remove:after,
.c-remove:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  width: 2px;
  height: 80%;
  margin: auto;
  position: absolute;
  background: #bcbcbc;
  -webkit-transition: height .12s;
  transition: height .12s;
}
.c-remove:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-remove:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1025px) {
  .c-remove:hover:after,
  .c-remove:hover:before {
    height: 100%;
  }
}
/* h-system
---------------------------------------------------------------*/
.l-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .l-row {
    margin-top: -16px;
    margin-left: -16px;
  }
}
.l-row + .l-row {
  margin-top: 0;
}
.l-col {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  display: block;
  max-width: 100%;
  padding-top: 10px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .l-col {
    padding-top: 16px;
    padding-left: 16px;
  }
}
@media (min-width: 0px) {
  .min-0--1 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333% ;
        -ms-flex: 0 0 8.333333% ;
            flex: 0 0 8.333333% ;
    max-width: 8.333333%;
  }
  .min-0--2 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .min-0--3 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%       ;
        -ms-flex: 0 0 25%       ;
            flex: 0 0 25%       ;
    max-width: 25%;
  }
  .min-0--4 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .min-0--5 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .min-0--6 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%       ;
        -ms-flex: 0 0 50%       ;
            flex: 0 0 50%       ;
    max-width: 50%;
  }
  .min-0--7 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .min-0--8 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .min-0--9 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%       ;
        -ms-flex: 0 0 75%       ;
            flex: 0 0 75%       ;
    max-width: 75%;
  }
  .min-0--10 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .min-0--11 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .min-0--12 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%      ;
        -ms-flex: 0 0 100%      ;
            flex: 0 0 100%      ;
    max-width: 100%;
  }
  .min-0--hide {
    display: none;
  }
  .min-0--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .min-0--height {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .min-0--grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .min-0--order-end {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .min-0--order-start {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .min-0--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .min-0--row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .min-0--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .min-0--column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .min-0--wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .min-0--nowrap {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .min-0--wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
  .min-0--align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .min-0--align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .min-0--align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .min-0--align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .min-0--align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .min-0--justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .min-0--justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .min-0--justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .min-0--justify-around {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .min-0--justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .min-0--content-center {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  .min-0--content-end {
    -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
  }
  .min-0--content-start {
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
  }
  .min-0--content-stretch {
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
  .min-0--content-around {
    -webkit-align-content: space-around;
        -ms-flex-line-pack: distribute;
            align-content: space-around;
  }
  .min-0--content-between {
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
  }
  .min-0--self-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .min-0--self-end {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
  .min-0--self-start {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .min-0--self-stretch {
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
  }
  .min-0--self-auto {
    -webkit-align-self: auto;
        -ms-flex-item-align: auto;
            align-self: auto;
  }
  .min-0--self-baseline {
    -webkit-align-self: baseline;
        -ms-flex-item-align: baseline;
            align-self: baseline;
  }
}
@media (max-width: 767px) {
  .max-767--1 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333% ;
        -ms-flex: 0 0 8.333333% ;
            flex: 0 0 8.333333% ;
    max-width: 8.333333%;
  }
  .max-767--2 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .max-767--3 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%       ;
        -ms-flex: 0 0 25%       ;
            flex: 0 0 25%       ;
    max-width: 25%;
  }
  .max-767--4 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .max-767--5 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .max-767--6 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%       ;
        -ms-flex: 0 0 50%       ;
            flex: 0 0 50%       ;
    max-width: 50%;
  }
  .max-767--7 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .max-767--8 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .max-767--9 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%       ;
        -ms-flex: 0 0 75%       ;
            flex: 0 0 75%       ;
    max-width: 75%;
  }
  .max-767--10 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .max-767--11 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .max-767--12 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%      ;
        -ms-flex: 0 0 100%      ;
            flex: 0 0 100%      ;
    max-width: 100%;
  }
  .max-767--hide {
    display: none;
  }
  .max-767--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .max-767--height {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .max-767--grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .max-767--order-end {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .max-767--order-start {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .max-767--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .max-767--row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .max-767--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .max-767--column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .max-767--wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .max-767--nowrap {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .max-767--wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
  .max-767--align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .max-767--align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .max-767--align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .max-767--align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .max-767--align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .max-767--justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .max-767--justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .max-767--justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .max-767--justify-around {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .max-767--justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .max-767--content-center {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  .max-767--content-end {
    -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
  }
  .max-767--content-start {
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
  }
  .max-767--content-stretch {
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
  .max-767--content-around {
    -webkit-align-content: space-around;
        -ms-flex-line-pack: distribute;
            align-content: space-around;
  }
  .max-767--content-between {
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
  }
  .max-767--self-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .max-767--self-end {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
  .max-767--self-start {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .max-767--self-stretch {
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
  }
  .max-767--self-auto {
    -webkit-align-self: auto;
        -ms-flex-item-align: auto;
            align-self: auto;
  }
  .max-767--self-baseline {
    -webkit-align-self: baseline;
        -ms-flex-item-align: baseline;
            align-self: baseline;
  }
}
@media (min-width: 768px) {
  .min-768--1 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333% ;
        -ms-flex: 0 0 8.333333% ;
            flex: 0 0 8.333333% ;
    max-width: 8.333333%;
  }
  .min-768--2 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .min-768--3 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%       ;
        -ms-flex: 0 0 25%       ;
            flex: 0 0 25%       ;
    max-width: 25%;
  }
  .min-768--4 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .min-768--5 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .min-768--6 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%       ;
        -ms-flex: 0 0 50%       ;
            flex: 0 0 50%       ;
    max-width: 50%;
  }
  .min-768--7 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .min-768--8 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .min-768--9 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%       ;
        -ms-flex: 0 0 75%       ;
            flex: 0 0 75%       ;
    max-width: 75%;
  }
  .min-768--10 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .min-768--11 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .min-768--12 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%      ;
        -ms-flex: 0 0 100%      ;
            flex: 0 0 100%      ;
    max-width: 100%;
  }
  .min-768--hide {
    display: none;
  }
  .min-768--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .min-768--height {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .min-768--grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .min-768--order-end {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .min-768--order-start {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .min-768--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .min-768--row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .min-768--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .min-768--column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .min-768--wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .min-768--nowrap {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .min-768--wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
  .min-768--align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .min-768--align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .min-768--align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .min-768--align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .min-768--align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .min-768--justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .min-768--justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .min-768--justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .min-768--justify-around {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .min-768--justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .min-768--content-center {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  .min-768--content-end {
    -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
  }
  .min-768--content-start {
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
  }
  .min-768--content-stretch {
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
  .min-768--content-around {
    -webkit-align-content: space-around;
        -ms-flex-line-pack: distribute;
            align-content: space-around;
  }
  .min-768--content-between {
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
  }
  .min-768--self-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .min-768--self-end {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
  .min-768--self-start {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .min-768--self-stretch {
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
  }
  .min-768--self-auto {
    -webkit-align-self: auto;
        -ms-flex-item-align: auto;
            align-self: auto;
  }
  .min-768--self-baseline {
    -webkit-align-self: baseline;
        -ms-flex-item-align: baseline;
            align-self: baseline;
  }
}
@media (min-width: 1025px) {
  .min-1025--1 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333% ;
        -ms-flex: 0 0 8.333333% ;
            flex: 0 0 8.333333% ;
    max-width: 8.333333%;
  }
  .min-1025--2 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .min-1025--3 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%       ;
        -ms-flex: 0 0 25%       ;
            flex: 0 0 25%       ;
    max-width: 25%;
  }
  .min-1025--4 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .min-1025--5 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .min-1025--6 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%       ;
        -ms-flex: 0 0 50%       ;
            flex: 0 0 50%       ;
    max-width: 50%;
  }
  .min-1025--7 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .min-1025--8 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .min-1025--9 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%       ;
        -ms-flex: 0 0 75%       ;
            flex: 0 0 75%       ;
    max-width: 75%;
  }
  .min-1025--10 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .min-1025--11 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .min-1025--12 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%      ;
        -ms-flex: 0 0 100%      ;
            flex: 0 0 100%      ;
    max-width: 100%;
  }
  .min-1025--hide {
    display: none;
  }
  .min-1025--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .min-1025--height {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .min-1025--grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .min-1025--order-end {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .min-1025--order-start {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .min-1025--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .min-1025--row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .min-1025--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .min-1025--column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .min-1025--wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .min-1025--nowrap {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .min-1025--wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
  .min-1025--align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .min-1025--align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .min-1025--align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .min-1025--align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .min-1025--align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .min-1025--justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .min-1025--justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .min-1025--justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .min-1025--justify-around {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .min-1025--justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .min-1025--content-center {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  .min-1025--content-end {
    -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
  }
  .min-1025--content-start {
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
  }
  .min-1025--content-stretch {
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
  .min-1025--content-around {
    -webkit-align-content: space-around;
        -ms-flex-line-pack: distribute;
            align-content: space-around;
  }
  .min-1025--content-between {
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
  }
  .min-1025--self-center {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .min-1025--self-end {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
  .min-1025--self-start {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .min-1025--self-stretch {
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
  }
  .min-1025--self-auto {
    -webkit-align-self: auto;
        -ms-flex-item-align: auto;
            align-self: auto;
  }
  .min-1025--self-baseline {
    -webkit-align-self: baseline;
        -ms-flex-item-align: baseline;
            align-self: baseline;
  }
}
