  /* html{
        scrollbar-width: normal;
        scrollbar-color: black;
      } */
  
  body {
      background-color: white;
  }
  
  html::-webkit-scrollbar {
      width: 10px;
      background-color: white;
  }
  
  html::-webkit-scrollbar-thumb {
      border-radius: 25px;
      /* background-color: black; */
      background: linear-gradient(black, grey);
  }
  
  hr {
      width: 80%;
      margin-top: 20px;
  }
  
  h1 {
      /* width: 3.5%; */
      /* border: 2px solid red; */
      margin: auto;
      font-size: 13px;
      font-family: "poppins";
      letter-spacing: 5px;
      text-align: center;
  }
  
  h1+h1 {
      /* width: 5%; */
      text-align: center;
      margin: auto;
      font-family: "poppins";
      font-size: 17px;
  }
  
  #upper {
      /* border: 2px solid red; */
      width: 80%;
      height: 40px;
      margin: auto;
      display: flex;
      justify-content: space-between;
  }
  
  #upper>div {
      /* border: 2px solid green; */
      height: 100%;
      width: 30%;
  }
  
  #upper>div>p {
      color: #909093;
      font-size: 14px;
  }
  
  #upper>div>p::after {
      content: '»';
  }
  
  #upper>div>select {
      /* border: 2px solid rebeccapurple; */
      border: none;
      padding: 0;
      margin: 0;
      margin: auto;
      /* justify-content: flex-end;
            align-items: flex-end; */
      padding: 4px 2px;
      font-size: 12px;
      overflow: hidden;
      font-family: poppins;
  }
  
  #upper>div>select>option {
      margin: 20px;
  }
  
  #upper>div:nth-child(3) {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
  }
  
  #upper>div:nth-child(4) {
      /* border: 2px solid red; */
      justify-content: center;
      align-items: center;
  }
  
  #upper>div:nth-child(4)>ul {
      /* border: 2px solid rebeccapurple;  */
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      font-family: "poppins";
      margin: 0;
      padding: 0;
      margin-top: 6px;
      font-size: 13px;
  }
  
  #upper>div:nth-child(4)>ul>li {
      align-items: center;
      justify-content: center;
      list-style-type: none;
      padding-bottom: 40px;
  }
  
  #upper>div:nth-child(4)>ul>li:last-child::after {
      content: '>';
  }
  
  #body {
      /* border: 2px solid red; */
      width: 80%;
      margin: auto;
      display: flex;
      justify-content: space-between;
      height: 400px;
  }
  
  #body>div:nth-child(1) {
      /* border: 2px solid black; */
      width: 20%
  }
  
  #body>div:nth-child(2) {
      /* border: 2px solid black; */
      width: 75%
  }
  
  #left_section>div {
      /* border: 2px solid rebeccapurple; */
      display: flex;
      flex-direction: column;
      margin-left: 10px;
      /* max-height: 200px;
            overflow: scroll; */
  }
  
  #left_section>div:nth-child(1) {
      line-height: 2px;
      font-size: 12px;
      font-family: poppins;
      max-height: 200px;
      overflow: scroll;
  }
  /* scroll bar implemented */
  
  #left_section>div:nth-child(1)::-webkit-scrollbar {
      width: 5px;
      background-color: white;
  }
  
  #left_section>div:nth-child(1)::-webkit-scrollbar-thumb {
      border-radius: 25px;
      background-color: #dfdfdf;
      /* background: linear-gradient(black,grey); */
  }
  
  #left_section>div:nth-child(3) {
      line-height: 2px;
      font-size: 12px;
      font-family: poppins;
      max-height: 200px;
      overflow: scroll;
  }
  
  #left_section>div:nth-child(3)::-webkit-scrollbar {
      width: 5px;
      background-color: white;
  }
  
  #left_section>div:nth-child(3)::-webkit-scrollbar-thumb {
      border-radius: 25px;
      background-color: #dfdfdf;
      /* background: linear-gradient(black,grey); */
  }
  
  #left_section>div:nth-child(4) {
      line-height: 2px;
      font-size: 12px;
      font-family: poppins;
      max-height: 150px;
      overflow: scroll;
  }
  
  #left_section>div:nth-child(4)::-webkit-scrollbar {
      width: 5px;
      background-color: white;
  }
  
  #left_section>div:nth-child(4)::-webkit-scrollbar-thumb {
      border-radius: 25px;
      background-color: #dfdfdf;
      /* background: linear-gradient(black,grey); */
  }
  
  #left_section>div:nth-child(5) {
      line-height: 2px;
      font-size: 12px;
      font-family: poppins;
      max-height: 150px;
      overflow: scroll;
  }
  
  #left_section>div:nth-child(5)::-webkit-scrollbar {
      width: 5px;
      background-color: white;
  }
  
  #left_section>div:nth-child(5)::-webkit-scrollbar-thumb {
      border-radius: 25px;
      background-color: #dfdfdf;
      /* background: linear-gradient(black,grey); */
  }
  /* #right_section{
        border: 2px solid black;
      width:70%
       } */
  
  input[type=text] {
      width: 130px;
      -webkit-transition: width 0.4s ease-in-out;
      transition: width 0.4s ease-in-out;
      line-height: 30px;
      margin-top: 10px;
      margin-bottom: 10px;
  }
  /* When the input field gets focus, change its width to 100% */
  
  input[type=text]:focus {
      width: 100%;
  }
  
  .bold {
      font-weight: bold;
      margin-top: 10px;
  }
  
  #right_Section {
      display: grid;
      /* border: 2px solid red; */
      width: 10%;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }
  
  #right_Section>div {
      /* width: 100%; */
      /* border: 2px solid blue; */
      height: auto;
      padding: 10px;
  }
  
  #right_Section>div>img {
      /* border: 2px solid black; */
      width: 100%;
      /* height: 50%; */
  }
  
  #right_Section>div>p {
      width: 100%;
      /* border: 2px solid rebeccapurple; */
      margin: auto;
      font-family: "poppins";
      font-weight: bold;
      text-align: center;
  }
  
  #right_Section>div>p+p {
      width: 100%;
      margin-top: 5px;
      font-family: "poppins";
      font-size: 11px;
  }
  
  #right_Section>div>h4 {
      width: 15%;
      /* border: 2px solid red; */
      margin: auto;
      font-size: 14px;
      margin-top: 5px;
  }
  
  #right_Section>div>button {
      /* border: 2px solid red; */
      display: block;
      margin: auto;
      margin-top: 5px;
      border: none;
      padding: 10px;
      background-color: white;
  }
  
  #right_Section>div>button:hover {
      border: 1px solid;
      cursor: pointer;
      transition: all .5s ease;
  }
  /* #body>div:nth-child(2){
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3,1fr);
}
#body>div:nth-child(2)>div{
    
} */
  
  .bolder:hover {
      font-weight: bold;
      cursor: pointer;
  }
  
  input [type="checkbox"] {
      accent-color: red;
  }
  
  .dot {
      height: 13px;
      width: 13px;
      background-color: red;
      border-radius: 50%;
      display: inline-block;
      margin-top: 5px;
  }
  
  #up {
      width: 80%;
      display: grid;
      margin: auto;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
  
  #up>div>p {
      font-family: poppins;
      font-size: 14px;
  }
  
  #up>div>img {
      width: 100%
  }
  
  @media all and (min-width:480px) and (max-width:720px) {
      #body {
          display: flex;
          flex-direction: column;
          /* border: 2px solid rebeccapurple; */
      }
      #left_section>div {
          width: 100%;
          /* flex-direction: column; */
      }
      /* #body>div{
          max-height: 600px;
              overflow: -moz-hidden-unscrollable;
      } */
      #body>div:nth-child(1) {
          width: 100%;
          /* border: 2px solid green; */
          /* max-height: 900px; */
          /* overflow: scroll; */
      }
      #left_section>div:nth-child(2) {
          width: 100%;
          /* border: 2px solid green; */
          /* overflow: scroll; */
      }
      #body>div:nth-child(2) {
          width: 100%
      }
      #right_Section {
          display: grid;
          /* border: 2px solid red; */
          width: 100%;
          margin: auto;
          grid-template-columns: repeat(2, 1fr);
          /* gap:20px; */
      }
      #upper {
          margin-bottom: 20px;
      }
      #up {
          display: flex;
          flex-direction: column;
      }
  }
  
  #left_section>div:first-child p {
      margin-top: 15px;
  }
  
  #left_section label {
      margin-top: 10px;
  }
  
  #left_section input {
      margin-right: 10px;
  }