
/** bootstrap 3 to 4 flexbox and sizing polyfill*/

  .d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .flex-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important;
  }
  
  .flex-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important;
  }
  
  .flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
  }
  
  .flex-column-reverse {
    -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 {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important;
  }
  
  .justify-content-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important;
  }
  
  .justify-content-center {
    -ms-flex-pack: center !important;
        justify-content: center !important;
  }
  
  .justify-content-between {
    -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 {
    -ms-flex-align: start !important;
        align-items: flex-start !important;
  }
  
  .align-items-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important;
  }
  
  .align-items-center {
    -ms-flex-align: center !important;
        align-items: center !important;
  }
  
  .align-items-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important;
  }
  
  .align-items-stretch {
    -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 {
      -ms-flex-direction: row !important;
          flex-direction: row !important;
    }
    .flex-sm-column {
      -ms-flex-direction: column !important;
          flex-direction: column !important;
    }
    .flex-sm-row-reverse {
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
      -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 {
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
    }
    .justify-content-sm-end {
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
    }
    .justify-content-sm-center {
      -ms-flex-pack: center !important;
          justify-content: center !important;
    }
    .justify-content-sm-between {
      -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 {
      -ms-flex-align: start !important;
          align-items: flex-start !important;
    }
    .align-items-sm-end {
      -ms-flex-align: end !important;
          align-items: flex-end !important;
    }
    .align-items-sm-center {
      -ms-flex-align: center !important;
          align-items: center !important;
    }
    .align-items-sm-baseline {
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
    }
    .align-items-sm-stretch {
      -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 {
      -ms-flex-direction: row !important;
          flex-direction: row !important;
    }
    .flex-md-column {
      -ms-flex-direction: column !important;
          flex-direction: column !important;
    }
    .flex-md-row-reverse {
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
      -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 {
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
    }
    .justify-content-md-end {
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
    }
    .justify-content-md-center {
      -ms-flex-pack: center !important;
          justify-content: center !important;
    }
    .justify-content-md-between {
      -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 {
      -ms-flex-align: start !important;
          align-items: flex-start !important;
    }
    .align-items-md-end {
      -ms-flex-align: end !important;
          align-items: flex-end !important;
    }
    .align-items-md-center {
      -ms-flex-align: center !important;
          align-items: center !important;
    }
    .align-items-md-baseline {
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
    }
    .align-items-md-stretch {
      -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 {
      -ms-flex-direction: row !important;
          flex-direction: row !important;
    }
    .flex-lg-column {
      -ms-flex-direction: column !important;
          flex-direction: column !important;
    }
    .flex-lg-row-reverse {
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
      -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 {
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
    }
    .justify-content-lg-end {
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
    }
    .justify-content-lg-center {
      -ms-flex-pack: center !important;
          justify-content: center !important;
    }
    .justify-content-lg-between {
      -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 {
      -ms-flex-align: start !important;
          align-items: flex-start !important;
    }
    .align-items-lg-end {
      -ms-flex-align: end !important;
          align-items: flex-end !important;
    }
    .align-items-lg-center {
      -ms-flex-align: center !important;
          align-items: center !important;
    }
    .align-items-lg-baseline {
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
    }
    .align-items-lg-stretch {
      -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 {
      -ms-flex-direction: row !important;
          flex-direction: row !important;
    }
    .flex-xl-column {
      -ms-flex-direction: column !important;
          flex-direction: column !important;
    }
    .flex-xl-row-reverse {
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
      -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 {
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
    }
    .justify-content-xl-end {
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
    }
    .justify-content-xl-center {
      -ms-flex-pack: center !important;
          justify-content: center !important;
    }
    .justify-content-xl-between {
      -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 {
      -ms-flex-align: start !important;
          align-items: flex-start !important;
    }
    .align-items-xl-end {
      -ms-flex-align: end !important;
          align-items: flex-end !important;
    }
    .align-items-xl-center {
      -ms-flex-align: center !important;
          align-items: center !important;
    }
    .align-items-xl-baseline {
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
    }
    .align-items-xl-stretch {
      -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;
    }
  }
  
  .b4-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
  }
  

.position-absolute {
    position: absolute !important;
}
.position-relative {
    position: relative !important;
}
.b4-nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
.b4-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.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 !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 !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 !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 !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 !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 !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 !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 !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 !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 !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 !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 !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;
  }
  
  
.no-gutters > .b4-col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.b4-col-1, .b4-col-2, .b4-col-3, .b4-col-4, .b4-col-5, .b4-col-6, .b4-col-7, .b4-col-8, .b4-col-9, .b4-col-10, .b4-col-11, .b4-col-12, .b4-col,
.b4-col-auto, .b4-col-sm-1, .b4-col-sm-2, .b4-col-sm-3, .b4-col-sm-4, .b4-col-sm-5, .b4-col-sm-6, .b4-col-sm-7, .b4-col-sm-8, .b4-col-sm-9, .b4-col-sm-10, .b4-col-sm-11, .b4-col-sm-12, .b4-col-sm,
.b4-col-sm-auto, .b4-col-md-1, .b4-col-md-2, .b4-col-md-3, .b4-col-md-4, .b4-col-md-5, .b4-col-md-6, .b4-col-md-7, .b4-col-md-8, .b4-col-md-9, .b4-col-md-10, .b4-col-md-11, .b4-col-md-12, .b4-col-md,
.b4-col-md-auto, .b4-col-lg-1, .b4-col-lg-2, .b4-col-lg-3, .b4-col-lg-4, .b4-col-lg-5, .b4-col-lg-6, .b4-col-lg-7, .b4-col-lg-8, .b4-col-lg-9, .b4-col-lg-10, .b4-col-lg-11, .b4-col-lg-12, .b4-col-lg,
.b4-col-lg-auto, .b4-col-xl-1, .b4-col-xl-2, .b4-col-xl-3, .b4-col-xl-4, .b4-col-xl-5, .b4-col-xl-6, .b4-col-xl-7, .b4-col-xl-8, .b4-col-xl-9, .b4-col-xl-10, .b4-col-xl-11, .b4-col-xl-12, .b4-col-xl,
.b4-col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.b4-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}


.b4-col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
  }
  
  .b4-col-1 {
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
  }
  
  .b4-col-2 {
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
  }
  
  .b4-col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
  }
  
  .b4-col-4 {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
  }
  
  .b4-col-5 {
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
  }
  
  .b4-col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
  }
  
  .b4-col-7 {
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
  }
  
  .b4-col-8 {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
  }
  
  .b4-col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
  }
  
  .b4-col-10 {
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
  }
  
  .b4-col-11 {
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
  }
  
  .b4-col-12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
  }
  
@media (min-width: 576px) {
	.b4-col-sm {
	  -ms-flex-preferred-size: 0;
	  flex-basis: 0;
	  -ms-flex-positive: 1;
	  flex-grow: 1;
	  max-width: 100%;
	}
	.row-cols-sm-1 > * {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.row-cols-sm-2 > * {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.row-cols-sm-3 > * {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.row-cols-sm-4 > * {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.row-cols-sm-5 > * {
	  -ms-flex: 0 0 20%;
	  flex: 0 0 20%;
	  max-width: 20%;
	}
	.row-cols-sm-6 > * {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-sm-auto {
	  -ms-flex: 0 0 auto;
	  flex: 0 0 auto;
	  width: auto;
	  max-width: 100%;
	}
	.b4-col-sm-1 {
	  -ms-flex: 0 0 8.333333%;
	  flex: 0 0 8.333333%;
	  max-width: 8.333333%;
	}
	.b4-col-sm-2 {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-sm-3 {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.b4-col-sm-4 {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.b4-col-sm-5 {
	  -ms-flex: 0 0 41.666667%;
	  flex: 0 0 41.666667%;
	  max-width: 41.666667%;
	}
	.b4-col-sm-6 {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.b4-col-sm-7 {
	  -ms-flex: 0 0 58.333333%;
	  flex: 0 0 58.333333%;
	  max-width: 58.333333%;
	}
	.b4-col-sm-8 {
	  -ms-flex: 0 0 66.666667%;
	  flex: 0 0 66.666667%;
	  max-width: 66.666667%;
	}
	.b4-col-sm-9 {
	  -ms-flex: 0 0 75%;
	  flex: 0 0 75%;
	  max-width: 75%;
	}
	.b4-col-sm-10 {
	  -ms-flex: 0 0 83.333333%;
	  flex: 0 0 83.333333%;
	  max-width: 83.333333%;
	}
	.b4-col-sm-11 {
	  -ms-flex: 0 0 91.666667%;
	  flex: 0 0 91.666667%;
	  max-width: 91.666667%;
	}
	.b4-col-sm-12 {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.order-sm-first {
	  -ms-flex-order: -1;
	  order: -1;
	}
	.order-sm-last {
	  -ms-flex-order: 13;
	  order: 13;
	}
	.order-sm-0 {
	  -ms-flex-order: 0;
	  order: 0;
	}
	.order-sm-1 {
	  -ms-flex-order: 1;
	  order: 1;
	}
	.order-sm-2 {
	  -ms-flex-order: 2;
	  order: 2;
	}
	.order-sm-3 {
	  -ms-flex-order: 3;
	  order: 3;
	}
	.order-sm-4 {
	  -ms-flex-order: 4;
	  order: 4;
	}
	.order-sm-5 {
	  -ms-flex-order: 5;
	  order: 5;
	}
	.order-sm-6 {
	  -ms-flex-order: 6;
	  order: 6;
	}
	.order-sm-7 {
	  -ms-flex-order: 7;
	  order: 7;
	}
	.order-sm-8 {
	  -ms-flex-order: 8;
	  order: 8;
	}
	.order-sm-9 {
	  -ms-flex-order: 9;
	  order: 9;
	}
	.order-sm-10 {
	  -ms-flex-order: 10;
	  order: 10;
	}
	.order-sm-11 {
	  -ms-flex-order: 11;
	  order: 11;
	}
	.order-sm-12 {
	  -ms-flex-order: 12;
	  order: 12;
	}
	.offset-sm-0 {
	  margin-left: 0;
	}
	.offset-sm-1 {
	  margin-left: 8.333333%;
	}
	.offset-sm-2 {
	  margin-left: 16.666667%;
	}
	.offset-sm-3 {
	  margin-left: 25%;
	}
	.offset-sm-4 {
	  margin-left: 33.333333%;
	}
	.offset-sm-5 {
	  margin-left: 41.666667%;
	}
	.offset-sm-6 {
	  margin-left: 50%;
	}
	.offset-sm-7 {
	  margin-left: 58.333333%;
	}
	.offset-sm-8 {
	  margin-left: 66.666667%;
	}
	.offset-sm-9 {
	  margin-left: 75%;
	}
	.offset-sm-10 {
	  margin-left: 83.333333%;
	}
	.offset-sm-11 {
	  margin-left: 91.666667%;
	}
  }
  
  @media (min-width: 768px) {
	.b4-col-md {
	  -ms-flex-preferred-size: 0;
	  flex-basis: 0;
	  -ms-flex-positive: 1;
	  flex-grow: 1;
	  max-width: 100%;
	}
	.row-cols-md-1 > * {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.row-cols-md-2 > * {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.row-cols-md-3 > * {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.row-cols-md-4 > * {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.row-cols-md-5 > * {
	  -ms-flex: 0 0 20%;
	  flex: 0 0 20%;
	  max-width: 20%;
	}
	.row-cols-md-6 > * {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-md-auto {
	  -ms-flex: 0 0 auto;
	  flex: 0 0 auto;
	  width: auto;
	  max-width: 100%;
	}
	.b4-col-md-1 {
	  -ms-flex: 0 0 8.333333%;
	  flex: 0 0 8.333333%;
	  max-width: 8.333333%;
	}
	.b4-col-md-2 {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-md-3 {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.b4-col-md-4 {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.b4-col-md-5 {
	  -ms-flex: 0 0 41.666667%;
	  flex: 0 0 41.666667%;
	  max-width: 41.666667%;
	}
	.b4-col-md-6 {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.b4-col-md-7 {
	  -ms-flex: 0 0 58.333333%;
	  flex: 0 0 58.333333%;
	  max-width: 58.333333%;
	}
	.b4-col-md-8 {
	  -ms-flex: 0 0 66.666667%;
	  flex: 0 0 66.666667%;
	  max-width: 66.666667%;
	}
	.b4-col-md-9 {
	  -ms-flex: 0 0 75%;
	  flex: 0 0 75%;
	  max-width: 75%;
	}
	.b4-col-md-10 {
	  -ms-flex: 0 0 83.333333%;
	  flex: 0 0 83.333333%;
	  max-width: 83.333333%;
	}
	.b4-col-md-11 {
	  -ms-flex: 0 0 91.666667%;
	  flex: 0 0 91.666667%;
	  max-width: 91.666667%;
	}
	.b4-col-md-12 {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.order-md-first {
	  -ms-flex-order: -1;
	  order: -1;
	}
	.order-md-last {
	  -ms-flex-order: 13;
	  order: 13;
	}
	.order-md-0 {
	  -ms-flex-order: 0;
	  order: 0;
	}
	.order-md-1 {
	  -ms-flex-order: 1;
	  order: 1;
	}
	.order-md-2 {
	  -ms-flex-order: 2;
	  order: 2;
	}
	.order-md-3 {
	  -ms-flex-order: 3;
	  order: 3;
	}
	.order-md-4 {
	  -ms-flex-order: 4;
	  order: 4;
	}
	.order-md-5 {
	  -ms-flex-order: 5;
	  order: 5;
	}
	.order-md-6 {
	  -ms-flex-order: 6;
	  order: 6;
	}
	.order-md-7 {
	  -ms-flex-order: 7;
	  order: 7;
	}
	.order-md-8 {
	  -ms-flex-order: 8;
	  order: 8;
	}
	.order-md-9 {
	  -ms-flex-order: 9;
	  order: 9;
	}
	.order-md-10 {
	  -ms-flex-order: 10;
	  order: 10;
	}
	.order-md-11 {
	  -ms-flex-order: 11;
	  order: 11;
	}
	.order-md-12 {
	  -ms-flex-order: 12;
	  order: 12;
	}
	.offset-md-0 {
	  margin-left: 0;
	}
	.offset-md-1 {
	  margin-left: 8.333333%;
	}
	.offset-md-2 {
	  margin-left: 16.666667%;
	}
	.offset-md-3 {
	  margin-left: 25%;
	}
	.offset-md-4 {
	  margin-left: 33.333333%;
	}
	.offset-md-5 {
	  margin-left: 41.666667%;
	}
	.offset-md-6 {
	  margin-left: 50%;
	}
	.offset-md-7 {
	  margin-left: 58.333333%;
	}
	.offset-md-8 {
	  margin-left: 66.666667%;
	}
	.offset-md-9 {
	  margin-left: 75%;
	}
	.offset-md-10 {
	  margin-left: 83.333333%;
	}
	.offset-md-11 {
	  margin-left: 91.666667%;
	}
  }
  
  @media (min-width: 992px) {
	.b4-col-lg {
	  -ms-flex-preferred-size: 0;
	  flex-basis: 0;
	  -ms-flex-positive: 1;
	  flex-grow: 1;
	  max-width: 100%;
	}
	.row-cols-lg-1 > * {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.row-cols-lg-2 > * {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.row-cols-lg-3 > * {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.row-cols-lg-4 > * {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.row-cols-lg-5 > * {
	  -ms-flex: 0 0 20%;
	  flex: 0 0 20%;
	  max-width: 20%;
	}
	.row-cols-lg-6 > * {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-lg-auto {
	  -ms-flex: 0 0 auto;
	  flex: 0 0 auto;
	  width: auto;
	  max-width: 100%;
	}
	.b4-col-lg-1 {
	  -ms-flex: 0 0 8.333333%;
	  flex: 0 0 8.333333%;
	  max-width: 8.333333%;
	}
	.b4-col-lg-2 {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-lg-3 {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.b4-col-lg-4 {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.b4-col-lg-5 {
	  -ms-flex: 0 0 41.666667%;
	  flex: 0 0 41.666667%;
	  max-width: 41.666667%;
	}
	.b4-col-lg-6 {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.b4-col-lg-7 {
	  -ms-flex: 0 0 58.333333%;
	  flex: 0 0 58.333333%;
	  max-width: 58.333333%;
	}
	.b4-col-lg-8 {
	  -ms-flex: 0 0 66.666667%;
	  flex: 0 0 66.666667%;
	  max-width: 66.666667%;
	}
	.b4-col-lg-9 {
	  -ms-flex: 0 0 75%;
	  flex: 0 0 75%;
	  max-width: 75%;
	}
	.b4-col-lg-10 {
	  -ms-flex: 0 0 83.333333%;
	  flex: 0 0 83.333333%;
	  max-width: 83.333333%;
	}
	.b4-col-lg-11 {
	  -ms-flex: 0 0 91.666667%;
	  flex: 0 0 91.666667%;
	  max-width: 91.666667%;
	}
	.b4-col-lg-12 {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.order-lg-first {
	  -ms-flex-order: -1;
	  order: -1;
	}
	.order-lg-last {
	  -ms-flex-order: 13;
	  order: 13;
	}
	.order-lg-0 {
	  -ms-flex-order: 0;
	  order: 0;
	}
	.order-lg-1 {
	  -ms-flex-order: 1;
	  order: 1;
	}
	.order-lg-2 {
	  -ms-flex-order: 2;
	  order: 2;
	}
	.order-lg-3 {
	  -ms-flex-order: 3;
	  order: 3;
	}
	.order-lg-4 {
	  -ms-flex-order: 4;
	  order: 4;
	}
	.order-lg-5 {
	  -ms-flex-order: 5;
	  order: 5;
	}
	.order-lg-6 {
	  -ms-flex-order: 6;
	  order: 6;
	}
	.order-lg-7 {
	  -ms-flex-order: 7;
	  order: 7;
	}
	.order-lg-8 {
	  -ms-flex-order: 8;
	  order: 8;
	}
	.order-lg-9 {
	  -ms-flex-order: 9;
	  order: 9;
	}
	.order-lg-10 {
	  -ms-flex-order: 10;
	  order: 10;
	}
	.order-lg-11 {
	  -ms-flex-order: 11;
	  order: 11;
	}
	.order-lg-12 {
	  -ms-flex-order: 12;
	  order: 12;
	}
	.offset-lg-0 {
	  margin-left: 0;
	}
	.offset-lg-1 {
	  margin-left: 8.333333%;
	}
	.offset-lg-2 {
	  margin-left: 16.666667%;
	}
	.offset-lg-3 {
	  margin-left: 25%;
	}
	.offset-lg-4 {
	  margin-left: 33.333333%;
	}
	.offset-lg-5 {
	  margin-left: 41.666667%;
	}
	.offset-lg-6 {
	  margin-left: 50%;
	}
	.offset-lg-7 {
	  margin-left: 58.333333%;
	}
	.offset-lg-8 {
	  margin-left: 66.666667%;
	}
	.offset-lg-9 {
	  margin-left: 75%;
	}
	.offset-lg-10 {
	  margin-left: 83.333333%;
	}
	.offset-lg-11 {
	  margin-left: 91.666667%;
	}
  }
  
  @media (min-width: 1200px) {
	.b4-col-xl {
	  -ms-flex-preferred-size: 0;
	  flex-basis: 0;
	  -ms-flex-positive: 1;
	  flex-grow: 1;
	  max-width: 100%;
	}
	.row-cols-xl-1 > * {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.row-cols-xl-2 > * {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.row-cols-xl-3 > * {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.row-cols-xl-4 > * {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.row-cols-xl-5 > * {
	  -ms-flex: 0 0 20%;
	  flex: 0 0 20%;
	  max-width: 20%;
	}
	.row-cols-xl-6 > * {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-xl-auto {
	  -ms-flex: 0 0 auto;
	  flex: 0 0 auto;
	  width: auto;
	  max-width: 100%;
	}
	.b4-col-xl-1 {
	  -ms-flex: 0 0 8.333333%;
	  flex: 0 0 8.333333%;
	  max-width: 8.333333%;
	}
	.b4-col-xl-2 {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.b4-col-xl-3 {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.b4-col-xl-4 {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.b4-col-xl-5 {
	  -ms-flex: 0 0 41.666667%;
	  flex: 0 0 41.666667%;
	  max-width: 41.666667%;
	}
	.b4-col-xl-6 {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.b4-col-xl-7 {
	  -ms-flex: 0 0 58.333333%;
	  flex: 0 0 58.333333%;
	  max-width: 58.333333%;
	}
	.b4-col-xl-8 {
	  -ms-flex: 0 0 66.666667%;
	  flex: 0 0 66.666667%;
	  max-width: 66.666667%;
	}
	.b4-col-xl-9 {
	  -ms-flex: 0 0 75%;
	  flex: 0 0 75%;
	  max-width: 75%;
	}
	.b4-col-xl-10 {
	  -ms-flex: 0 0 83.333333%;
	  flex: 0 0 83.333333%;
	  max-width: 83.333333%;
	}
	.b4-col-xl-11 {
	  -ms-flex: 0 0 91.666667%;
	  flex: 0 0 91.666667%;
	  max-width: 91.666667%;
	}
	.b4-col-xl-12 {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.order-xl-first {
	  -ms-flex-order: -1;
	  order: -1;
	}
	.order-xl-last {
	  -ms-flex-order: 13;
	  order: 13;
	}
	.order-xl-0 {
	  -ms-flex-order: 0;
	  order: 0;
	}
	.order-xl-1 {
	  -ms-flex-order: 1;
	  order: 1;
	}
	.order-xl-2 {
	  -ms-flex-order: 2;
	  order: 2;
	}
	.order-xl-3 {
	  -ms-flex-order: 3;
	  order: 3;
	}
	.order-xl-4 {
	  -ms-flex-order: 4;
	  order: 4;
	}
	.order-xl-5 {
	  -ms-flex-order: 5;
	  order: 5;
	}
	.order-xl-6 {
	  -ms-flex-order: 6;
	  order: 6;
	}
	.order-xl-7 {
	  -ms-flex-order: 7;
	  order: 7;
	}
	.order-xl-8 {
	  -ms-flex-order: 8;
	  order: 8;
	}
	.order-xl-9 {
	  -ms-flex-order: 9;
	  order: 9;
	}
	.order-xl-10 {
	  -ms-flex-order: 10;
	  order: 10;
	}
	.order-xl-11 {
	  -ms-flex-order: 11;
	  order: 11;
	}
	.order-xl-12 {
	  -ms-flex-order: 12;
	  order: 12;
	}
	.offset-xl-0 {
	  margin-left: 0;
	}
	.offset-xl-1 {
	  margin-left: 8.333333%;
	}
	.offset-xl-2 {
	  margin-left: 16.666667%;
	}
	.offset-xl-3 {
	  margin-left: 25%;
	}
	.offset-xl-4 {
	  margin-left: 33.333333%;
	}
	.offset-xl-5 {
	  margin-left: 41.666667%;
	}
	.offset-xl-6 {
	  margin-left: 50%;
	}
	.offset-xl-7 {
	  margin-left: 58.333333%;
	}
	.offset-xl-8 {
	  margin-left: 66.666667%;
	}
	.offset-xl-9 {
	  margin-left: 75%;
	}
	.offset-xl-10 {
	  margin-left: 83.333333%;
	}
	.offset-xl-11 {
	  margin-left: 91.666667%;
	}
  }

  
.b4-btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  @media (prefers-reduced-motion: reduce) {
	.b4-btn {
	  transition: none;
	}
  }
  
  .b4-btn:hover {
	color: #212529;
	text-decoration: none;
  }
  
  .b4-btn:focus, .b4-btn.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .b4-btn.disabled, .b4-btn:disabled {
	opacity: 0.65;
  }
  
  .b4-btn:not(:disabled):not(.disabled) {
	cursor: pointer;
  }
  
  a.b4-btn.disabled,
  fieldset:disabled a.b4-btn {
	pointer-events: none;
  }
  
  .b4-btn-primary {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
  }
  
  .b4-btn-primary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
  }
  
  .b4-btn-primary:focus, .b4-btn-primary.focus {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  }
  
  .b4-btn-primary.disabled, .b4-btn-primary:disabled {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
  }
  
  .b4-btn-primary:not(:disabled):not(.disabled):active, .b4-btn-primary:not(:disabled):not(.disabled).active,
  .show > .b4-btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #0062cc;
	border-color: #005cbf;
  }
  
  .b4-btn-primary:not(:disabled):not(.disabled):active:focus, .b4-btn-primary:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  }
  
  .b4-btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
  }
  
  .b4-btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
  }
  
  .b4-btn-secondary:focus, .b4-btn-secondary.focus {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  }
  
  .b4-btn-secondary.disabled, .b4-btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
  }
  
  .b4-btn-secondary:not(:disabled):not(.disabled):active, .b4-btn-secondary:not(:disabled):not(.disabled).active,
  .show > .b4-btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #545b62;
	border-color: #4e555b;
  }
  
  .b4-btn-secondary:not(:disabled):not(.disabled):active:focus, .b4-btn-secondary:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  }
  
  .b4-btn-success {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
  }
  
  .b4-btn-success:hover {
	color: #fff;
	background-color: #218838;
	border-color: #1e7e34;
  }
  
  .b4-btn-success:focus, .b4-btn-success.focus {
	color: #fff;
	background-color: #218838;
	border-color: #1e7e34;
	box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  }
  
  .b4-btn-success.disabled, .b4-btn-success:disabled {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
  }
  
  .b4-btn-success:not(:disabled):not(.disabled):active, .b4-btn-success:not(:disabled):not(.disabled).active,
  .show > .b4-btn-success.dropdown-toggle {
	color: #fff;
	background-color: #1e7e34;
	border-color: #1c7430;
  }
  
  .b4-btn-success:not(:disabled):not(.disabled):active:focus, .b4-btn-success:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  }
  
  .b4-btn-info {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
  }
  
  .b4-btn-info:hover {
	color: #fff;
	background-color: #138496;
	border-color: #117a8b;
  }
  
  .b4-btn-info:focus, .b4-btn-info.focus {
	color: #fff;
	background-color: #138496;
	border-color: #117a8b;
	box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  }
  
  .b4-btn-info.disabled, .b4-btn-info:disabled {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
  }
  
  .b4-btn-info:not(:disabled):not(.disabled):active, .b4-btn-info:not(:disabled):not(.disabled).active,
  .show > .b4-btn-info.dropdown-toggle {
	color: #fff;
	background-color: #117a8b;
	border-color: #10707f;
  }
  
  .b4-btn-info:not(:disabled):not(.disabled):active:focus, .b4-btn-info:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  }
  
  .b4-btn-warning {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
  }
  
  .b4-btn-warning:hover {
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00;
  }
  
  .b4-btn-warning:focus, .b4-btn-warning.focus {
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00;
	box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  }
  
  .b4-btn-warning.disabled, .b4-btn-warning:disabled {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
  }
  
  .b4-btn-warning:not(:disabled):not(.disabled):active, .b4-btn-warning:not(:disabled):not(.disabled).active,
  .show > .b4-btn-warning.dropdown-toggle {
	color: #212529;
	background-color: #d39e00;
	border-color: #c69500;
  }
  
  .b4-btn-warning:not(:disabled):not(.disabled):active:focus, .b4-btn-warning:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  }
  
  .b4-btn-danger {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
  }
  
  .b4-btn-danger:hover {
	color: #fff;
	background-color: #c82333;
	border-color: #bd2130;
  }
  
  .b4-btn-danger:focus, .b4-btn-danger.focus {
	color: #fff;
	background-color: #c82333;
	border-color: #bd2130;
	box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  }
  
  .b4-btn-danger.disabled, .b4-btn-danger:disabled {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
  }
  
  .b4-btn-danger:not(:disabled):not(.disabled):active, .b4-btn-danger:not(:disabled):not(.disabled).active,
  .show > .b4-btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #bd2130;
	border-color: #b21f2d;
  }
  
  .b4-btn-danger:not(:disabled):not(.disabled):active:focus, .b4-btn-danger:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  }
  
  .b4-btn-light {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
  }
  
  .b4-btn-light:hover {
	color: #212529;
	background-color: #e2e6ea;
	border-color: #dae0e5;
  }
  
  .b4-btn-light:focus, .b4-btn-light.focus {
	color: #212529;
	background-color: #e2e6ea;
	border-color: #dae0e5;
	box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  }
  
  .b4-btn-light.disabled, .b4-btn-light:disabled {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
  }
  
  .b4-btn-light:not(:disabled):not(.disabled):active, .b4-btn-light:not(:disabled):not(.disabled).active,
  .show > .b4-btn-light.dropdown-toggle {
	color: #212529;
	background-color: #dae0e5;
	border-color: #d3d9df;
  }
  
  .b4-btn-light:not(:disabled):not(.disabled):active:focus, .b4-btn-light:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  }
  
  .b4-btn-dark {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
  }
  
  .b4-btn-dark:hover {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124;
  }
  
  .b4-btn-dark:focus, .b4-btn-dark.focus {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124;
	box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  }
  
  .b4-btn-dark.disabled, .b4-btn-dark:disabled {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
  }
  
  .b4-btn-dark:not(:disabled):not(.disabled):active, .b4-btn-dark:not(:disabled):not(.disabled).active,
  .show > .b4-btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #1d2124;
	border-color: #171a1d;
  }
  
  .b4-btn-dark:not(:disabled):not(.disabled):active:focus, .b4-btn-dark:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  }
  
  .b4-btn-outline-primary {
	color: #007bff;
	border-color: #007bff;
  }
  
  .b4-btn-outline-primary:hover {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
  }
  
  .b4-btn-outline-primary:focus, .b4-btn-outline-primary.focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  }
  
  .b4-btn-outline-primary.disabled, .b4-btn-outline-primary:disabled {
	color: #007bff;
	background-color: transparent;
  }
  
  .b4-btn-outline-primary:not(:disabled):not(.disabled):active, .b4-btn-outline-primary:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
  }
  
  .b4-btn-outline-primary:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  }
  
  .b4-btn-outline-secondary {
	color: #6c757d;
	border-color: #6c757d;
  }
  
  .b4-btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
  }
  
  .b4-btn-outline-secondary:focus, .b4-btn-outline-secondary.focus {
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  }
  
  .b4-btn-outline-secondary.disabled, .b4-btn-outline-secondary:disabled {
	color: #6c757d;
	background-color: transparent;
  }
  
  .b4-btn-outline-secondary:not(:disabled):not(.disabled):active, .b4-btn-outline-secondary:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-secondary.dropdown-toggle {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
  }
  
  .b4-btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  }
  
  .b4-btn-outline-success {
	color: #28a745;
	border-color: #28a745;
  }
  
  .b4-btn-outline-success:hover {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
  }
  
  .b4-btn-outline-success:focus, .b4-btn-outline-success.focus {
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  }
  
  .b4-btn-outline-success.disabled, .b4-btn-outline-success:disabled {
	color: #28a745;
	background-color: transparent;
  }
  
  .b4-btn-outline-success:not(:disabled):not(.disabled):active, .b4-btn-outline-success:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-success.dropdown-toggle {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
  }
  
  .b4-btn-outline-success:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-success:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  }
  
  .b4-btn-outline-info {
	color: #17a2b8;
	border-color: #17a2b8;
  }
  
  .b4-btn-outline-info:hover {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
  }
  
  .b4-btn-outline-info:focus, .b4-btn-outline-info.focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  }
  
  .b4-btn-outline-info.disabled, .b4-btn-outline-info:disabled {
	color: #17a2b8;
	background-color: transparent;
  }
  
  .b4-btn-outline-info:not(:disabled):not(.disabled):active, .b4-btn-outline-info:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-info.dropdown-toggle {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
  }
  
  .b4-btn-outline-info:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-info:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  }
  
  .b4-btn-outline-warning {
	color: #ffc107;
	border-color: #ffc107;
  }
  
  .b4-btn-outline-warning:hover {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
  }
  
  .b4-btn-outline-warning:focus, .b4-btn-outline-warning.focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  }
  
  .b4-btn-outline-warning.disabled, .b4-btn-outline-warning:disabled {
	color: #ffc107;
	background-color: transparent;
  }
  
  .b4-btn-outline-warning:not(:disabled):not(.disabled):active, .b4-btn-outline-warning:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-warning.dropdown-toggle {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
  }
  
  .b4-btn-outline-warning:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  }
  
  .b4-btn-outline-danger {
	color: #dc3545;
	border-color: #dc3545;
  }
  
  .b4-btn-outline-danger:hover {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
  }
  
  .b4-btn-outline-danger:focus, .b4-btn-outline-danger.focus {
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  }
  
  .b4-btn-outline-danger.disabled, .b4-btn-outline-danger:disabled {
	color: #dc3545;
	background-color: transparent;
  }
  
  .b4-btn-outline-danger:not(:disabled):not(.disabled):active, .b4-btn-outline-danger:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-danger.dropdown-toggle {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
  }
  
  .b4-btn-outline-danger:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  }
  
  .b4-btn-outline-light {
	color: #f8f9fa;
	border-color: #f8f9fa;
  }
  
  .b4-btn-outline-light:hover {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
  }
  
  .b4-btn-outline-light:focus, .b4-btn-outline-light.focus {
	box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  }
  
  .b4-btn-outline-light.disabled, .b4-btn-outline-light:disabled {
	color: #f8f9fa;
	background-color: transparent;
  }
  
  .b4-btn-outline-light:not(:disabled):not(.disabled):active, .b4-btn-outline-light:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-light.dropdown-toggle {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
  }
  
  .b4-btn-outline-light:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-light:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  }
  
  .b4-btn-outline-dark {
	color: #343a40;
	border-color: #343a40;
  }
  
  .b4-btn-outline-dark:hover {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
  }
  
  .b4-btn-outline-dark:focus, .b4-btn-outline-dark.focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  }
  
  .b4-btn-outline-dark.disabled, .b4-btn-outline-dark:disabled {
	color: #343a40;
	background-color: transparent;
  }
  
  .b4-btn-outline-dark:not(:disabled):not(.disabled):active, .b4-btn-outline-dark:not(:disabled):not(.disabled).active,
  .show > .b4-btn-outline-dark.dropdown-toggle {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
  }
  
  .b4-btn-outline-dark:not(:disabled):not(.disabled):active:focus, .b4-btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  .show > .b4-btn-outline-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  }
  
  .b4-btn-link {
	font-weight: 400;
	color: #007bff;
	text-decoration: none;
  }
  
  .b4-btn-link:hover {
	color: #0056b3;
	text-decoration: underline;
  }
  
  .b4-btn-link:focus, .b4-btn-link.focus {
	text-decoration: underline;
  }
  
  .b4-btn-link:disabled, .b4-btn-link.disabled {
	color: #6c757d;
	pointer-events: none;
  }
  
  .b4-btn-lg, .b4-btn-group-lg > .b4-btn {
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	line-height: 1.5;
	border-radius: 0.3rem;
  }
  
  .b4-btn-sm, .b4-btn-group-sm > .b4-btn {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0.2rem;
  }
  
  .b4-btn-block {
	display: block;
	width: 100%;
  }
  
  .b4-btn-block + .b4-btn-block {
	margin-top: 0.5rem;
  }
  
  input[type="submit"].b4-btn-block,
  input[type="reset"].b4-btn-block,
  input[type="button"].b4-btn-block {
	width: 100%;
  }
  .b4-btn .badge {
	position: relative;
	top: -1px;
  }
  
  
.b4-form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .b4-form-control {
      transition: none;
    }
  }
  
  .b4-form-control::-ms-expand {
	background-color: transparent;
	border: 0;
  }
  
  .b4-form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .b4-form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1;
  }
  
  .b4-form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 1;
  }
  
  .b4-form-control:-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
  }
  
  .b4-form-control::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
  }
  
  .b4-form-control::placeholder {
	color: #6c757d;
	opacity: 1;
  }
  
  .b4-form-control:disabled, .b4-form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
  }
  
  input[type="date"].b4-form-control,
  input[type="time"].b4-form-control,
  input[type="datetime-local"].b4-form-control,
  input[type="month"].b4-form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }
  
  select.b4-form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
  }
  
  select.b4-form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
  }
  
  .b4-form-control-file,
  .b4-form-control-range {
    display: block;
    width: 100%;
  }
  
  .b4-form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
  }
  
  .b4-form-control-plaintext.b4-form-control-sm, .b4-form-control-plaintext.b4-form-control-lg {
    padding-right: 0;
    padding-left: 0;
  }
  
  .b4-form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
  }
  
  .b4-form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
  }
  
  select.b4-form-control[size], select.b4-form-control[multiple] {
	  height: auto;
  }
  
  textarea.b4-form-control {
	  height: auto;
  }
  
  
  
  .was-validated .b4-form-control:valid, .b4-form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  
  .was-validated .b4-form-control:valid:focus, .b4-form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  }
  
  .was-validated select.b4-form-control:valid, select.b4-form-control.is-valid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center;
  }
  
  .was-validated textarea.b4-form-control:valid, textarea.b4-form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  }
  
  .text-uppercase {
      text-transform: uppercase;
  }
  .text-black {
      color: #000 !important;
  }
  .bg-white {
      background-color: #fff !important;
  }

  


  .no-outline-anywhere {
    box-shadow: none !important;
    /*border: none !important;*/
    outline: none !important;
}
.no-outline-anywhere:active {
    box-shadow: none !important;
    /*border: none !important;*/
    outline: none !important;
}
.no-outline-anywhere:hover {
    box-shadow: none !important;
   /* border: none !important;*/
    outline: none !important;
}
.no-outline-anywhere:focus {
    box-shadow: none !important;
    /*border: none !important;*/
    outline: none !important;
}

