/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

 /*bootstrap-4.0.0-alpha.6-dist*/

.position-relative {
    position: relative !important
  }
  
  .position-absolute {
    position: absolute !important
  }
  
  .position-fixed {
    position: fixed !important
  }
  
  .position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
  }
  
  .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-table-cell {
    display: table-cell !important;
  }
  
  .d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  
  .d-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  
  @media (min-width: 576px) {
    .d-sm-none {
      display: none !important;
    }
  
    .d-sm-inline {
      display: inline !important;
    }
  
    .d-sm-inline-block {
      display: inline-block !important;
    }
  
    .d-sm-block {
      display: block !important;
    }
  
    .d-sm-table {
      display: table !important;
    }
  
    .d-sm-table-cell {
      display: table-cell !important;
    }
  
    .d-sm-flex {
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
  
    .d-sm-inline-flex {
      display: -webkit-inline-box !important;
      display: -webkit-inline-flex !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 768px) {
    .d-md-none {
      display: none !important;
    }
  
    .d-md-inline {
      display: inline !important;
    }
  
    .d-md-inline-block {
      display: inline-block !important;
    }
  
    .d-md-block {
      display: block !important;
    }
  
    .d-md-table {
      display: table !important;
    }
  
    .d-md-table-cell {
      display: table-cell !important;
    }
  
    .d-md-flex {
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
  
    .d-md-inline-flex {
      display: -webkit-inline-box !important;
      display: -webkit-inline-flex !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 992px) {
    .d-lg-none {
      display: none !important;
    }
  
    .d-lg-inline {
      display: inline !important;
    }
  
    .d-lg-inline-block {
      display: inline-block !important;
    }
  
    .d-lg-block {
      display: block !important;
    }
  
    .d-lg-table {
      display: table !important;
    }
  
    .d-lg-table-cell {
      display: table-cell !important;
    }
  
    .d-lg-flex {
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
  
    .d-lg-inline-flex {
      display: -webkit-inline-box !important;
      display: -webkit-inline-flex !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 1200px) {
    .d-xl-none {
      display: none !important;
    }
  
    .d-xl-inline {
      display: inline !important;
    }
  
    .d-xl-inline-block {
      display: inline-block !important;
    }
  
    .d-xl-block {
      display: block !important;
    }
  
    .d-xl-table {
      display: table !important;
    }
  
    .d-xl-table-cell {
      display: table-cell !important;
    }
  
    .d-xl-flex {
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
  
    .d-xl-inline-flex {
      display: -webkit-inline-box !important;
      display: -webkit-inline-flex !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  .flex-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  
  .flex-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  
  .flex-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  
  .flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  
  .flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  
  .flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-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;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  
  .flex-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  
  .flex-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  
  .flex-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  
  .justify-content-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  
  .justify-content-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  
  .justify-content-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  
  .justify-content-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  
  .justify-content-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  
  .align-items-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  
  .align-items-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  
  .align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  
  .align-items-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  
  .align-items-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  
  .align-content-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  
  .align-content-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  
  .align-content-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  
  .align-content-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  
  .align-content-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  
  .align-content-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  
  .align-self-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }
  
  .align-self-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  
  .align-self-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  
  .align-self-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  
  .align-self-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  
  .align-self-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
  
  @media (min-width: 576px) {
    .flex-sm-first {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
      -ms-flex-order: -1;
      order: -1;
    }
  
    .flex-sm-last {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
    }
  
    .flex-sm-unordered {
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
    }
  
    .flex-sm-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
  
    .flex-sm-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
  
    .flex-sm-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -webkit-flex-direction: row-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;
      -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
  
    .flex-sm-wrap {
      -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
  
    .flex-sm-nowrap {
      -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
  
    .flex-sm-wrap-reverse {
      -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-sm-start {
      -webkit-box-pack: start !important;
      -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
  
    .justify-content-sm-end {
      -webkit-box-pack: end !important;
      -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
  
    .justify-content-sm-center {
      -webkit-box-pack: center !important;
      -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
  
    .justify-content-sm-between {
      -webkit-box-pack: justify !important;
      -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
  
    .justify-content-sm-around {
      -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
  
    .align-items-sm-start {
      -webkit-box-align: start !important;
      -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
  
    .align-items-sm-end {
      -webkit-box-align: end !important;
      -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
  
    .align-items-sm-center {
      -webkit-box-align: center !important;
      -webkit-align-items: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
  
    .align-items-sm-baseline {
      -webkit-box-align: baseline !important;
      -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
  
    .align-items-sm-stretch {
      -webkit-box-align: stretch !important;
      -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
  
    .align-content-sm-start {
      -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
  
    .align-content-sm-end {
      -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
  
    .align-content-sm-center {
      -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
  
    .align-content-sm-between {
      -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
  
    .align-content-sm-around {
      -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
  
    .align-content-sm-stretch {
      -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
  
    .align-self-sm-auto {
      -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
    }
  
    .align-self-sm-start {
      -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
  
    .align-self-sm-end {
      -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
  
    .align-self-sm-center {
      -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
    }
  
    .align-self-sm-baseline {
      -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
  
    .align-self-sm-stretch {
      -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 768px) {
    .flex-md-first {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
      -ms-flex-order: -1;
      order: -1;
    }
  
    .flex-md-last {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
    }
  
    .flex-md-unordered {
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
    }
  
    .flex-md-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
  
    .flex-md-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
  
    .flex-md-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -webkit-flex-direction: row-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;
      -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
  
    .flex-md-wrap {
      -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
  
    .flex-md-nowrap {
      -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
  
    .flex-md-wrap-reverse {
      -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-md-start {
      -webkit-box-pack: start !important;
      -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
  
    .justify-content-md-end {
      -webkit-box-pack: end !important;
      -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
  
    .justify-content-md-center {
      -webkit-box-pack: center !important;
      -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
  
    .justify-content-md-between {
      -webkit-box-pack: justify !important;
      -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
  
    .justify-content-md-around {
      -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
  
    .align-items-md-start {
      -webkit-box-align: start !important;
      -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
  
    .align-items-md-end {
      -webkit-box-align: end !important;
      -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
  
    .align-items-md-center {
      -webkit-box-align: center !important;
      -webkit-align-items: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
  
    .align-items-md-baseline {
      -webkit-box-align: baseline !important;
      -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
  
    .align-items-md-stretch {
      -webkit-box-align: stretch !important;
      -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
  
    .align-content-md-start {
      -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
  
    .align-content-md-end {
      -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
  
    .align-content-md-center {
      -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
  
    .align-content-md-between {
      -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
  
    .align-content-md-around {
      -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
  
    .align-content-md-stretch {
      -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
  
    .align-self-md-auto {
      -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
    }
  
    .align-self-md-start {
      -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
  
    .align-self-md-end {
      -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
  
    .align-self-md-center {
      -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
    }
  
    .align-self-md-baseline {
      -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
  
    .align-self-md-stretch {
      -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 992px) {
    .flex-lg-first {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
      -ms-flex-order: -1;
      order: -1;
    }
  
    .flex-lg-last {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
    }
  
    .flex-lg-unordered {
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
    }
  
    .flex-lg-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
  
    .flex-lg-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
  
    .flex-lg-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -webkit-flex-direction: row-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;
      -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
  
    .flex-lg-wrap {
      -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
  
    .flex-lg-nowrap {
      -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
  
    .flex-lg-wrap-reverse {
      -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-lg-start {
      -webkit-box-pack: start !important;
      -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
  
    .justify-content-lg-end {
      -webkit-box-pack: end !important;
      -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
  
    .justify-content-lg-center {
      -webkit-box-pack: center !important;
      -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
  
    .justify-content-lg-between {
      -webkit-box-pack: justify !important;
      -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
  
    .justify-content-lg-around {
      -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
  
    .align-items-lg-start {
      -webkit-box-align: start !important;
      -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
  
    .align-items-lg-end {
      -webkit-box-align: end !important;
      -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
  
    .align-items-lg-center {
      -webkit-box-align: center !important;
      -webkit-align-items: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
  
    .align-items-lg-baseline {
      -webkit-box-align: baseline !important;
      -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
  
    .align-items-lg-stretch {
      -webkit-box-align: stretch !important;
      -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
  
    .align-content-lg-start {
      -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
  
    .align-content-lg-end {
      -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
  
    .align-content-lg-center {
      -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
  
    .align-content-lg-between {
      -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
  
    .align-content-lg-around {
      -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
  
    .align-content-lg-stretch {
      -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
  
    .align-self-lg-auto {
      -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
    }
  
    .align-self-lg-start {
      -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
  
    .align-self-lg-end {
      -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
  
    .align-self-lg-center {
      -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
    }
  
    .align-self-lg-baseline {
      -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
  
    .align-self-lg-stretch {
      -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 1200px) {
    .flex-xl-first {
      -webkit-box-ordinal-group: 0;
      -webkit-order: -1;
      -ms-flex-order: -1;
      order: -1;
    }
  
    .flex-xl-last {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
    }
  
    .flex-xl-unordered {
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
    }
  
    .flex-xl-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
  
    .flex-xl-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
  
    .flex-xl-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -webkit-flex-direction: row-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;
      -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
  
    .flex-xl-wrap {
      -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
  
    .flex-xl-nowrap {
      -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
  
    .flex-xl-wrap-reverse {
      -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-xl-start {
      -webkit-box-pack: start !important;
      -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
  
    .justify-content-xl-end {
      -webkit-box-pack: end !important;
      -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
  
    .justify-content-xl-center {
      -webkit-box-pack: center !important;
      -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
  
    .justify-content-xl-between {
      -webkit-box-pack: justify !important;
      -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
  
    .justify-content-xl-around {
      -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
  
    .align-items-xl-start {
      -webkit-box-align: start !important;
      -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
  
    .align-items-xl-end {
      -webkit-box-align: end !important;
      -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
  
    .align-items-xl-center {
      -webkit-box-align: center !important;
      -webkit-align-items: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
  
    .align-items-xl-baseline {
      -webkit-box-align: baseline !important;
      -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
  
    .align-items-xl-stretch {
      -webkit-box-align: stretch !important;
      -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
  
    .align-content-xl-start {
      -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
  
    .align-content-xl-end {
      -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
  
    .align-content-xl-center {
      -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
  
    .align-content-xl-between {
      -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
  
    .align-content-xl-around {
      -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
  
    .align-content-xl-stretch {
      -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
  
    .align-self-xl-auto {
      -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
    }
  
    .align-self-xl-start {
      -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
  
    .align-self-xl-end {
      -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
  
    .align-self-xl-center {
      -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
    }
  
    .align-self-xl-baseline {
      -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
  
    .align-self-xl-stretch {
      -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  .text-justify {
    text-align: justify !important;
  }
  
  .text-nowrap {
    white-space: nowrap !important;
  }
  
  .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .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;
    }
  }
  
  .text-lowercase {
    text-transform: lowercase !important;
  }
  
  
  .text-capitalize {
    text-transform: capitalize !important;
  }
  
  .font-weight-normal {
    font-weight: normal;
  }
  
  .font-weight-bold {
    font-weight: bold;
  }
  
  .font-italic {
    font-style: italic;
  }
  
  .text-white {
    color: #fff !important;
  }
  
  .text-muted {
    color: #636c72 !important;
  }
  
  a.text-muted:focus,
  a.text-muted:hover {
    color: #4b5257 !important;
  }
  
  .text-primary {
    color: #0275d8 !important;
  }
  
  a.text-primary:focus,
  a.text-primary:hover {
    color: #025aa5 !important;
  }
  
  .text-success {
    color: #5cb85c !important;
  }
  
  a.text-success:focus,
  a.text-success:hover {
    color: #449d44 !important;
  }
  
  .text-info {
    color: #5bc0de !important;
  }
  
  a.text-info:focus,
  a.text-info:hover {
    color: #31b0d5 !important;
  }
  
  .text-warning {
    color: #f0ad4e !important;
  }
  
  a.text-warning:focus,
  a.text-warning:hover {
    color: #ec971f !important;
  }
  
  .text-danger {
    color: #d9534f !important;
  }
  
  a.text-danger:focus,
  a.text-danger:hover {
    color: #c9302c !important;
  }
  
  .text-gray-dark {
    color: #292b2c !important;
  }
  
  a.text-gray-dark:focus,
  a.text-gray-dark:hover {
    color: #101112 !important;
  }
  
  .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .invisible {
    visibility: hidden !important;
  }
  
  .w-25 {
    width: 25% !important;
  }
  
  .w-50 {
    width: 50% !important;
  }
  
  .w-75 {
    width: 75% !important;
  }
  
  .w-100 {
    width: 100% !important;
  }
  
  .h-25 {
    height: 25% !important;
  }
  
  .h-50 {
    height: 50% !important;
  }
  
  .h-75 {
    height: 75% !important;
  }
  
  .h-100 {
    height: 100% !important;
  }
  
  .mw-100 {
    max-width: 100% !important;
  }
  
  .mh-100 {
    max-height: 100% !important;
  }
  
  .m-0 {
    margin: 0 0 !important;
  }
  
  .mt-0 {
    margin-top: 0 !important;
  }
  
  .mr-0 {
    margin-right: 0 !important;
  }
  
  .mb-0 {
    margin-bottom: 0 !important;
  }
  
  .ml-0 {
    margin-left: 0 !important;
  }
  
  .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .m-1 {
    margin: 0.25rem 0.25rem !important;
  }
  
  .mt-1 {
    margin-top: 0.25rem !important;
  }
  
  .mr-1 {
    margin-right: 0.25rem !important;
  }
  
  .mb-1 {
    margin-bottom: 0.25rem !important;
  }
  
  .ml-1 {
    margin-left: 0.25rem !important;
  }
  
  .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  
  .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .m-2 {
    margin: 0.5rem 0.5rem !important;
  }
  
  .mt-2 {
    margin-top: 0.5rem !important;
  }
  
  .mr-2 {
    margin-right: 0.5rem !important;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  
  .ml-2 {
    margin-left: 0.5rem !important;
  }
  
  .mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  
  .my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .m-3 {
    margin: 1rem 1rem !important;
  }
  
  .mt-3 {
    margin-top: 1rem !important;
  }
  
  .mr-3 {
    margin-right: 1rem !important;
  }
  
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .ml-3 {
    margin-left: 1rem !important;
  }
  
  .mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  
  .my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .m-4 {
    margin: 1.5rem 1.5rem !important;
  }
  
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  
  .mr-4 {
    margin-right: 1.5rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .ml-4 {
    margin-left: 1.5rem !important;
  }
  
  .mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  
  .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .m-5 {
    margin: 3rem 3rem !important;
  }
  
  .mt-5 {
    margin-top: 3rem !important;
  }
  
  .mr-5 {
    margin-right: 3rem !important;
  }
  
  .mb-5 {
    margin-bottom: 3rem !important;
  }
  
  .ml-5 {
    margin-left: 3rem !important;
  }
  
  .mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  
  .p-0 {
    padding: 0 0 !important;
  }
  
  .pt-0 {
    padding-top: 0 !important;
  }
  
  .pr-0 {
    padding-right: 0 !important;
  }
  
  .pb-0 {
    padding-bottom: 0 !important;
  }
  
  .pl-0 {
    padding-left: 0 !important;
  }
  
  .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .p-1 {
    padding: 0.25rem 0.25rem !important;
  }
  
  .pt-1 {
    padding-top: 0.25rem !important;
  }
  
  .pr-1 {
    padding-right: 0.25rem !important;
  }
  
  .pb-1 {
    padding-bottom: 0.25rem !important;
  }
  
  .pl-1 {
    padding-left: 0.25rem !important;
  }
  
  .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  
  .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  
  .p-2 {
    padding: 0.5rem 0.5rem !important;
  }
  
  .pt-2 {
    padding-top: 0.5rem !important;
  }
  
  .pr-2 {
    padding-right: 0.5rem !important;
  }
  
  .pb-2 {
    padding-bottom: 0.5rem !important;
  }
  
  .pl-2 {
    padding-left: 0.5rem !important;
  }
  
  .px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  
  .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  .p-3 {
    padding: 1rem 1rem !important;
  }
  
  .pt-3 {
    padding-top: 1rem !important;
  }
  
  .pr-3 {
    padding-right: 1rem !important;
  }
  
  .pb-3 {
    padding-bottom: 1rem !important;
  }
  
  .pl-3 {
    padding-left: 1rem !important;
  }
  
  .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  
  .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  
  .p-4 {
    padding: 1.5rem 1.5rem !important;
  }
  
  .pt-4 {
    padding-top: 1.5rem !important;
  }
  
  .pr-4 {
    padding-right: 1.5rem !important;
  }
  
  .pb-4 {
    padding-bottom: 1.5rem !important;
  }
  
  .pl-4 {
    padding-left: 1.5rem !important;
  }
  
  .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .p-5 {
    padding: 3rem 3rem !important;
  }
  
  .pt-5 {
    padding-top: 3rem !important;
  }
  
  .pr-5 {
    padding-right: 3rem !important;
  }
  
  .pb-5 {
    padding-bottom: 3rem !important;
  }
  
  .pl-5 {
    padding-left: 3rem !important;
  }
  
  .px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .m-auto {
    margin: auto !important;
  }
  
  .mt-auto {
    margin-top: auto !important;
  }
  
  .mr-auto {
    margin-right: auto !important;
  }
  
  .mb-auto {
    margin-bottom: auto !important;
  }
  
  .ml-auto {
    margin-left: auto !important;
  }
  
  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  
  .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  
  @media (min-width: 576px) {
    .m-sm-0 {
      margin: 0 0 !important;
    }
  
    .mt-sm-0 {
      margin-top: 0 !important;
    }
  
    .mr-sm-0 {
      margin-right: 0 !important;
    }
  
    .mb-sm-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-sm-0 {
      margin-left: 0 !important;
    }
  
    .mx-sm-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .my-sm-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .m-sm-1 {
      margin: 0.25rem 0.25rem !important;
    }
  
    .mt-sm-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-sm-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-sm-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-sm-1 {
      margin-left: 0.25rem !important;
    }
  
    .mx-sm-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .my-sm-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .m-sm-2 {
      margin: 0.5rem 0.5rem !important;
    }
  
    .mt-sm-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-sm-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-sm-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-sm-2 {
      margin-left: 0.5rem !important;
    }
  
    .mx-sm-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .my-sm-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .m-sm-3 {
      margin: 1rem 1rem !important;
    }
  
    .mt-sm-3 {
      margin-top: 1rem !important;
    }
  
    .mr-sm-3 {
      margin-right: 1rem !important;
    }
  
    .mb-sm-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-sm-3 {
      margin-left: 1rem !important;
    }
  
    .mx-sm-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .my-sm-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .m-sm-4 {
      margin: 1.5rem 1.5rem !important;
    }
  
    .mt-sm-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-sm-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-sm-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-sm-4 {
      margin-left: 1.5rem !important;
    }
  
    .mx-sm-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .my-sm-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .m-sm-5 {
      margin: 3rem 3rem !important;
    }
  
    .mt-sm-5 {
      margin-top: 3rem !important;
    }
  
    .mr-sm-5 {
      margin-right: 3rem !important;
    }
  
    .mb-sm-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-sm-5 {
      margin-left: 3rem !important;
    }
  
    .mx-sm-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .my-sm-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .p-sm-0 {
      padding: 0 0 !important;
    }
  
    .pt-sm-0 {
      padding-top: 0 !important;
    }
  
    .pr-sm-0 {
      padding-right: 0 !important;
    }
  
    .pb-sm-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-sm-0 {
      padding-left: 0 !important;
    }
  
    .px-sm-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .py-sm-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .p-sm-1 {
      padding: 0.25rem 0.25rem !important;
    }
  
    .pt-sm-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-sm-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-sm-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-sm-1 {
      padding-left: 0.25rem !important;
    }
  
    .px-sm-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .py-sm-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .p-sm-2 {
      padding: 0.5rem 0.5rem !important;
    }
  
    .pt-sm-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-sm-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-sm-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-sm-2 {
      padding-left: 0.5rem !important;
    }
  
    .px-sm-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .py-sm-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .p-sm-3 {
      padding: 1rem 1rem !important;
    }
  
    .pt-sm-3 {
      padding-top: 1rem !important;
    }
  
    .pr-sm-3 {
      padding-right: 1rem !important;
    }
  
    .pb-sm-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-sm-3 {
      padding-left: 1rem !important;
    }
  
    .px-sm-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .py-sm-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .p-sm-4 {
      padding: 1.5rem 1.5rem !important;
    }
  
    .pt-sm-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-sm-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-sm-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-sm-4 {
      padding-left: 1.5rem !important;
    }
  
    .px-sm-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .py-sm-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .p-sm-5 {
      padding: 3rem 3rem !important;
    }
  
    .pt-sm-5 {
      padding-top: 3rem !important;
    }
  
    .pr-sm-5 {
      padding-right: 3rem !important;
    }
  
    .pb-sm-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-sm-5 {
      padding-left: 3rem !important;
    }
  
    .px-sm-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-sm-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .m-sm-auto {
      margin: auto !important;
    }
  
    .mt-sm-auto {
      margin-top: auto !important;
    }
  
    .mr-sm-auto {
      margin-right: auto !important;
    }
  
    .mb-sm-auto {
      margin-bottom: auto !important;
    }
  
    .ml-sm-auto {
      margin-left: auto !important;
    }
  
    .mx-sm-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-sm-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  }
  
  @media (min-width: 768px) {
    .m-md-0 {
      margin: 0 0 !important;
    }
  
    .mt-md-0 {
      margin-top: 0 !important;
    }
  
    .mr-md-0 {
      margin-right: 0 !important;
    }
  
    .mb-md-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-md-0 {
      margin-left: 0 !important;
    }
  
    .mx-md-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .my-md-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .m-md-1 {
      margin: 0.25rem 0.25rem !important;
    }
  
    .mt-md-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-md-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-md-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-md-1 {
      margin-left: 0.25rem !important;
    }
  
    .mx-md-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .my-md-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .m-md-2 {
      margin: 0.5rem 0.5rem !important;
    }
  
    .mt-md-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-md-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-md-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-md-2 {
      margin-left: 0.5rem !important;
    }
  
    .mx-md-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .my-md-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .m-md-3 {
      margin: 1rem 1rem !important;
    }
  
    .mt-md-3 {
      margin-top: 1rem !important;
    }
  
    .mr-md-3 {
      margin-right: 1rem !important;
    }
  
    .mb-md-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-md-3 {
      margin-left: 1rem !important;
    }
  
    .mx-md-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .my-md-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .m-md-4 {
      margin: 1.5rem 1.5rem !important;
    }
  
    .mt-md-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-md-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-md-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-md-4 {
      margin-left: 1.5rem !important;
    }
  
    .mx-md-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .my-md-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .m-md-5 {
      margin: 3rem 3rem !important;
    }
  
    .mt-md-5 {
      margin-top: 3rem !important;
    }
  
    .mr-md-5 {
      margin-right: 3rem !important;
    }
  
    .mb-md-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-md-5 {
      margin-left: 3rem !important;
    }
  
    .mx-md-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .my-md-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .p-md-0 {
      padding: 0 0 !important;
    }
  
    .pt-md-0 {
      padding-top: 0 !important;
    }
  
    .pr-md-0 {
      padding-right: 0 !important;
    }
  
    .pb-md-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-md-0 {
      padding-left: 0 !important;
    }
  
    .px-md-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .py-md-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .p-md-1 {
      padding: 0.25rem 0.25rem !important;
    }
  
    .pt-md-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-md-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-md-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-md-1 {
      padding-left: 0.25rem !important;
    }
  
    .px-md-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .py-md-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .p-md-2 {
      padding: 0.5rem 0.5rem !important;
    }
  
    .pt-md-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-md-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-md-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-md-2 {
      padding-left: 0.5rem !important;
    }
  
    .px-md-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .py-md-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .p-md-3 {
      padding: 1rem 1rem !important;
    }
  
    .pt-md-3 {
      padding-top: 1rem !important;
    }
  
    .pr-md-3 {
      padding-right: 1rem !important;
    }
  
    .pb-md-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-md-3 {
      padding-left: 1rem !important;
    }
  
    .px-md-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .py-md-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .p-md-4 {
      padding: 1.5rem 1.5rem !important;
    }
  
    .pt-md-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-md-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-md-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-md-4 {
      padding-left: 1.5rem !important;
    }
  
    .px-md-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .py-md-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .p-md-5 {
      padding: 3rem 3rem !important;
    }
  
    .pt-md-5 {
      padding-top: 3rem !important;
    }
  
    .pr-md-5 {
      padding-right: 3rem !important;
    }
  
    .pb-md-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-md-5 {
      padding-left: 3rem !important;
    }
  
    .px-md-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-md-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .m-md-auto {
      margin: auto !important;
    }
  
    .mt-md-auto {
      margin-top: auto !important;
    }
  
    .mr-md-auto {
      margin-right: auto !important;
    }
  
    .mb-md-auto {
      margin-bottom: auto !important;
    }
  
    .ml-md-auto {
      margin-left: auto !important;
    }
  
    .mx-md-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-md-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  }
  
  @media (min-width: 992px) {
    .m-lg-0 {
      margin: 0 0 !important;
    }
  
    .mt-lg-0 {
      margin-top: 0 !important;
    }
  
    .mr-lg-0 {
      margin-right: 0 !important;
    }
  
    .mb-lg-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-lg-0 {
      margin-left: 0 !important;
    }
  
    .mx-lg-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .my-lg-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .m-lg-1 {
      margin: 0.25rem 0.25rem !important;
    }
  
    .mt-lg-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-lg-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-lg-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-lg-1 {
      margin-left: 0.25rem !important;
    }
  
    .mx-lg-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .my-lg-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .m-lg-2 {
      margin: 0.5rem 0.5rem !important;
    }
  
    .mt-lg-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-lg-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-lg-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-lg-2 {
      margin-left: 0.5rem !important;
    }
  
    .mx-lg-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .my-lg-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .m-lg-3 {
      margin: 1rem 1rem !important;
    }
  
    .mt-lg-3 {
      margin-top: 1rem !important;
    }
  
    .mr-lg-3 {
      margin-right: 1rem !important;
    }
  
    .mb-lg-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-lg-3 {
      margin-left: 1rem !important;
    }
  
    .mx-lg-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .my-lg-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .m-lg-4 {
      margin: 1.5rem 1.5rem !important;
    }
  
    .mt-lg-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-lg-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-lg-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-lg-4 {
      margin-left: 1.5rem !important;
    }
  
    .mx-lg-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .my-lg-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .m-lg-5 {
      margin: 3rem 3rem !important;
    }
  
    .mt-lg-5 {
      margin-top: 3rem !important;
    }
  
    .mr-lg-5 {
      margin-right: 3rem !important;
    }
  
    .mb-lg-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-lg-5 {
      margin-left: 3rem !important;
    }
  
    .mx-lg-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .my-lg-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .p-lg-0 {
      padding: 0 0 !important;
    }
  
    .pt-lg-0 {
      padding-top: 0 !important;
    }
  
    .pr-lg-0 {
      padding-right: 0 !important;
    }
  
    .pb-lg-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-lg-0 {
      padding-left: 0 !important;
    }
  
    .px-lg-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .py-lg-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .p-lg-1 {
      padding: 0.25rem 0.25rem !important;
    }
  
    .pt-lg-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-lg-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-lg-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-lg-1 {
      padding-left: 0.25rem !important;
    }
  
    .px-lg-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .py-lg-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .p-lg-2 {
      padding: 0.5rem 0.5rem !important;
    }
  
    .pt-lg-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-lg-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-lg-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-lg-2 {
      padding-left: 0.5rem !important;
    }
  
    .px-lg-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .py-lg-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .p-lg-3 {
      padding: 1rem 1rem !important;
    }
  
    .pt-lg-3 {
      padding-top: 1rem !important;
    }
  
    .pr-lg-3 {
      padding-right: 1rem !important;
    }
  
    .pb-lg-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-lg-3 {
      padding-left: 1rem !important;
    }
  
    .px-lg-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .py-lg-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .p-lg-4 {
      padding: 1.5rem 1.5rem !important;
    }
  
    .pt-lg-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-lg-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-lg-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-lg-4 {
      padding-left: 1.5rem !important;
    }
  
    .px-lg-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .py-lg-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .p-lg-5 {
      padding: 3rem 3rem !important;
    }
  
    .pt-lg-5 {
      padding-top: 3rem !important;
    }
  
    .pr-lg-5 {
      padding-right: 3rem !important;
    }
  
    .pb-lg-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-lg-5 {
      padding-left: 3rem !important;
    }
  
    .px-lg-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-lg-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .m-lg-auto {
      margin: auto !important;
    }
  
    .mt-lg-auto {
      margin-top: auto !important;
    }
  
    .mr-lg-auto {
      margin-right: auto !important;
    }
  
    .mb-lg-auto {
      margin-bottom: auto !important;
    }
  
    .ml-lg-auto {
      margin-left: auto !important;
    }
  
    .mx-lg-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-lg-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  }
  
  @media (min-width: 1200px) {
    .m-xl-0 {
      margin: 0 0 !important;
    }
  
    .mt-xl-0 {
      margin-top: 0 !important;
    }
  
    .mr-xl-0 {
      margin-right: 0 !important;
    }
  
    .mb-xl-0 {
      margin-bottom: 0 !important;
    }
  
    .ml-xl-0 {
      margin-left: 0 !important;
    }
  
    .mx-xl-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .my-xl-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .m-xl-1 {
      margin: 0.25rem 0.25rem !important;
    }
  
    .mt-xl-1 {
      margin-top: 0.25rem !important;
    }
  
    .mr-xl-1 {
      margin-right: 0.25rem !important;
    }
  
    .mb-xl-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .ml-xl-1 {
      margin-left: 0.25rem !important;
    }
  
    .mx-xl-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .my-xl-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .m-xl-2 {
      margin: 0.5rem 0.5rem !important;
    }
  
    .mt-xl-2 {
      margin-top: 0.5rem !important;
    }
  
    .mr-xl-2 {
      margin-right: 0.5rem !important;
    }
  
    .mb-xl-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .ml-xl-2 {
      margin-left: 0.5rem !important;
    }
  
    .mx-xl-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .my-xl-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .m-xl-3 {
      margin: 1rem 1rem !important;
    }
  
    .mt-xl-3 {
      margin-top: 1rem !important;
    }
  
    .mr-xl-3 {
      margin-right: 1rem !important;
    }
  
    .mb-xl-3 {
      margin-bottom: 1rem !important;
    }
  
    .ml-xl-3 {
      margin-left: 1rem !important;
    }
  
    .mx-xl-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .my-xl-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .m-xl-4 {
      margin: 1.5rem 1.5rem !important;
    }
  
    .mt-xl-4 {
      margin-top: 1.5rem !important;
    }
  
    .mr-xl-4 {
      margin-right: 1.5rem !important;
    }
  
    .mb-xl-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .ml-xl-4 {
      margin-left: 1.5rem !important;
    }
  
    .mx-xl-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .my-xl-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .m-xl-5 {
      margin: 3rem 3rem !important;
    }
  
    .mt-xl-5 {
      margin-top: 3rem !important;
    }
  
    .mr-xl-5 {
      margin-right: 3rem !important;
    }
  
    .mb-xl-5 {
      margin-bottom: 3rem !important;
    }
  
    .ml-xl-5 {
      margin-left: 3rem !important;
    }
  
    .mx-xl-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .my-xl-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .p-xl-0 {
      padding: 0 0 !important;
    }
  
    .pt-xl-0 {
      padding-top: 0 !important;
    }
  
    .pr-xl-0 {
      padding-right: 0 !important;
    }
  
    .pb-xl-0 {
      padding-bottom: 0 !important;
    }
  
    .pl-xl-0 {
      padding-left: 0 !important;
    }
  
    .px-xl-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .py-xl-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .p-xl-1 {
      padding: 0.25rem 0.25rem !important;
    }
  
    .pt-xl-1 {
      padding-top: 0.25rem !important;
    }
  
    .pr-xl-1 {
      padding-right: 0.25rem !important;
    }
  
    .pb-xl-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pl-xl-1 {
      padding-left: 0.25rem !important;
    }
  
    .px-xl-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .py-xl-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .p-xl-2 {
      padding: 0.5rem 0.5rem !important;
    }
  
    .pt-xl-2 {
      padding-top: 0.5rem !important;
    }
  
    .pr-xl-2 {
      padding-right: 0.5rem !important;
    }
  
    .pb-xl-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pl-xl-2 {
      padding-left: 0.5rem !important;
    }
  
    .px-xl-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .py-xl-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .p-xl-3 {
      padding: 1rem 1rem !important;
    }
  
    .pt-xl-3 {
      padding-top: 1rem !important;
    }
  
    .pr-xl-3 {
      padding-right: 1rem !important;
    }
  
    .pb-xl-3 {
      padding-bottom: 1rem !important;
    }
  
    .pl-xl-3 {
      padding-left: 1rem !important;
    }
  
    .px-xl-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .py-xl-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .p-xl-4 {
      padding: 1.5rem 1.5rem !important;
    }
  
    .pt-xl-4 {
      padding-top: 1.5rem !important;
    }
  
    .pr-xl-4 {
      padding-right: 1.5rem !important;
    }
  
    .pb-xl-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pl-xl-4 {
      padding-left: 1.5rem !important;
    }
  
    .px-xl-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .py-xl-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .p-xl-5 {
      padding: 3rem 3rem !important;
    }
  
    .pt-xl-5 {
      padding-top: 3rem !important;
    }
  
    .pr-xl-5 {
      padding-right: 3rem !important;
    }
  
    .pb-xl-5 {
      padding-bottom: 3rem !important;
    }
  
    .pl-xl-5 {
      padding-left: 3rem !important;
    }
  
    .px-xl-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-xl-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .m-xl-auto {
      margin: auto !important;
    }
  
    .mt-xl-auto {
      margin-top: auto !important;
    }
  
    .mr-xl-auto {
      margin-right: auto !important;
    }
  
    .mb-xl-auto {
      margin-bottom: auto !important;
    }
  
    .ml-xl-auto {
      margin-left: auto !important;
    }
  
    .mx-xl-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-xl-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  }
/*fin bootstrap-4.0.0-alpha.6-dist*/

body{
  font-family:"Barlow";
  letter-spacing: 0.06em
}  

a, a::before, a::after, button, button::before, button::after, input[type="button"], input[type="submit"] {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a,
a:focus,
a:hover {
  color: #000
}

@media (min-width:1336px) {
  .container {
      width: 100%;
      max-width: 1204px
  }
}

@media (min-width:1600px) {
  .container {
      width: 100%;
      max-width: 1362px
  }
}

@media (min-width:1920px) {
.container {
    width: 100%;
    max-width: 1730px
}
}

.container-fluid {
  max-width: 1920px;
}

@font-face {
	font-family:"Barlow";
  src:url("../fonts/Barlow-Regular.ttf") format("truetype");
  font-weight:normal;font-style:normal;}
@font-face {
    font-family:"Novecento sans wide Book";
    src:url("../fonts/Novecento-sans-wide-Book.otf") format("truetype");
    font-weight:normal;font-style:normal;}
@font-face {
    font-family:"Novecento sans wide Medium";
    src:url("../fonts/Novecento-sans-wide-Medium.otf") format("truetype");
    font-weight:normal;font-style:normal;}
@font-face {
    font-family:"Novecento sans wide Light";
    src:url("../fonts/Novecento-sans-wide-Light.otf") format("truetype");
    font-weight:normal;font-style:normal;}
@font-face {
    font-family:"Majesti Banner Medium";
    src:url("../fonts/Majesti-Banner-Medium.otf") format("truetype");
    font-weight:normal;font-style:normal;
  }

/*************************************** HEADER **************************************************/

#header a:hover,
#header {
color: #000000
}

#header {
  background: url(../img/bg-header.jpg) repeat-y center top
}


#header .header-nav{
color: #763222; 
border-bottom: 0;
font-size: 14px;
font-family:"Novecento sans wide Medium";
}


#header .header-nav a{
  color: #763222;    
}
#header .header-nav .material-icons.expand-more {
  color: #763222
}

#header .header-nav {
    margin-bottom: 20px !important;
    max-height: 82px;
}


#header .header-nav i { 
  font-size: 25px;
  color: #763222       
}

/*ps_contactinfo*/
#_desktop_contact_link #contact-link {
  color: #3b2a60;
  font-size: 14px;
  text-transform: uppercase
}

/*ps_customersignin*/
#header .header-nav .user-info{
  text-transform: uppercase  
}

 /*ps_shoppingcart*/

#header .header-nav .blockcart {
  background: transparent;
  text-transform: uppercase;
}

#header .header-nav .cart-preview .shopping-cart,
#header .header-nav .shopping-cart {
  color: #763222;
  font-size: 20px;
  line-height: 20px
}

#_desktop_cart .cart-products-count {
 background: url(../img/bg-cart.png) no-repeat left top;
 padding: 0px 8px 5px 21px;
 display: block;
}


#header .header-top .right-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family:"Novecento sans wide Medium";
  color: #3b2a60;
  font-size: 14px
}
#header .header-top .right-top i {
  color: #763222;
  font-size: 16px;
  font-weight: 700
}

/*ps_searchbar*/
.header-top .search-widgets form input[type=text] {
  border: 1px solid #dedede;
  background-color: #dedede;
  border-radius: 25px;
  padding: 2px 0 5px 10px;
}
.header-top .search-widgets form button[type=submit] {
  color: #26295a;  
}

.header-top .search-widgets form button[type=submit] i{
  font-weight: 700;
}



@media (max-width: 767px) {
  #header .header-nav .top-logo {
    padding-bottom: 1rem;
    text-align: center;
          width: 43%;
    margin: auto;
  }

  #header .header-nav .top-logo a img {
    max-height: 74px;
  }

  #header .header-nav #menu-icon .material-icons {
    font-size: 40px;
}

  #header .header-top,
  #header.is-open, #header.is-open .header-top {
    background: transparent;
  }  
}
@media (min-width:768px) {
  #header .header-nav {
    margin-bottom:20px !important;
    max-height: 58px;
  }

  #header .header-top {
    padding-bottom:10px;
    padding-top:20px;
}

  #header .header-nav #_desktop_contact_link #contact-link,
  #header .header-nav .user-info {
    margin-top: 34px
  }
  #header .header-nav .blockcart {
    padding: 34px 0 .75rem;
  }

  #header .header-top {
    padding-bottom: 14px ;
    padding-top: 14px
  }

  #header .header-top .right-top {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
}





/*************************************** WRAPPER **************************************************/

#wrapper {  
  background: #fff
}

#index #wrapper {  
  background: #26295a
}

/*.section-1*/

.section-1 .section-1-img {
  margin-top: 38px;  
}

@media (min-width: 992px) {
.section-1 .section-1-content {
  padding-top: 14.896vw;
}
}

@media (min-width: 762px) {
.section-1 .section-1-content {
  padding-top: 10.896vw;
}
    }
@media (min-width: 762px) and (max-width: 990px) {
  .footer-reassurance #block-reassurance ul li .block-reassurance-item{
    height: 40px !important;   
  }
}
@media (min-width: 320px) and (max-width: 760px) {
.section-1 .section-1-content {
  padding-top: 10.896vw;
    margin: auto;
}
.footer-reassurance #block-reassurance ul li .block-reassurance-item{
  height: 40px !important;   
}
#footer .block-others p{
  text-align: center;
}
#footer .block-others a, #footer .block-others img{
  margin-left: 36%;
}


}
.section-1 .section-1-content p{
  color: white;
  font-family:"Majesti Banner Medium";
  font-size: 39.08px
}

.section-1 .section-1-content a span {
  font-family:"Novecento sans wide Medium";
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  padding: 20px 1.979vw;
  border: 2px solid white;
  border-radius: 35px;
  letter-spacing: 0.16em
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  font-family:"Majesti Banner Medium";
  font-weight: normal;  
}

h1,
.h1{
 
  font-size: 33px;
  text-transform: none;
  color: #252858;
  text-align: center
 
}

/* #index h1,
#index .h1 {
  color: black;
  
} */

h1::after,
.h1::after{
  content:"";
  display: block;
  width: 54px;
  height: 6px; 
  margin: 20px auto 40px;
  line-height: 0;
  background-color: #763222
}

/*ps_imageslider*/

.carousel {
  /* box-shadow: none;
  margin-bottom: 0; */
}

.carousel .carousel-inner {
  height: auto;
  margin-bottom: 0
}

.carousel figure {
  margin-bottom: 0
}

/*ps_featuredproducts*/

.featured-products {
  background: #ffffff url(../img/bg-featuredproducts.jpg) no-repeat center top;
  padding-top: 70px
 
}

.featured-products .h1 {
  font-size: 
}

#products .thumbnail-container .product-thumbnail img, .featured-products .thumbnail-container .product-thumbnail img, .product-accessories .thumbnail-container .product-thumbnail img, .product-miniature .thumbnail-container .product-thumbnail img{
  position: initial;
  border:2px solid #cacaca
}



#products .product-description,
.featured-products .product-description,
.product-accessories .product-description,
.product-miniature .product-description {
  width: 100%;
  max-width: 406px;
  height: 210px;
  position: initial;
  background-color: transparent;
  margin-bottom: 8px
}

/* .discount-percentage.discount-product,
.discount-amount.discount-product {
    top: 3% !important;
} */


#products .thumbnail-container:focus .product-description:after,
#products .thumbnail-container:hover .product-description:after,
.featured-products .thumbnail-container:focus .product-description:after,
.featured-products .thumbnail-container:hover .product-description:after,
.product-accessories .thumbnail-container:focus .product-description:after,
.product-accessories .thumbnail-container:hover .product-description:after,
.product-miniature .thumbnail-container:focus .product-description:after,
.product-miniature .thumbnail-container:hover .product-description:after {
  border-top: none
}

#products .product-miniature,
.featured-products .product-miniature,
.product-accessories .product-miniature,
.product-miniature .product-miniature {
  margin: 0;
  text-align: left
}

#products .thumbnail-container,
.featured-products .thumbnail-container,
.product-accessories .thumbnail-container,
.product-miniature .thumbnail-container {
    max-width: 406px;
    width: 100%;
    height: auto;
    text-align: left;
    background: transparent;
    box-shadow: none;
    display: inline-block
}

#products .product-title,
.featured-products .product-title,
.product-accessories .product-title,
.product-miniature .product-title {
  min-height: 95px;
  margin-top: 0;
  padding: 25px 0px 0;
  text-align: left;
  text-transform: uppercase
}

#products .product-title::after,
.featured-products .product-title::after,
.product-accessories .product-title::after,
.product-miniature .product-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 7px;
  margin: 20px 0;
  background-color: #26295a
} 

#product-description-short p{
    color: #261c1c;
    font-size: 16px;
    line-height: 22px;
    min-height: 43px;
}

#products .product-title a,
.featured-products .product-title a,
.product-accessories .product-title a,
.product-miniature .product-title a {
  font-size: 20px;
  color: #733729;
  font-weight: 400;
  font-family:"Majesti Banner Medium";
  
}

/* #products .product-title a:hover,
.featured-products .product-title a:hover,
.product-accessories .product-title a:hover,
.product-miniature .product-title a:hover{
    color: #27bcbd
}  */

#products .product-price-and-shipping, .featured-products .product-price-and-shipping, .product-accessories .product-price-and-shipping, .product-miniature .product-price-and-shipping{
    color: #26295a;
    font-size: 32.53px; 
    min-height: 43px;
    margin-bottom: 1rem;
    font-family:"Novecento sans wide Book";
    text-align: left;
    font-weight: 400
}

/* .lnk-cart{  padding: 13px 4.0625VW;  
            font-size: 12px; 
            line-height: 13px; 
            color: #90599c;  
            clear: both; 
            border: 1px solid #90599c;
            text-transform: uppercase;
            border-radius: 25px;
            background-color: transparent}
.lnk-cart:hover {background-color:#90599c; color: #fff; } */

.featured-products .all-product-link{color: #000000; font-size: 25.75px;font-family:"Barlow Condensed"; margin-bottom: 5rem  }
.featured-products .all-product-link span{border-bottom: 6px solid #03b7e5}

/*ps_customtext*/
#custom-text{
  text-align: left;  
 /* background: transparent url(../img/bg-customtext.jpg) no-repeat center top;*/
  background: #26295a;
  padding: 3.125rem 3.125rem 0; 
  margin-bottom: 0 ;
  background:  #26295a;
}


#custom-text h1,
#custom-text .text p {
  color: white
}

#custom-text .contenu {
  background-color: #26295a;
} 

#wrapper .breadcrumb {
  padding: .75rem 1rem;
}

/*ps_banner*/
#wrapper .banner {
  margin-bottom: 0

}

#main .page-footer {
  margin-bottom: 0
}

@media (max-width: 767px){
  
  #custom-text{
   padding: 3.125rem 15px;
   background-color: #26295a;
 }
}

@media (min-width: 768px) {
  #index #wrapper {  
    padding-top: 90px
  }

  #wrapper {  
    padding-top: 0px
  }

  .carousel {
    margin-bottom: 82px; 
  }

  .section-1 {
    background: url(../img/bg-section-1.png) no-repeat center top;
    min-height: 51.563vw;
    background-size: contain
  }
  .section-1 .section-1-img {
   margin-top: 78px; 
   margin-left: 5.104vw    
  }
  .section-1 .section-1-content p{
    font-size: 3.598vw
  }
 
  
  h1,
  .h1{
    font-size: 74.4px 
  }

  .featured-products .h1 {
    font-size: 61.93px
  }

  #custom-text{
    /*background: transparent url(../img/bg-customtext.jpg) no-repeat center top;*/
    padding: 2.646vw 0 0;
    background-size: cover;
    background:  #26295a;
     
  }

  #custom-text h1::after {
    margin: 1.563vw auto 4.167vw
  }
 

  
}
@media (min-width: 992px) {
  #custom-text .text p {
    font-size: 0.833vw
  }

  #custom-text{
   /* background: transparent url(../img/bg-customtext.jpg) no-repeat center top;*/
    padding: 2.646vw 0 0;
    min-height: 47.569vw;
   /* background-size: contain*/
   background:  #26295a;
     
  }

  #header .header-top {
    padding-bottom:10px;
    padding-top:40px;
}


}

@media (min-width: 1336px) {

  #custom-text .contenu {
    background-color: transparent;
    padding-top: 30px;
  }

}

/******************************************* FOOTER *************************************************/

#footer {
  padding-top: 0
}

/*ps_emailsubscription*/

.block_newsletter {
  background-color: #1c1e3a;
  margin-bottom: 0
} 
.block_newsletter .container>.row {
  min-height: 132px;  
} 

.block_newsletter p#block-newsletter-label {
  color: white;
  font-family:"Majesti Banner Medium";
  font-size: 37px;
  line-height: 27px
}

.block_newsletter p#block-newsletter-label span{
  font-family:"Novecento sans wide Book";
  text-transform: uppercase;
  color: white;
  font-size: 14px
}

.block_newsletter form input[type=email]{
  border: transparent
}

.block_newsletter form input.btn.btn-primary{
  background-color: #fff;
  color: #733729
}

/*.footer-container*/
.footer-container {
  box-shadow: none;
  background-color: #26295a;
  margin-top: 0
}
/*blockreassurance*/
.footer-reassurance{
 
  }
  .footer-reassurance #block-reassurance{
    margin-top: 0
  }
  .footer-reassurance #block-reassurance ul {display: flex; flex-wrap: wrap; justify-content: center;  /*border-bottom: 1px solid black; border-top: 1px solid black*//*background-color: #a9b94e;*/ margin-bottom: 0}
  .footer-reassurance #block-reassurance ul li {/*background-color:#a9b94e;*/ border-bottom: none}
  .footer-reassurance #block-reassurance ul li .block-reassurance-item{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 154px;   
    padding: 1rem 0.5rem;   
    width: 100%;
    margin-bottom: .5rem
  }
  .footer-reassurance #block-reassurance ul .block-reassurance-item .h6{ font-size: 14px; color: #fff; text-transform: uppercase; margin-bottom: 0; font-family:"Novecento sans wide Light"; font-weight: 400}
  /* .footer-reassurance #block-reassurance ul li.block-reassurance-item-1 .h6{line-height: 20px; width: 218px} */
  .footer-reassurance #block-reassurance img {   
    margin-right: 20px;
    width: auto;
  }

  #block_myaccount_infos .myaccount-title a,
  .footer-container .links .h3,
  .links p.h3 {
    color: #ffffff!important;
    /* text-transform: none; */
    font-weight: normal;
    margin-bottom: 1.25rem;
    font-family:"Majesti Banner Medium";
     
  }
  
  .footer-container li a {
    color: white;
    font-size: 14px;  
    font-family:"Novecento sans wide Book";
    padding-bottom: .325rem      
  }

  .footer-container li a.hvr-underline-from-left:before {
    background: #733729;
    height: 3px;
  }

  .footer-container li a:hover {
    color: white;

    /* border-bottom: 1px solid white */
  }

  .links .navbar-toggler i {
    color: #fff
  }

/*ps_contactinfo*/
.footer-container .block-contact {
  color: #fff;
  font-family:"Novecento sans wide Book";
  
}
.footer-container .block-contact p,
.footer-container .block-contact a{
  color: #fff;
}

.footer-container .block-contact i{
  color: #733729;
  font-size: 18px;
  padding-top: 3px
}

/*.block-others*/
.block-others i{
  font-size: 18px;
  padding-top: 3px;
  font-weight: 700
}

/*ps_linklist*/
.wrapper-2 {
  display: none
}

  
  #incomm{ background-color:#7c5147;color: #ffffff; padding: 1rem; margin: 0 }
  @media (min-width:768px) {

  .block_newsletter .h3, 
  #block_myaccount_infos .myaccount-title a,
  .footer-container .links .h3,
  .links p.h3 {
      font-size: 16px      
  }

  .footer-container .links {
   margin-bottom: 0.833vw;
   /* text-align: center; */
   min-height: 240px;
   text-align: center;
}
#block_myaccount_infos{
  width: 360px;
}
#footer .coord p:first-child{
  margin-left: 25% !important;
}
}

  @media (min-width:992px) {

    .footer-container .container>.row {
      
    }
    #block_myaccount_infos {
      width: 216px;
  } 


    .footer-container .links{    
      margin-bottom: 5.729vw;
      background: url(../img/tiret-1.jpg) no-repeat right top;
      min-height: 380px;
      padding: 0 2.604vw;   } 

    .footer-container #block_myaccount_infos.links {
        background: none
    } 

    .footer-reassurance #block-reassurance ul {   
      -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important; 
    }

    .footer-reassurance #block-reassurance ul li{width: 33%;}  
    .footer-reassurance #block-reassurance ul li .block-reassurance-item{
      padding: 1rem 0rem;
    }
    .footer-reassurance #block-reassurance ul li.block-reassurance-item-1 .block-reassurance-item {    
        justify-content: flex-start;       
    }
    .footer-reassurance #block-reassurance ul li.block-reassurance-item-3 .block-reassurance-item {    
        justify-content: flex-end;       
    }
    .block_newsletter .h3, 
    #block_myaccount_infos .myaccount-title a,
    .footer-container .links .h3,
    .links p.h3 {
       font-size: 13px      
   }  
    
  }

  @media (min-width: 1200px) {
    .block_newsletter .h3, 
     #block_myaccount_infos .myaccount-title a,
     .footer-container .links .h3,
     .links p.h3 {
         font-size: 16px     
     }
     /* .block_newsletter p{
        font-size: 0.833vw
   
     }
     .footer-container li a {
        font-size: 0.729vw;        
    } */
  
    /* .footer-container .links {
        min-height: 12.5vw;
  } */
   
  }
  