/* purchase-gift-card.php */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  margin-bottom: 1.0rem;
  border: 0;
}

fieldset.radio-buttons {
  flex: 0 0 100%;
  max-width: 100%;
}

fieldset legend {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  border: none;
  display: table;
  padding: 0;
}

.radio-buttons .amount-group {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}

.amount-group .item {
  flex: 0 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.amount-group .item.other {
  margin-left: 1.25rem;
}

.amount-group .item .input-group.amount {
  max-width: 175px;
  border: 3px solid transparent;
}


.amount-group .item .input-group.amount.selected {
  border-color: #337ab7;
  border-radius: 0;
}

.amount-group .item .input-group.amount.selected input[type="number"] {
  border: none;
}

.amount-group .item .input-group.amount.selected:after {
  content: "\F058";
  font-family: "FontAwesome";
  border-radius: 100%;
  color: #337ab7;
  background-color: white;
  font-size: 2.0rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(40%,40%);
  z-index: 99;
  line-height: 1;
}

.radio-buttons input[type="radio"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.radio-buttons input[type="radio"] + label {
  padding: 12px;
  font-size: 1.75rem;
  color: #687281;
  border: 3px solid transparent;
  margin: 0;
  margin-right: 0.75rem;
  margin-bottom: 1.0rem;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px #eaecf1;
  border-radius: 6px;
  user-select: none;
}

.radio-buttons input[type="radio"]:hover + label {
  border-color: #337ab7;
  color: #337ab7;
  box-shadow: none;
}

.radio-buttons input[type="radio"]:checked + label {
  border-color: #337ab7;
  color: #337ab7;
  font-weight:  700;
  border-width: 3px;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.radio-buttons input[type="radio"]:checked + label:after {
  content: "\F058";
  font-family: "FontAwesome";
  border-radius: 100%;
  color: #337ab7;
  background-color: white;
  font-size: 2.0rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(40%,40%);
}

.StripeElement {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.5rem;
}

.StripeElement.StripeElement--invalid {
  border-color: #a94442;
  border-width: 3px;
}

.StripeElement.StripeElement--complete {
  border-color: #3c763d;
  border-width: 3px;
}

#card-errors {
  color: #a94442;
}

.purchase-button {
  font-size: large;
  float: right;
  margin-left: 2.0rem;
}

@media (max-width: 767px) {
  .purchase-button {
    float: none;
    text-align: center;
  }
  
  .purchase-button a {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    margin-left: 0;
  }
}

.btn-festive {
  background-color: #be1e2d;
  color: white;
}

.btn-outline {
  border: 1px solid;
}

.btn-outline.btn-white {
  border-color: white;
  color: white;
  border-radius: 0;
}

.btn-festive:hover {
  color: white;
  text-decoration: underline;
}

.text-festive {
  color: #be1e2d;
}

.cleaning-package-heading {
  font-size: 2.5rem;
  font-weight: 700;
}



.carousel-inner img {
    width: 60%; /* Set width to 60% */
    margin: auto;
    /* min-height:200px; */
  }
  /* Hide the carousel text when the screen is less than 600 pixels wide */
  @media (max-width: 600px) {
    .carousel-caption {
      display: none;
    }
  }
  @media(max-width:768px) {
    #login-dp {
      background-color: inherit;
      color: #fff;
    }
    #login-dp .bottom {
      background-color: inherit;
      border-top: 0 none;
    }
  }
  /* Style all font awesome icons */
  .fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }
  /* Set a specific color for each brand */
  /* Facebook */
  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  /* Twitter */
  .fa-twitter {
    background: #55ACEE;
    color: white;
  }