.container {
  box-sizing: border-box;
  max-width: 980px;
  padding: 0 25px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin: 0 auto !important;
}
.container--fluid {
  width: 100%;
  max-width: 100%;
  padding: 0 25px;
  box-sizing: border-box;
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .container {
    max-width: 1200px;
    padding: 0 35px;
  }
}
.container:before,
.container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
.grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
.grid:before,
.grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.grid:after {
  clear: both;
}
.grid > * {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  margin: 0;
  float: left;
}
.grid > * > :last-child {
  margin-bottom: 0;
}
/* Horizontal */
.grid {
  margin-left: -25px;
}
.grid > * {
  padding-left: 25px;
}
/* Vertical */
.grid + .grid,
.grid--margin,
.grid > * > .panel + .panel {
  margin-top: 25px;
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Horizontal */
  .grid {
    margin-left: -35px;
  }
  .grid > * {
    padding-left: 35px;
  }
  /* Vertical */
  .grid + .grid,
  .grid--margin,
  .grid > * > .panel + .panel {
    margin-top: 35px;
  }
}
/* Horizontal */
.grid--collapse {
  margin-left: 0;
}
.grid--collapse > * {
  padding-left: 0;
}
/* Vertical */
.grid--collapse + .grid--collapse,
.grid--collapse > .grid--margin,
.grid--collapse > * > .panel + .panel {
  margin-top: 0;
}
/* Horizontal */
.grid--sm {
  margin-left: -10px;
}
.grid--sm > * {
  padding-left: 10px;
}
/* Vertical */
.grid--sm + .grid--sm,
.grid--sm > .grid--margin,
.grid--sm > * > .panel + .panel {
  margin-top: 10px;
}
/* Horizontal */
.grid--md {
  margin-left: -25px;
}
.grid--md > * {
  padding-left: 25px;
}
/* Vertical */
.grid--md + .grid--md,
.grid--md > .grid--margin,
.grid--md > * > .panel + .panel {
  margin-top: 25px;
}
/* Modifier: `grid--divider`
 ========================================================================== */
