
.btn{
  font-size: 1.1em  ;
}
.add_buttons{
  padding: 5px;
}
.heading{
  width: 100%;
  font-size: 2.2em;
}
.sub_heading{
  font-size: 1.3em;
}
.person,.flight,.hotel,.contact,.tandc{
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 20px;
  margin-bottom: 30px;
  width: 100% !important;
  padding: 5px;
}
.hotels{
  margin-top: 20px;
}
input{
  padding:15px;
  font-size: 1.3em;
}
.textarea{
  height: 100px;
  resize: none;
}
.input{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--sub_main_color);
  border-radius: var(--radius);
  position: relative;
}
.placeholder {
  position: absolute;
  bottom: 100%;
  left: 5px;
}
.select,.select input{
  cursor: pointer;
}
.option_box, .drop_box{
  position: absolute;
  top: calc(100% + 5px);
  background: var(--sub_main_color20);
  width: 100% !important;
  min-width: 50px;
  max-width: 350px;
  z-index: 1;
  border: 1px solid var(--sub_main_color);
  border-radius: var(--radius);
  display: none;
  opacity: 1 !important;
  box-shadow: 0px 5px 20px rgba(0, 15, 73,.5);

}

.option_box .option,.doption{
  padding:10px;
  border-bottom: 1px solid var(--sub_main_color);
  cursor: pointer;
}
.doption.noclick{
    cursor: default;
}
.option_box .option:last-child{
  border-bottom: unset;
}
.doption{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 2px;
}
.doption span:nth-of-type(1){
  font-weight: bold;
}
.hotel .doption{
  padding-bottom: 10px;
}
.doption span:last-child{
  width: 100%;
  flex-shrink: 0;
}

.option_box::-webkit-scrollbar,
.drop_box::-webkit-scrollbar{
  display: none;
}
.drop_box .doption:last-child{
  border-bottom: unset;
}

.person .input:nth-of-type(1){
  width: 100px;
}
.person .input:nth-of-type(2),.person .input:nth-of-type(3){
  width: calc(50% - 70px);
}
.person .input:nth-of-type(4),.person .input:nth-of-type(5),
.person .input:nth-of-type(6),.person .input:nth-of-type(7){
  width: calc(50% - 10px);
}
.close_per{
  cursor: pointer;
}


.datepicker{
  width: 100%;
  height: fit-content;
  position: relative;
}
.selected-date{
  width: 100%;
  position: relative;
  cursor: pointer;
}
.calendar{
  text-transform: capitalize;
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  min-width: 150px;
  width: 100% !important;
  max-width: 300px;
  border: 1px solid var(--sub_main_color) ;
  background: var(--sub_main_color20);
  border-radius: var(--radius);
  opacity: 1 !important;
  font-weight: 300;
  box-shadow: 0px 5px 20px rgba(0, 15, 73,.5);

}
.calendar-header{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid;
}
.prev,.next{
  width: 30px;
  cursor: pointer;
}
.days-name,.days{
  display: grid;
  grid-template-columns: repeat(7,1fr);
  text-align: center;
  cursor: default;
}
.day{
  aspect-ratio: 1/1;
  max-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
}
.day.valid{
  cursor: pointer;
}
.days-name{
  border-bottom: 1px solid var(--sub_main_color) ;
  padding: 5px 0px;
}
.day.valid:hover,.calendar-year:hover{
  background: var(--main_color);
  color: var(--sub_main_color);
}
.current-day,.current-year{
  color: var(--sub_main_color);
  border: 1px solid var(--sub_main_color);
}
.selected-day,.selected-year{
  background: var(--sub_main_color);
  color: var(--main_color);
}
.invalid{
  opacity: 0.3;
}
.calendar-years{
  display: grid;
  gap: 10px;
  padding: 10px;
  grid-template-columns: repeat(3,1fr);
  aspect-ratio: 1/0.95;
}
.calendar-year{
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--sub_main_color);
  border-radius: var(--radius);
  cursor: pointer;
}
.activeDate{
  z-index: 1;
}
.error{
  position: absolute;
  top: 100%;
  font-size: .9em;
}
.contact{
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 20px;
}
.contact .input:nth-of-type(1){
  width: 200px ;
}
.contact .input:nth-of-type(2){
  width: calc(100% - 220px) ;
}
.contact .input:nth-of-type(3){
  width: 100%;
}
.flight_type{
  gap: 20px;
}
.type{
  padding: 10px 15px;
  background: var(--sub_main_color);
  color: var(--main_color);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1em;
  opacity: .5;
}
.tactive{
  opacity: 1;
}

.flight .input,.hotel .input{
  width: calc(50% - 10px) !important;
}
.add_flight, .add_hotel {
  width: calc(50% - 5px);
}

.purpose{
  flex-wrap: wrap;
  margin-bottom: 30px;
  width: 100% !important;
  padding: 5px;
}
.purpose .input{
  margin-bottom: 30px;
}
.fullimp{
  width: 100% !important;
}
.receive{
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 5px;
}
.receive .sub_heading{
  margin-bottom: 30px;
}
.receive .heading{
  margin: 30px auto 0px auto;
}
.WandE {
  gap: 50px;
  margin: 10px;
}
.WandE .input{
  border: unset;
}
input[name="rb"]:checked ~ label, input[name="tandc"]:checked ~ label img {
  opacity: 1
}
.radio {
  height:60px;
  aspect-ratio: 1/1;
  background: var(--sub_main_color);
  opacity: .2;
  border-radius: var(--radius);
  cursor: pointer;
}
.checkbox {
  gap: 10px;
  cursor: pointer;
}
.checkbox img {
  opacity: .2;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  background: var(--sub_main_color);
}
.tandc .input{
  margin: 0px auto;
  width: fit-content;
  padding: 2px;
  border-color: transparent;
}
.proceed {
  transition: opacity .3s;
  font-size: 1.3em;
  padding: 10px 20px;
  margin: 30px auto;
}

@media screen and (max-width: 479px) {

  .person,
  .flight,
  .hotel,
  .contact,
  .tandc {
    column-gap: 15px;
  }

  .add_person {
    margin: auto;
    width: 100%;
  }

  .person .input:nth-of-type(2) {
    width: calc(100% - 115px);
  }

  .person .input:nth-of-type(3),
  .person .input:nth-of-type(4),
  .person .input:nth-of-type(5) {
    width: calc(100%);
  }

  .contact .input:nth-of-type(1) {
    width: 100px;
  }

  .contact .input:nth-of-type(2) {
    width: calc(100% - 115px);
  }

  .flight .input,
  .hotel .input {
    width: calc(100%) !important;
  }
}