:root {
  --primary-color: #F7941D;
  --secondary-color: #F7941D;
  --text-color: #1F1F1F;
  --light-color: #fff;
  --neutral-color: #F0F0F0;
  --bg-color: #F3F3F3;
  --small-border-radius: 4px;
  --medium-border-radius: 8px;
}

html {
  font-size: 14px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.z-15 {
  z-index: 15;
}

.z-20 {
  z-index: 20;
}

.z-popup {
  z-index: 1100;
}

button.common-btn {
  padding: 9px 28px;
  text-transform: uppercase;
  border-radius: var(--small-border-radius);
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--light-color);
}

button.common-btn.primary-btn {
  background-color: #0d6efd;
  border-radius: 10rem;
  color: #ffffff !important;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
}

button.common-btn.secondary-btn {
  background-color: #0d6efd;
}

.form-control,
.input-group-text {
  border-radius: var(--small-border-radius);
}

.form-control:valid,
.form-control:invalid {
  background-image: none !important;
}

/* Remove arrow in input with number type */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

a {
  color: var(--primary-color);
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #ced4da !important;
}

.was-validated .form-check-input:valid~.form-check-label,
.form-check-input.is-valid~.form-check-label {
  color: inherit;
}

.cursor-pointer {
  cursor: pointer;
}

.was-validated .form-check-input:invalid~.form-check-label,
.form-check-input.is-invalid~.form-check-label {
  color: inherit;
}

.was-validated .form-check-input:valid,
.form-check-input.is-valid {
  border-color: var(--primary-color);
}

.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
  background-color: var(--primary-color);
}

.header-spacing {
  height: 140px;
  width: 100%;
}

.light-color {
  color: var(--light-color);
}

.btn-show-all {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 220px;
  padding: 12px 0;
  background-color: var(--light-color);
  border-radius: 4px;
  border: none;
  transition: transform 0.2s ease-in-out;
}

.btn-show-all:hover {
  transform: scale(1.05);
}

.page-title {
  font-size: 30px;
  font-weight: 500;
  line-height: calc(40 / 30);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  margin: 0;
  text-align: center;
}

.page-title::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .header-spacing {
    height: 92px;
  }
}

@media screen and (max-width: 767.98px) {
  .header-spacing {
    height: 84.5px;
  }

  .page-title {
    font-size: 1.5rem;
  }
}