.grid--divider:not(:empty) {
  margin-left: -25px;
  margin-right: -25px;
}
.grid--divider > * {
  padding-left: 25px;
  padding-right: 25px;
}
.grid--divider-full {
  margin-left: -25px;
  width: calc(100% + 50px) !important;
}
.grid--divider > [class*='col--1-']:not(.col--1-1):nth-child(n+2),
.grid--divider > [class*='col--2-']:nth-child(n+2),
.grid--divider > [class*='col--3-']:nth-child(n+2),
.grid--divider > [class*='col--4-']:nth-child(n+2),
.grid--divider > [class*='col--5-']:nth-child(n+2),
.grid--divider > [class*='col--6-']:nth-child(n+2),
.grid--divider > [class*='col--7-']:nth-child(n+2),
.grid--divider > [class*='col--8-']:nth-child(n+2),
.grid--divider > [class*='col--9-']:nth-child(n+2) {
  border-left: 1px solid #ddd;
}
/* Tablet and bigger */
@media (min-width: 1024px) and (max-width: 1219px) {
  .grid--divider > [class*='col--md-']:not(.col--md-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}
/* Desktop and bigger */
@media (min-width: 1220px) and (max-width: 1599px) {
  .grid--divider > [class*='col--lg-']:not(.col--lg-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .grid--divider:not(:empty) {
    margin-left: -35px;
    margin-right: -35px;
  }
  .grid--divider > * {
    padding-left: 35px;
    padding-right: 35px;
  }
  .grid--divider:empty {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .grid--divider-small {
    border-top: 1px solid #ddd;
    margin-top: 12.5px;
    margin-bottom: 12.5px;
  }
  .grid--divider-mini {
    border-top: 1px solid #ddd;
    margin-top: 6.25px;
    margin-bottom: 6.25px;
  }
  .grid--divider-full {
    margin-left: -35px;
    width: calc(100% + 70px) !important;
  }
}
.grid--divider:empty {
  margin-top: 25px;
  margin-bottom: 25px;
  border-top: 1px solid #ddd;
}
.grid--match > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.grid--match > * > * {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  box-sizing: border-box;
  width: 100%;
}
[class*='grid--col'] > * {
  box-sizing: border-box;
  width: 100%;
}
.grid-col--1-2 > * {
  width: 50%;
}
.grid-col--1-3 > * {
  width: 33.333%;
}
.grid-col--1-4 > * {
  width: 25%;
}
.grid-col--1-5 > * {
  width: 20%;
}
.grid-col--1-6 > * {
  width: 16.666%;
}
.grid-col--1-10 > * {
  width: 10%;
}
.grid-col--auto > * {
  width: auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-col--sm-1-2 > * {
    width: 50%;
  }
  .grid-col--sm-1-3 > * {
    width: 33.333%;
  }
  .grid-col--sm-1-4 > * {
    width: 25%;
  }
  .grid-col--sm-1-5 > * {
    width: 20%;
  }
  .grid-col--sm-1-6 > * {
    width: 16.666%;
  }
  .grid-col--sm-1-10 > * {
    width: 10%;
  }
}
@media (min-width: 1024px) and (max-width: 1219px) {
  .grid-col--md-1-2 > * {
    width: 50%;
  }
  .grid-col--md-1-3 > * {
    width: 33.333%;
  }
  .grid-col--md-1-4 > * {
    width: 25%;
  }
  .grid-col--md-1-5 > * {
    width: 20%;
  }
  .grid-col--md-1-6 > * {
    width: 16.666%;
  }
  .grid-col--md-1-10 > * {
    width: 10%;
  }
}
@media (min-width: 1220px) and (max-width: 1599px) {
  .grid-col--lg-1-2 > * {
    width: 50%;
  }
  .grid-col--lg-1-3 > * {
    width: 33.333%;
  }
  .grid-col--lg-1-4 > * {
    width: 25%;
  }
  .grid-col--lg-1-5 > * {
    width: 20%;
  }
  .grid-col--lg-1-6 > * {
    width: 16.666%;
  }
  .grid-col--lg-1-10 > * {
    width: 10%;
  }
}
@media (min-width: 1600px) {
  .grid-col--xlg-1-2 > * {
    width: 50%;
  }
  .grid-col--xlg-1-3 > * {
    width: 33.333%;
  }
  .grid-col--xlg-1-4 > * {
    width: 25%;
  }
  .grid-col--xlg-1-5 > * {
    width: 20%;
  }
  .grid-col--xlg-1-6 > * {
    width: 16.666%;
  }
  .grid-col--xlg-1-10 > * {
    width: 10%;
  }
}
.col--1-1 {
  width: 100%;
}
.col--1-2,
.col--2-4,
.col--3-6,
.col--5-10 {
  width: 50%;
}
.col--1-3,
.col--2-6 {
  width: 33.333%;
}
.col--2-3,
.col--4-6 {
  width: 66.666%;
}
.col--1-4 {
  width: 25%;
}
.col--3-4 {
  width: 75%;
}
.col--1-5,
.col--2-10 {
  width: 20%;
}
.col--2-5,
.col--4-10 {
  width: 40%;
}
.col--3-5,
.col--6-10 {
  width: 60%;
}
.col--4-5,
.col--8-10 {
  width: 80%;
}
.col--1-6 {
  width: 16.666%;
}
.col--5-6 {
  width: 83.333%;
}
.col--1-10 {
  width: 10%;
}
.col--3-10 {
  width: 30%;
}
.col--7-10 {
  width: 70%;
}
.col--9-10 {
  width: 90%;
}
/* Phone  */
@media (min-width: 320px) and (max-width: 767px) {
  .col--xs-1-1 {
    width: 100%;
  }
  .col--xs-1-1 + .col--xs-1-1 {
    margin-top: 20px;
  }
  .col--xs-1-2,
  .col--xs-2-4,
  .col--xs-3-6,
  .col--xs-5-10 {
    width: 50%;
  }
  .col--xs-1-3,
  .col--xs-2-6 {
    width: 33.333%;
  }
  .col--xs-2-3,
  .col--xs-4-6 {
    width: 66.666%;
  }
  .col--xs-1-4 {
    width: 25%;
  }
  .col--xs-3-4 {
    width: 75%;
  }
  .col--xs-1-5,
  .col--xs-2-10 {
    width: 20%;
  }
  .col--xs-2-5,
  .col--xs-4-10 {
    width: 40%;
  }
  .col--xs-3-5,
  .col--xs-6-10 {
    width: 60%;
  }
  .col--xs-4-5,
  .col--xs-8-10 {
    width: 80%;
  }
  .col--xs-1-6 {
    width: 16.666%;
  }
  .col--xs-5-6 {
    width: 83.333%;
  }
  .col--xs-1-10 {
    width: 10%;
  }
  .col--xs-3-10 {
    width: 30%;
  }
  .col--xs-7-10 {
    width: 70%;
  }
  .col--xs-9-10 {
    width: 90%;
  }
}
/* Phone landscape and bigger */
@media (min-width: 768px) and (max-width: 1023px) {
  .col--sm-1-1 {
    width: 100%;
  }
  .col--sm-1-2,
  .col--sm-2-4,
  .col--sm-3-6,
  .col--sm-5-10 {
    width: 50%;
  }
  .col--sm-1-3,
  .col--sm-2-6 {
    width: 33.333%;
  }
  .col--sm-2-3,
  .col--sm-4-6 {
    width: 66.666%;
  }
  .col--sm-1-4 {
    width: 25%;
  }
  .col--sm-3-4 {
    width: 75%;
  }
  .col--sm-1-5,
  .col--sm-2-10 {
    width: 20%;
  }
  .col--sm-2-5,
  .col--sm-4-10 {
    width: 40%;
  }
  .col--sm-3-5,
  .col--sm-6-10 {
    width: 60%;
  }
  .col--sm-4-5,
  .col--sm-8-10 {
    width: 80%;
  }
  .col--sm-1-6 {
    width: 16.666%;
  }
  .col--sm-5-6 {
    width: 83.333%;
  }
  .col--sm-1-10 {
    width: 10%;
  }
  .col--sm-3-10 {
    width: 30%;
  }
  .col--sm-7-10 {
    width: 70%;
  }
  .col--sm-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media (min-width: 1024px) and (max-width: 1219px) {
  .col--md-1-1 {
    width: 100%;
  }
  .col--md-1-2,
  .col--md-2-4,
  .col--md-3-6,
  .col--md-5-10 {
    width: 50%;
  }
  .col--md-1-3,
  .col--md-2-6 {
    width: 33.333%;
  }
  .col--md-2-3,
  .col--md-4-6 {
    width: 66.666%;
  }
  .col--md-1-4 {
    width: 25%;
  }
  .col--md-3-4 {
    width: 75%;
  }
  .col--md-1-5,
  .col--md-2-10 {
    width: 20%;
  }
  .col--md-2-5,
  .col--md-4-10 {
    width: 40%;
  }
  .col--md-3-5,
  .col--md-6-10 {
    width: 60%;
  }
  .col--md-4-5,
  .col--md-8-10 {
    width: 80%;
  }
  .col--md-1-6 {
    width: 16.666%;
  }
  .col--md-5-6 {
    width: 83.333%;
  }
  .col--md-1-10 {
    width: 10%;
  }
  .col--md-3-10 {
    width: 30%;
  }
  .col--md-7-10 {
    width: 70%;
  }
  .col--md-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media (min-width: 1220px) and (max-width: 1599px) {
  .col--lg-1-1 {
    width: 100%;
  }
  .col--lg-1-2,
  .col--lg-2-4,
  .col--lg-3-6,
  .col--lg-5-10 {
    width: 50%;
  }
  .col--lg-1-3,
  .col--lg-2-6 {
    width: 33.333%;
  }
  .col--lg-2-3,
  .col--lg-4-6 {
    width: 66.666%;
  }
  .col--lg-1-4 {
    width: 25%;
  }
  .col--lg-3-4 {
    width: 75%;
  }
  .col--lg-1-5,
  .col--lg-2-10 {
    width: 20%;
  }
  .col--lg-2-5,
  .col--lg-4-10 {
    width: 40%;
  }
  .col--lg-3-5,
  .col--lg-6-10 {
    width: 60%;
  }
  .col--lg-4-5,
  .col--lg-8-10 {
    width: 80%;
  }
  .col--lg-1-6 {
    width: 16.666%;
  }
  .col--lg-5-6 {
    width: 83.333%;
  }
  .col--lg-1-10 {
    width: 10%;
  }
  .col--lg-3-10 {
    width: 30%;
  }
  .col--lg-7-10 {
    width: 70%;
  }
  .col--lg-9-10 {
    width: 90%;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .col--xlg-1-1 {
    width: 100%;
  }
  .col--xlg-1-2,
  .col--xlg-2-4,
  .col--xlg-3-6,
  .col--xlg-5-10 {
    width: 50%;
  }
  .col--xlg-1-3,
  .col--xlg-2-6 {
    width: 33.333%;
  }
  .col--xlg-2-3,
  .col--xlg-4-6 {
    width: 66.666%;
  }
  .col--xlg-1-4 {
    width: 25%;
  }
  .col--xlg-3-4 {
    width: 75%;
  }
  .col--xlg-1-5,
  .col--xlg-2-10 {
    width: 20%;
  }
  .col--xlg-2-5,
  .col--xlg-4-10 {
    width: 40%;
  }
  .col--xlg-3-5,
  .col--xlg-6-10 {
    width: 60%;
  }
  .col--xlg-4-5,
  .col--xlg-8-10 {
    width: 80%;
  }
  .col--xlg-1-6 {
    width: 16.666%;
  }
  .col--xlg-5-6 {
    width: 83.333%;
  }
  .col--xlg-1-10 {
    width: 10%;
  }
  .col--xlg-3-10 {
    width: 30%;
  }
  .col--xlg-7-10 {
    width: 70%;
  }
  .col--xlg-9-10 {
    width: 90%;
  }
}
[class*='push--'],
[class*='pull--'] {
  position: relative;
}
@media (min-width: 320px) and (max-width: 767px) {
  .push--xs-1-2,
  .push--xs-2-4,
  .push--xs-3-6,
  .push--xs-5-10 {
    left: 50%;
  }
  .push--xs-1-3,
  .push--xs-2-6 {
    left: 33.333%;
  }
  .push--xs-2-3,
  .push--xs-4-6 {
    left: 66.666%;
  }
  .push--xs-1-4 {
    left: 25%;
  }
  .push--xs-3-4 {
    left: 75%;
  }
  .push--xs-1-5,
  .push--xs-2-10 {
    left: 20%;
  }
  .push--xs-2-5,
  .push--xs-4-10 {
    left: 40%;
  }
  .push--xs-3-5,
  .push--xs-6-10 {
    left: 60%;
  }
  .push--xs-4-5,
  .push--xs-8-10 {
    left: 80%;
  }
  .push--xs-1-6 {
    left: 16.666%;
  }
  .push--xs-5-6 {
    left: 83.333%;
  }
  .push--xs-1-10 {
    left: 10%;
  }
  .push--xs-3-10 {
    left: 30%;
  }
  .push--xs-7-10 {
    left: 70%;
  }
  .push--xs-9-10 {
    left: 90%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .push--sm-1-2,
  .push--sm-2-4,
  .push--sm-3-6,
  .push--sm-5-10 {
    left: 50%;
  }
  .push--sm-1-3,
  .push--sm-2-6 {
    left: 33.333%;
  }
  .push--sm-2-3,
  .push--sm-4-6 {
    left: 66.666%;
  }
  .push--sm-1-4 {
    left: 25%;
  }
  .push--sm-3-4 {
    left: 75%;
  }
  .push--sm-1-5,
  .push--sm-2-10 {
    left: 20%;
  }
  .push--sm-2-5,
  .push--sm-4-10 {
    left: 40%;
  }
  .push--sm-3-5,
  .push--sm-6-10 {
    left: 60%;
  }
  .push--sm-4-5,
  .push--sm-8-10 {
    left: 80%;
  }
  .push--sm-1-6 {
    left: 16.666%;
  }
  .push--sm-5-6 {
    left: 83.333%;
  }
  .push--sm-1-10 {
    left: 10%;
  }
  .push--sm-3-10 {
    left: 30%;
  }
  .push--sm-7-10 {
    left: 70%;
  }
  .push--sm-9-10 {
    left: 90%;
  }
}
@media (min-width: 1024px) and (max-width: 1219px) {
  .push--md-1-2,
  .push--md-2-4,
  .push--md-3-6,
  .push--md-5-10 {
    left: 50%;
  }
  .push--md-1-3,
  .push--md-2-6 {
    left: 33.333%;
  }
  .push--md-2-3,
  .push--md-4-6 {
    left: 66.666%;
  }
  .push--md-1-4 {
    left: 25%;
  }
  .push--md-3-4 {
    left: 75%;
  }
  .push--md-1-5,
  .push--md-2-10 {
    left: 20%;
  }
  .push--md-2-5,
  .push--md-4-10 {
    left: 40%;
  }
  .push--md-3-5,
  .push--md-6-10 {
    left: 60%;
  }
  .push--md-4-5,
  .push--md-8-10 {
    left: 80%;
  }
  .push--md-1-6 {
    left: 16.666%;
  }
  .push--md-5-6 {
    left: 83.333%;
  }
  .push--md-1-10 {
    left: 10%;
  }
  .push--md-3-10 {
    left: 30%;
  }
  .push--md-7-10 {
    left: 70%;
  }
  .push--md-9-10 {
    left: 90%;
  }
}
@media (min-width: 1220px) and (max-width: 1599px) {
  .push--lg-1-2,
  .push--lg-2-4,
  .push--lg-3-6,
  .push--lg-5-10 {
    left: 50%;
  }
  .push--lg-1-3,
  .push--lg-2-6 {
    left: 33.333%;
  }
  .push--lg-2-3,
  .push--lg-4-6 {
    left: 66.666%;
  }
  .push--lg-1-4 {
    left: 25%;
  }
  .push--lg-3-4 {
    left: 75%;
  }
  .push--lg-1-5,
  .push--lg-2-10 {
    left: 20%;
  }
  .push--lg-2-5,
  .push--lg-4-10 {
    left: 40%;
  }
  .push--lg-3-5,
  .push--lg-6-10 {
    left: 60%;
  }
  .push--lg-4-5,
  .push--lg-8-10 {
    left: 80%;
  }
  .push--lg-1-6 {
    left: 16.666%;
  }
  .push--lg-5-6 {
    left: 83.333%;
  }
  .push--lg-1-10 {
    left: 10%;
  }
  .push--lg-3-10 {
    left: 30%;
  }
  .push--lg-7-10 {
    left: 70%;
  }
  .push--lg-9-10 {
    left: 90%;
  }
}
@media (min-width: 1600px) {
  .push--xg-1-2,
  .push--xg-2-4,
  .push--xg-3-6,
  .push--xg-5-10 {
    left: 50%;
  }
  .push--xlg-1-3,
  .push--xlg-2-6 {
    left: 33.333%;
  }
  .push--xlg-2-3,
  .push--xlg-4-6 {
    left: 66.666%;
  }
  .push--xlg-1-4 {
    left: 25%;
  }
  .push--xlg-3-4 {
    left: 75%;
  }
  .push--xlg-1-5,
  .push--xlg-2-10 {
    left: 20%;
  }
  .push--xlg-2-5,
  .push--xlg-4-10 {
    left: 40%;
  }
  .push--xlg-3-5,
  .push--xlg-6-10 {
    left: 60%;
  }
  .push--xlg-4-5,
  .push--xlg-8-10 {
    left: 80%;
  }
  .push--xlg-1-6 {
    left: 16.666%;
  }
  .push--xlg-5-6 {
    left: 83.333%;
  }
  .push--xlg-1-10 {
    left: 10%;
  }
  .push--xlg-3-10 {
    left: 30%;
  }
  .push--xlg-7-10 {
    left: 70%;
  }
  .push--xlg-9-10 {
    left: 90%;
  }
}
