input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #6b6b6b;
  box-sizing: border-box;
  font-size: 20px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

textarea:placeholder {
  font-size: 22px;
}

input[type="submit"] {
  width: 100%;
  /* background-color: #2a3c92; */
  background-color: #f65204;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  border: 1px solid #000 !important;
  background: #fff !important;
  color: #2a3c92 !important;
}

.new_sidebar .row {
  justify-content: space-between;
}

.col-md-6 {
  width: 49%;
}

form {
  font-size: 17px !important;
  margin-top: 30px;
  color: #6b6b6b;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

input[type="checkbox"] {
  margin: 0px 15px;
  height: auto;
}

input[type="checkbox"]:first-child {
  margin: 0px 15px;
  height: auto;
  margin-left: 0px;
}

textarea {
  margin-top: 20px;
  resize: none;
}

/* w3 select  */
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  width: 96%;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  /* background-color: DodgerBlue; */
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 29px;
  right: 22px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #6b6b6b transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #6b6b6b transparent;
  top: 21px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  /* color: #ffffff; */
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  border: 1px solid #ccc;

  overflow: hidden;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 17px !important;
  margin-top: 30px;
  color: #6b6b6b;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1.5;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 17px !important;
  margin-top: 30px;
  color: #6b6b6b;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1.5;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 17px !important;
  margin-top: 30px;
  color: #6b6b6b;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.7;
}

@media only screen and (max-width: 777px) {
  .select-items div,
  .select-selected {
    width: 90%;
  }

  .custom-select {
    position: relative;

    margin: 0;
    width: 100%;
  }

  .col-md-6 {
    width: 100%;
  }

  form .row {
    gap: 0 !important;
  }
}
