/* global variable */

:root {
  --reda_clr_primary: #1f407a;
  --reda_clr_light: #ffffff;
  --reda_clr_dark: #000000;
  --reda_clr_red: #ec2429;

  --reda_font: 16px;
}

/* colors */

.reda_clr_primary *,
.reda_clr_primary {
  color: var(--reda_clr_primary) !important;
}

.reda_clr_light *,
.reda_clr_light {
  color: var(--reda_clr_light) !important;
}

.reda_clr_dark *,
.reda_clr_dark {
  color: var(--reda_clr_dark) !important;
}

/* background */
.reda_bg_primary {
  background-color: var(--reda_clr_primary) !important;
}

.reda_bg_light {
  background-color: var(--reda_clr_light) !important;
}

/* BOOTSTRAP 4.6 */

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

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

.reda-position-absolute {
  position: absolute !important;
}

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

.reda-position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.reda-fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.reda-fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .reda-sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* display */

.reda-d-none {
  display: none !important;
}

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

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

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

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

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

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

.reda-d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .reda-d-sm-none {
    display: none !important;
  }
  .reda-d-sm-inline {
    display: inline !important;
  }
  .reda-d-sm-inline-block {
    display: inline-block !important;
  }
  .reda-d-sm-block {
    display: block !important;
  }
  .reda-d-sm-table {
    display: table !important;
  }
  .reda-d-sm-table-row {
    display: table-row !important;
  }
  .reda-d-sm-table-cell {
    display: table-cell !important;
  }
  .reda-d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .reda-d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .reda-d-md-none {
    display: none !important;
  }
  .reda-d-sm-inline {
    display: inline !important;
  }
  .reda-d-sm-inline-block {
    display: inline-block !important;
  }
  .reda-d-sm-block {
    display: block !important;
  }
  .reda-d-sm-table {
    display: table !important;
  }
  .reda-d-sm-table-row {
    display: table-row !important;
  }
  .reda-d-sm-table-cell {
    display: table-cell !important;
  }
  .reda-d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .reda-d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .reda-d-lg-none {
    display: none !important;
  }
  .reda-d-lg-inline {
    display: inline !important;
  }
  .reda-d-lg-inline-block {
    display: inline-block !important;
  }
  .reda-d-lg-block {
    display: block !important;
  }
  .reda-d-lg-table {
    display: table !important;
  }
  .reda-d-lg-table-row {
    display: table-row !important;
  }
  .reda-d-lg-table-cell {
    display: table-cell !important;
  }
  .reda-d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .reda-d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .reda-d-xl-none {
    display: none !important;
  }
  .reda-d-xl-inline {
    display: inline !important;
  }
  .reda-d-xl-inline-block {
    display: inline-block !important;
  }
  .reda-d-xl-block {
    display: block !important;
  }
  .reda-d-xl-table {
    display: table !important;
  }
  .reda-d-xl-table-row {
    display: table-row !important;
  }
  .reda-d-xl-table-cell {
    display: table-cell !important;
  }
  .reda-d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .reda-d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.reda-d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.reda-flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.reda-flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.reda-flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.reda-flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.reda-flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.reda-flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.reda-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.reda-flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.reda-flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.reda-flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.reda-flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.reda-flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.reda-justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.reda-justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.reda-justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.reda-justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.reda-justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.reda-align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.reda-align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.reda-align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.reda-align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.reda-align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.reda-align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.reda-align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.reda-align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.reda-align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.reda-align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.reda-align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.reda-align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.reda-align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.reda-align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.reda-align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.reda-align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.reda-align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .reda-flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .reda-flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .reda-flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .reda-flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .reda-flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .reda-flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .reda-flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .reda-flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .reda-flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .reda-flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .reda-flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .reda-flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .reda-justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .reda-justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .reda-justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .reda-justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .reda-justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .reda-align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .reda-align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .reda-align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .reda-align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .reda-align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .reda-align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .reda-align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .reda-align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .reda-align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .reda-align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .reda-align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .reda-align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .reda-align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .reda-align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .reda-align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .reda-align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .reda-align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .reda-flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .reda-flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .reda-flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .reda-flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .reda-flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .reda-flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .reda-flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .reda-flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .reda-flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .reda-flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .reda-flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .reda-flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .reda-justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .reda-justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .reda-justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .reda-justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .reda-justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .reda-align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .reda-align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .reda-align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .reda-align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .reda-align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .reda-align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .reda-align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .reda-align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .reda-align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .reda-align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .reda-align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .reda-align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .reda-align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .reda-align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .reda-align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .reda-align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .reda-align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .reda-flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .reda-flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .reda-flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .reda-flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .reda-flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .reda-flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .reda-flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .reda-flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .reda-flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .reda-flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .reda-flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .reda-flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .reda-justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .reda-justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .reda-justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .reda-justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .reda-justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .reda-align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .reda-align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .reda-align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .reda-align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .reda-align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .reda-align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .reda-align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .reda-align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .reda-align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .reda-align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .reda-align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .reda-align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .reda-align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .reda-align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .reda-align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .reda-align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .reda-align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .reda-flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .reda-flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .reda-flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .reda-flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .reda-flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .reda-flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .reda-flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .reda-flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .reda-flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .reda-flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .reda-flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .reda-flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .reda-justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .reda-justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .reda-justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .reda-justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .reda-justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .reda-align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .reda-align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .reda-align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .reda-align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .reda-align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .reda-align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .reda-align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .reda-align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .reda-align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .reda-align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .reda-align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .reda-align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .reda-align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .reda-align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .reda-align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .reda-align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .reda-align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.reda-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.reda-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.reda-no-gutters > .reda-col,
.reda-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.reda-col-1,
.reda-col-2,
.reda-col-3,
.reda-col-4,
.reda-col-5,
.reda-col-6,
.reda-col-7,
.reda-col-8,
.reda-col-9,
.reda-col-10,
.reda-col-11,
.reda-col-12,
.reda-col,
.reda-col-auto,
.reda-col-sm-1,
.reda-col-sm-2,
.reda-col-sm-3,
.reda-col-sm-4,
.reda-col-sm-5,
.reda-col-sm-6,
.reda-col-sm-7,
.reda-col-sm-8,
.reda-col-sm-9,
.reda-col-sm-10,
.reda-col-sm-11,
.reda-col-sm-12,
.reda-col-sm,
.reda-col-sm-auto,
.reda-col-md-1,
.reda-col-md-2,
.reda-col-md-3,
.reda-col-md-4,
.reda-col-md-5,
.reda-col-md-6,
.reda-col-md-7,
.reda-col-md-8,
.reda-col-md-9,
.reda-col-md-10,
.reda-col-md-11,
.reda-col-md-12,
.reda-col-md,
.reda-col-md-auto,
.reda-col-lg-1,
.reda-col-lg-2,
.reda-col-lg-3,
.reda-col-lg-4,
.reda-col-lg-5,
.reda-col-lg-6,
.reda-col-lg-7,
.reda-col-lg-8,
.reda-col-lg-9,
.reda-col-lg-10,
.reda-col-lg-11,
.reda-col-lg-12,
.reda-col-lg,
.reda-col-lg-auto,
.reda-col-xl-1,
.reda-col-xl-2,
.reda-col-xl-3,
.reda-col-xl-4,
.reda-col-xl-5,
.reda-col-xl-6,
.reda-col-xl-7,
.reda-col-xl-8,
.reda-col-xl-9,
.reda-col-xl-10,
.reda-col-xl-11,
.reda-col-xl-12,
.reda-col-xl,
.reda-col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.reda-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.reda-row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.reda-row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.reda-row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.reda-row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.reda-row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.reda-row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.reda-col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.reda-col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.reda-col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.reda-col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.reda-col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.reda-col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.reda-col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.reda-col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.reda-col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.reda-col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.reda-col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.reda-col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.reda-col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.reda-order-first {
  -ms-flex-order: -1;
  order: -1;
}

