button {
  all: unset;
}

a {
  color: rgb(26, 31, 113);
}

a:hover {
  color: rgb(18, 21, 78);
}

a.link-fx {
  color: rgb(26, 31, 113);
}

a.link-fx::before {
  background-color: rgb(26, 31, 113) !important;
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: rgb(255, 95, 0);
  --bs-btn-border-color: rgb(255, 95, 0);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(204, 76, 0);
  --bs-btn-hover-border-color: rgb(204, 76, 0);
  --bs-btn-active-bg: rgb(180, 67, 0);
  --bs-btn-active-border-color: rgb(180, 67, 0);
  --bs-btn-disabled-bg: rgb(255, 140, 77);
  --bs-btn-disabled-border-color: rgb(255, 140, 77);
}

.btn-outline-primary {
  --bs-btn-color: rgb(255, 95, 0);
  --bs-btn-border-color: rgb(255, 95, 0);
  --bs-btn-hover-bg: rgb(255, 95, 0);
  --bs-btn-hover-color: #fff;
}

.btn-secondary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: rgb(26, 31, 113);
  --bs-btn-border-color: rgb(26, 31, 113);
  --bs-btn-hover-bg: rgb(21, 25, 90);
  --bs-btn-hover-border-color: rgb(21, 25, 90);
  --bs-btn-active-bg: rgb(18, 21, 78);
  --bs-btn-active-border-color: rgb(18, 21, 78);
  --bs-btn-disabled-bg: rgb(80, 86, 168);
  --bs-btn-disabled-border-color: rgb(80, 86, 168);
}

.btn-outline-secondary {
  --bs-btn-color: rgb(26, 31, 113);
  --bs-btn-border-color: rgb(26, 31, 113);
  --bs-btn-hover-bg: rgb(26, 31, 113);
  --bs-btn-hover-color: #fff;
}

.bg-primary {
  background-color: rgb(26, 31, 113) !important;
}

.bg-primary-lighter {
  background-color: rgb(80, 86, 168) !important;
}

.bg-secondary {
  background-color: rgb(255, 95, 0) !important;
}

.bg-secondary-lighter {
  background-color: rgb(255, 140, 77) !important;
}

.text-primary {
  color: rgb(26, 31, 113) !important;
}

.text-secondary {
  color: rgb(255, 95, 0) !important;
}

.progress-bar {
  background-color: rgb(26, 31, 113);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: rgb(80, 86, 168);
  color: #fff;
}

.link-circle {
  color: #fff;
  background-color: rgb(26, 31, 113);
}

.border-primary {
  border-color: rgb(26, 31, 113) !important;
}

.border-secondary {
  border-color: rgb(255, 95, 0) !important;
}

.page-item.active .page-link,
.page-link:hover {
  color: rgb(26, 31, 113) !important;
  background-color: rgb(80, 86, 168) !important;
  border-color: rgb(26, 31, 113) !important;
}

.navbar {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.alert-primary {
  background-color: rgb(255, 223, 128) !important;
  color: #000000 !important;
}

.custom-card {
  height: 358px;
  width: 716px;
}

.orange-bg {
  background-color: rgb(255, 140, 77);
}

.btn:hover {
  background-color: rgb(204, 76, 0);
}

.container-vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.small-btn {
  width: 100%;
}

.custom-btn {
  border-radius: 25px;
  padding: 13px 210px;
  font-size: 18px;
}

.top-right-image {
  position: fixed;
  padding-left: 100px;
  top: 20px;
  right: 45.5%;
  z-index: 1000;
}

.sentence-container {
  max-width: 80%;
  margin: 0 auto;
}

.parent {
  font-size: 22px;
  color: black;
  text-align: center;
}

.font {
  font-size: 2em;
}

.search-bar input[type="text"]:focus+#list-search,
.search-bar input[type="text"]:not(:placeholder-shown)+#list-search {
  display: block;
}

@media (max-width: 768px) {
  .top-right-image {
    top: 15px;
    right: 37%;
  }

  .sentence-container {
    max-width: 100%;
  }

  .parent {
    font-size: 18px;
  }
}

@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}

.steps {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
}

.steps .step:first-child {
  margin-left: auto;
}

.steps .step:last-child {
  margin-right: auto;
}

.step:first-of-type .step-circle::before {
  display: none;
}

.step:last-of-type .step-content {
  padding-right: 0;
}

.step-content {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 5rem;
  min-width: 5rem;
  max-width: 5rem;
  padding-top: 0.5rem;
  padding-right: 1rem;
}

.step-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #adb5bd;
  border: 2px solid #adb5bd;
  border-radius: 100%;
  background-color: #fff;
}

.step-circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  width: calc(5rem + 1rem - 1.5rem);
  height: 2px;
  transform: translate(-100%, -50%);
  color: #adb5bd;
  background-color: currentColor;
}

.step-text {
  color: #adb5bd;
  word-break: break-all;
  margin-top: 0.25em;
  font-size: 10px;
}

.step-active .step-circle {
  color: #000;
  background-color: rgb(255, 158, 101);
  border-color: rgb(247, 91, 0);
}

.step-active .step-circle::before {
  color: rgb(247, 91, 0);
}

.step-active .step-text {
  color: #000;
}

.asteriskField {
  display: none;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1050;
  justify-content: center;
  align-items: center;
}

.wpwl-form{
  margin: 0 !important;
  width: 100% !important;
  max-width: unset !important;
}

.description-txt{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

table.review-checkout-table{
  background: transparent !important;
}