@font-face {
    font-family: 'Swis721 Cn BT';
    src: url('swis/swis721-cn-bt.woff') format('woff'),
            url('swis/swis721-cn-bt.woff2') format('woff'),
            url('swis/swis721-cn-bt.eot') format('woff');
    font-weight: normal;
    font-style: normal;
}
.swis721 {
    font-family: 'Swis721 Cn BT' !important;
}

@font-face {
    font-family: 'Franklin Gothic Medium Cond';
    src: url('frank/FranklinGothic-MediumCond.woff2') format('woff2'),
        url('frank/FranklinGothic-MediumCond.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.frank {
    font-family: 'Franklin Gothic Medium Cond' !important;
}
img.no-filters {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

@font-face {
    font-family: 'Swiss721BT-RomanCondensed';
    src: url('swis/Swiss721BT-RomanCondensed.woff') format('woff'),
            url('swis/Swiss721BT-RomanCondensed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Creighton';
    src: url('creighton/creightonreg-webfont.woff') format('woff'),
            url('creighton/creightonreg-webfont.woff2') format('woff2');
}

.creighton {
    font-family: 'Creighton' !important;
}

@font-face {
    font-family: 'swis';
    src: url('swis/swis.eot'), url('swis/swis.woff2') format('woff2'),
            url('swis/swis.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}
.swis {
    font-family: 'swis' !important;
}

@font-face {
    font-family: 'abadi_mt_condensed_lightRg';
    src: url('abadi/abadi_mt_condensed_light-webfont.woff2') format('woff2'),
         url('abadi/abadi_mt_condensed_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.abadi {
    font-family: 'abadi_mt_condensed_lightRg' !important;
}

@font-face {
    font-family: 'abadi_mt_condensedregular';
    src: url('abadi/abadi-mt-condensed-webfont.woff2') format('woff2'),
         url('abadi/abadi-mt-condensed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'amsiprocond-ultrauploadedfile';
    src: url('amsiprocond/amsiprocond-ultra-webfont.woff2') format('woff2'),
         url('amsiprocond/amsiprocond-ultra-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'akrobatbold';
    src: url('akrobat/akrobat-bold-webfont.woff2') format('woff2'),
         url('akrobat/akrobat-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal; 
}

@font-face {
    font-family: 'vogueplain';
    src: url('vogue/vogue_plain-webfont.woff2') format('woff2'),
         url('vogue/vogue_plain-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal; 
} 

.vogue {
    font-family: 'vogueplain' !important;
}

.akrobat-bold {
    font-family: 'akrobatbold' !important;
}

@font-face {
    font-family: 'akrobatregular';
    src: url('akrobat/akrobat-regular-webfont.woff2') format('woff2'),
         url('akrobat/akrobat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helvetica_condensedregular';
    src: url('helveticacondensed/helvetica-condensed-webfont.woff2') format('woff2'),
         url('helveticacondensed/helvetica-condensed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.helvetica-condensed {
    font-family: 'helvetica_condensedregular' !important;
}

.akrobat {
    font-family: 'akrobatregular' !important;
}
.amsi {
    font-family: 'amsiprocond-ultrauploadedfile' !important;
}
.abadi-regular {
    font-family: 'abadi_mt_condensedregular' !important;
}
  
@font-face {
    font-family: 'vagrounded_ltnormal';
    src: url('vagroln/vagroln-webfont.woff2') format('woff2'),
         url('vagroln/vagroln-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
.vagrounded {
    font-family: 'vagrounded_ltnormal' !important;
}
.bg-cover {
    background-position: center;background-size: cover;
}
.bg-contain {
    background-position: center;background-size: contain !important;
    background-repeat: no-repeat; 
}
 
.c333 {color: #333333;}
.c444 {color:#444444 !important;}
.b8b8 {color:#B8B8B8 !important;}
.c999 {color:#999999;}
.c666 {color:#666666 !important;}
.c777 {color:#777777;}
.cbaba {color:#BABABA;}

.f10 {font-size: 0.625rem;}
.f11 {font-size: 0.688rem;}
.f12 {font-size: 0.75rem;}
.f13 {font-size: 0.813rem;}
.f14 {font-size: 0.875rem;}
.f15 {font-size: 0.938rem;}
.f16 {font-size: 1rem;}
.f17 {font-size: 1.063rem;}
.f18 {font-size: 1.125rem;}
.f19 {font-size: 1.188rem;}
.f20 {font-size: 1.25rem;}
.f21 {font-size: 1.313rem;}
.f22 {font-size: 1.375rem;}
.f23 {font-size: 1.438rem;}
.f24 {font-size: 1.5rem;}
.f25 {font-size: 1.563rem;}
.f26 {font-size: 1.625rem;}
.f27 {font-size: 1.688rem;}
.f28 {font-size: 1.75rem;}
.f29 {font-size: 1.813rem;}
.f30 {font-size: 1.875rem;}
.f31 {font-size: 1.938rem;}
.f32 {font-size: 2rem;}
.f33 {font-size: 2.063rem;}
.f34 {font-size: 2.125rem;}
.f35 {font-size: 2.188rem;}
.f36 {font-size: 2.25rem;}
.f37 {font-size: 2.313rem;}
.f38 {font-size: 2.375rem;}
.f39 {font-size: 2.438rem;}
.f40 {font-size: 2.5rem;}
.f41 {font-size: 2.563rem;}
.f42 {font-size: 2.625rem;}
.f43 {font-size: 2.688rem;}
.f44 {font-size: 2.75rem;}
.f45 {font-size: 2.813rem;}
.f45 {font-size: 2.875rem;}
.f50 {font-size: 3.125rem;}
.f60 {font-size: 3.75rem;}
.f70 {font-size: 4.375rem;}
.f80 {font-size: 5rem;}
.f90 {font-size: 5.625rem;}
.f100 {font-size: 6.25rem;}
.f150 {font-size: 9.375rem;}

.f10-important { font-size: 0.625rem !important;}
.f11-important { font-size: 0.688rem !important;}
.f12-important { font-size: 0.75rem !important;}
.f13-important { font-size: 0.813rem !important;}
.f14-important { font-size: 0.875rem !important;}
.f15-important { font-size: 0.938rem !important;}
.f16-important { font-size: 1rem !important;}
.f17-important { font-size: 1.063rem !important;}
.f18-important { font-size: 1.125rem !important;}
.f19-important { font-size: 1.188rem !important;}
.f20-important { font-size: 1.25rem !important;}
.f21-important { font-size: 1.313rem !important;}
.f22-important { font-size: 1.375rem !important;}
.f23-important { font-size: 1.438rem !important;}
.f24-important { font-size: 1.5rem !important;}
.f25-important { font-size: 1.563rem !important;}
.f26-important { font-size: 1.625rem !important;}
.f27-important { font-size: 1.688rem !important;}
.f28-important { font-size: 1.75rem !important;}
.f29-important { font-size: 1.813rem !important;}
.f30-important { font-size: 1.875rem !important;}

.black {color: #000000;}
.arial {font-family: arial;}
.undecorated {
  text-decoration: none !important;
}
.bg-f8f8 {
  background-color: #f8f8f8 !important;
}
.bg-eee {
  background-color: #eee !important;
}
.cacac {color:#ACACAC !important;}
.c111 {color:#111111;}
.c1f1f {color:#1F1F1F;}
.arial {  font-family: Arial, Helvetica, sans-serif;}
.verdana {font-family: Verdana, Geneva, sans-serif;}
.segoe {font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;}
.tahoma {font-family: Tahoma, Geneva, Verdana, sans-serif;}
.geneva {font-family: Geneva, Verdana, sans-serif;}
.helvetica {font-family: Helvetica, Arial, sans-serif;}
.sans-serif {font-family: sans-serif;}
.condense1 {letter-spacing: -0.01em;}
.spaced0 {letter-spacing: 0em;}
.spaced1 {letter-spacing: 0.01em;}
.spaced2 {letter-spacing: 0.02em;} 
.spaced3 {letter-spacing: 0.03em;}
.spaced4 {letter-spacing: 0.04em;}
.spaced5 {letter-spacing: 0.05em;}
.line11 {line-height: 1.1em;}
.bold {font-weight: bold;}
.bolder {font-weight: bolder;}
.custom-bordered {    border:1px solid #EEEEEEaa;}
.img-contain {
  object-fit: contain;
  object-position: center;
}
.img-cover {
  object-fit: cover;
  object-position: center;
}
.c5252 {color:#525252 !important;}
.c5454 {color:#545454;}
.c777 {color:#777777;}
.botao-setinha { 
  width:26px; height: 26px;
  border:1px solid #D4D4D4;
  color:#777;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}/*
.botao-setinha .fa {
  
}*/
.flex-fill {
  -ms-flex: 1 1 auto!important;
  flex: 1 1 auto!important;
}
/* shadow when hover inside cartao-dealer class**/

.cartao-dealer:hover {
  -webkit-box-shadow: 0px 31px 42px -11px rgb(105 105 105 / 55%);
  box-shadow: 0px 31px 42px -11px rgb(105 105 105 / 55%);
}

.div-banner {
  overflow: hidden;
  padding: 0px !important;
}
.banner{
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}
.banner:hover{
  transform: scale(1.05);
}


.img-cover {
  object-fit:cover;
  object-position:center;
}
 