.reda-order-last {
  -ms-flex-order: 13;
  order: 13;
}

.reda-order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.reda-order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.reda-order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.reda-order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.reda-order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.reda-order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.reda-order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.reda-order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.reda-order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.reda-order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.reda-order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.reda-order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.reda-order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.reda-offset-1 {
  margin-left: 8.333333%;
}

.reda-offset-2 {
  margin-left: 16.666667%;
}

.reda-offset-3 {
  margin-left: 25%;
}

.reda-offset-4 {
  margin-left: 33.333333%;
}

.reda-offset-5 {
  margin-left: 41.666667%;
}

.reda-offset-6 {
  margin-left: 50%;
}

.reda-offset-7 {
  margin-left: 58.333333%;
}

.reda-offset-8 {
  margin-left: 66.666667%;
}

.reda-offset-9 {
  margin-left: 75%;
}

.reda-offset-10 {
  margin-left: 83.333333%;
}

.reda-offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .reda-col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .reda-row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .reda-row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .reda-col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .reda-col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .reda-col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .reda-col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .reda-col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .reda-col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .reda-col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .reda-col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .reda-order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .reda-order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .reda-order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .reda-order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .reda-order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .reda-order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .reda-order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .reda-order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .reda-order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .reda-order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .reda-order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .reda-order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .reda-order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .reda-order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .reda-offset-sm-0 {
    margin-left: 0;
  }
  .reda-offset-sm-1 {
    margin-left: 8.333333%;
  }
  .reda-offset-sm-2 {
    margin-left: 16.666667%;
  }
  .reda-offset-sm-3 {
    margin-left: 25%;
  }
  .reda-offset-sm-4 {
    margin-left: 33.333333%;
  }
  .reda-offset-sm-5 {
    margin-left: 41.666667%;
  }
  .reda-offset-sm-6 {
    margin-left: 50%;
  }
  .reda-offset-sm-7 {
    margin-left: 58.333333%;
  }
  .reda-offset-sm-8 {
    margin-left: 66.666667%;
  }
  .reda-offset-sm-9 {
    margin-left: 75%;
  }
  .reda-offset-sm-10 {
    margin-left: 83.333333%;
  }
  .reda-offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .reda-col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .reda-row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .reda-row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .reda-col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .reda-col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .reda-col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .reda-col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .reda-col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .reda-col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .reda-col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .reda-col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .reda-order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .reda-order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .reda-order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .reda-order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .reda-order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .reda-order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .reda-order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .reda-order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .reda-order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .reda-order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .reda-order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .reda-order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .reda-order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .reda-order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .reda-offset-md-0 {
    margin-left: 0;
  }
  .reda-offset-md-1 {
    margin-left: 8.333333%;
  }
  .reda-offset-md-2 {
    margin-left: 16.666667%;
  }
  .reda-offset-md-3 {
    margin-left: 25%;
  }
  .reda-offset-md-4 {
    margin-left: 33.333333%;
  }
  .reda-offset-md-5 {
    margin-left: 41.666667%;
  }
  .reda-offset-md-6 {
    margin-left: 50%;
  }
  .reda-offset-md-7 {
    margin-left: 58.333333%;
  }
  .reda-offset-md-8 {
    margin-left: 66.666667%;
  }
  .reda-offset-md-9 {
    margin-left: 75%;
  }
  .reda-offset-md-10 {
    margin-left: 83.333333%;
  }
  .reda-offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .reda-col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .reda-row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .reda-row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .reda-col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .reda-col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .reda-col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .reda-col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .reda-col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .reda-col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .reda-col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .reda-col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .reda-order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .reda-order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .reda-order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .reda-order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .reda-order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .reda-order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .reda-order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .reda-order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .reda-order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .reda-order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .reda-order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .reda-order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .reda-order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .reda-order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .reda-offset-lg-0 {
    margin-left: 0;
  }
  .reda-offset-lg-1 {
    margin-left: 8.333333%;
  }
  .reda-offset-lg-2 {
    margin-left: 16.666667%;
  }
  .reda-offset-lg-3 {
    margin-left: 25%;
  }
  .reda-offset-lg-4 {
    margin-left: 33.333333%;
  }
  .reda-offset-lg-5 {
    margin-left: 41.666667%;
  }
  .reda-offset-lg-6 {
    margin-left: 50%;
  }
  .reda-offset-lg-7 {
    margin-left: 58.333333%;
  }
  .reda-offset-lg-8 {
    margin-left: 66.666667%;
  }
  .reda-offset-lg-9 {
    margin-left: 75%;
  }
  .reda-offset-lg-10 {
    margin-left: 83.333333%;
  }
  .reda-offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .reda-col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .reda-row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .reda-row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .reda-col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .reda-col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .reda-col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .reda-col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .reda-col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .reda-col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .reda-col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .reda-col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .reda-col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .reda-col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .reda-col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .reda-col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reda-order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .reda-order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .reda-order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .reda-order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .reda-order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .reda-order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .reda-order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .reda-order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .reda-order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .reda-order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .reda-order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .reda-order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .reda-order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .reda-order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .reda-order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .reda-offset-xl-0 {
    margin-left: 0;
  }
  .reda-offset-xl-1 {
    margin-left: 8.333333%;
  }
  .reda-offset-xl-2 {
    margin-left: 16.666667%;
  }
  .reda-offset-xl-3 {
    margin-left: 25%;
  }
  .reda-offset-xl-4 {
    margin-left: 33.333333%;
  }
  .reda-offset-xl-5 {
    margin-left: 41.666667%;
  }
  .reda-offset-xl-6 {
    margin-left: 50%;
  }
  .reda-offset-xl-7 {
    margin-left: 58.333333%;
  }
  .reda-offset-xl-8 {
    margin-left: 66.666667%;
  }
  .reda-offset-xl-9 {
    margin-left: 75%;
  }
  .reda-offset-xl-10 {
    margin-left: 83.333333%;
  }
  .reda-offset-xl-11 {
    margin-left: 91.666667%;
  }
}

