/* ********************************************************************* */
/* ********** START : Contact Us *************************************** */
/* ********************************************************************* */

.is-required-red {
  color: var(--color-red);
}
.default-contact-us-color {
  background: var(--color-gray-dark);
  padding-bottom: 10px;
  padding-top: 10px;
}
.form-container {
  background: var(--color-bg-primary);
  margin: 0 10px 0 10px;  
  padding-bottom: 10px;
}

/* mail box design */
.mail-box-div {
  width: 200px;
  height: 100px;
  border-radius: 100px 100px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}
#mail-box-div-white {
  border: 1px solid var(--color-bg-primary);
}
#mail-box-div-red{
  background: var(--color-primary);
}

/* form heading, form, checklist design */
.form-wrapper { 
  border: 1px solid var(--color-bg-primary);  
}
.heading-align-center {
  text-align: center;
}
.checklist-dropdown-mobile-div {
  display: none;
}
.form-body-wrapper {
  display: flex;
  flex-direction: row;  
}
.form-fill-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.form-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 2%;
}
#form-item-label {
  font-weight: bold;
  min-width: 200px;
}
.form-item input,
.form-item textarea {
  flex: 1;
  padding: 2%;
  min-width: 0;
}
#form-item-input-white {
  border: 1px solid var(--color-bg-black);
}
#form-item-input-red{
  background-color: var(--color-bg-white);
  border: none;
}
.checklist-title {  
  font-weight: bold;
  font-size: 150%;
  padding-bottom: 5px;
}
.program-items{
    margin-top: 5px;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.scroll-bar{
  width: 98%;
  overflow-y: auto;
  overflow-x: hidden;
  height: 250px;
}

/* send now button design */
.form-send-now-btn-wrapper {
  text-align: center;
}
.form-send-now-btn {
  background-color: var(--color-bg-gray-light);
    color: var(--color-text-on-white);
    padding: 10px 30px;
    margin-top: 10px;
    border: none;
    outline: none;
}

/* location section design */
.location-details-div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;    
}
.google-map {  
  border: 2px solid var(--color-bg-black);
}
.map-class {
  max-width: 640px;
  max-height: 350px;
  width: 50vw;
  height: 40vw;
}

/* address details */
.address-box {
  font-size: 150%;
  padding-top: 10px;
  padding-right: 10px;
}
.address-list {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 75%;
}
.address-list-img {
  width: 3vw;
  margin-right: 10px;
}
.web {
  text-decoration: none;
}
.mail {
  color: var(--color-text-on-black);
}
/* /////////////////////////////////////////////////////////// */

/* media for tablet view */
@media only screen and (max-width: 1200px) {
  .address-default-color {
    font-size: 1.5vw;
  }
  .google-map{
    margin-right: 2%
  }
}


/* /////////////////////////////////////////////////////////// */

/* media for tablet view */
@media (max-width: 768px) {
  .checklist-dropdown-mobile-div{
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
  }
  .dropdown-title-white {
    margin-right: 9px;
  }
  #dropdown {
    width: 60%;
  }
  .location-details-div {
    padding: 10px;
    flex-direction: column;
  }
  .address-box {
    margin-top: 2%;
    font-size: 120%;
  }
  .mail-box-div {
    display: none;
  }
  .map-class {
    max-width: 100%;
    width: 100vw;
  }

  #form-item-label {
    font-weight: bold;
    min-width: 150px;
  }
}
 
/* media for mobile view */
@media only screen and (max-width: 480px) {
  .location {
    width: 100%;
    padding: 10px;
  }
  .mail-box-div {
    display: none;
  }

  .location-details-div {
    display: flex;
    padding-bottom: 2%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .form-item label {
    font-size: 14px;
    margin-left: 15px;
    width: 41%;
  }
  #address-box-margin {
    margin-top: 2%;
    width: 100%;
  }
  .map-class {
    width: 100vw;
    height: 100%;
  }
  .address-list {
    font-weight: 500;
    font-size: 10px;
  }
  .address-list-img {
    width: 5vw;
    margin-right: 3px;
  }
 
  .dropdown-title {
    color: var(--color-text-on-white);
    margin-left: 6%;
  }
  .dropdown-title-white {
    color: var(--color-bg-black);
    font-size: 14px;
    width: 44%;
    margin-left: 15px;
  }
 
  .form-body-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .form-fill-div{
    display: flex;
    flex-direction: column;
    width: 90%;
    padding-left: 10px;
    padding-right: 20px;
    padding-top: 20px;
  }

  .form-checklist-div {
    padding: 10px;
  }
}

/* ********************************************************************* */
/* ********** END : Contact Us ***************************************** */
/* ********************************************************************* */
