* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --primary: #14347e;
  --white: #ffffff;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Raleway, sans-serif;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
header .left_logo {
  height: auto;
  width: 150px;
}
.logo{
  padding-top: 25px;
  float: right;
  padding: 10px;
  height: 80px;
  width: auto;
  /* text-align: center;
  display: block; */ 
}
.title {
  color: var(--primary);
  font-size: 40px;
  text-align: center;
  margin: 40px auto 20px;
  text-transform: uppercase;
  font-weight: 700;
}
form {
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 20px;
}
form .form-group {
  margin-bottom: 15px;
}
.user_details .input_box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user_details .input_box label,.suggest_form .applicables label {
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.user_exp_main {
  border: 1px solid #3f3f3f;
  margin: 20px 0;
}
.user_exp_main .user_exp_inner {
  background-color: #fff;
}
.bordering {
  border: 1px solid #000;
  height: 100%;
}
.main_quest {
  height: 100%;
  background-color: #dddddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.table_head h6 {
  min-height: 42px;
  background-color: #dddddd;
  font-weight: 700;
  padding: 10px;
  font-size: 17px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.table_head h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 10px;
  font-style: italic;
}
.questions {
  height: 100%;
  width: 100%;
}
.questions ul {
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.questions ul li {
  user-select: none;
  width: max-content;
  height: auto;
}
.questions ul li label {
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
}
.questions ul li .radio {
  display: none;
  visibility: hidden;
}
.questions ul li label:hover {
 background-color: transparent;
}
.questions ul li .radio:checked ~ img {
  border: 3px solid var(--primary);
  border-radius: 50%;
}
.radio ~ img {
  font-size: 16px;
  cursor: pointer;
  transition: 0.1s;
  width: 35px;
  height: auto;
}
.table_head .applicables {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  padding: 10px;
  background-color: #dddddd;
}
.inpatient_main .table_head p {
  height: auto !important;
}
.table_head p {
  min-height: 42px;
  height: 100%;
  font-weight: 500;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.table_head .applicables input[type="radio"], .inpatient_main input[type="radio"] {
  cursor: pointer;
  accent-color: var(--primary);
}
.table_head .applicables > input {
  text-align: center;
  margin: 0 auto;
  display: block;
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
}
.table_head .applicables label, .table_head .option label {
  cursor: pointer;
  font-size: 14px;
}
.suggestions {
  margin-top: 15px;
  padding: 10px;
}
.suggestions label {
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 10px;
}
.suggestions textarea {
  resize: none;
}
.thank {
  padding: 0;
  margin: 40px 0;
  font-style: italic;
  text-align: center;
}
.thank p {
  font-size: 17px;
  margin-bottom: 5px;
  font-weight: 500;
}
.thank span {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.submit {
  background-color: var(--primary);
  color: var(--white);
  width: 120px;
  text-align: center;
  border: none;
  margin: 20px auto;
  display: block;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
}
/* tab thankyou */
.thanktab p{
  font-size: 30px;
  margin-bottom: 0;
  max-width: 65%;
  margin: auto;
  font-weight: 600;
}
.thanktab .social_div{
  border: 2px solid #2F2578;
  width: max-content;
  margin: 40px auto 0;
  display: block;
  min-width: 350px;
  border-radius: 20px;
  position: relative;
  max-height: 100px;
}
.thanktab .social_div span{
  position: relative;
  inset: -20px 0 auto;
  padding: 0 10px;
  color: #2F2578;
  font-size: 25px;
  background-color: #ffffff;
}
.thanktab .social_div .social_links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  inset: auto 0 -20px;
  margin: 0 auto;
  width: max-content;
}
.thanktab .social_div .social_links a img{
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
}
.suggest_form .applicables {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 0;
}
.suggest_form .applicables label,.discussed_menu label{
  cursor: pointer;
}
.suggest_form textarea{
  resize: none;
}
.discussed,.discussed_menu{
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}
/* inpatient css */
input {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background-position: right;
  background-size: auto;
  cursor: pointer;
  position: absolute;
  inset: 10px 10px auto auto;
  width: 100%;
}
.thank_you{
  border-top: 2px solid;
  border-bottom: 2px solid;
  margin: 15px 0 0;
}
.thank_you h4{
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}
.thank_you span{
  color: var(--primary);
}
.inpatient_main .yes_no{
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-evenly;
  gap: 20px;
}
.inpatient_main .yes_no label{
  font-weight: 600;
  cursor: pointer;
}
.table_head .option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  padding: 10px;
}
.inpatient_main .name{
  display: flex;
  align-items: center;
}

.header_footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
        padding: 20px;
        gap: 50px;
      }

      p {
        margin-bottom: 0%!important;
        font-weight: bold;
      }

      .social-icons {
        display: grid;
        flex-direction: row;
        gap: 15px;
        align-items: center;
      }

      .icons {
        display: flex;
        gap: 15px;
      }

      .social-icons a img {
        width: 30px;
        height: 30px;
      }

      .footer {
        background-color: #2d2e83;
        color: white;
        padding: 10px 20px;
        text-align: center;
        font-size: 14px;
      }

      @media (max-width: 768px) {
        .header_footer {
          flex-direction: column;
          align-items: center;
          gap: 40px;
        }

        .logo-section img {
          width: 280px;
        }

        .social-icons {
          flex-direction: row;
          justify-content: center;
          width: 100%;
          margin-top: 15px;
        }

        .footer {
          font-size: 12px;
        }
      }