/* sizing */

.reda-w-25 {
  width: 25% !important;
}

.reda-w-50 {
  width: 50% !important;
}

.reda-w-75 {
  width: 75% !important;
}

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

.reda-w-auto {
  width: auto !important;
}

.reda-w-fit-content {
  width: fit-content !important;
}

.reda-h-25 {
  height: 25% !important;
}

.reda-h-50 {
  height: 50% !important;
}

.reda-h-75 {
  height: 75% !important;
}

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

.reda-h-auto {
  height: auto !important;
}

.reda-container,
.reda-container-fluid,
.reda-container-sm,
.reda-container-md,
.reda-container-lg,
.reda-container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .reda-container,
  .reda-container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .reda-container,
  .reda-container-sm,
  .reda-container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .reda-container,
  .reda-container-sm,
  .reda-container-md,
  .reda-container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .reda-container,
  .reda-container-sm,
  .reda-container-md,
  .reda-container-lg,
  .reda-container-xl {
    max-width: 1140px;
  }
}

/* background */

.reda-bg-transparent {
  background-color: transparent !important;
}

/* border  */

.reda-border-0 {
  border: 0 !important;
}

.reda-border-top-0 {
  border-top: 0 !important;
}

.reda-border-right-0 {
  border-right: 0 !important;
}

.reda-border-bottom-0 {
  border-bottom: 0 !important;
}

.reda-border-left-0 {
  border-left: 0 !important;
}

/* spacing */

.reda-mw-100 {
  max-width: 100% !important;
}

.reda-mh-100 {
  max-height: 100% !important;
}

.reda-min-vw-100 {
  min-width: 100vw !important;
}

.reda-min-vh-100 {
  min-height: 100vh !important;
}

.reda-vw-100 {
  width: 100vw !important;
}

.reda-vh-100 {
  height: 100vh !important;
}

.reda-m-0 {
  margin: 0 !important;
}

.reda-mt-0,
.reda-my-0 {
  margin-top: 0 !important;
}

.reda-mr-0,
.reda-mx-0 {
  margin-right: 0 !important;
}

.reda-mb-0,
.reda-my-0 {
  margin-bottom: 0 !important;
}

.reda-ml-0,
.reda-mx-0 {
  margin-left: 0 !important;
}

.reda-m-1 {
  margin: 0.25rem !important;
}

.reda-mt-1,
.reda-my-1 {
  margin-top: 0.25rem !important;
}

.reda-mr-1,
.reda-mx-1 {
  margin-right: 0.25rem !important;
}

.reda-mb-1,
.reda-my-1 {
  margin-bottom: 0.25rem !important;
}

.reda-ml-1,
.reda-mx-1 {
  margin-left: 0.25rem !important;
}

.reda-m-2 {
  margin: 0.5rem !important;
}

.reda-mt-2,
.reda-my-2 {
  margin-top: 0.5rem !important;
}

.reda-mr-2,
.reda-mx-2 {
  margin-right: 0.5rem !important;
}

.reda-mb-2,
.reda-my-2 {
  margin-bottom: 0.5rem !important;
}

.reda-ml-2,
.reda-mx-2 {
  margin-left: 0.5rem !important;
}

.reda-m-3 {
  margin: 1rem !important;
}

.reda-mt-3,
.reda-my-3 {
  margin-top: 1rem !important;
}

.reda-mr-3,
.reda-mx-3 {
  margin-right: 1rem !important;
}

.reda-mb-3,
.reda-my-3 {
  margin-bottom: 1rem !important;
}

.reda-ml-3,
.reda-mx-3 {
  margin-left: 1rem !important;
}

.reda-m-4 {
  margin: 1.5rem !important;
}

.reda-mt-4,
.reda-my-4 {
  margin-top: 1.5rem !important;
}

.reda-mr-4,
.reda-mx-4 {
  margin-right: 1.5rem !important;
}

.reda-mb-4,
.reda-my-4 {
  margin-bottom: 1.5rem !important;
}

.reda-ml-4,
.reda-mx-4 {
  margin-left: 1.5rem !important;
}

.reda-m-5 {
  margin: 3rem !important;
}

.reda-mt-5,
.reda-my-5 {
  margin-top: 3rem !important;
}

.reda-mr-5,
.reda-mx-5 {
  margin-right: 3rem !important;
}

.reda-mb-5,
.reda-my-5 {
  margin-bottom: 3rem !important;
}

.reda-ml-5,
.reda-mx-5 {
  margin-left: 3rem !important;
}

.reda-p-0 {
  padding: 0 !important;
}

.reda-pt-0,
.reda-py-0 {
  padding-top: 0 !important;
}

.reda-pr-0,
.reda-px-0 {
  padding-right: 0 !important;
}

.reda-pb-0,
.reda-py-0 {
  padding-bottom: 0 !important;
}

.reda-pl-0,
.reda-px-0 {
  padding-left: 0 !important;
}

.reda-p-1 {
  padding: 0.25rem !important;
}

.reda-pt-1,
.reda-py-1 {
  padding-top: 0.25rem !important;
}

.reda-pr-1,
.reda-px-1 {
  padding-right: 0.25rem !important;
}

.reda-pb-1,
.reda-py-1 {
  padding-bottom: 0.25rem !important;
}

.reda-pl-1,
.reda-px-1 {
  padding-left: 0.25rem !important;
}

.reda-p-2 {
  padding: 0.5rem !important;
}

.reda-pt-2,
.reda-py-2 {
  padding-top: 0.5rem !important;
}

.reda-pr-2,
.reda-px-2 {
  padding-right: 0.5rem !important;
}

.reda-pb-2,
.reda-py-2 {
  padding-bottom: 0.5rem !important;
}

.reda-pl-2,
.reda-px-2 {
  padding-left: 0.5rem !important;
}

.reda-p-3 {
  padding: 1rem !important;
}

.reda-pt-3,
.reda-py-3 {
  padding-top: 1rem !important;
}

.reda-pr-3,
.reda-px-3 {
  padding-right: 1rem !important;
}

.reda-pb-3,
.reda-py-3 {
  padding-bottom: 1rem !important;
}

.reda-pl-3,
.reda-px-3 {
  padding-left: 1rem !important;
}

.reda-p-4 {
  padding: 1.5rem !important;
}

.reda-pt-4,
.reda-py-4 {
  padding-top: 1.5rem !important;
}

.reda-pr-4,
.reda-px-4 {
  padding-right: 1.5rem !important;
}

.reda-pb-4,
.reda-py-4 {
  padding-bottom: 1.5rem !important;
}

.reda-pl-4,
.reda-px-4 {
  padding-left: 1.5rem !important;
}

.reda-p-5 {
  padding: 3rem !important;
}

.reda-pt-5,
.reda-py-5 {
  padding-top: 3rem !important;
}

.reda-pr-5,
.reda-px-5 {
  padding-right: 3rem !important;
}

.reda-pb-5,
.reda-py-5 {
  padding-bottom: 3rem !important;
}

