/*grid*/
[class*="cell-"] {
  flex: 0 0 auto;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  line-height: 1;
}

.range {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.range-indent {
  margin: 0 6.25%;
}

.range-indent-right {
  margin-right: 6.25%;
}

.range-indent-left {
  margin-left: 6.25%;
}

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

.range>.cell-1 {
  -ms-flex-preferred-size: 6.25%;
  flex-basis: 6.25%;
  max-width: 6.25%;
}

.range>.cell-2 {
  -ms-flex-preferred-size: 12.5%;
  flex-basis: 12.5%;
  max-width: 12.5%;
}

.range>.cell-3 {
  -ms-flex-preferred-size: 18.75%;
  flex-basis: 18.75%;
  max-width: 18.75%;
}

.range>.cell-4 {
  -flex-preferred-size: 25%;
  flex-basis: 28%;
  max-width: 25%;
}

.range>.cell-5 {
  -ms-flex-preferred-size: 31.25%;
  flex-basis: 31.25%;
  max-width: 31.25%
}

.range>.cell-6 {
  -ms-flex-preferred-size: 37.5%;
  flex-basis: 37.5%;
  max-width: 37.5%;
}

.range>.cell-7 {
  -ms-flex-preferred-size: 43.75%;
  flex-basis: 43.75%;
  max-width: 43.75%;
}

.range>.cell-8 {
  -flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.range>.cell-9 {
  -ms-flex-preferred-size: 56.25%;
  flex-basis: 56.25%;
  max-width: 56.25%;
}

.range>.cell-10 {
  -ms-flex-preferred-size: 62.5%;
  flex-basis: 62.5%;
  max-width: 62.5%;
}

.range>.cell-11 {
  -ms-flex-preferred-size: 68.75%;
  flex-basis: 68.75%;
  max-width: 68.75%;
}

.range>.cell-12 {
  -flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.range>.cell-13 {
  -ms-flex-preferred-size: 81.25%;
  flex-basis: 81.25%;
  max-width: 81.25%;
}

.range>.cell-14 {
  -ms-flex-preferred-size: 87.5%;
  flex-basis: 87.5%;
  max-width: 87.5%;
}

.range>.cell-15 {
  -ms-flex-preferred-size: 93.75%;
  flex-basis: 93.75%;
  max-width: 93.75%;
}

.range>.cell-16 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.range>.cell-auto {
  flex-basis: auto;
}


/****************************************
      Избавься от класса flex!!!!!!!!!!!!
    ****************************************/
.flex {
  display: flex;
}

.range-middle {
  -ms-flex-align: center;
  align-items: center;
}

.range-bottom {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

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

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

.range-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.range-right {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.range-left {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.range-vertical {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/*end of grid*/

.margin-bottom-20 {
    margin-bottom: 20px;
}

/********** Кнопки **********/
.button {
    position: relative;
    color: white;
    text-decoration: none;
    background: #A4111B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    font-size: 1.25em;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
    user-select: none;
    outline: none;
}

main .button,
menu.mobile .button {
    padding: 0.9em 0.8em;
    text-align: center;
    width: 19.2em;
    height: auto;
}

.button.button-slider {
    width: 15.6em;
}

.button.center {
    margin: 0 auto;
}

.button:hover {
    color: white;
    background: #6B0002
}

.button.black {
    background: black;
}

.button.black:hover {
    background: #2E2828;
}

.button.white {
    background: white;
    color: black;
}

.button.white.color-red {
    color: #A4111B;
}

.button.white:hover {
    background: #D8D8D8;
}

.button.gray {
    background: #ADAFB2 !important;
}
