/**
 * Adding bootstrap 4 and 5 utilities here to make it easier to use them and
 * they can be deleted when the theme get updated to bootstrap 5.
 */
:root {
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #495057;
  --bs-gray-dark: #333333;
  --bs-dark-rgb: 51,51,51;;
  --bs-text-opacity: 1;
}
.text-dark {
  color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity)) !important;
}
.text-reset {
  color: inherit !important;
}
.text-red {
  color: #9D1F60 !important;
}
.text-success,
.text-green {
  color: #8dc637 !important;
}
.text-medium {
  font-size: 12px;
}
.text-small {
  font-size: 10px;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.d-flex:not([style="display: none;"]) {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-none {
  display: none !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.bg-transparent {
  background-color: transparent!important;
}
.bg-blue {
  background-color: #176EB0 !important;
}
.border-white {
  border-color: #fff !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.text-white {
  color: #fff !important;
}
.py-2 {
  padding-top: 0.5rem!important;
  padding-bottom: 0.5rem!important;
}
.list-none {
  list-style-type: none !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem!important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.mw-100 {
  min-width: 100px;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none,
  .d-lg-none.d-flex {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
}