.reda-pl-5,
.reda-px-5 {
  padding-left: 3rem !important;
}

.reda-m-n1 {
  margin: -0.25rem !important;
}

.reda-mt-n1,
.reda-my-n1 {
  margin-top: -0.25rem !important;
}

.reda-mr-n1,
.reda-mx-n1 {
  margin-right: -0.25rem !important;
}

.reda-mb-n1,
.reda-my-n1 {
  margin-bottom: -0.25rem !important;
}

.reda-ml-n1,
.reda-mx-n1 {
  margin-left: -0.25rem !important;
}

.reda-m-n2 {
  margin: -0.5rem !important;
}

.reda-mt-n2,
.reda-my-n2 {
  margin-top: -0.5rem !important;
}

.reda-mr-n2,
.reda-mx-n2 {
  margin-right: -0.5rem !important;
}

.reda-mb-n2,
.reda-my-n2 {
  margin-bottom: -0.5rem !important;
}

.reda-ml-n2,
.reda-mx-n2 {
  margin-left: -0.5rem !important;
}

.reda-m-n3 {
  margin: -1rem !important;
}

.reda-mt-n3,
.reda-my-n3 {
  margin-top: -1rem !important;
}

.reda-mr-n3,
.reda-mx-n3 {
  margin-right: -1rem !important;
}

.reda-mb-n3,
.reda-my-n3 {
  margin-bottom: -1rem !important;
}

.reda-ml-n3,
.reda-mx-n3 {
  margin-left: -1rem !important;
}

.reda-m-n4 {
  margin: -1.5rem !important;
}

.reda-mt-n4,
.reda-my-n4 {
  margin-top: -1.5rem !important;
}

.reda-mr-n4,
.reda-mx-n4 {
  margin-right: -1.5rem !important;
}

.reda-mb-n4,
.reda-my-n4 {
  margin-bottom: -1.5rem !important;
}

.reda-ml-n4,
.reda-mx-n4 {
  margin-left: -1.5rem !important;
}

.reda-m-n5 {
  margin: -3rem !important;
}

.reda-mt-n5,
.reda-my-n5 {
  margin-top: -3rem !important;
}

.reda-mr-n5,
.reda-mx-n5 {
  margin-right: -3rem !important;
}

.reda-mb-n5,
.reda-my-n5 {
  margin-bottom: -3rem !important;
}

.reda-ml-n5,
.reda-mx-n5 {
  margin-left: -3rem !important;
}

.reda-m-auto {
  margin: auto !important;
}

.reda-mt-auto,
.reda-my-auto {
  margin-top: auto !important;
}

.reda-mr-auto,
.reda-mx-auto {
  margin-right: auto !important;
}

.reda-mb-auto,
.reda-my-auto {
  margin-bottom: auto !important;
}

