/* =================================================================
  Helper classes (with xl update)

  Uncategorized
  Display
  Overflow
  Pull
  Grid
  Text
  Alignment
  Position
  Padding
  Margin
  Flex
  Hidden
  Flex Grid (+ f-col-1-5 - 1/5 of row)
  Flex Orders and offsets
  No Gutters
  Flex Static
  Flex image
================================================================= */

/* Uncategorized */
.no-labels label {
  display: none !important;
}

.va-top {
  vertical-align: top !important;
}

.va-middle {
  vertical-align: middle !important;
}

.va-bottom {
  vertical-align: bottom !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

/* Display */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-cell {
  display: table-cell !important;
}

.d-row {
  display: table-row !important;
}

/* Overflow */
.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

/* Pull */
.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.pull-none {
  float: none !important;
}

@media (min-width: 576px) {
  .pull-sm-left {
    float: left !important;
  }

  .pull-sm-right {
    float: right !important;
  }

  .pull-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .pull-md-left {
    float: left !important;
  }

  .pull-md-right {
    float: right !important;
  }

  .pull-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .pull-lg-left {
    float: left !important;
  }

  .pull-lg-right {
    float: right !important;
  }

  .pull-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .pull-xl-left {
    float: left !important;
  }

  .pull-xl-right {
    float: right !important;
  }

  .pull-xl-none {
    float: none !important;
  }
}

/* Grid */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths
.col--xl-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 576px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 768px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-xl-5ths {
    width: 20%;
    float: left;
  }
}


.row-sm,
.row-sm .row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.row-sm [class^='col-'],
.row-sm [class*=" col-"] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.row-xs,
.row-xs .row {
  margin-left: -5px;
  margin-right: -5px;
}

