/**
 * FLEXBOX GRID
 */
*{
  box-sizing: border-box;
}
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.container{
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xxs,
.col-xxs-1,
.col-xxs-2,
.col-xxs-3,
.col-xxs-4,
.col-xxs-5,
.col-xxs-6,
.col-xxs-7,
.col-xxs-8,
.col-xxs-9,
.col-xxs-10,
.col-xxs-11,
.col-xxs-12,
.col-xxs-offset-0,
.col-xxs-offset-1,
.col-xxs-offset-2,
.col-xxs-offset-3,
.col-xxs-offset-4,
.col-xxs-offset-5,
.col-xxs-offset-6,
.col-xxs-offset-7,
.col-xxs-offset-8,
.col-xxs-offset-9,
.col-xxs-offset-10,
.col-xxs-offset-11,
.col-xxs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xxs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xxs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xxs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xxs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xxs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xxs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xxs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xxs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xxs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xxs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xxs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xxs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xxs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xxs-offset-0 {
  margin-left: 0;
}

.col-xxs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xxs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xxs-offset-3 {
  margin-left: 25%;
}

.col-xxs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xxs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xxs-offset-6 {
  margin-left: 50%;
}

.col-xxs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xxs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xxs-offset-9 {
  margin-left: 75%;
}

.col-xxs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xxs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xxs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xxs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xxs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xxs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xxs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xxs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xxs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xxs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xxs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xxs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 560px) {
  .container {
    width: 560px;
  }

  .col-xs,
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12,
  .col-xs-offset-0,
  .col-xs-offset-1,
  .col-xs-offset-2,
  .col-xs-offset-3,
  .col-xs-offset-4,
  .col-xs-offset-5,
  .col-xs-offset-6,
  .col-xs-offset-7,
  .col-xs-offset-8,
  .col-xs-offset-9,
  .col-xs-offset-10,
  .col-xs-offset-11,
  .col-xs-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-xs {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-xs-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xs-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xs-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xs-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xs-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xs-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xs-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xs-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xs-offset-0 {
    margin-left: 0;
  }

  .col-xs-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xs-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xs-offset-3 {
    margin-left: 25%;
  }

  .col-xs-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xs-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xs-offset-6 {
    margin-left: 50%;
  }

  .col-xs-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xs-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xs-offset-9 {
    margin-left: 75%;
  }

  .col-xs-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xs-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 768px)  {
  .container {
    width: 768px;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 1024px) {
  .container {
    width: 1024px;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1200px;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */

/**
 * Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/**
 * ICONS
 */
i[class^="icon-"]{
  display: inline-block;
  vertical-align: top;
  zoom: 1; /* Fix for IE7 */
  *display: inline; /* Fix for IE7 */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon-phone{
  background-image: url("../ce_images/icons/phone-call.png")
}
.icon-email{
  background-image: url("../ce_images/icons/email.png")
}

/**
 * SITE STYLES
 */
@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,700&subset=cyrillic');
*{
  box-sizing: border-box;
}
html, body{
  min-height: 100%;
  margin: 0;
  padding: 0;
}
body {
  position: relative;
  font-family: Arial, Helvetica sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  background: #70a6d2;
  background: -webkit-linear-gradient(left, #70a6d2 0%,#ffffff 28%,#6fa5d1 100%);
  background: linear-gradient(to right, #70a6d2 0%,#ffffff 28%,#6fa5d1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70a6d2', endColorstr='#6fa5d1',GradientType=1 );
  z-index: 0;
}
a, a:hover, a:visited{
  text-decoration: none;
  outline: 0 none;
  color: #ed7405;
}
.p0{
  padding: 0;
}
#lay_f1 {
  margin: 0 auto;
  min-height: 100%;
  clear: both;
}
#lay_f3 {
  background-image: url('/_img/GW/footer.jpg');
  height: 60px;
  margin-top: 20px;
  margin-bottom: -40px;
}

.header{
  position: relative;
  width: 100%;
  min-height: 80px;
  background: #fbfbfb;
  background: -webkit-linear-gradient(top, #fbfbfb 0%,#d5d5d5 100%);
  background: linear-gradient(to bottom, #fbfbfb 0%,#d5d5d5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbfbfb', endColorstr='#d5d5d5',GradientType=0 );
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
  z-index: 3;
}
.header > .container > .row{
  min-height: 80px;
}
.header-logo{
  display: block;
}
.header-slogan{
  font-family: 'PT Sans', sans-serif;
  font-size: 25px;
  line-height: 1;
  margin: 15px 0;
  text-transform: uppercase;
}
.header-slogan span{
  display: block;
}
.header-slogan .main{
  font-weight: 700;
  color: #000000;
}
.header-slogan .sub{
  font-weight: 400;
  color: #be5422;
}
.header-contacts{
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header-contacts li{
  display: block;
  line-height: 26px;
}
.header-contacts li + li{
  margin-top: 4px;
}
.header-contacts li i{
  width: 26px;
  height: 26px;
  margin-right: 5px;
}
.header-contacts li span,
.header-contacts li a{
  font-size: 20px;
  color: #be5422;
  white-space: nowrap;
}

.btn-zakaz{
  position: fixed;
  right:0px; 
  top:150px; 
  z-index:1000;
}
.btn-zvonok{
  position: fixed;
  right:0px; 
  top:290px; 
  z-index:1000;
}
.btn-action{
  position: fixed;
  right:0px; 
  top:430px; 
  z-index:1000;
}

.navbar{
  position: relative;
  width: 100%;
  min-height: 40px;
  padding: 5px 0;
  background-color: #d25d25;
  z-index: 2;
}
.navbar .main-menu{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 30px;
}
.navbar .main-menu__item{
  position: relative;
  display: block;
  z-index: 32;
}
.navbar .main-menu__item::before{
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: calc(100% - 6px);
  background-color: #893103;
  border-radius: 12px;
  opacity: 0;
  box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.75);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  content: "";
  z-index: 33;
}
.navbar .main-menu__item::after{
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: calc(100% - 8px);
  border-radius: 11px;
  background: #f5923d;
  background: -webkit-linear-gradient(top,  #f5923d 0%,#fd6414 100%);
  background: linear-gradient(to bottom,  #f5923d 0%,#fd6414 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5923d', endColorstr='#fd6414',GradientType=0 );
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  content: "";
  z-index: 34;
}
.navbar .main-menu__item:hover::before,
.navbar .main-menu__item:hover::after,
.navbar .main-menu__item_state_active::before,
.navbar .main-menu__item_state_active::after{
  opacity: 1;
}
.navbar .main-menu__item a{
  position: relative;
  display: block;
  line-height: 20px;
  padding: 5px 10px;
  color: #ffffff;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 35;
}
.navbar input[type="text"]{
  display: block;
  height: 30px;
  padding: 5px 15px;
  border-radius: 15px;
  line-height: 20px;
  box-shadow: inset 0px 0px 4px 0px rgba(0,0,0,0.75);
}

.content > .container{
  padding-top: 1rem;
  background-color: #ffffff;
}
.home-content{
  margin-top: 1rem;
}

.home-intro{
  width: 100%;
  height: 276px;
  margin: 0 auto 20px;
  border: 13px solid #ffffff;
  border-radius: 6px;
  box-sizing: border-box;
}
.home-intro video{
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-services{
  background-color: #75aad4;
  overflow: hidden;
}
.home-services__item{
  font-family: "PT Sans", Arial, sans-serif;
  position: relative;
  padding: 20px;
}
.home-services__item.is-left{
  padding-left: 8.33333333%;
  background-image: url("../ce_images/gaz.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}
.home-services__item.is-center-left{
  background: -webkit-linear-gradient(left,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 2%);
  background: linear-gradient(to right,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 2%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
}
.home-services__item.is-center-right{
  background: -webkit-linear-gradient(left, rgba(0,0,0,0) 98%,rgba(0,0,0,1) 100%);
  background: linear-gradient(to right, rgba(0,0,0,0) 98%,rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 );
}
.home-services__item.is-right{
  position: relative;
  background-image: url("../ce_images/gaz-reverse.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
.home-services__item.is-left::before,
.home-services__item.is-right::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #273846;
  opacity: 0.85;
  content: '';
}

.home-services__item h3,
.home-services__item h4{
  position: relative;
  margin: 0 0 10px;
  font-family: 'PT Sans', Arial, serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;  
}
.home-services__item p{
  position: relative;
  font-family: 'PT Sans', Arial, serif;
  font-size: 13px;
  color: #fff;
}
.home-services__item ul{
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.home-services__item ul li{
  position: relative;
  padding: 5px 0 5px 25px;
  line-height: 20px;
  font-size: 13px;
  color: #fff;
}
.home-services__item ul li::before{
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background-color: #ffffff;
  content: '';
}
.home-text{
  padding: 1.5rem 0;
  background-color: #ffffff;
  font-family: 'PT Sans', Arial, serif;
}
.home-text p + p{
  margin-top: 1rem;
}
.home-text p.upp{
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-copyright{
  font-family: "PT Sans", Arial, sans-serif;
  color: #fff;
  margin-top: 10px;
}
.footer-menu{
  font-family: "PT Sans", Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
}
.footer-menu .nav-menu{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-menu .nav-menu a{
  display: block;
  color: #ffffff;
}

.pages_path{
  margin-bottom: 1rem;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.content ul{
  display: block;
  padding-left: 40px;
  margin-bottom: 1rem;
}

.price-item{
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0.5rem;
}
.price-item img{
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 1rem;
}
.price-item span{
  display: block;
  text-align: center;
}
.up-text{
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size:14px;
  text-transform: uppercase;
}

.filter{
  padding-bottom: 0.5rem;
}
.filter-title{
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-top: 1.25rem;
}
.filter-slider{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 1.25rem;
}
.filter-slider__counter{
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  text-align:center;
  width: 36px;
  height: 29px;
  margin-right: 11px;
  border: 3px solid #d6d6d6;
  line-height: 23px;
}
.filter-slider__counter::after{
  position: absolute;
  display: block;
  top: 10px;
  left: 100%;
  width: 14px;
  height: 3px;
  background-color: #d6d6d6;
  content: "";
}
.filter-slider__control.ui-widget-content{
  width: 100%;
  border: none;
  background: #ffffff url(/_img/GW/lineslider.png) 50% 50% repeat-x;
}
.filter-slider__control a.ui-slider-handle.ui-state-default.ui-corner-all{
  background: #ffffff url(/_img/GW/polzunok.png);
  width: 35px;
  height: 37px;
  margin-top: -6px;
  border:none;
  outline-color: transparent;
}
a.ui-slider-handle.ui-state-default.ui-corner-all.ui-state-hover{
  border:none;
}
a.ui-slider-handle.ui-state-default.ui-corner-all.ui-state-hover.ui-state-focus{
  border:none;
}
.filter-btn{
  margin-top: 1.25rem;
  display: inline-block;
  cursor: pointer;
}
.filter-results{
  border: 1px solid #ebebeb; 
  width: 100%;
  background-color:#f3f3f3;
  border-radius: 10px;
  padding: 1.25rem;
}
.filter-results__title{
  margin: 0 0 0.5rem;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.filter-results__item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1rem;
}
.filter-results__item-image{
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 150px;
  padding-top: 28px;
  margin-right: 0.5rem;
}
.filter-results__item-image img{
  display: block;
  max-width: 100%;
  height: auto;
}
.filter-results__item-data{
  width: 100%;
}
.filter-results__item-data h4{
  margin: 0 0 0.5rem;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
}
.content .filter-results__item-data ul,
.content .model-list{
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-results__item-data ul li,
.model-list li{
  padding: 0.25rem;
  font-family: "PT Sans", sans-serif;
  font-size:11px;
  clear: both;
}
.content .model-list li .right{
  float: right;
}
.filter-results__item-data ul li:nth-child(odd),
.model-list li:nth-child(odd){
  background-color:#dde1e3;
}
.filter .nv{
  display:none;
}
.filter .v{
  display: block;
}
.filter-percent{
  position: relative;
  display: block;
  z-index: 100;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter-percent::before{
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: calc(100% - 8px);
  background-color: #893103;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.75);
  content: "";
  z-index: 101;
}
.filter-percent::after{
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: calc(100% - 12px);
  border-radius: 0.5rem;
  background: #f5923d;
  background: -webkit-linear-gradient(top,  #f5923d 0%,#fd6414 100%);
  background: linear-gradient(to bottom,  #f5923d 0%,#fd6414 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5923d', endColorstr='#fd6414',GradientType=0 );
  content: "";
  z-index: 102;
}
.filter-percent__text{
  position: relative;
  width: 100%;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
  text-transform: uppercase;
  color: #ffffff;
  z-index: 103;
}
.filter-percent__data{
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 96px;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
  color: #ffffff;
  text-align: center;
  z-index: 104;
}

.page-text{
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  padding-bottom: 1rem;
}

.page-text p{
  margin-top: 1rem;
}
.page-text img{
  display: inline-block;
  vertical-align: top;
  zoom: 1; /* Fix for IE7 */
  *display: inline; /* Fix for IE7 */
  max-width: 100%;
  height: auto;
}

table[id^="sign"]{
  display: none !important;
  visibility: hidden !important;
}
.stacktable tr th,
.stacktable tr td{
  padding: 0.25rem;
  border-bottom: 1px solid #dde1e3;
}
.stacktable tr th{
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}


.model{
  margin-bottom: 1rem;
}
.model-image{
  display: block;
}
.model-image img{
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 135px;
}
.model-title{
  margin: 0.5rem 0;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  line-height: 20px;
  min-height: 40px;
}
h1.model-title{
  font-size: 24px;
  line-height: 30px;
  min-height: 30px;
}

.hidden-xxs, .hidden-xs, .hidden-sm, .hidden-md{
  display: block;
}
.visible-xxs, .visible-xs, .visible-sm, .visible-md{
  display: none;
}
.thumbnail{
  display: block;
  margin: 0 auto 0.5rem;
  width: auto;
  height: 120px;
}
.thumbnail + span{
  display: block;
  margin-bottom: 1rem;
}
/**
 * MOBILE XS
 */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  body{
    overflow-x: hidden;
  }
  .hidden-xxs{
    display: none;
  }
  .visible-xxs{
    display: block;
  }
  .visible-xxs.is-inline{
    display: inline;
  }
  .btn-zakaz,
  .btn-zvonok{
    position: relative;
    top: auto;
    right: auto;
    padding: 0.5rem 1rem;
    font-family: "PT Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
  }
  .btn-zakaz a,
  .btn-zvonok a{
    color: #ffffff;
  }
  .btn-zakaz{
    background: #0072ff;
    background: -webkit-linear-gradient(top, #0072ff 0%,#00cfff 100%);
    background: linear-gradient(to bottom, #0072ff 0%,#00cfff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0072ff', endColorstr='#00cfff',GradientType=0 );
  }
  .btn-zvonok{
    background: #ec7706;
    background: -webkit-linear-gradient(top, #ec7706 0%,#f75605 100%);
    background: linear-gradient(to bottom, #ec7706 0%,#f75605 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec7706', endColorstr='#f75605',GradientType=0 );
  }
  .header-logo{
    padding: 0.5rem 1rem;
    height: auto;
    text-align: center;
  }
  .header-logo img{
    display: block;
    max-width: 100%;
    height: auto;
  }
  .home-services__item.is-center-left,
  .home-services__item.is-center-right{
    background: none;
  }
  .home-text p{
    padding: 0 0.5rem;
  }
  #lay_f3{
    height: auto;
    margin-bottom: 0;
    background-image: none;
    background: #4e4d4b;
    background: -webkit-linear-gradient(top, #4e4d4b 0%,#2d2c2a 100%);
    background: linear-gradient(to bottom, #4e4d4b 0%,#2d2c2a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e4d4b', endColorstr='#2d2c2a',GradientType=0 );
    border-bottom: 4px dashed #535250;
  }
  .footer-menu{
    padding: 0 0.5rem;
  }
  .footer-menu .nav-menu{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-menu .nav-menu a{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    text-align: center;
  }
  .footer-copyright{
    padding: 0.5rem;
    text-align: center;
  }
  .filter{
    padding: 0 1rem;
  }
  .filter-results__item{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 320px) and (max-width: 559px) {
  body{
    max-width: 559px;
  }
  .header-slogan{
    margin: 0.5rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
  }
  .header-contacts{
    margin: 0.5rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .header-contacts li{
    text-align: center;
  }
  .navbar .main-menu{
    display: block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar .main-menu__item a{
    padding: 0.5rem 1rem;
    text-align: center;
  }
  .home-intro{
    width: auto;
    margin: 0 0.5rem 1rem;
    border-width: 4px;
    height: auto;
  }
  .filter-results__item-image{
    width: 100%;
  }
  .filter-results__item-image img{
    margin: 0 auto 0.25rem;
  }

}

@media only screen and (min-width: 560px) and (max-width: 767px) {
  .header-slogan{
    font-size: 20px;
    margin: 0.75rem 0;
  }
  .header-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-contacts li{
    margin: 0.5rem 0;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
    text-align: center;
  }
  .navbar .main-menu{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home-intro{
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body{
    overflow-x: hidden;
  }
  #lay_f2{
    text-align: center;
  }
  .hidden-sm{
    display: none;
  }
  .visible-sm{
    display: block;
  }
  .visible-sm.is-inline{
    display: inline;
  }
  .header-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-contacts li{
    margin: 0.5rem 0;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
    text-align: center;
  }
  .navbar .main-menu{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home-intro{
    height: auto;
  }
  .btn-zakaz,
  .btn-zvonok{
    position: relative;
    display: inline-block;
    vertical-align: top;
    zoom: 1; /* Fix for IE7 */
    *display: inline; /* Fix for IE7 */
    top: auto;
    right: auto;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    font-family: "PT Sans", Arial, sans-serif;
    font-weight: 700;
    font-size: 0;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
  }
  .btn-zakaz a, .btn-zvonok a,
  .btn-zakaz span, .btn-zvonok span{
    color: #ffffff;
    font-size: 16px;
  }
  .btn-zakaz{
    background: #0072ff;
    background: -webkit-linear-gradient(top, #0072ff 0%,#00cfff 100%);
    background: linear-gradient(to bottom, #0072ff 0%,#00cfff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0072ff', endColorstr='#00cfff',GradientType=0 );
  }
  .btn-zvonok{
    background: #ec7706;
    background: -webkit-linear-gradient(top, #ec7706 0%,#f75605 100%);
    background: linear-gradient(to bottom, #ec7706 0%,#f75605 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec7706', endColorstr='#f75605',GradientType=0 );
  }
  .home-text p{
    padding: 0 0.5rem;
  }
  .footer-copyright{
    text-align: center;
  }
  .filter-btn img{
    display: block;
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  body{
    overflow-x: hidden;
  }
  .home-intro{
    height: auto;
  }
  .footer-menu .nav-menu{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* Cmall task № 816  */

.btn-zvonok{
	display:none;
}
@media only screen and (min-width: 10px) and (max-width: 767px) {
	.b-cmall-feedback-form__table td{
		display:block;
	}
    .b-cmall-feedback-form__table .ta{
    	width:100% !important;
    }
}

/* END Cmall task № 816  */