.reda-ml-auto,
.reda-mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .reda-m-sm-0 {
    margin: 0 !important;
  }
  .reda-mt-sm-0,
  .reda-my-sm-0 {
    margin-top: 0 !important;
  }
  .reda-mr-sm-0,
  .reda-mx-sm-0 {
    margin-right: 0 !important;
  }
  .reda-mb-sm-0,
  .reda-my-sm-0 {
    margin-bottom: 0 !important;
  }
  .reda-ml-sm-0,
  .reda-mx-sm-0 {
    margin-left: 0 !important;
  }
  .reda-m-sm-1 {
    margin: 0.25rem !important;
  }
  .reda-mt-sm-1,
  .reda-my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .reda-mr-sm-1,
  .reda-mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .reda-mb-sm-1,
  .reda-my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .reda-ml-sm-1,
  .reda-mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .reda-m-sm-2 {
    margin: 0.5rem !important;
  }
  .reda-mt-sm-2,
  .reda-my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .reda-mr-sm-2,
  .reda-mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .reda-mb-sm-2,
  .reda-my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .reda-ml-sm-2,
  .reda-mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .reda-m-sm-3 {
    margin: 1rem !important;
  }
  .reda-mt-sm-3,
  .reda-my-sm-3 {
    margin-top: 1rem !important;
  }
  .reda-mr-sm-3,
  .reda-mx-sm-3 {
    margin-right: 1rem !important;
  }
  .reda-mb-sm-3,
  .reda-my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .reda-ml-sm-3,
  .reda-mx-sm-3 {
    margin-left: 1rem !important;
  }
  .reda-m-sm-4 {
    margin: 1.5rem !important;
  }
  .reda-mt-sm-4,
  .reda-my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .reda-mr-sm-4,
  .reda-mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .reda-mb-sm-4,
  .reda-my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .reda-ml-sm-4,
  .reda-mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .reda-m-sm-5 {
    margin: 3rem !important;
  }
  .reda-mt-sm-5,
  .reda-my-sm-5 {
    margin-top: 3rem !important;
  }
  .reda-mr-sm-5,
  .reda-mx-sm-5 {
    margin-right: 3rem !important;
  }
  .reda-mb-sm-5,
  .reda-my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .reda-ml-sm-5,
  .reda-mx-sm-5 {
    margin-left: 3rem !important;
  }
  .reda-p-sm-0 {
    padding: 0 !important;
  }
  .reda-pt-sm-0,
  .reda-py-sm-0 {
    padding-top: 0 !important;
  }
  .reda-pr-sm-0,
  .reda-px-sm-0 {
    padding-right: 0 !important;
  }
  .reda-pb-sm-0,
  .reda-py-sm-0 {
    padding-bottom: 0 !important;
  }
  .reda-pl-sm-0,
  .reda-px-sm-0 {
    padding-left: 0 !important;
  }
  .reda-p-sm-1 {
    padding: 0.25rem !important;
  }
  .reda-pt-sm-1,
  .reda-py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .reda-pr-sm-1,
  .reda-px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .reda-pb-sm-1,
  .reda-py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .reda-pl-sm-1,
  .reda-px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .reda-p-sm-2 {
    padding: 0.5rem !important;
  }
  .reda-pt-sm-2,
  .reda-py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .reda-pr-sm-2,
  .reda-px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .reda-pb-sm-2,
  .reda-py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .reda-pl-sm-2,
  .reda-px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .reda-p-sm-3 {
    padding: 1rem !important;
  }
  .reda-pt-sm-3,
  .reda-py-sm-3 {
    padding-top: 1rem !important;
  }
  .reda-pr-sm-3,
  .reda-px-sm-3 {
    padding-right: 1rem !important;
  }
  .reda-pb-sm-3,
  .reda-py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .reda-pl-sm-3,
  .reda-px-sm-3 {
    padding-left: 1rem !important;
  }
  .reda-p-sm-4 {
    padding: 1.5rem !important;
  }
  .reda-pt-sm-4,
  .reda-py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .reda-pr-sm-4,
  .reda-px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .reda-pb-sm-4,
  .reda-py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .reda-pl-sm-4,
  .reda-px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .reda-p-sm-5 {
    padding: 3rem !important;
  }
  .reda-pt-sm-5,
  .reda-py-sm-5 {
    padding-top: 3rem !important;
  }
  .reda-pr-sm-5,
  .reda-px-sm-5 {
    padding-right: 3rem !important;
  }
  .reda-pb-sm-5,
  .reda-py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .reda-pl-sm-5,
  .reda-px-sm-5 {
    padding-left: 3rem !important;
  }
  .reda-m-sm-n1 {
    margin: -0.25rem !important;
  }
  .reda-mt-sm-n1,
  .reda-my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .reda-mr-sm-n1,
  .reda-mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .reda-mb-sm-n1,
  .reda-my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .reda-ml-sm-n1,
  .reda-mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .reda-m-sm-n2 {
    margin: -0.5rem !important;
  }
  .reda-mt-sm-n2,
  .reda-my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .reda-mr-sm-n2,
  .reda-mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .reda-mb-sm-n2,
  .reda-my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .reda-ml-sm-n2,
  .reda-mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .reda-m-sm-n3 {
    margin: -1rem !important;
  }
  .reda-mt-sm-n3,
  .reda-my-sm-n3 {
    margin-top: -1rem !important;
  }
  .reda-mr-sm-n3,
  .reda-mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .reda-mb-sm-n3,
  .reda-my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .reda-ml-sm-n3,
  .reda-mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .reda-m-sm-n4 {
    margin: -1.5rem !important;
  }
  .reda-mt-sm-n4,
  .reda-my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .reda-mr-sm-n4,
  .reda-mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .reda-mb-sm-n4,
  .reda-my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .reda-ml-sm-n4,
  .reda-mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .reda-m-sm-n5 {
    margin: -3rem !important;
  }
  .reda-mt-sm-n5,
  .reda-my-sm-n5 {
    margin-top: -3rem !important;
  }
  .reda-mr-sm-n5,
  .reda-mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .reda-mb-sm-n5,
  .reda-my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .reda-ml-sm-n5,
  .reda-mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .reda-m-sm-auto {
    margin: auto !important;
  }
  .reda-mt-sm-auto,
  .reda-my-sm-auto {
    margin-top: auto !important;
  }
  .reda-mr-sm-auto,
  .reda-mx-sm-auto {
    margin-right: auto !important;
  }
  .reda-mb-sm-auto,
  .reda-my-sm-auto {
    margin-bottom: auto !important;
  }
  .reda-ml-sm-auto,
  .reda-mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .reda-m-md-0 {
    margin: 0 !important;
  }
  .reda-mt-md-0,
  .reda-my-md-0 {
    margin-top: 0 !important;
  }
  .reda-mr-md-0,
  .reda-mx-md-0 {
    margin-right: 0 !important;
  }
  .reda-mb-md-0,
  .reda-my-md-0 {
    margin-bottom: 0 !important;
  }
  .reda-ml-md-0,
  .reda-mx-md-0 {
    margin-left: 0 !important;
  }
  .reda-m-md-1 {
    margin: 0.25rem !important;
  }
  .reda-mt-md-1,
  .reda-my-md-1 {
    margin-top: 0.25rem !important;
  }
  .reda-mr-md-1,
  .reda-mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .reda-mb-md-1,
  .reda-my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .reda-ml-md-1,
  .reda-mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .reda-m-md-2 {
    margin: 0.5rem !important;
  }
  .reda-mt-md-2,
  .reda-my-md-2 {
    margin-top: 0.5rem !important;
  }
  .reda-mr-md-2,
  .reda-mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .reda-mb-md-2,
  .reda-my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .reda-ml-md-2,
  .reda-mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .reda-m-md-3 {
    margin: 1rem !important;
  }
  .reda-mt-md-3,
  .reda-my-md-3 {
    margin-top: 1rem !important;
  }
  .reda-mr-md-3,
  .reda-mx-md-3 {
    margin-right: 1rem !important;
  }
  .reda-mb-md-3,
  .reda-my-md-3 {
    margin-bottom: 1rem !important;
  }
  .reda-ml-md-3,
  .reda-mx-md-3 {
    margin-left: 1rem !important;
  }
  .reda-m-md-4 {
    margin: 1.5rem !important;
  }
  .reda-mt-md-4,
  .reda-my-md-4 {
    margin-top: 1.5rem !important;
  }
  .reda-mr-md-4,
  .reda-mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .reda-mb-md-4,
  .reda-my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .reda-ml-md-4,
  .reda-mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .reda-m-md-5 {
    margin: 3rem !important;
  }
  .reda-mt-md-5,
  .reda-my-md-5 {
    margin-top: 3rem !important;
  }
  .reda-mr-md-5,
  .reda-mx-md-5 {
    margin-right: 3rem !important;
  }
  .reda-mb-md-5,
  .reda-my-md-5 {
    margin-bottom: 3rem !important;
  }
  .reda-ml-md-5,
  .reda-mx-md-5 {
    margin-left: 3rem !important;
  }
  .reda-p-md-0 {
    padding: 0 !important;
  }
  .reda-pt-md-0,
  .reda-py-md-0 {
    padding-top: 0 !important;
  }
  .reda-pr-md-0,
  .reda-px-md-0 {
    padding-right: 0 !important;
  }
  .reda-pb-md-0,
  .reda-py-md-0 {
    padding-bottom: 0 !important;
  }
  .reda-pl-md-0,
  .reda-px-md-0 {
    padding-left: 0 !important;
  }
  .reda-p-md-1 {
    padding: 0.25rem !important;
  }
  .reda-pt-md-1,
  .reda-py-md-1 {
    padding-top: 0.25rem !important;
  }
  .reda-pr-md-1,
  .reda-px-md-1 {
    padding-right: 0.25rem !important;
  }
  .reda-pb-md-1,
  .reda-py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .reda-pl-md-1,
  .reda-px-md-1 {
    padding-left: 0.25rem !important;
  }
  .reda-p-md-2 {
    padding: 0.5rem !important;
  }
  .reda-pt-md-2,
  .reda-py-md-2 {
    padding-top: 0.5rem !important;
  }
  .reda-pr-md-2,
  .reda-px-md-2 {
    padding-right: 0.5rem !important;
  }
  .reda-pb-md-2,
  .reda-py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .reda-pl-md-2,
  .reda-px-md-2 {
    padding-left: 0.5rem !important;
  }
  .reda-p-md-3 {
    padding: 1rem !important;
  }
  .reda-pt-md-3,
  .reda-py-md-3 {
    padding-top: 1rem !important;
  }
  .reda-pr-md-3,
  .reda-px-md-3 {
    padding-right: 1rem !important;
  }
  .reda-pb-md-3,
  .reda-py-md-3 {
    padding-bottom: 1rem !important;
  }
  .reda-pl-md-3,
  .reda-px-md-3 {
    padding-left: 1rem !important;
  }
  .reda-p-md-4 {
    padding: 1.5rem !important;
  }
  .reda-pt-md-4,
  .reda-py-md-4 {
    padding-top: 1.5rem !important;
  }
  .reda-pr-md-4,
  .reda-px-md-4 {
    padding-right: 1.5rem !important;
  }
  .reda-pb-md-4,
  .reda-py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .reda-pl-md-4,
  .reda-px-md-4 {
    padding-left: 1.5rem !important;
  }
  .reda-p-md-5 {
    padding: 3rem !important;
  }
  .reda-pt-md-5,
  .reda-py-md-5 {
    padding-top: 3rem !important;
  }
  .reda-pr-md-5,
  .reda-px-md-5 {
    padding-right: 3rem !important;
  }
  .reda-pb-md-5,
  .reda-py-md-5 {
    padding-bottom: 3rem !important;
  }
  .reda-pl-md-5,
  .reda-px-md-5 {
    padding-left: 3rem !important;
  }
  .reda-m-md-n1 {
    margin: -0.25rem !important;
  }
  .reda-mt-md-n1,
  .reda-my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .reda-mr-md-n1,
  .reda-mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .reda-mb-md-n1,
  .reda-my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .reda-ml-md-n1,
  .reda-mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .reda-m-md-n2 {
    margin: -0.5rem !important;
  }
  .reda-mt-md-n2,
  .reda-my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .reda-mr-md-n2,
  .reda-mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .reda-mb-md-n2,
  .reda-my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .reda-ml-md-n2,
  .reda-mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .reda-m-md-n3 {
    margin: -1rem !important;
  }
  .reda-mt-md-n3,
  .reda-my-md-n3 {
    margin-top: -1rem !important;
  }
  .reda-mr-md-n3,
  .reda-mx-md-n3 {
    margin-right: -1rem !important;
  }
  .reda-mb-md-n3,
  .reda-my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .reda-ml-md-n3,
  .reda-mx-md-n3 {
    margin-left: -1rem !important;
  }
  .reda-m-md-n4 {
    margin: -1.5rem !important;
  }
  .reda-mt-md-n4,
  .reda-my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .reda-mr-md-n4,
  .reda-mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .reda-mb-md-n4,
  .reda-my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .reda-ml-md-n4,
  .reda-mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .reda-m-md-n5 {
    margin: -3rem !important;
  }
  .reda-mt-md-n5,
  .reda-my-md-n5 {
    margin-top: -3rem !important;
  }
  .reda-mr-md-n5,
  .reda-mx-md-n5 {
    margin-right: -3rem !important;
  }
  .reda-mb-md-n5,
  .reda-my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .reda-ml-md-n5,
  .reda-mx-md-n5 {
    margin-left: -3rem !important;
  }
  .reda-m-md-auto {
    margin: auto !important;
  }
  .reda-mt-md-auto,
  .reda-my-md-auto {
    margin-top: auto !important;
  }
  .reda-mr-md-auto,
  .reda-mx-md-auto {
    margin-right: auto !important;
  }
  .reda-mb-md-auto,
  .reda-my-md-auto {
    margin-bottom: auto !important;
  }
  .reda-ml-md-auto,
  .reda-mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .reda-m-lg-0 {
    margin: 0 !important;
  }
  .reda-mt-lg-0,
  .reda-my-lg-0 {
    margin-top: 0 !important;
  }
  .reda-mr-lg-0,
  .reda-mx-lg-0 {
    margin-right: 0 !important;
  }
  .reda-mb-lg-0,
  .reda-my-lg-0 {
    margin-bottom: 0 !important;
  }
  .reda-ml-lg-0,
  .reda-mx-lg-0 {
    margin-left: 0 !important;
  }
  .reda-m-lg-1 {
    margin: 0.25rem !important;
  }
  .reda-mt-lg-1,
  .reda-my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .reda-mr-lg-1,
  .reda-mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .reda-mb-lg-1,
  .reda-my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .reda-ml-lg-1,
  .reda-mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .reda-m-lg-2 {
    margin: 0.5rem !important;
  }
  .reda-mt-lg-2,
  .reda-my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .reda-mr-lg-2,
  .reda-mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .reda-mb-lg-2,
  .reda-my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .reda-ml-lg-2,
  .reda-mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .reda-m-lg-3 {
    margin: 1rem !important;
  }
  .reda-mt-lg-3,
  .reda-my-lg-3 {
    margin-top: 1rem !important;
  }
  .reda-mr-lg-3,
  .reda-mx-lg-3 {
    margin-right: 1rem !important;
  }
  .reda-mb-lg-3,
  .reda-my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .reda-ml-lg-3,
  .reda-mx-lg-3 {
    margin-left: 1rem !important;
  }
  .reda-m-lg-4 {
    margin: 1.5rem !important;
  }
  .reda-mt-lg-4,
  .reda-my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .reda-mr-lg-4,
  .reda-mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .reda-mb-lg-4,
  .reda-my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .reda-ml-lg-4,
  .reda-mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .reda-m-lg-5 {
    margin: 3rem !important;
  }
  .reda-mt-lg-5,
  .reda-my-lg-5 {
    margin-top: 3rem !important;
  }
  .reda-mr-lg-5,
  .reda-mx-lg-5 {
    margin-right: 3rem !important;
  }
  .reda-mb-lg-5,
  .reda-my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .reda-ml-lg-5,
  .reda-mx-lg-5 {
    margin-left: 3rem !important;
  }
  .reda-p-lg-0 {
    padding: 0 !important;
  }
  .reda-pt-lg-0,
  .reda-py-lg-0 {
    padding-top: 0 !important;
  }
  .reda-pr-lg-0,
  .reda-px-lg-0 {
    padding-right: 0 !important;
  }
  .reda-pb-lg-0,
  .reda-py-lg-0 {
    padding-bottom: 0 !important;
  }
  .reda-pl-lg-0,
  .reda-px-lg-0 {
    padding-left: 0 !important;
  }
  .reda-p-lg-1 {
    padding: 0.25rem !important;
  }
  .reda-pt-lg-1,
  .reda-py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .reda-pr-lg-1,
  .reda-px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .reda-pb-lg-1,
  .reda-py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .reda-pl-lg-1,
  .reda-px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .reda-p-lg-2 {
    padding: 0.5rem !important;
  }
  .reda-pt-lg-2,
  .reda-py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .reda-pr-lg-2,
  .reda-px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .reda-pb-lg-2,
  .reda-py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .reda-pl-lg-2,
  .reda-px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .reda-p-lg-3 {
    padding: 1rem !important;
  }
  .reda-pt-lg-3,
  .reda-py-lg-3 {
    padding-top: 1rem !important;
  }
  .reda-pr-lg-3,
  .reda-px-lg-3 {
    padding-right: 1rem !important;
  }
  .reda-pb-lg-3,
  .reda-py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .reda-pl-lg-3,
  .reda-px-lg-3 {
    padding-left: 1rem !important;
  }
  .reda-p-lg-4 {
    padding: 1.5rem !important;
  }
  .reda-pt-lg-4,
  .reda-py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .reda-pr-lg-4,
  .reda-px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .reda-pb-lg-4,
  .reda-py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .reda-pl-lg-4,
  .reda-px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .reda-p-lg-5 {
    padding: 3rem !important;
  }
  .reda-pt-lg-5,
  .reda-py-lg-5 {
    padding-top: 3rem !important;
  }
  .reda-pr-lg-5,
  .reda-px-lg-5 {
    padding-right: 3rem !important;
  }
  .reda-pb-lg-5,
  .reda-py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .reda-pl-lg-5,
  .reda-px-lg-5 {
    padding-left: 3rem !important;
  }
  .reda-m-lg-n1 {
    margin: -0.25rem !important;
  }
  .reda-mt-lg-n1,
  .reda-my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .reda-mr-lg-n1,
  .reda-mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .reda-mb-lg-n1,
  .reda-my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .reda-ml-lg-n1,
  .reda-mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .reda-m-lg-n2 {
    margin: -0.5rem !important;
  }
  .reda-mt-lg-n2,
  .reda-my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .reda-mr-lg-n2,
  .reda-mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .reda-mb-lg-n2,
  .reda-my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .reda-ml-lg-n2,
  .reda-mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .reda-m-lg-n3 {
    margin: -1rem !important;
  }
  .reda-mt-lg-n3,
  .reda-my-lg-n3 {
    margin-top: -1rem !important;
  }
  .reda-mr-lg-n3,
  .reda-mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .reda-mb-lg-n3,
  .reda-my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .reda-ml-lg-n3,
  .reda-mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .reda-m-lg-n4 {
    margin: -1.5rem !important;
  }
  .reda-mt-lg-n4,
  .reda-my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .reda-mr-lg-n4,
  .reda-mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .reda-mb-lg-n4,
  .reda-my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .reda-ml-lg-n4,
  .reda-mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .reda-m-lg-n5 {
    margin: -3rem !important;
  }
  .reda-mt-lg-n5,
  .reda-my-lg-n5 {
    margin-top: -3rem !important;
  }
  .reda-mr-lg-n5,
  .reda-mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .reda-mb-lg-n5,
  .reda-my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .reda-ml-lg-n5,
  .reda-mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .reda-m-lg-auto {
    margin: auto !important;
  }
  .reda-mt-lg-auto,
  .reda-my-lg-auto {
    margin-top: auto !important;
  }
  .reda-mr-lg-auto,
  .reda-mx-lg-auto {
    margin-right: auto !important;
  }
  .reda-mb-lg-auto,
  .reda-my-lg-auto {
    margin-bottom: auto !important;
  }
  .reda-ml-lg-auto,
  .reda-mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .reda-m-xl-0 {
    margin: 0 !important;
  }
  .reda-mt-xl-0,
  .reda-my-xl-0 {
    margin-top: 0 !important;
  }
  .reda-mr-xl-0,
  .reda-mx-xl-0 {
    margin-right: 0 !important;
  }
  .reda-mb-xl-0,
  .reda-my-xl-0 {
    margin-bottom: 0 !important;
  }
  .reda-ml-xl-0,
  .reda-mx-xl-0 {
    margin-left: 0 !important;
  }
  .reda-m-xl-1 {
    margin: 0.25rem !important;
  }
  .reda-mt-xl-1,
  .reda-my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .reda-mr-xl-1,
  .reda-mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .reda-mb-xl-1,
  .reda-my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .reda-ml-xl-1,
  .reda-mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .reda-m-xl-2 {
    margin: 0.5rem !important;
  }
  .reda-mt-xl-2,
  .reda-my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .reda-mr-xl-2,
  .reda-mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .reda-mb-xl-2,
  .reda-my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .reda-ml-xl-2,
  .reda-mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .reda-m-xl-3 {
    margin: 1rem !important;
  }
  .reda-mt-xl-3,
  .reda-my-xl-3 {
    margin-top: 1rem !important;
  }
  .reda-mr-xl-3,
  .reda-mx-xl-3 {
    margin-right: 1rem !important;
  }
  .reda-mb-xl-3,
  .reda-my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .reda-ml-xl-3,
  .reda-mx-xl-3 {
    margin-left: 1rem !important;
  }
  .reda-m-xl-4 {
    margin: 1.5rem !important;
  }
  .reda-mt-xl-4,
  .reda-my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .reda-mr-xl-4,
  .reda-mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .reda-mb-xl-4,
  .reda-my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .reda-ml-xl-4,
  .reda-mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .reda-m-xl-5 {
    margin: 3rem !important;
  }
  .reda-mt-xl-5,
  .reda-my-xl-5 {
    margin-top: 3rem !important;
  }
  .reda-mr-xl-5,
  .reda-mx-xl-5 {
    margin-right: 3rem !important;
  }
  .reda-mb-xl-5,
  .reda-my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .reda-ml-xl-5,
  .reda-mx-xl-5 {
    margin-left: 3rem !important;
  }
  .reda-p-xl-0 {
    padding: 0 !important;
  }
  .reda-pt-xl-0,
  .reda-py-xl-0 {
    padding-top: 0 !important;
  }
  .reda-pr-xl-0,
  .reda-px-xl-0 {
    padding-right: 0 !important;
  }
  .reda-pb-xl-0,
  .reda-py-xl-0 {
    padding-bottom: 0 !important;
  }
  .reda-pl-xl-0,
  .reda-px-xl-0 {
    padding-left: 0 !important;
  }
  .reda-p-xl-1 {
    padding: 0.25rem !important;
  }
  .reda-pt-xl-1,
  .reda-py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .reda-pr-xl-1,
  .reda-px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .reda-pb-xl-1,
  .reda-py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .reda-pl-xl-1,
  .reda-px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .reda-p-xl-2 {
    padding: 0.5rem !important;
  }
  .reda-pt-xl-2,
  .reda-py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .reda-pr-xl-2,
  .reda-px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .reda-pb-xl-2,
  .reda-py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .reda-pl-xl-2,
  .reda-px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .reda-p-xl-3 {
    padding: 1rem !important;
  }
  .reda-pt-xl-3,
  .reda-py-xl-3 {
    padding-top: 1rem !important;
  }
  .reda-pr-xl-3,
  .reda-px-xl-3 {
    padding-right: 1rem !important;
  }
  .reda-pb-xl-3,
  .reda-py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .reda-pl-xl-3,
  .reda-px-xl-3 {
    padding-left: 1rem !important;
  }
  .reda-p-xl-4 {
    padding: 1.5rem !important;
  }
  .reda-pt-xl-4,
  .reda-py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .reda-pr-xl-4,
  .reda-px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .reda-pb-xl-4,
  .reda-py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .reda-pl-xl-4,
  .reda-px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .reda-p-xl-5 {
    padding: 3rem !important;
  }
  .reda-pt-xl-5,
  .reda-py-xl-5 {
    padding-top: 3rem !important;
  }
  .reda-pr-xl-5,
  .reda-px-xl-5 {
    padding-right: 3rem !important;
  }
  .reda-pb-xl-5,
  .reda-py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .reda-pl-xl-5,
  .reda-px-xl-5 {
    padding-left: 3rem !important;
  }
  .reda-m-xl-n1 {
    margin: -0.25rem !important;
  }
  .reda-mt-xl-n1,
  .reda-my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .reda-mr-xl-n1,
  .reda-mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .reda-mb-xl-n1,
  .reda-my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .reda-ml-xl-n1,
  .reda-mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .reda-m-xl-n2 {
    margin: -0.5rem !important;
  }
  .reda-mt-xl-n2,
  .reda-my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .reda-mr-xl-n2,
  .reda-mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .reda-mb-xl-n2,
  .reda-my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .reda-ml-xl-n2,
  .reda-mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .reda-m-xl-n3 {
    margin: -1rem !important;
  }
  .reda-mt-xl-n3,
  .reda-my-xl-n3 {
    margin-top: -1rem !important;
  }
  .reda-mr-xl-n3,
  .reda-mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .reda-mb-xl-n3,
  .reda-my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .reda-ml-xl-n3,
  .reda-mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .reda-m-xl-n4 {
    margin: -1.5rem !important;
  }
  .reda-mt-xl-n4,
  .reda-my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .reda-mr-xl-n4,
  .reda-mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .reda-mb-xl-n4,
  .reda-my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .reda-ml-xl-n4,
  .reda-mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .reda-m-xl-n5 {
    margin: -3rem !important;
  }
  .reda-mt-xl-n5,
  .reda-my-xl-n5 {
    margin-top: -3rem !important;
  }
  .reda-mr-xl-n5,
  .reda-mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .reda-mb-xl-n5,
  .reda-my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .reda-ml-xl-n5,
  .reda-mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .reda-m-xl-auto {
    margin: auto !important;
  }
  .reda-mt-xl-auto,
  .reda-my-xl-auto {
    margin-top: auto !important;
  }
  .reda-mr-xl-auto,
  .reda-mx-xl-auto {
    margin-right: auto !important;
  }
  .reda-mb-xl-auto,
  .reda-my-xl-auto {
    margin-bottom: auto !important;
  }
  .reda-ml-xl-auto,
  .reda-mx-xl-auto {
    margin-left: auto !important;
  }
}

