.body.index .main>.container,
.flexbox {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.row.flexbox {
  flex-direction: row;
  flex-wrap: wrap;
}

.bx-mac .row.flexbox:not(.nmac)>div {
  margin-left: -1px;
  margin-right: -1px;
}

.bx-mac .flexbox.nmac,
.bx-mac .row.flexbox.nmac {
  display: block;
}

.bx-mac .row.flexbox:after,
.bx-mac .row.flexbox:before {
  width: 100%;
}

.flexbox--row {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.flexbox--direction-row {
  flex-direction: row;
}

.flexbox--direction-column {
  flex-direction: column;
}

.flexbox--direction-row-reverse {
  flex-direction: row-reverse;
}

.flexbox--direction-column-reverse {
  flex-direction: column-reverse;
}

.flexbox--justify-between {
  justify-content: space-between;
}

.flexbox--justify-end {
  justify-content: end;
}

.flexbox--justify-center {
  justify-content: center;
}

.flexbox--justify-start {
  justify-content: start;
}

.flexbox--justify-around {
  justify-content: space-around;
}

.flexbox--wrap-nowrap {
  flex-wrap: nowrap;
}

.flexbox--align-center {
  align-items: center;
}

.flexbox--align-start {
  align-items: start;
}

.flexbox--align-self-start {
  align-self: start;
}

.flexbox--align-self-center {
  align-self: center;
}

.flexbox--align-end {
  align-items: flex-end;
}

.flex-1 {
  flex: 1;
}

.flex-33 {
  flex: 0 1 33.333%;
}

.flex-auto {
  flex: auto;
}

@media screen and (max-width: 991px) {
  .flex-33--from-991 {
    flex: auto;
  }
}

.flex-50 {
  flex: 0 1 50%;
}

.no-shrinked,
.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow-1 {
  flex-grow: 1;
  flex-basis: 0%;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flexbox--wrap {
  flex-wrap: wrap;
}

body .flexbox--inline {
  display: inline-flex;
}

@media (width > 600px) {
  .flex-1--from-600 {
    flex: 1;
  }
}

@media (min-width: 992px) {
  .flexbox--w34-f992 {
    flex-basis: 34%;
    padding-right: 64px;
  }
}

@media (max-width: 991px) {
  .flexbox--column-to-991 {
    flex-direction: column;
  }

  .flexbox--mb20-t991 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .flexbox--column-t767 {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .flex-0--to-600 {
    flex: 0;
  }
  .flexbox--column-to-600 {
    flex-direction: column;
  }
  .flexbox--justify-between-to-600 {
    justify-content: space-between;
  }
  .flexbox--align-start-to-600 {
    align-items: start;
  }
}

@media (max-width: 991px) {
  .flexbox--align-start-to-991 {
    align-items: start;
  }
}
