/* Main Section */
section.main {
  padding: 35px;
  position: absolute;
  height: 85vh;
  width: calc(100vw - 344px);
  top: 0;
  right: 0;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(73, 115, 235, 0.1);
  margin-top: 22px;
  margin-right: 34px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  section.main {
    height: 76vh;
    width: calc(100vw - 52px);
    margin: 130px 26px 26px;
  }
}
.create-ticket .statue {
  font-size: 12px;
  border-radius: 15px;
  background-color: #757575;
}
.create-ticket .go-back {
  width: 16px;
}
.create-ticket .ticket-number {
  font-size: 24px;
  font-weight: 600;
  padding: 0 29px;
}
@media (max-width: 991px) {
  .create-ticket .ticket-number {
    padding: 0;
    margin-right: 15px;
    font-size: 22px;
  }
  .create-ticket .go-back {
    display: none;
  }
}
.create-ticket .create-ticket-details {
  padding-left: 0 !important ;
  margin-left: 0px;
}
.create-ticket .personal-info {
  font-weight: 600;
  font-size: 16px;
  margin-top: 19px;
}
.hr {
  width: 100%;
  height: 1px;
  background-color: #f2f4f9;
}
.create-ticket .create-ticket-title {
  font-size: 18px;
  font-weight: 600;
}
.create-ticket .ticket-selectors {
  margin-top: 33px;
}
.create-ticket .ticket-submit {
  border-radius: 16px;
  color: #fff;
  background-color: #70b997;
}

.ticket-selectors .form-floating input,
.ticket-selectors .form-floating select,
.ticket-selectors .form-floating textarea {
  background-color: #eff0f6;
  border-radius: 16px;
}
.form-floating label {
  color: #6e7191;
  font-size: 16px;
}
.form-floating select {
  /* color: #6e7191; */
  font-size: 16px;
}
.ticket-selectors .form-floating textarea {
  height: 245px;
  resize: none;
}
@media (max-width: 992px) {
  .ticket-selectors .form-floating textarea {
    height: 136px;
  }
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-left: 24px;
  padding-bottom: 0.625rem;
  padding-right: 24px;
}
.form-floating > label {
  padding: 1rem 24px;
}
.form-floating > .form-select{
    padding-left: 24px;
    padding-right: 24px;
    background-image: url(../images/Forward.png);
}
/* Main Section */