/* typography  */

.reda-text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace !important;
}

.reda-text-justify {
  text-align: justify !important;
}

.reda-text-wrap {
  white-space: normal !important;
}

.reda-text-nowrap {
  white-space: nowrap !important;
}

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

.reda-text-left {
  text-align: left !important;
}

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

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

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

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

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

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

.reda-text-lowercase {
  text-transform: lowercase !important;
}

.reda-text-uppercase {
  text-transform: uppercase !important;
}

.reda-text-capitalize {
  text-transform: capitalize !important;
}

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

.font-weight-lighter {
  font-weight: lighter !important;
}

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

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

.font-weight-bolder {
  font-weight: bolder !important;
}

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

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

.reda-text-primary {
  color: #007bff !important;
}

a.reda-text-primary:hover,
a.reda-text-primary:focus {
  color: #0056b3 !important;
}

.reda-text-secondary {
  color: #6c757d !important;
}

a.reda-text-secondary:hover,
a.reda-text-secondary:focus {
  color: #494f54 !important;
}

.reda-text-success {
  color: #28a745 !important;
}

a.reda-text-success:hover,
a.reda-text-success:focus {
  color: #19692c !important;
}

.reda-text-info {
  color: #17a2b8 !important;
}

a.reda-text-info:hover,
a.reda-text-info:focus {
  color: #0f6674 !important;
}

