:root {
  --beo-body-bg: #fff;
  --beo-body-color: #333;
  --beo-primary-hover: #373a87;
  --beo-primary: #41449f;
  --beo-light: #f8f9fa;
  --beo-dark: #272727;
}

body {
  background-color: var(--beo-body-bg);
  color: var(--beo-body-color);
}

.text-primary {
  color: #41449f !important;
}

.bg-primary {
  background-color: #41449f !important;
}

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

.bg-light {
  background-color: #f8f9fa !important;
}

.text-dark {
  color: #272727 !important;
}

.bg-dark {
  background-color: #272727 !important;
}

.btn-primary {
  background-color: var(--beo-primary);
  border-color: var(--beo-primary);
}

.btn-primary:focus, .btn-primary:hover {
  background-color: var(--beo-primary-hover);
  border-color: var(--beo-primary-hover);
}

.btn-outline-primary,
.btn-outline-primary:focus {
  border-color: var(--beo-primary);
  color: var(--beo-primary);
}

.btn-outline-primary:active, .btn-outline-primary:hover,
.btn-outline-primary:focus:active,
.btn-outline-primary:focus:hover {
  color: white;
  background-color: var(--beo-primary);
  border-color: var(--beo-primary);
}

.btn-check:focus + .btn-primary,
.product--rendered-attribute .form-radio:focus + .btn-primary,
.btn-primary:focus,
.btn-primary:active:focus,
.btn-check:focus + .btn-outline-primary,
.product--rendered-attribute .form-radio:focus + .btn-outline-primary,
.btn-outline-primary:active:focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}
