.form-left {
  padding: 2.5rem;
  border: 1px solid #fff;
}

.step-select {
  margin-top: 3rem;
}
.step-select .checkout-item {
  text-align: left;
  margin-bottom: 1.5rem;
}
.step-select .checkout-item label {
  color: #BC2023;
  font-size: 1rem;
}
.step-select .checkout-item p {
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.step-select .checkout-item input {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  outline: none;
  padding: 0.5rem;
  width: 100%;
}
.step-select .checkout-item select {
  display: block;
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  outline: none;
  padding: 0.5rem;
  width: 100%;
}
.step-select .checkout-item.warning p {
  color: #ffc107 !important;
}
.step-select .checkout-item.warning input {
  border: 1px solid #ffc107 !important;
}
.step-select .checkout-item.warning select {
  border: 1px solid #ffc107 !important;
}
.step-select .credit-card {
  padding: 1rem;
  background-color: #373737;
  border-radius: 5px;
  width: 280px;
  max-width: 100%;
}
.step-select .credit-card .fake-radio {
  height: 1.25rem;
  width: 1.25rem;
  border: 1px solid #BC2023;
  border-radius: 50%;
  position: relative;
  margin-bottom: 1rem;
}
.step-select .credit-card .fake-radio::before {
  content: "";
  height: calc(1.25rem - 6px);
  width: calc(1.25rem - 6px);
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background-color: #BC2023;
}
.step-select .credit-card-name p {
  color: #BC2023;
  font-size: 1.25rem;
  margin-right: 1rem;
}
.step-select .credit-card-name img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 0.25rem;
}
.step-select hr {
  border-top: 1px solid #fff;
  width: 100%;
  margin-bottom: 2.5rem;
}

.form-right {
  padding: 2.5rem 1.5rem;
  border: 1px solid #fff;
  border-radius: 10px;
  min-height: 100%;
}
.form-right-title {
  color: #BC2023;
  font-size: 1rem;
}
.form-right-item {
  height: 6.5rem;
  border-bottom: 1px solid #fff;
  margin-top: 1.5rem;
}
.form-right-item-img {
  width: 30%;
}
.form-right-item-img img {
  width: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  height: 5rem;
  border-radius: 10px;
}
.form-right-item-info {
  width: 60%;
  padding: 0.5rem;
}
.form-right-item-title {
  color: #BC2023;
  font-size: 0.9rem;
  width: 45%;
}
.form-right-item-name {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.form-right-item-desc {
  color: #fff;
  font-size: 0.9rem;
}
.form-right-item-btn {
  display: flex;
  align-items: center;
  height: 5rem;
  cursor: pointer;
}
.form-right-item-btn img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.form-right-price {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
}

.text-preview-voucher p {
  font-size: 1rem !important;
}

.vouchers {
  padding: 3rem 0;
  background-color: #000;
}
.vouchers.hide {
  display: none;
}
.vouchers-title {
  font-size: 3rem;
  font-family: "Bebas Neue";
  color: #fff;
  text-transform: uppercase;
  line-height: 120%;
}
.vouchers-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.vouchers-btn {
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #BC2023;
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 200;
  outline: none;
  border: none;
  cursor: pointer;
  margin-top: 3rem;
}
.vouchers-btn:hover {
  color: #BC2023;
  background-color: #fff;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading.active {
  display: flex;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #BC2023;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vouchers-thank-you {
  background-color: #000;
  padding: 3rem 0;
  text-align: center;
}
.vouchers-thank-you.hide {
  display: none;
}
.vouchers-thank-you-title {
  font-size: 2.5rem;
  font-family: "Bebas Neue";
  color: #fff;
  width: 100%;
  margin-bottom: 1.5rem;
}
.vouchers-thank-you-desc {
  color: #fff;
  width: 60%;
  font-size: 1.25rem;
  font-weight: 200;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.vouchers-thank-you-btn-booking {
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #BC2023;
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 200;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.vouchers-thank-you-btn-booking:hover {
  color: #BC2023;
  background: #fff;
}
.vouchers-thank-you #gift-code {
  color: #BC2023;
  font-size: 1.25rem;
  font-weight: bold;
}