.reda-text-warning {
  color: #ffc107 !important;
}

a.reda-text-warning:hover,
a.reda-text-warning:focus {
  color: #ba8b00 !important;
}

.reda-text-danger {
  color: #dc3545 !important;
}

a.reda-text-danger:hover,
a.reda-text-danger:focus {
  color: #a71d2a !important;
}

.reda-text-light {
  color: #f8f9fa !important;
}

a.reda-text-light:hover,
a.reda-text-light:focus {
  color: #cbd3da !important;
}

.reda-text-dark {
  color: #343a40 !important;
}

a.reda-text-dark:hover,
a.reda-text-dark:focus {
  color: #121416 !important;
}

.reda-text-body {
  color: #212529 !important;
}

.reda-text-muted {
  color: #6c757d !important;
}

.reda-text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.reda-text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.reda-text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.reda-text-decoration-none {
  text-decoration: none !important;
}

.reda-text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.reda-text-reset {
  color: inherit !important;
}

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

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

.reda-fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .reda-fade {
    transition: none;
  }
}

.reda-fade:not(.show) {
  opacity: 0;
}

/* select */

.reda-custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.reda-custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.reda-custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.reda-custom-select[multiple],
.reda-custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.reda-custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.reda-custom-select::-ms-expand {
  display: none;
}

