.book-a-stand-form {
  padding-top: 30px;
}


.form-control,
.form-select,
.select2-selection__rendered {
  height: 42px;
  line-height: 42px;
  width: 100%;
  margin: 0;
  border: 1px solid #e4e4e4;
  outline: 0;
  font-weight: 400;
  font-family: inherit;
  border-radius: 4px;
  padding: 0 15px;
  background-color: #fff;
  color: #111111;
  transition: 0.2s;
  box-shadow: none;
  font-size: 15px;
  vertical-align: middle;
}

.select2-container {
  max-width: 100%;

}

textarea.form-control {
  height: 95px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 15px;
  padding-right: 20px;
  overflow: hidden;
  padding-block: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  min-width: 100%;
}

.form-control:focus,
.select2-selection__rendered:focus {
  border-color: #000;
  box-shadow: none;
}

.select2-container .select2-selection--single {
  height: auto;
  padding: 0;
  border: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  width: 20px;
}

.form-control::placeholder {
  color: #666;
  opacity: 1;
}

#e1 {
  background: url(../images/down-arrow.png) no-repeat center right;
  background-size: 15px;
  background-position: 98%;
}

form {
  overflow: hidden;
}

.input-group {
  button {
    background-color: #ff5f00;
    color: #fff;
    border: none;

    &:hover {
      background-color: #FFAF80;

    }
  }
}

.form-submit-btn {
  background-color: #ff5f00;
  color: #fff;
  border: none;
  padding: 8px 23px;
  border-radius: 3px;

  &:hover {
    background-color: #FFAF80;

  }
}

/* Cancel Reply Button */
.cancel-reply {
    background-color: darkred;
    color: white; /* Red text color */
    border: 1px solid #ced4da;
    padding: 8px 23px;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .cancel-reply:hover {
        background-color: #fdf2f2; /* Light red background on hover */
        color: #c82333; /* Darker red text on hover */
        border-color: #dc3545; /* Red border on hover */
    }



/* download-brochure-form start here */
.download-brochure-form {
  max-width: 600px;
  margin-inline: auto;

  .select2-container .select2-selection--single .select2-selection__rendered,
  .form-control {
    background-color: #f9f1ec;
    border: none;
    border-bottom: 1px solid #000;

    &:focus {
      border: 1px solid #000 !important;
    }
  }

  .select2-container--focus.select2-container .select2-selection--single .select2-selection__rendered {
    border: 1px solid #000 !important;
  }
}



/* download-brochure-form End here */