.row-xs [class^='col-'],
.row-xs [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-zero,
.row-zero .row {
  margin-right: 0;
  margin-left: 0;
}

.row-zero [class*="col-"],
.row-zero [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Text */
.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Alignment */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}


/* Position */
.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-relative {
  position: relative !important;
}

.position-static {
  position: static !important;
}

/* Padding */
.p-a-0 {
  padding: 0 !important;
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-l-0 {
  padding-left: 0 !important;
}

.p-x-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* = */
.p-a-5 {
  padding: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.p-x-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.p-y-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* = */
.p-a-10 {
  padding: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.p-x-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.p-y-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* = */
.p-a-15 {
  padding: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.p-x-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.p-y-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

/* = */
.p-a-20 {
  padding: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.p-x-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.p-y-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* = */
.p-a-30 {
  padding: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-x-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.p-y-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* = */
.p-a-40 {
  padding: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.p-x-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.p-y-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* = */
.p-a-45 {
  padding: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.p-x-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.p-y-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

/* = */
.p-a-50 {
  padding: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.p-x-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.p-y-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}


/* = */
.p-a-60 {
  padding: 60px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.p-x-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.p-y-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* = */

@media (min-width: 576px) {
  .p-sm-a-0 {
    padding: 0 !important;
  }

  .p-sm-t-0 {
    padding-top: 0 !important;
  }

  .p-sm-r-0 {
    padding-right: 0 !important;
  }

  .p-sm-b-0 {
    padding-bottom: 0 !important;
  }

  .p-sm-l-0 {
    padding-left: 0 !important;
  }

  .p-sm-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .p-sm-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* = */
  .p-sm-a-5 {
    padding: 5px !important;
  }

  .p-sm-t-5 {
    padding-top: 5px !important;
  }

  .p-sm-r-5 {
    padding-right: 5px !important;
  }

  .p-sm-b-5 {
    padding-bottom: 5px !important;
  }

  .p-sm-l-5 {
    padding-left: 5px !important;
  }

  .p-sm-x-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .p-sm-y-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  /* = */
  .p-sm-a-10 {
    padding: 10px !important;
  }

  .p-sm-t-10 {
    padding-top: 10px !important;
  }

  .p-sm-r-10 {
    padding-right: 10px !important;
  }

  .p-sm-b-10 {
    padding-bottom: 10px !important;
  }

  .p-sm-l-10 {
    padding-left: 10px !important;
  }

  .p-sm-x-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .p-sm-y-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  /* = */
  .p-sm-a-15 {
    padding: 15px !important;
  }

  .p-sm-t-15 {
    padding-top: 15px !important;
  }

  .p-sm-r-15 {
    padding-right: 15px !important;
  }

  .p-sm-b-15 {
    padding-bottom: 15px !important;
  }

  .p-sm-l-15 {
    padding-left: 15px !important;
  }

  .p-sm-x-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .p-sm-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  /* = */
  .p-sm-a-20 {
    padding: 20px !important;
  }

  .p-sm-t-20 {
    padding-top: 20px !important;
  }

  .p-sm-r-20 {
    padding-right: 20px !important;
  }

  .p-sm-b-20 {
    padding-bottom: 20px !important;
  }

  .p-sm-l-20 {
    padding-left: 20px !important;
  }

  .p-sm-x-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .p-sm-y-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* = */
  .p-sm-a-25 {
    padding: 25px !important;
  }

  .p-sm-t-25 {
    padding-top: 25px !important;
  }

  .p-sm-r-25 {
    padding-right: 25px !important;
  }

  .p-sm-b-25 {
    padding-bottom: 25px !important;
  }

  .p-sm-l-25 {
    padding-left: 25px !important;
  }

  .p-sm-x-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .p-sm-y-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  /* = */
  .p-sm-a-30 {
    padding: 30px !important;
  }

  .p-sm-t-30 {
    padding-top: 30px !important;
  }

  .p-sm-r-30 {
    padding-right: 30px !important;
  }

  .p-sm-b-30 {
    padding-bottom: 30px !important;
  }

  .p-sm-l-30 {
    padding-left: 30px !important;
  }

  .p-sm-x-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .p-sm-y-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  /* = */
  .p-sm-a-40 {
    padding: 40px !important;
  }

  .p-sm-t-40 {
    padding-top: 40px !important;
  }

  .p-sm-r-40 {
    padding-right: 40px !important;
  }

  .p-sm-b-40 {
    padding-bottom: 40px !important;
  }

  .p-sm-l-40 {
    padding-left: 40px !important;
  }

  .p-sm-x-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .p-sm-y-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* = */
  .p-sm-a-45 {
    padding: 45px !important;
  }

  .p-sm-t-45 {
    padding-top: 45px !important;
  }

  .p-sm-r-45 {
    padding-right: 45px !important;
  }

  .p-sm-b-45 {
    padding-bottom: 45px !important;
  }

  .p-sm-l-45 {
    padding-left: 45px !important;
  }

  .p-sm-x-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }

  .p-sm-y-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  /* = */
  .p-sm-a-50 {
    padding: 50px !important;
  }

  .p-sm-t-50 {
    padding-top: 50px !important;
  }

  .p-sm-r-50 {
    padding-right: 50px !important;
  }

  .p-sm-b-50 {
    padding-bottom: 50px !important;
  }

  .p-sm-l-50 {
    padding-left: 50px !important;
  }

  .p-sm-x-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .p-sm-y-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* = */
  .p-sm-a-60 {
    padding: 60px !important;
  }

  .p-sm-t-60 {
    padding-top: 60px !important;
  }

  .p-sm-r-60 {
    padding-right: 60px !important;
  }

  .p-sm-b-60 {
    padding-bottom: 60px !important;
  }

  .p-sm-l-60 {
    padding-left: 60px !important;
  }

  .p-sm-x-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .p-sm-y-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

@media (min-width: 768px) {
  .p-md-a-0 {
    padding: 0 !important;
  }

  .p-md-t-0 {
    padding-top: 0 !important;
  }

  .p-md-r-0 {
    padding-right: 0 !important;
  }

  .p-md-b-0 {
    padding-bottom: 0 !important;
  }

  .p-md-l-0 {
    padding-left: 0 !important;
  }

  .p-md-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .p-md-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* = */
  .p-md-a-5 {
    padding: 5px !important;
  }

  .p-md-t-5 {
    padding-top: 5px !important;
  }

  .p-md-r-5 {
    padding-right: 5px !important;
  }

  .p-md-b-5 {
    padding-bottom: 5px !important;
  }

  .p-md-l-5 {
    padding-left: 5px !important;
  }

  .p-md-x-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .p-md-y-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  /* = */
  .p-md-a-10 {
    padding: 10px !important;
  }

  .p-md-t-10 {
    padding-top: 10px !important;
  }

  .p-md-r-10 {
    padding-right: 10px !important;
  }

  .p-md-b-10 {
    padding-bottom: 10px !important;
  }

  .p-md-l-10 {
    padding-left: 10px !important;
  }

  .p-md-x-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .p-md-y-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  /* = */
  .p-md-a-15 {
    padding: 15px !important;
  }

  .p-md-t-15 {
    padding-top: 15px !important;
  }

  .p-md-r-15 {
    padding-right: 15px !important;
  }

  .p-md-b-15 {
    padding-bottom: 15px !important;
  }

  .p-md-l-15 {
    padding-left: 15px !important;
  }

  .p-md-x-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .p-md-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  /* = */
  .p-md-a-20 {
    padding: 20px !important;
  }

  .p-md-t-20 {
    padding-top: 20px !important;
  }

  .p-md-r-20 {
    padding-right: 20px !important;
  }

  .p-md-b-20 {
    padding-bottom: 20px !important;
  }

  .p-md-l-20 {
    padding-left: 20px !important;
  }

  .p-md-x-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .p-md-y-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* = */
  .p-md-a-25 {
    padding: 25px !important;
  }

  .p-md-t-25 {
    padding-top: 25px !important;
  }

  .p-md-r-25 {
    padding-right: 25px !important;
  }

  .p-md-b-25 {
    padding-bottom: 25px !important;
  }

  .p-md-l-25 {
    padding-left: 25px !important;
  }

  .p-md-x-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .p-md-y-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  /* = */
  .p-md-a-30 {
    padding: 30px !important;
  }

  .p-md-t-30 {
    padding-top: 30px !important;
  }

  .p-md-r-30 {
    padding-right: 30px !important;
  }

  .p-md-b-30 {
    padding-bottom: 30px !important;
  }

  .p-md-l-30 {
    padding-left: 30px !important;
  }

  .p-md-x-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .p-md-y-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  /* = */
  .p-md-a-40 {
    padding: 40px !important;
  }

  .p-md-t-40 {
    padding-top: 40px !important;
  }

  .p-md-r-40 {
    padding-right: 40px !important;
  }

  .p-md-b-40 {
    padding-bottom: 40px !important;
  }

  .p-md-l-40 {
    padding-left: 40px !important;
  }

  .p-md-x-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .p-md-y-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* = */
  .p-md-a-45 {
    padding: 45px !important;
  }

  .p-md-t-45 {
    padding-top: 45px !important;
  }

  .p-md-r-45 {
    padding-right: 45px !important;
  }

  .p-md-b-45 {
    padding-bottom: 45px !important;
  }

  .p-md-l-45 {
    padding-left: 45px !important;
  }

  .p-md-x-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }

  .p-md-y-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  /* = */
  .p-md-a-50 {
    padding: 50px !important;
  }

  .p-md-t-50 {
    padding-top: 50px !important;
  }

  .p-md-r-50 {
    padding-right: 50px !important;
  }

  .p-md-b-50 {
    padding-bottom: 50px !important;
  }

  .p-md-l-50 {
    padding-left: 50px !important;
  }

  .p-md-x-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .p-md-y-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* = */
  .p-md-a-60 {
    padding: 60px !important;
  }

  .p-md-t-60 {
    padding-top: 60px !important;
  }

  .p-md-r-60 {
    padding-right: 60px !important;
  }

  .p-md-b-60 {
    padding-bottom: 60px !important;
  }

  .p-md-l-60 {
    padding-left: 60px !important;
  }

  .p-md-x-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .p-md-y-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

@media (min-width: 992px) {
  .p-lg-a-0 {
    padding: 0 !important;
  }

  .p-lg-t-0 {
    padding-top: 0 !important;
  }

  .p-lg-r-0 {
    padding-right: 0 !important;
  }

  .p-lg-b-0 {
    padding-bottom: 0 !important;
  }

  .p-lg-l-0 {
    padding-left: 0 !important;
  }

  .p-lg-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .p-lg-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* = */
  .p-lg-a-5 {
    padding: 5px !important;
  }

  .p-lg-t-5 {
    padding-top: 5px !important;
  }

  .p-lg-r-5 {
    padding-right: 5px !important;
  }

  .p-lg-b-5 {
    padding-bottom: 5px !important;
  }

  .p-lg-l-5 {
    padding-left: 5px !important;
  }

  .p-lg-x-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .p-lg-y-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  /* = */
  .p-lg-a-10 {
    padding: 10px !important;
  }

  .p-lg-t-10 {
    padding-top: 10px !important;
  }

  .p-lg-r-10 {
    padding-right: 10px !important;
  }

  .p-lg-b-10 {
    padding-bottom: 10px !important;
  }

  .p-lg-l-10 {
    padding-left: 10px !important;
  }

  .p-lg-x-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .p-lg-y-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  /* = */
  .p-lg-a-15 {
    padding: 15px !important;
  }

  .p-lg-t-15 {
    padding-top: 15px !important;
  }

  .p-lg-r-15 {
    padding-right: 15px !important;
  }

  .p-lg-b-15 {
    padding-bottom: 15px !important;
  }

  .p-lg-l-15 {
    padding-left: 15px !important;
  }

  .p-lg-x-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .p-lg-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  /* = */
  .p-lg-a-20 {
    padding: 20px !important;
  }

  .p-lg-t-20 {
    padding-top: 20px !important;
  }

  .p-lg-r-20 {
    padding-right: 20px !important;
  }

  .p-lg-b-20 {
    padding-bottom: 20px !important;
  }

  .p-lg-l-20 {
    padding-left: 20px !important;
  }

  .p-lg-x-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .p-lg-y-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* = */
  .p-lg-a-25 {
    padding: 25px !important;
  }

  .p-lg-t-25 {
    padding-top: 25px !important;
  }

  .p-lg-r-25 {
    padding-right: 25px !important;
  }

  .p-lg-b-25 {
    padding-bottom: 25px !important;
  }

  .p-lg-l-25 {
    padding-left: 25px !important;
  }

  .p-lg-x-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .p-lg-y-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  /* = */
  .p-lg-a-30 {
    padding: 30px !important;
  }

  .p-lg-t-30 {
    padding-top: 30px !important;
  }

  .p-lg-r-30 {
    padding-right: 30px !important;
  }

  .p-lg-b-30 {
    padding-bottom: 30px !important;
  }

  .p-lg-l-30 {
    padding-left: 30px !important;
  }

  .p-lg-x-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .p-lg-y-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  /* = */
  .p-lg-a-40 {
    padding: 40px !important;
  }

  .p-lg-t-40 {
    padding-top: 40px !important;
  }

  .p-lg-r-40 {
    padding-right: 40px !important;
  }

  .p-lg-b-40 {
    padding-bottom: 40px !important;
  }

  .p-lg-l-40 {
    padding-left: 40px !important;
  }

  .p-lg-x-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .p-lg-y-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* = */
  .p-lg-a-45 {
    padding: 45px !important;
  }

  .p-lg-t-45 {
    padding-top: 45px !important;
  }

  .p-lg-r-45 {
    padding-right: 45px !important;
  }

  .p-lg-b-45 {
    padding-bottom: 45px !important;
  }

  .p-lg-l-45 {
    padding-left: 45px !important;
  }

  .p-lg-x-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }

  .p-lg-y-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  /* = */
  .p-lg-a-50 {
    padding: 50px !important;
  }

  .p-lg-t-50 {
    padding-top: 50px !important;
  }

  .p-lg-r-50 {
    padding-right: 50px !important;
  }

  .p-lg-b-50 {
    padding-bottom: 50px !important;
  }

  .p-lg-l-50 {
    padding-left: 50px !important;
  }

  .p-lg-x-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .p-lg-y-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* = */
  .p-lg-a-60 {
    padding: 60px !important;
  }

  .p-lg-t-60 {
    padding-top: 60px !important;
  }

  .p-lg-r-60 {
    padding-right: 60px !important;
  }

  .p-lg-b-60 {
    padding-bottom: 60px !important;
  }

  .p-lg-l-60 {
    padding-left: 60px !important;
  }

  .p-lg-x-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .p-lg-y-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

@media (min-width: 1200px) {
  .p-xl-a-0 {
    padding: 0 !important;
  }

  .p-xl-t-0 {
    padding-top: 0 !important;
  }

  .p-xl-r-0 {
    padding-right: 0 !important;
  }

  .p-xl-b-0 {
    padding-bottom: 0 !important;
  }

  .p-xl-l-0 {
    padding-left: 0 !important;
  }

  .p-xl-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .p-xl-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* = */
  .p-xl-a-5 {
    padding: 5px !important;
  }

  .p-xl-t-5 {
    padding-top: 5px !important;
  }

  .p-xl-r-5 {
    padding-right: 5px !important;
  }

  .p-xl-b-5 {
    padding-bottom: 5px !important;
  }

  .p-xl-l-5 {
    padding-left: 5px !important;
  }

  .p-xl-x-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .p-xl-y-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  /* = */
  .p-xl-a-10 {
    padding: 10px !important;
  }

  .p-xl-t-10 {
    padding-top: 10px !important;
  }

  .p-xl-r-10 {
    padding-right: 10px !important;
  }

  .p-xl-b-10 {
    padding-bottom: 10px !important;
  }

  .p-xl-l-10 {
    padding-left: 10px !important;
  }

  .p-xl-x-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .p-xl-y-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  /* = */
  .p-xl-a-15 {
    padding: 15px !important;
  }

  .p-xl-t-15 {
    padding-top: 15px !important;
  }

  .p-xl-r-15 {
    padding-right: 15px !important;
  }

  .p-xl-b-15 {
    padding-bottom: 15px !important;
  }

  .p-xl-l-15 {
    padding-left: 15px !important;
  }

  .p-xl-x-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .p-xl-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  /* = */
  .p-xl-a-20 {
    padding: 20px !important;
  }

  .p-xl-t-20 {
    padding-top: 20px !important;
  }

  .p-xl-r-20 {
    padding-right: 20px !important;
  }

  .p-xl-b-20 {
    padding-bottom: 20px !important;
  }

  .p-xl-l-20 {
    padding-left: 20px !important;
  }

  .p-xl-x-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .p-xl-y-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* = */
  .p-xl-a-25 {
    padding: 25px !important;
  }

  .p-xl-t-25 {
    padding-top: 25px !important;
  }

  .p-xl-r-25 {
    padding-right: 25px !important;
  }

  .p-xl-b-25 {
    padding-bottom: 25px !important;
  }

  .p-xl-l-25 {
    padding-left: 25px !important;
  }

  .p-xl-x-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .p-xl-y-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  /* = */
  .p-xl-a-30 {
    padding: 30px !important;
  }

  .p-xl-t-30 {
    padding-top: 30px !important;
  }

  .p-xl-r-30 {
    padding-right: 30px !important;
  }

  .p-xl-b-30 {
    padding-bottom: 30px !important;
  }

  .p-xl-l-30 {
    padding-left: 30px !important;
  }

  .p-xl-x-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .p-xl-y-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  /* = */
  .p-xl-a-40 {
    padding: 40px !important;
  }

  .p-xl-t-40 {
    padding-top: 40px !important;
  }

  .p-xl-r-40 {
    padding-right: 40px !important;
  }

  .p-xl-b-40 {
    padding-bottom: 40px !important;
  }

  .p-xl-l-40 {
    padding-left: 40px !important;
  }

  .p-xl-x-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .p-xl-y-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* = */
  .p-xl-a-45 {
    padding: 45px !important;
  }

  .p-xl-t-45 {
    padding-top: 45px !important;
  }

  .p-xl-r-45 {
    padding-right: 45px !important;
  }

  .p-xl-b-45 {
    padding-bottom: 45px !important;
  }

  .p-xl-l-45 {
    padding-left: 45px !important;
  }

  .p-xl-x-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }

  .p-xl-y-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  /* = */
  .p-xl-a-50 {
    padding: 50px !important;
  }

  .p-xl-t-50 {
    padding-top: 50px !important;
  }

  .p-xl-r-50 {
    padding-right: 50px !important;
  }

  .p-xl-b-50 {
    padding-bottom: 50px !important;
  }

  .p-xl-l-50 {
    padding-left: 50px !important;
  }

  .p-xl-x-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .p-xl-y-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* = */
  .p-xl-a-60 {
    padding: 60px !important;
  }

  .p-xl-t-60 {
    padding-top: 60px !important;
  }

  .p-xl-r-60 {
    padding-right: 60px !important;
  }

  .p-xl-b-60 {
    padding-bottom: 60px !important;
  }

  .p-xl-l-60 {
    padding-left: 60px !important;
  }

  .p-xl-x-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .p-xl-y-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

/* Margin */
.m-a-0 {
  margin: 0 !important;
}

.m-t-0 {
  margin-top: 0 !important;
}

.m-r-0 {
  margin-right: 0 !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-l-0 {
  margin-left: 0 !important;
}

.m-x-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* = */
.m-a-5 {
  margin: 5px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-x-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.m-y-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

/* = */
.m-a-10 {
  margin: 10px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-x-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.m-y-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* = */
.m-a-15 {
  margin: 15px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-x-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.m-y-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

/* = */
.m-a-20 {
  margin: 20px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-x-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.m-y-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

/* = */
.m-a-25 {
  margin: 25px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.m-x-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.m-y-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

/* = */
.m-a-30 {
  margin: 30px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-x-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.m-y-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

/* = */
.m-a-40 {
  margin: 40px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.m-x-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.m-y-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

/* = */
.m-a-45 {
  margin: 45px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.m-x-45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

.m-y-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

/* = */
.m-a-50 {
  margin: 50px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.m-x-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.m-y-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

/* = */
.m-a-60 {
  margin: 60px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.m-r-60 {
  margin-right: 60px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.m-l-60 {
  margin-left: 60px !important;
}

.m-x-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.m-y-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

/* = */
.m-auto {
  margin: auto !important;
}

.m-t-auto,
.m-y-auto {
  margin-top: auto !important;
}

.m-r-auto,
.m-x-auto {
  margin-right: auto !important;
}

.m-b-auto,
.m-y-auto {
  margin-bottom: auto !important;
}

.m-l-auto,
.m-x-auto {
  margin-left: auto !important;
}

/* = */

@media (min-width: 576px) {
  .m-sm-a-0 {
    margin: 0 !important;
  }

  .m-sm-t-0 {
    margin-top: 0 !important;
  }

  .m-sm-r-0 {
    margin-right: 0 !important;
  }

  .m-sm-b-0 {
    margin-bottom: 0 !important;
  }

  .m-sm-l-0 {
    margin-left: 0 !important;
  }

  .m-sm-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .m-sm-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* = */
  .m-sm-a-5 {
    margin: 5px !important;
  }

  .m-sm-t-5 {
    margin-top: 5px !important;
  }

  .m-sm-r-5 {
    margin-right: 5px !important;
  }

  .m-sm-b-5 {
    margin-bottom: 5px !important;
  }

  .m-sm-l-5 {
    margin-left: 5px !important;
  }

  .m-sm-x-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }

  .m-sm-y-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  /* = */
  .m-sm-a-10 {
    margin: 10px !important;
  }

  .m-sm-t-10 {
    margin-top: 10px !important;
  }

  .m-sm-r-10 {
    margin-right: 10px !important;
  }

  .m-sm-b-10 {
    margin-bottom: 10px !important;
  }

  .m-sm-l-10 {
    margin-left: 10px !important;
  }

  .m-sm-x-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .m-sm-y-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  /* = */
  .m-sm-a-15 {
    margin: 15px !important;
  }

  .m-sm-t-15 {
    margin-top: 15px !important;
  }

  .m-sm-r-15 {
    margin-right: 15px !important;
  }

  .m-sm-b-15 {
    margin-bottom: 15px !important;
  }

  .m-sm-l-15 {
    margin-left: 15px !important;
  }

  .m-sm-x-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .m-sm-y-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  /* = */
  .m-sm-a-20 {
    margin: 20px !important;
  }

  .m-sm-t-20 {
    margin-top: 20px !important;
  }

  .m-sm-r-20 {
    margin-right: 20px !important;
  }

  .m-sm-b-20 {
    margin-bottom: 20px !important;
  }

  .m-sm-l-20 {
    margin-left: 20px !important;
  }

  .m-sm-x-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .m-sm-y-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  /* = */
  .m-sm-a-25 {
    margin: 25px !important;
  }

  .m-sm-t-25 {
    margin-top: 25px !important;
  }

  .m-sm-r-25 {
    margin-right: 25px !important;
  }

  .m-sm-b-25 {
    margin-bottom: 25px !important;
  }

  .m-sm-l-25 {
    margin-left: 25px !important;
  }

  .m-sm-x-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }

  .m-sm-y-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  /* = */
  .m-sm-a-30 {
    margin: 30px !important;
  }

  .m-sm-t-30 {
    margin-top: 30px !important;
  }

  .m-sm-r-30 {
    margin-right: 30px !important;
  }

  .m-sm-b-30 {
    margin-bottom: 30px !important;
  }

  .m-sm-l-30 {
    margin-left: 30px !important;
  }

  .m-sm-x-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .m-sm-y-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  /* = */
  .m-sm-a-40 {
    margin: 40px !important;
  }

  .m-sm-t-40 {
    margin-top: 40px !important;
  }

  .m-sm-r-40 {
    margin-right: 40px !important;
  }

  .m-sm-b-40 {
    margin-bottom: 40px !important;
  }

  .m-sm-l-40 {
    margin-left: 40px !important;
  }

  .m-sm-x-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .m-sm-y-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* = */
  .m-sm-a-45 {
    margin: 45px !important;
  }

  .m-sm-t-45 {
    margin-top: 45px !important;
  }

  .m-sm-r-45 {
    margin-right: 45px !important;
  }

  .m-sm-b-45 {
    margin-bottom: 45px !important;
  }

  .m-sm-l-45 {
    margin-left: 45px !important;
  }

  .m-sm-x-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }

  .m-sm-y-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  /* = */
  .m-sm-a-50 {
    margin: 50px !important;
  }

  .m-sm-t-50 {
    margin-top: 50px !important;
  }

  .m-sm-r-50 {
    margin-right: 50px !important;
  }

  .m-sm-b-50 {
    margin-bottom: 50px !important;
  }

  .m-sm-l-50 {
    margin-left: 50px !important;
  }

  .m-sm-x-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }

  .m-sm-y-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  /* = */
  .m-sm-a-60 {
    margin: 60px !important;
  }

  .m-sm-t-60 {
    margin-top: 60px !important;
  }

  .m-sm-r-60 {
    margin-right: 60px !important;
  }

  .m-sm-b-60 {
    margin-bottom: 60px !important;
  }

  .m-sm-l-60 {
    margin-left: 60px !important;
  }

  .m-sm-x-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }

  .m-sm-y-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  /* = */
  .m-sm-auto {
    margin: auto !important;
  }

  .m-sm-t-auto,
  .m-sm-y-auto {
    margin-top: auto !important;
  }

  .m-sm-r-auto,
  .m-sm-x-auto {
    margin-right: auto !important;
  }

  .m-sm-b-auto,
  .m-sm-y-auto {
    margin-bottom: auto !important;
  }

  .m-sm-l-auto,
  .m-sm-x-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-a-0 {
    margin: 0 !important;
  }

  .m-md-t-0 {
    margin-top: 0 !important;
  }

  .m-md-r-0 {
    margin-right: 0 !important;
  }

  .m-md-b-0 {
    margin-bottom: 0 !important;
  }

  .m-md-l-0 {
    margin-left: 0 !important;
  }

  .m-md-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .m-md-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* = */
  .m-md-a-5 {
    margin: 5px !important;
  }

  .m-md-t-5 {
    margin-top: 5px !important;
  }

  .m-md-r-5 {
    margin-right: 5px !important;
  }

  .m-md-b-5 {
    margin-bottom: 5px !important;
  }

  .m-md-l-5 {
    margin-left: 5px !important;
  }

  .m-md-x-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }

  .m-md-y-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  /* = */
  .m-md-a-10 {
    margin: 10px !important;
  }

  .m-md-t-10 {
    margin-top: 10px !important;
  }

  .m-md-r-10 {
    margin-right: 10px !important;
  }

  .m-md-b-10 {
    margin-bottom: 10px !important;
  }

  .m-md-l-10 {
    margin-left: 10px !important;
  }

  .m-md-x-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .m-md-y-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  /* = */
  .m-md-a-15 {
    margin: 15px !important;
  }

  .m-md-t-15 {
    margin-top: 15px !important;
  }

  .m-md-r-15 {
    margin-right: 15px !important;
  }

  .m-md-b-15 {
    margin-bottom: 15px !important;
  }

  .m-md-l-15 {
    margin-left: 15px !important;
  }

  .m-md-x-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .m-md-y-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  /* = */
  .m-md-a-20 {
    margin: 20px !important;
  }

  .m-md-t-20 {
    margin-top: 20px !important;
  }

  .m-md-r-20 {
    margin-right: 20px !important;
  }

  .m-md-b-20 {
    margin-bottom: 20px !important;
  }

  .m-md-l-20 {
    margin-left: 20px !important;
  }

  .m-md-x-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .m-md-y-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  /* = */
  .m-md-a-25 {
    margin: 25px !important;
  }

  .m-md-t-25 {
    margin-top: 25px !important;
  }

  .m-md-r-25 {
    margin-right: 25px !important;
  }

  .m-md-b-25 {
    margin-bottom: 25px !important;
  }

  .m-md-l-25 {
    margin-left: 25px !important;
  }

  .m-md-x-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }

  .m-md-y-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  /* = */
  .m-md-a-30 {
    margin: 30px !important;
  }

  .m-md-t-30 {
    margin-top: 30px !important;
  }

  .m-md-r-30 {
    margin-right: 30px !important;
  }

  .m-md-b-30 {
    margin-bottom: 30px !important;
  }

  .m-md-l-30 {
    margin-left: 30px !important;
  }

  .m-md-x-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .m-md-y-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  /* = */
  .m-md-a-40 {
    margin: 40px !important;
  }

  .m-md-t-40 {
    margin-top: 40px !important;
  }

  .m-md-r-40 {
    margin-right: 40px !important;
  }

  .m-md-b-40 {
    margin-bottom: 40px !important;
  }

  .m-md-l-40 {
    margin-left: 40px !important;
  }

  .m-md-x-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .m-md-y-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* = */
  .m-md-a-45 {
    margin: 45px !important;
  }

  .m-md-t-45 {
    margin-top: 45px !important;
  }

  .m-md-r-45 {
    margin-right: 45px !important;
  }

  .m-md-b-45 {
    margin-bottom: 45px !important;
  }

  .m-md-l-45 {
    margin-left: 45px !important;
  }

  .m-md-x-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }

  .m-md-y-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  /* = */
  .m-md-a-50 {
    margin: 50px !important;
  }

  .m-md-t-50 {
    margin-top: 50px !important;
  }

  .m-md-r-50 {
    margin-right: 50px !important;
  }

  .m-md-b-50 {
    margin-bottom: 50px !important;
  }

  .m-md-l-50 {
    margin-left: 50px !important;
  }

  .m-md-x-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }

  .m-md-y-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  /* = */
  .m-md-a-60 {
    margin: 60px !important;
  }

  .m-md-t-60 {
    margin-top: 60px !important;
  }

  .m-md-r-60 {
    margin-right: 60px !important;
  }

  .m-md-b-60 {
    margin-bottom: 60px !important;
  }

  .m-md-l-60 {
    margin-left: 60px !important;
  }

  .m-md-x-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }

  .m-md-y-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  /* = */
  .m-md-auto {
    margin: auto !important;
  }

  .m-md-t-auto,
  .m-md-y-auto {
    margin-top: auto !important;
  }

  .m-md-r-auto,
  .m-md-x-auto {
    margin-right: auto !important;
  }

  .m-md-b-auto,
  .m-md-y-auto {
    margin-bottom: auto !important;
  }

  .m-md-l-auto,
  .m-md-x-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-a-0 {
    margin: 0 !important;
  }

  .m-lg-t-0 {
    margin-top: 0 !important;
  }

  .m-lg-r-0 {
    margin-right: 0 !important;
  }

  .m-lg-b-0 {
    margin-bottom: 0 !important;
  }

  .m-lg-l-0 {
    margin-left: 0 !important;
  }

  .m-lg-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .m-lg-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* = */
  .m-lg-a-5 {
    margin: 5px !important;
  }

  .m-lg-t-5 {
    margin-top: 5px !important;
  }

  .m-lg-r-5 {
    margin-right: 5px !important;
  }

  .m-lg-b-5 {
    margin-bottom: 5px !important;
  }

  .m-lg-l-5 {
    margin-left: 5px !important;
  }

  .m-lg-x-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }

  .m-lg-y-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  /* = */
  .m-lg-a-10 {
    margin: 10px !important;
  }

  .m-lg-t-10 {
    margin-top: 10px !important;
  }

  .m-lg-r-10 {
    margin-right: 10px !important;
  }

  .m-lg-b-10 {
    margin-bottom: 10px !important;
  }

  .m-lg-l-10 {
    margin-left: 10px !important;
  }

  .m-lg-x-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .m-lg-y-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  /* = */
  .m-lg-a-15 {
    margin: 15px !important;
  }

  .m-lg-t-15 {
    margin-top: 15px !important;
  }

  .m-lg-r-15 {
    margin-right: 15px !important;
  }

  .m-lg-b-15 {
    margin-bottom: 15px !important;
  }

  .m-lg-l-15 {
    margin-left: 15px !important;
  }

  .m-lg-x-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .m-lg-y-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  /* = */
  .m-lg-a-20 {
    margin: 20px !important;
  }

  .m-lg-t-20 {
    margin-top: 20px !important;
  }

  .m-lg-r-20 {
    margin-right: 20px !important;
  }

  .m-lg-b-20 {
    margin-bottom: 20px !important;
  }

  .m-lg-l-20 {
    margin-left: 20px !important;
  }

  .m-lg-x-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .m-lg-y-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  /* = */
  .m-lg-a-25 {
    margin: 25px !important;
  }

  .m-lg-t-25 {
    margin-top: 25px !important;
  }

  .m-lg-r-25 {
    margin-right: 25px !important;
  }

  .m-lg-b-25 {
    margin-bottom: 25px !important;
  }

  .m-lg-l-25 {
    margin-left: 25px !important;
  }

  .m-lg-x-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }

  .m-lg-y-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  /* = */
  .m-lg-a-30 {
    margin: 30px !important;
  }

  .m-lg-t-30 {
    margin-top: 30px !important;
  }

  .m-lg-r-30 {
    margin-right: 30px !important;
  }

  .m-lg-b-30 {
    margin-bottom: 30px !important;
  }

  .m-lg-l-30 {
    margin-left: 30px !important;
  }

  .m-lg-x-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .m-lg-y-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  /* = */
  .m-lg-a-40 {
    margin: 40px !important;
  }

  .m-lg-t-40 {
    margin-top: 40px !important;
  }

  .m-lg-r-40 {
    margin-right: 40px !important;
  }

  .m-lg-b-40 {
    margin-bottom: 40px !important;
  }

  .m-lg-l-40 {
    margin-left: 40px !important;
  }

  .m-lg-x-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .m-lg-y-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }


  /* = */
  .m-lg-a-45 {
    margin: 45px !important;
  }

  .m-lg-t-45 {
    margin-top: 45px !important;
  }

  .m-lg-r-45 {
    margin-right: 45px !important;
  }

  .m-lg-b-45 {
    margin-bottom: 45px !important;
  }

  .m-lg-l-45 {
    margin-left: 45px !important;
  }

  .m-lg-x-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }

  .m-lg-y-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  /* = */
  .m-lg-a-50 {
    margin: 50px !important;
  }

  .m-lg-t-50 {
    margin-top: 50px !important;
  }

  .m-lg-r-50 {
    margin-right: 50px !important;
  }

  .m-lg-b-50 {
    margin-bottom: 50px !important;
  }

  .m-lg-l-50 {
    margin-left: 50px !important;
  }

  .m-lg-x-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }

  .m-lg-y-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  /* = */
  .m-lg-a-60 {
    margin: 60px !important;
  }

  .m-lg-t-60 {
    margin-top: 60px !important;
  }

  .m-lg-r-60 {
    margin-right: 60px !important;
  }

  .m-lg-b-60 {
    margin-bottom: 60px !important;
  }

  .m-lg-l-60 {
    margin-left: 60px !important;
  }

  .m-lg-x-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }

  .m-lg-y-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  /* = */
  .m-lg-auto {
    margin: auto !important;
  }

  .m-lg-t-auto,
  .m-lg-y-auto {
    margin-top: auto !important;
  }

  .m-lg-r-auto,
  .m-lg-x-auto {
    margin-right: auto !important;
  }

  .m-lg-b-auto,
  .m-lg-y-auto {
    margin-bottom: auto !important;
  }

  .m-lg-l-auto,
  .m-lg-x-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-a-0 {
    margin: 0 !important;
  }

  .m-xl-t-0 {
    margin-top: 0 !important;
  }

  .m-xl-r-0 {
    margin-right: 0 !important;
  }

  .m-xl-b-0 {
    margin-bottom: 0 !important;
  }

  .m-xl-l-0 {
    margin-left: 0 !important;
  }

  .m-xl-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .m-xl-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* = */
  .m-xl-a-5 {
    margin: 5px !important;
  }

  .m-xl-t-5 {
    margin-top: 5px !important;
  }

  .m-xl-r-5 {
    margin-right: 5px !important;
  }

  .m-xl-b-5 {
    margin-bottom: 5px !important;
  }

  .m-xl-l-5 {
    margin-left: 5px !important;
  }

  .m-xl-x-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }

  .m-xl-y-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  /* = */
  .m-xl-a-10 {
    margin: 10px !important;
  }

  .m-xl-t-10 {
    margin-top: 10px !important;
  }

  .m-xl-r-10 {
    margin-right: 10px !important;
  }

  .m-xl-b-10 {
    margin-bottom: 10px !important;
  }

  .m-xl-l-10 {
    margin-left: 10px !important;
  }

  .m-xl-x-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .m-xl-y-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  /* = */
  .m-xl-a-15 {
    margin: 15px !important;
  }

  .m-xl-t-15 {
    margin-top: 15px !important;
  }

  .m-xl-r-15 {
    margin-right: 15px !important;
  }

  .m-xl-b-15 {
    margin-bottom: 15px !important;
  }

  .m-xl-l-15 {
    margin-left: 15px !important;
  }

  .m-xl-x-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .m-xl-y-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  /* = */
  .m-xl-a-20 {
    margin: 20px !important;
  }

  .m-xl-t-20 {
    margin-top: 20px !important;
  }

  .m-xl-r-20 {
    margin-right: 20px !important;
  }

  .m-xl-b-20 {
    margin-bottom: 20px !important;
  }

  .m-xl-l-20 {
    margin-left: 20px !important;
  }

  .m-xl-x-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .m-xl-y-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  /* = */
  .m-xl-a-25 {
    margin: 25px !important;
  }

  .m-xl-t-25 {
    margin-top: 25px !important;
  }

  .m-xl-r-25 {
    margin-right: 25px !important;
  }

  .m-xl-b-25 {
    margin-bottom: 25px !important;
  }

  .m-xl-l-25 {
    margin-left: 25px !important;
  }

  .m-xl-x-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }

  .m-xl-y-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  /* = */
  .m-xl-a-30 {
    margin: 30px !important;
  }

  .m-xl-t-30 {
    margin-top: 30px !important;
  }

  .m-xl-r-30 {
    margin-right: 30px !important;
  }

  .m-xl-b-30 {
    margin-bottom: 30px !important;
  }

  .m-xl-l-30 {
    margin-left: 30px !important;
  }

  .m-xl-x-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .m-xl-y-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  /* = */
  .m-xl-a-40 {
    margin: 40px !important;
  }

  .m-xl-t-40 {
    margin-top: 40px !important;
  }

  .m-xl-r-40 {
    margin-right: 40px !important;
  }

  .m-xl-b-40 {
    margin-bottom: 40px !important;
  }

  .m-xl-l-40 {
    margin-left: 40px !important;
  }

  .m-xl-x-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .m-xl-y-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* = */
  .m-xl-a-45 {
    margin: 45px !important;
  }

  .m-xl-t-45 {
    margin-top: 45px !important;
  }

  .m-xl-r-45 {
    margin-right: 45px !important;
  }

  .m-xl-b-45 {
    margin-bottom: 45px !important;
  }

  .m-xl-l-45 {
    margin-left: 45px !important;
  }

  .m-xl-x-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }

  .m-xl-y-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  /* = */
  .m-xl-a-50 {
    margin: 50px !important;
  }

  .m-xl-t-50 {
    margin-top: 50px !important;
  }

  .m-xl-r-50 {
    margin-right: 50px !important;
  }

  .m-xl-b-50 {
    margin-bottom: 50px !important;
  }

  .m-xl-l-50 {
    margin-left: 50px !important;
  }

  .m-xl-x-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }

  .m-xl-y-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  /* = */
  .m-xl-a-60 {
    margin: 60px !important;
  }

  .m-xl-t-60 {
    margin-top: 60px !important;
  }

  .m-xl-r-60 {
    margin-right: 60px !important;
  }

  .m-xl-b-60 {
    margin-bottom: 60px !important;
  }

  .m-xl-l-60 {
    margin-left: 60px !important;
  }

  .m-xl-x-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }

  .m-xl-y-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  /* = */
  .m-xl-auto {
    margin: auto !important;
  }

  .m-xl-t-auto,
  .m-xl-y-auto {
    margin-top: auto !important;
  }

  .m-xl-r-auto,
  .m-xl-x-auto {
    margin-right: auto !important;
  }

  .m-xl-b-auto,
  .m-xl-y-auto {
    margin-bottom: auto !important;
  }

  .m-xl-l-auto,
  .m-xl-x-auto {
    margin-left: auto !important;
  }
}


/* Flex */
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

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

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

/* Hidden */
.hidden {
  display: none !important;
}
@media (max-width: 575px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hidden-xl-down {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
}

/* Flex grid */

.f-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.f-col-1, .f-col-2, .f-col-3, .f-col-4, .f-col-5, .f-col-6, .f-col-7, .f-col-8, .f-col-9, .f-col-10, .f-col-11, .f-col-12, .f-col,
.f-col-auto, .f-col-sm-1, .f-col-sm-2, .f-col-sm-3, .f-col-sm-4, .f-col-sm-5, .f-col-sm-6, .f-col-sm-7, .f-col-sm-8, .f-col-sm-9, .f-col-sm-10, .f-col-sm-11, .f-col-sm-12, .f-col-sm,
.f-col-sm-auto, .f-col-md-1, .f-col-md-2, .f-col-md-3, .f-col-md-4, .f-col-md-5, .f-col-md-6, .f-col-md-7, .f-col-md-8, .f-col-md-9, .f-col-md-10, .f-col-md-11, .f-col-md-12, .f-col-md,
.f-col-md-auto, .f-col-lg-1, .f-col-lg-2, .f-col-lg-3, .f-col-lg-4, .f-col-lg-5, .f-col-lg-6, .f-col-lg-7, .f-col-lg-8, .f-col-lg-9, .f-col-lg-10, .f-col-lg-11, .f-col-lg-12, .f-col-lg,
.f-col-lg-auto, .f-col-xl-1, .f-col-xl-2, .f-col-xl-3, .f-col-xl-4, .f-col-xl-5, .f-col-xl-6, .f-col-xl-7, .f-col-xl-8, .f-col-xl-9, .f-col-xl-10, .f-col-xl-11, .f-col-xl-12, .f-col-xl,
.f-col-xl-auto, .f-col-1-5, .f-col-sm-1-5, .f-col-md-1-5, .f-col-lg-1-5, .f-col-xl-1-5 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.f-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.f-col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.f-col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.f-col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.f-col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.f-col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.f-col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.f-col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.f-col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.f-col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.f-col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.f-col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.f-col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.f-col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.f-col-1-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

@media (min-width: 576px) {
  .f-col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .f-col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .f-col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .f-col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .f-col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .f-col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .f-col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .f-col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .f-col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .f-col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .f-col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .f-col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .f-col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .f-col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .f-col-sm-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 768px) {
  .f-col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .f-col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .f-col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .f-col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .f-col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .f-col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .f-col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .f-col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .f-col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .f-col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .f-col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .f-col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .f-col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .f-col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .f-col-md-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 992px) {
  .f-col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .f-col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .f-col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .f-col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .f-col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .f-col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .f-col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .f-col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .f-col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .f-col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .f-col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .f-col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .f-col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .f-col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .f-col-lg-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 1200px) {
  .f-col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .f-col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .f-col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .f-col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .f-col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .f-col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .f-col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .f-col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .f-col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .f-col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .f-col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .f-col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .f-col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .f-col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .f-col-xl-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Orders and offsets */

.f-order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.f-order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.f-order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.f-order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.f-order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.f-order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.f-order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.f-order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.f-order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.f-order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.f-order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.f-order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.f-order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.f-order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.f-order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.f-offset-1 {
  margin-left: 8.333333%;
}

.f-offset-2 {
  margin-left: 16.666667%;
}

.f-offset-3 {
  margin-left: 25%;
}

.f-offset-4 {
  margin-left: 33.333333%;
}

.f-offset-5 {
  margin-left: 41.666667%;
}

.f-offset-6 {
  margin-left: 50%;
}

.f-offset-7 {
  margin-left: 58.333333%;
}

.f-offset-8 {
  margin-left: 66.666667%;
}

.f-offset-9 {
  margin-left: 75%;
}

.f-offset-10 {
  margin-left: 83.333333%;
}

.f-offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .f-order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .f-order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .f-order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .f-order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .f-order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .f-order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .f-order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .f-order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .f-order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .f-order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .f-order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .f-order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .f-order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .f-order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .f-order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .f-offset-sm-0 {
    margin-left: 0;
  }
  .f-offset-sm-1 {
    margin-left: 8.333333%;
  }
  .f-offset-sm-2 {
    margin-left: 16.666667%;
  }
  .f-offset-sm-3 {
    margin-left: 25%;
  }
  .f-offset-sm-4 {
    margin-left: 33.333333%;
  }
  .f-offset-sm-5 {
    margin-left: 41.666667%;
  }
  .f-offset-sm-6 {
    margin-left: 50%;
  }
  .f-offset-sm-7 {
    margin-left: 58.333333%;
  }
  .f-offset-sm-8 {
    margin-left: 66.666667%;
  }
  .f-offset-sm-9 {
    margin-left: 75%;
  }
  .f-offset-sm-10 {
    margin-left: 83.333333%;
  }
  .f-offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .f-order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .f-order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .f-order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .f-order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .f-order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .f-order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .f-order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .f-order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .f-order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .f-order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .f-order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .f-order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .f-order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .f-order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .f-order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .f-offset-md-0 {
    margin-left: 0;
  }
  .f-offset-md-1 {
    margin-left: 8.333333%;
  }
  .f-offset-md-2 {
    margin-left: 16.666667%;
  }
  .f-offset-md-3 {
    margin-left: 25%;
  }
  .f-offset-md-4 {
    margin-left: 33.333333%;
  }
  .f-offset-md-5 {
    margin-left: 41.666667%;
  }
  .f-offset-md-6 {
    margin-left: 50%;
  }
  .f-offset-md-7 {
    margin-left: 58.333333%;
  }
  .f-offset-md-8 {
    margin-left: 66.666667%;
  }
  .f-offset-md-9 {
    margin-left: 75%;
  }
  .f-offset-md-10 {
    margin-left: 83.333333%;
  }
  .f-offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .f-order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .f-order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .f-order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .f-order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .f-order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .f-order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .f-order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .f-order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .f-order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .f-order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .f-order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .f-order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .f-order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .f-order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .f-order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .f-offset-lg-0 {
    margin-left: 0;
  }
  .f-offset-lg-1 {
    margin-left: 8.333333%;
  }
  .f-offset-lg-2 {
    margin-left: 16.666667%;
  }
  .f-offset-lg-3 {
    margin-left: 25%;
  }
  .f-offset-lg-4 {
    margin-left: 33.333333%;
  }
  .f-offset-lg-5 {
    margin-left: 41.666667%;
  }
  .f-offset-lg-6 {
    margin-left: 50%;
  }
  .f-offset-lg-7 {
    margin-left: 58.333333%;
  }
  .f-offset-lg-8 {
    margin-left: 66.666667%;
  }
  .f-offset-lg-9 {
    margin-left: 75%;
  }
  .f-offset-lg-10 {
    margin-left: 83.333333%;
  }
  .f-offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .f-order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .f-order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .f-order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .f-order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .f-order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .f-order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .f-order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .f-order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .f-order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .f-order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .f-order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .f-order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .f-order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .f-order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .f-order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .f-offset-xl-0 {
    margin-left: 0;
  }
  .f-offset-xl-1 {
    margin-left: 8.333333%;
  }
  .f-offset-xl-2 {
    margin-left: 16.666667%;
  }
  .f-offset-xl-3 {
    margin-left: 25%;
  }
  .f-offset-xl-4 {
    margin-left: 33.333333%;
  }
  .f-offset-xl-5 {
    margin-left: 41.666667%;
  }
  .f-offset-xl-6 {
    margin-left: 50%;
  }
  .f-offset-xl-7 {
    margin-left: 58.333333%;
  }
  .f-offset-xl-8 {
    margin-left: 66.666667%;
  }
  .f-offset-xl-9 {
    margin-left: 75%;
  }
  .f-offset-xl-10 {
    margin-left: 83.333333%;
  }
  .f-offset-xl-11 {
    margin-left: 91.666667%;
  }
}

/* No gutters */
.gutters-sm,
.gutters-sm .f-row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.gutters-sm [class^='f-col-'],
.gutters-sm [class*=" f-col-"] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.gutters-xs,
.gutters-xs .f-row {
  margin-left: -5px;
  margin-right: -5px;
}

.gutters-xs [class^='f-col-'],
.gutters-xs [class*=" f-col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.no-gutters,
.no-gutters .f-row {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters [class*="f-col-"],
.no-gutters [class*=" f-col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Flex Stretches */

.flex-static {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-grow-only {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* Flex image for IE */

.flex-img {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.flex-img > img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
}