.reda-custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.reda-custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.reda-custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

/* components */

/* Modal */

.reda-modal-open {
  overflow: hidden;
}

.reda-modal-open .reda-modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.reda-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.reda-modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.reda-modal.reda-fade .reda-modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .reda-modal.reda-fade .reda-modal-dialog {
    transition: none;
  }
}

.reda-modal.show .reda-modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.reda-modal.reda-modal-static .reda-modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.reda-modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.reda-modal-dialog-scrollable .reda-modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.reda-modal-dialog-scrollable .reda-modal-header,
.reda-modal-dialog-scrollable .reda-modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.reda-modal-dialog-scrollable .reda-modal-body {
  overflow-y: auto;
}

.reda-modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.reda-modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.reda-modal-dialog-centered.reda-modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.reda-modal-dialog-centered.reda-modal-dialog-scrollable .reda-modal-content {
  max-height: none;
}

.reda-modal-dialog-centered.reda-modal-dialog-scrollable::before {
  content: none;
}

.reda-modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.reda-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.reda-modal-backdrop.reda-fade {
  opacity: 0;
}

.reda-modal-backdrop.show {
  opacity: 0.5;
}

.reda-modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.reda-modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.reda-modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.reda-modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.reda-modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.reda-modal-footer > * {
  margin: 0.25rem;
}

.reda-modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .reda-modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .reda-modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .reda-modal-dialog-scrollable .reda-modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .reda-modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .reda-modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .reda-modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .reda-modal-lg,
  .reda-modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .reda-modal-xl {
    max-width: 1140px;
  }
}

/* font size */

/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Notebook
--------------------------------------------------------------*/
@media only screen and (max-width: 1280px) {
  :root {
    --reda_font: 15.2px;
  }
}

/*--------------------------------------------------------------
## Netbook
--------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
  :root {
    --reda_font: 14.4px;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
  :root {
    --reda_font: 13.6px;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  :root {
    --reda_font: 12.8px;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 480px) {
  :root {
    --reda_font: 12px;
  }
}

.reda-table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.reda-resp-px-5 {
  padding-right: calc(var(--reda_font) * 1.875) !important;
  padding-left: calc(var(--reda_font) * 1.875) !important;
}
