* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #b4b4b4;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: auto;
  font-family: sans-serif;
  background-image: linear-gradient(to bottom, #f0f1ec, #dcdfce);;
  overflow-x: hidden;
}

body .whole-body-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: center;
  width: 90%;
  background-color: #f7f8f5;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

body .whole-body-container .chat {
  position: fixed;
  bottom: 50px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: black;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 5;
  -webkit-box-shadow: 0px 5px 10px lightgray;
          box-shadow: 0px 5px 10px lightgray;
          display: none;
}

body .whole-body-container .chat svg {
  width: 35px;
  height: 35px;
  fill: white;
}

body .whole-body-container .sticky-footer {
  position: fixed;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 70px;
  background-color: white;
  -webkit-box-shadow: 0px -15px 30px #d8d8d8;
  box-shadow: 0px -15px 30px #d8d8d8;
  z-index: 4;
}

body .whole-body-container .sticky-footer .stickyfooter_hello_img {
    width: 50px;
    height: 18px;
    margin: 10px 0px;
}

body .whole-body-container .sticky-footer .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: white;
  color: #242F4F;
}

body .whole-body-container .sticky-footer .item span {
  font-size: 12px;
  font-weight: bold;
  
}

body .whole-body-container .sticky-footer .item svg {
  width: 20px;
  height: 20px;
  fill: black;
  margin: 10px 0px;
}

body .whole-body-container .sticky-footer .active {
  background-color: #FF5970;
  color: white;
}


body .whole-body-container .closing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: gray;
  opacity: 0.5;
  z-index: 6;
  display: none;
}

body .whole-body-container .doctor-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 30px;
  position: fixed;
  top: 20px;
  right: 70px;
  z-index: 7;
  width: 280px;
  height: 300px;
  background-color: white;
  -webkit-box-shadow: 0px 5px 10px lightgray;
          box-shadow: 0px 5px 10px lightgray;
  border-radius: 10px;
  display: none;
  -webkit-animation: fadein 0.5s ease;
          animation: fadein 0.5s ease;
}

body .whole-body-container .doctor-panel h2 {
  font-size: 35px;
}

body .whole-body-container .doctor-panel p {
  color: #318FBA;
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0px;
}

body .whole-body-container .doctor-panel .input-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 50px;
}

body .whole-body-container .doctor-panel .input-container input {
  width: 100%;
  height: 30px;
  border: none;
  font-size: 20px;
  color: #02475b;
  padding-left: 45px;
  outline: none;
}

body .whole-body-container .doctor-panel .input-container .underline {
  position: absolute;
  bottom: 10px;
  right: 0px;
  width: 100%;
  height: 2px;
  background-color: #02475b;
}

body .whole-body-container .doctor-panel .input-container span {
  position: absolute;
  top: 14px;
  left: 5px;
  font-size: 20px;
  color: #02475b;
}

body .whole-body-container .doctor-panel #phrase {
  color: #318FBA;
  font-size: 12px;
  margin: 15px 0px;
}

body .whole-body-container .doctor-panel button {
  position: absolute;
  right: -25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffce73;
  border: none;
  outline: none;
  -webkit-box-shadow: 0px 0px 10px lightgray;
          box-shadow: 0px 0px 10px lightgray;
}

body .whole-body-container .doctor-panel button svg {
  fill: white;
}

body .whole-body-container header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  left: auto;
  top: 0px;
  width: 90vw;
  height: 90px;
  background-color: white;
  z-index: 4;
}

body .whole-body-container header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  width: 50%;
  background-color: white;
  padding-left: 20px;
}

body .whole-body-container header .logo img {
  width: 180px;
  -height: 57px;
}

body .whole-body-container header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: white;
}

body .whole-body-container header .nav .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  -webkit-box-flex: 2.2;
      -ms-flex: 2.2;
          flex: 2.2;
}

body .whole-body-container header .nav .item h2 {
  font-size: 16px;
  font-weight: bolder;
  color: #242F4F;
}

body .whole-body-container header .nav .item .break-doctors, body .whole-body-container header .nav .item .break-pharmacy, body .whole-body-container header .nav .item .break-lab, body .whole-body-container header .nav .item .break-covid {
  width: 80%;
  height: 3px;
  background-color: #FF5970;
  margin: 5px 0px;
}

body .whole-body-container header .nav .item .break-pharmacy {
  width: 80%;
}

body .whole-body-container header .nav .item .break-lab {
  width: 80%;
}

body .whole-body-container header .nav .item .break-covid {
  width: 80%;
}

body .whole-body-container header .nav .item p {
  font-size: 11px;
  color: gray;
  font-weight: bold;
  line-height: 15px;
}


body .whole-body-container header .nav .cart {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1.3;
      -ms-flex: 1.3;
          flex: 1.3;
}

body .whole-body-container header .nav .cart svg {
  fill: #02475b;
}

body .whole-body-container header .nav .cart .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: white;
  width: 15px;
  height: 15px;
  background-color: red;
  position: absolute;
  top: -7px;
  right: 12px;
  border-radius: 50%;
  font-size: 10px;
}

body .whole-body-container header .nav .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  padding-right: 10px;
}

body .whole-body-container header .nav .user .icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FF5970;
}

body .whole-body-container header .nav .user .icon-container svg {
  fill: white;
}

body .whole-body-container .main-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100%;
  -webkit-box-shadow: 0px 5px 5px #f0f0f0;
          box-shadow: 0px 5px 5px #f0f0f0;
  -margin-top: 90px;
  min-height: 25px;
  background:white;
  color:#FF5970;
}

body .whole-body-container .main-section .img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 50%;
  height: 100%;
}

body .whole-body-container .main-section .img-container img {
  position: relative;
  right: 0px;
  bottom: 0px;
  max-width: 100%;
  max-height: 100%;
}

body .whole-body-container .main-section .left-hand-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
  width: 50%;
  padding-left: 20px;
}

body .whole-body-container .main-section .left-hand-content h1 {
  text-align: left;
  max-width: 100%;
  font-size: 3.3rem;
  margin-bottom: 10px;
  color :#FF5970;
}

body .whole-body-container .main-section .left-hand-content p {
  text-align: left;
  max-width: 80%;
  font-size: 18px;
  margin-bottom: 10px;
  color: #242F4F;
}

body .whole-body-container .main-section .left-hand-content .buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  height:auto;
}

body .whole-body-container .main-section .left-hand-content .buttons-container .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 90%;
  height: 60px;
  background-color: gray;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  padding: 0px 10px;
}

body .whole-body-container .main-section .left-hand-content .buttons-container .button span {
  -webkit-box-flex: 10;
      -ms-flex: 10;
          flex: 10;
  text-align: left;
  padding-left: 10px;
}

body .whole-body-container .main-section .left-hand-content .buttons-container .button img {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body .whole-body-container .main-section .left-hand-content .buttons-container #top-button, body .whole-body-container .main-section .left-hand-content .buttons-container #middle-button {
  margin-bottom: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#FF5970), to(#ff3554));
  background: linear-gradient(to right, #FF5970, #ff3554);
}

body .whole-body-container .main-section .left-hand-content .buttons-container #top-button img, body .whole-body-container .main-section .left-hand-content .buttons-container #middle-button img {
  width: 40px;
  height: 40px;
}

#wellness-button{
  margin-bottom: 10px;
  -background: -webkit-gradient(linear, left top, right top, from(#FF5970), to(#ff3554));
  background: none !important; 
  border: 1px solid #FF5970;

}

#wellness-button img{
  width: 40px;
  height: 40px;
}

#wellness-button span {
  -webkit-box-flex: 10;
      -ms-flex: 10;
          flex: 10;
  text-align: left;
  color: #FF5970;
  font-weight:bolder;
}


#covid-button{
  margin-bottom: 10px;
  -background: -webkit-gradient(linear, left top, right top, from(#FF5970), to(#ff3554));
  background: none !important; 
  border: 1px solid #ca9919;

}

#covid-button img{
  width: 40px;
  height: 40px;
}




body .whole-body-container .main-section .left-hand-content .buttons-container #bottom-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
         width: 90%;
         margin-bottom: 12px;
}

body .whole-body-container .main-section .left-hand-content .buttons-container #bottom-button #left-button {
  margin-right: 5px;
  width: 50%;
  background-color: white;
  -webkit-box-shadow: 5px 5px 10px lightgray;
          box-shadow: 5px 5px 10px lightgray;
  color: black; 
  min-width: 145px;
}

body .whole-body-container .main-section .left-hand-content .buttons-container #bottom-button #left-button span {
  -webkit-box-flex: 10;
      -ms-flex: 10;
          flex: 10;
  text-align: left;
  color: #FF5970;
  font-weight:bolder;
    

}

body .whole-body-container .main-section .left-hand-content .buttons-container #bottom-button #left-button img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
          width:50px;
}

body .whole-body-container .main-section .left-hand-content .buttons-container #bottom-button #right-button {
  margin-left: 5px;
  width: 50%;
  background-color: white;
  -webkit-box-shadow: 5px 5px 10px lightgray;
          box-shadow: 5px 5px 10px lightgray;
  color: black; 
  min-width: 145px;
}

body .whole-body-container .main-section .left-hand-content .buttons-container #bottom-button #right-button span {
  -webkit-box-flex: 10;
      -ms-flex: 10;
          flex: 10;
          color: #FF5970;
          font-weight:bolder;
             


}

body .whole-body-container .main-section .left-hand-content .buttons-container #bottom-button #right-button img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
          width:50px;
}

body .whole-body-container .slider-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  height: auto;
}

body .whole-body-container .slider-section .slider-one {
  width: 90%;
  height: 270px;
  margin-top: 20px;
}

body .whole-body-container .slider-section .slider-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  height: auto;
}

body .whole-body-container .slider-section .slider-one .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

body .whole-body-container .queries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 10px lightgray;
          box-shadow: 0px 0px 10px lightgray;
  background-color: white;
  padding: 20px 20px;
}

body .whole-body-container .queries p {
  text-align: left;
  width: 100%;
  color: #242F4F;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 10px;
  font-weight: bolder;
}

body .whole-body-container .queries .lower-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto;
  width: 100%;
  padding: 10px;
}

body .whole-body-container .queries .lower-container .faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 150px;
  height: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 10px lightgrey;
          box-shadow:5px 5px 10px lightgrey;
  margin: 0px 10px;
  padding: 10px;
  font-weight:bold;
}

body .whole-body-container .queries .lower-container .faq svg {
  fill: #FCBC52;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0px 7px;
}

body .whole-body-container .queries .lower-container .faq span {
  font-size: 14px;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
 -color: #FF5970;
  font-weight:bold;
}

body .whole-body-container .articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  height: auto;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 10px lightgray;
          box-shadow: 5px 5px 10px lightgray;
  margin-top: 50px;
  margin-bottom: 40px;
}

body .whole-body-container .articles .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 124px;
  position: relative;
  padding-left: 30px;
  padding-top: 0px;
}

body .whole-body-container .articles .top h2 {
  font-size: 2.5rem;
  font-weight: 100;
  z-index: 2;
  color: white;
}

body .whole-body-container .articles .top p {
  z-index: 2;
  color: white;
  font-weight: 100;
  font-size: 14px;
}

body .whole-body-container .articles .top #banner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  height: 130px;
}

body .whole-body-container .articles .top #svg {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 70px;
  max-height: 70px;
  z-index: 2;
}

body .whole-body-container .articles .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 170px;
  background-color: white;
  padding-left: 30px;
}

body .whole-body-container .articles .middle .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
}

body .whole-body-container .articles .middle .left h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: gray;
}

body .whole-body-container .articles .middle .left p {
  font-size: 15px;
  color: gray;
}

body .whole-body-container .articles .middle .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
  max-width: 230px;
  height: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 10px lightgray;
          box-shadow: 0px 5px 10px lightgray;
  background-color: white;
  padding: 20px;
  margin-right: 20px;
}

body .whole-body-container .articles .middle .right svg {
  position: relative;
  top: 2px;
  margin: 0px 10px;
  fill: #FCBC52;
  width: 20px;
  height: 20px;
}

body .whole-body-container .articles .middle .right span {
  position: relative;
  top: -3px;
  height: 100%;
  margin: 10px 0px;
  color: #FCBC52;
  font-size: 14px;
}

body .whole-body-container .articles .dashed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 20px;
  border-bottom: 2px #d4d4d4 dashed;
  background-color: white;
}

body .whole-body-container .articles .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 150px;
  background-color: white;
  border-radius: 10px;
}

body .whole-body-container .articles .bottom .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 40px;
  padding-left: 30px;
}

body .whole-body-container .articles .bottom .upper span {
  font-size: 12px;
  color: #464646;
}

body .whole-body-container .articles .bottom .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  min-height: 70px;
}

body .whole-body-container .articles .bottom .lower .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid gray;
  margin: 0px 10px;
}

body .whole-body-container .articles .bottom .lower .button span {
  font-size: 14px;
}

body .whole-body-container .articles .bottom .lower .button svg, body .whole-body-container .articles .bottom .lower .button img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

body .whole-body-container .health-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 150px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      margin-top:25px;
}

body .whole-body-container .health-container .health {
  width: 95%;
  height: 100%;
}

body .whole-body-container .health-container .health .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-width: 167px;
  max-height: 70px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px lightgray;
          box-shadow: 0px 0px 10px lightgray;
  margin: 20px 10px;
}

body .whole-body-container .health-container .health .swiper-wrapper .swiper-slide img {
  margin-left: 20px;
  width: 30px;
  height: 30px;
}

body .whole-body-container .health-container .health .swiper-wrapper .swiper-slide span {
  margin: 0px 15px;
  font-size: 12px;
}

body .whole-body-container .health-container h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  height: 48px;
  margin-left: 50px;
}

.line {
  width:100%;
  height: 1px;
  background-color: #FF5970;
}

body .whole-body-container .top-specialities {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: hidden;
}

body .whole-body-container .top-specialities h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  height: 48px;
  margin-left: 50px;
}

body .whole-body-container .top-specialities .line {
  width: 95%;
  height: 1px;
  background-color: gray;
}

body .whole-body-container .top-specialities .top {
  width: 80%;
  height: auto;
  padding: 20px 0px;
}

body .whole-body-container .top-specialities .top .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-width: 167px;
  min-height: 190px;
  border-radius: 10px;
  padding: 10px 0px;
  -webkit-box-shadow: 0px 0px 10px lightgray;
          box-shadow: 0px 0px 10px lightgray;
  margin-left: 30px;
}

body .whole-body-container .top-specialities .top .swiper-wrapper .swiper-slide #title, body .whole-body-container .top-specialities .top .swiper-wrapper .swiper-slide #keys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: gray;
  height: 40px;
  width: 80%;
  text-align: center;
}

body .whole-body-container .top-specialities .top .swiper-wrapper .swiper-slide img {
  margin: 10px 30px 20px;
  width: 50px;
  height: 50px;
}

body .whole-body-container .top-specialities .top .swiper-wrapper .swiper-slide #for {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  height: 20px;
  margin: 0px;
  width: 100%;
  text-align: center;
  padding: 0px 10px;
}

body .whole-body-container .top-specialities .top .swiper-wrapper .swiper-slide #keys {
  font-size: 10px;
  height: 20px;
  padding: 0px 10px;
  text-align: center;
}

body .whole-body-container .tests-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 320px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 25px;
}

body .whole-body-container .tests-container h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  height: 48px;
  margin-left: 50px;
}

body .whole-body-container .tests-container .line {
  width: 95%;
  height: 1px;
  background-color: gray;
}

body .whole-body-container .tests-container .test {
  margin-top: 20px;
  width: 90%;
  height: 270px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 320px;
  height: 90%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px lightgray;
          box-shadow: 0px 0px 10px lightgray;
  margin: 0px 20px;
  margin-top:20px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .line {
  width: 95%;
  height: 1px;
  background-color: gray;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 80px;
  width: 100%;
  padding: 0px 10px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .top img {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .top span {
  font-size: 1.2rem;
  font-weight: bold;
  width: 80%;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 30px;
  width: 100%;
  padding: 0px 10px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .middle span {
  font-size: 12px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .first-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 35px;
  width: 100%;
  padding: 0px 10px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .first-lower span {
  color: gray;
  font-size: 14px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .first-lower img {
  height: 20px;
  width: 30px;
  margin: 0px 5px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .first-lower #price {
  font-size: 20px;
  margin: 0px 20px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .second-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 35px;
  width: 100%;
  padding: 0px 10px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .second-lower .price #before {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .second-lower .price #after {
  margin: 0px 10px;
  font-weight: bold;
}

body .whole-body-container .tests-container .test .swiper-wrapper .swiper-slide .second-lower .add span {
  font-size: 15px;
  font-weight: bold;
  color: #FCBC52;
}

body .whole-body-container .doctor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  height: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 20px 0px;
}

body .whole-body-container .doctor img {
  width: 100px;
  height: 100px;
  cursor: pointer;
}

body .whole-body-container footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
  width: 100%;
  background-color: white;
  color: white;
  padding: 30px;
  margin-bottom: 70px;
}

body .whole-body-container footer .child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding: 10px;
}

body .whole-body-container footer .child h3 {
  font-size: 14px;
  color: #FF5970;
  margin-bottom: 20px;
  cursor: pointer;
  width: 100%;
}

body .whole-body-container footer .child .span-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 100px;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-animation: fadein 0.8s ease;
          animation: fadein 0.8s ease;
}

body .whole-body-container footer .child .span-container span {
  margin: 6px 0px;
  font-size: 14px;
  color: #242f4f;
  font-weight: 600;
}

@-webkit-keyframes fadein {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

body .whole-body-container footer .logo img {
  width: 80%;
  
}

@media only screen and (min-width: 900px) {
 
  body .whole-body-container .sticky-footer {
    display: none !important;
  }
  body .whole-body-container footer {
    margin-bottom: 0px;
  }
  body .whole-body-container header .nav .item, .cart {
    min-width: 70px;
  }
}

@media only screen and (max-width: 900px) {
        body .whole-body-container footer .logo img {
  width: 50%;
   display: block;
  margin-left: auto;
  margin-right: auto;
}
  body .whole-body-container .doctor-panel {
    right: 20px;
  }
  body .whole-body-container {
 padding: 0px !important;
overflow-x: hidden !important;  
        width: 100vw;
      
  }
    
  body .whole-body-container header {
    width: 100vw;
    position:fixed;
  }
   body .whole-body-container .main-section {
margin-top: 80px;
  }
  
  
  body .whole-body-container .doctor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    justify-content: center;
  }
  body .whole-body-container .tests-container .test {
    width: 90%;
    padding-left: 10px;
  }
  body .whole-body-container .tests-container .test .swiper-container-test .slide {
    margin: 0px 13px;
  }
  body .whole-body-container .health-container .health {
    width: 90%;
    padding-left: 10px;
  }
  body .whole-body-container .health-container .health .swiper-container-health .slide {
    margin: 0px 11px;
  }
  body {
    overflow-x: hidden;
  }
  body .whole-body-container {
     padding: 0px !important;
    overflow-x: hidden !important;
        width: 100vw;
  }
  body .whole-body-container header .logo {
    width: 100%;
  }
  body .whole-body-container header .nav .item {
    display: none;
  }
  body .whole-body-container header .nav .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 20px;
  }
  body .whole-body-container header .nav .cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 10px;
  }
  body .whole-body-container header .nav .cart .number {
    right: -3px;
  }
  body .whole-body-container .articles .bottom {
    padding: 20px 0px;
  }
  body .whole-body-container .articles .bottom .lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 20px;
  }
  body .whole-body-container .articles .bottom .lower .button {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 5px;
  }
}

@media only screen and (max-width: 768px) {
        body .whole-body-container footer .logo img {
  width: 50%;
   display: block;
  margin-left: auto;
  margin-right: auto;
}
  body .whole-body-container .tests-container .test {
    width: 90%;
    padding-left: 30px;
  }
  body .whole-body-container .tests-container .test .swiper-container-test .slide {
    margin: 0px 8px;
  }
  body .whole-body-container .doctor-panel {
    right: 20px;
  }
  body .whole-body-container .doctor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    justify-content: center;
  }
  body .whole-body-container .health-container .health {
    width: 90%;
    padding-left: 10px;
  }
  body .whole-body-container .health-container .health .swiper-container-health .slide {
    min-width: 135px;
    margin: 0px 5px;
  }
  body .whole-body-container .top-specialities .swiper-container-specialities {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  body .whole-body-container .top-specialities .swiper-container-specialities .slide {
    margin-top: 30px;
  }
  body {
    overflow-x: hidden;
  }
  body .whole-body-container {
    padding: 0px !important;
    overflow-x: hidden !important;
        width: 100vw;
  }
  body .whole-body-container header .logo {
    width: 100%;
  }
  body .whole-body-container header .nav .item {
    display: none;
  }
  body .whole-body-container header .nav .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 20px;
  }
  body .whole-body-container header .nav .cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 10px;
  }
  body .whole-body-container header .nav .cart .number {
    right: -3px;
  }
  body .whole-body-container .main-section {
    min-width: 100vw;
  }
  body .whole-body-container .main-section .img-container {
    display: none;
  }
  body .whole-body-container .main-section .left-hand-content {
    height: 100%;
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  body .whole-body-container .articles .middle .right {
    bottom: 0px;
    left: 30px;
  }
  body .whole-body-container .articles .bottom {
    padding: 20px 0px;
  }
  body .whole-body-container .articles .bottom .lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 20px;
  }
  body .whole-body-container .articles .bottom .lower .button {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 5px;
  }
  body .whole-body-container footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body .whole-body-container footer .child {
    width: 100%;
  }
  body .whole-body-container footer .child h3 {
    color: #FF5970;
    text-transform: uppercase;
    font-size: 14px;
  }
  body .whole-body-container footer .child h3::before {
    content: '+';
    margin-right: 5px;
  }
  body .whole-body-container footer .child .span-container {
    display: none;
    padding-bottom: 20px;
  }
  body .whole-body-container footer .child .span-container span {
    text-align: left;
    padding-left: 30px;
    color: #242F4F;
  }
  body .whole-body-container footer .after::after {
    content: '';
    width: 100%;
    height: 0.1px;
    margin: 10px 0px;
    background-color: gray;
    position: absolute;
    bottom: 0px;
  }
  body .whole-body-container footer .item {
    width: 100%;
  }
  body .whole-body-container footer .logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 100%;
  }
  body .whole-body-container .queries {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  body .whole-body-container .queries .lower-container {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body .whole-body-container .queries .lower-container .faq {
    min-width: 100%;
    margin: 10px;
  }
}

@media only screen and (max-width: 600px) {
     body .whole-body-container footer .logo img {
  width: 50%;
   display: block;
  margin-left: auto;
  margin-right: auto;
     }
  
  
  .whole-body-container {
    width: 100vw;
    padding-right: 20px;
  }
  .whole-body-container .main-section {
    min-width: 100vw;
  }
  body .whole-body-container .doctor-panel {
    right: 20px;
  }
  body .whole-body-container footer .child {
    width: 100%;
  }
  body .whole-body-container footer .child h3 {
    color: #FF5970;
    text-transform: uppercase;
    font-size: 14px;
  }
  body .whole-body-container footer .child h3::before {
    content: '+';
    margin-right: 5px;
  }
  body .whole-body-container footer .child .span-container {
    display: none;
    padding-bottom: 20px;
  }
  body .whole-body-container footer .child .span-container span {
    text-align: left;
    padding-left: 30px;
    color: #242F4F;
  }
  body .whole-body-container footer .after::after {
    content: '';
    width: 100%;
    height: 0.1px;
    margin: 10px 0px;
    background-color: gray;
    position: absolute;
    bottom: 0px;
  }
  body .whole-body-container .articles .top h2 {
    font-size: 1.8rem;
  }
  body .whole-body-container .doctor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    justify-content: center;
  }
  body .whole-body-container .articles .middle {
    padding: 100px 30px;
  }
  body .whole-body-container .articles .middle .right {
    bottom: 2px;
  }
  body .whole-body-container .tests-container .test {
    width: 90%;
    padding-left: 40px;
  }
  body .whole-body-container .tests-container .test .slide {
    margin: 10px;
  }
  body .whole-body-container .queries {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  body .whole-body-container .queries .lower-container {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
               flex-direction: unset;
           display: -ms-flexbox;
		  display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		    padding: 0;
  }
  
  body .whole-body-container .queries .lower-container .faq {
    min-width: 100%;
    margin: 10px;
  }
}

@media only screen and (max-width: 768px) {
        body .whole-body-container footer .logo img {
  width: 50%;
   display: block;
  margin-left: auto;
  margin-right: auto;
}
  body .whole-body-container {
    padding: 0px !important;
    overflow-x: hidden !important;
        width: 100vw;
  }
}
body .whole-body-container .sticky-footer .item span {
  font-size: 10px;
}
/*# sourceMappingURL=style.css.map */

body .whole-body-container .queries .lower-container .faq{
    margin: 10px;
    min-width: 189px;
    max-width: 189px;
}
@media only screen and (max-width: 600px){
body .whole-body-container .queries .lower-container .faq {
   margin: 10px;
    min-width: 33vw;
    max-width: 33vw;
}
body .whole-body-container .queries .lower-container {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
           flex-direction: row;
           display: -ms-flexbox;
		  display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0;
		justify-content: center; 
  }
}
.lower-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stickyfooterimg{
width: 25px;
height: 25px;
margin: 8px 0px;
}    

.question-div {
width: 100%;
margin-left: 20px;
font-weight:bold;
color: #242f4f;
}

.uploadprescription-div {
width: 100%;
margin-left: 20px;
}

@media only screen and (max-width: 600px){
.question-div {
justify-content: center; 
text-align: center;
margin-left:0px;
}  
.uploadprescription-div {
width: 100%;
margin-left: 20px;
}
}

.faq_city{
font-size: 14px;
-webkit-box-flex: 4;
-ms-flex: 4;
flex: 4;
color: #FF5970;
font-weight:bold;
text-align:center;    
}

.clicked{
background: #FF5970;
color: white;
}

.hidden{
display:none !important;
}
.selection-information{
    color: white;
    font-weight: 700;
    padding: 2px;
    z-index: 2;
    font-size: small;
    border: 1px;
    border-radius: 0px 0px 6px 6px;
    height: 50px;
    width:80%;
    display:flex;
}

.selection-information-indiv{
    background: white;
    color: #FF5970;
    border-radius: 2px;
    width: 100%;
    padding: 2px;
    text-align: center;
    border-radius: 0px 0px 6px 6px;
    box-shadow: 5px 5px 10px lightgrey;
    margin-right: 10px
}
.element{
 margin-right:10px;  
}
.choosen{
font-size:17px;
}
.change {
    font-weight: lighter;
    color: #242f4f;
    font-size: 11px;  
}

  body .whole-body-container .info-queries .info-lower-container {
    width: 100%;
    justify-content:center;

  }
 body .whole-body-container .info-queries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 10px lightgray;
          box-shadow: 0px 0px 10px lightgray;
  background-color: white;

}
 @media only screen and (max-width: 768px) { 
    body .whole-body-container .info-queries .info-lower-container {
    width: 100%;
    justify-content:center;
  }
   body .whole-body-container .info-queries {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
 }
@media only screen and (max-width: 600px) {
      body .whole-body-container .info-queries {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .h1head{font-size: 18px;
    margin-bottom: -70px;}
    
    
}
 
.underbutton-booknow{
    background: #FF5970;
    color: white;
    font-weight: 700;
    padding: 2px;
    z-index: 2;
    font-size: small;
    border: 1px;
    border-radius: 0px 0px 6px 6px;
    margin-top: -9;
    width:75%;
    text-align:center;
    justify-self: center;
} 
.date-question-div {
width: 100%;
text-align:center;
font-weight:bold;
color: #FF5970;
font-size: 18px;
    vertical-align:middle;

} 

body .whole-body-container .queries .calender-lower-container input {
    opacity: 100;
    position: inherit;
    left:unset;
   border-top-style: hidden;
        border-right-style: hidden;
        border-left-style: hidden;
        -border-bottom-style: groove;
        border-bottom-color: #FF5970;
        text-align: center;
        color: #FF5970;
        
    margin-top: 5px;
}

.no-outline:focus {
        outline: none;
      }
 
 ::placeholder {
  color: #FF5970;
  opacity: 1; /* Firefox */
  font-weight :bold;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #FF5970;
   font-weight :bold;

}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #FF5970;
   font-weight :bold;

}
 
.calender{
    width:20px;
    vertical-align:middle;
}

/*============== partner info ======= */

.left-div{
    float:left;
    width:50%;
    background: #ededed;
    border-radius: 10px 0px 0px 10px;
    min-height:350px;
    display: flex;
    align-items: center;
}
.right-div{
    float:right;
    width:50%;
    padding-top: 4px;
      border-radius: 10px 0px 0px 10px;
    min-height:350px;
    display: flex;
    align-items: center;

}


.partner-form{
    margin-left: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: 50px;
    display: grid;
    grid-template-columns: 50% auto;
    grid-gap: 10px;
    
}
.partner-form .label{
    font-size: 20px;
    color: #8a90a1;
    font-weight: bolder;
}

.partner-form input {
 
    opacity: 100;
    position: inherit;
    left: unset;
    -text-align: center;
    color: #FF5970;
    margin-top: 5px;
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    border: none;
    width: 100%;
    box-shadow:0px 0px 10px lightgrey;
}

.left-span{
    grid-column: 1/2;
}
.right-span{
    grid-column: 2/3;
}
.proceed-button{
    grid-column: 1/3;
    display: flex;
    justify-content:center;
}

.get-otp-button{
    border-radius: 100px !important;
    font-weight: bold !important;
    background: #242f4f !important;
    text-align: center !important;
}

.upload-button{
    width: 100%;
    -background: white;
    padding: 12px;
    border-radius: 10px;
    color: #FF5970;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow:0px 0px 10px lightgrey;
    border: 2px dotted #FF5970;
}

.review-detail{
    background: white;
    color: #FF5970;
    border-radius: 2px;
    width: 100%;
    padding: 4px;
    text-align: center;
    border-radius: 0px 0px 6px 6px;
    box-shadow: 5px 5px 10px lightgrey;
    font-weight:bold;
}

.details-div{
    
    margin-left: 50px;
    margin-top: 50px;
    margin-bottom: 10px;
    margin-right: 50px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 10px;
    
}
.details-div .index{
    display: grid;
    grid-gap: 5px;
}
.details-div .details-data{
    display: grid;
    grid-gap: 5px;
}
.details-div .index span{
    font-weight: bold;
    color: #242f4f;
    text-align: right;
}
.details-div .details-data span{
 color: #242f4f;  
}
.progress-div-parent {
    width: 100%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    color: #FF5970;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 0px 10px lightgrey;
    border: 2px dotted #FF5970;
}
#progress-bar {
background-color: #52e59a;
height:20px;
color: #242f4f;
width:0%;
-webkit-transition: width .3s;
-moz-transition: width .3s;
transition: width .3s;
border-radius: 4px;
padding: 4px;
}

.input-message{
    color: #242f4f;
    font-size: 12px;
    text-align: center;
    padding-top: 2px;
}

.after-upload-button{
    width: 100%;
    background: white;
    padding: 12px;
    border-radius: 10px;
    color: #FF5970;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow:0px 0px 10px lightgrey;
    border: 2px dotted #FF5970;
}
.prescription-icon{
    width:20px;
    vertical-align:middle;
}
.upload-if-available{
display:none;
}
@media only screen and (max-width: 600px) {
    .date-question-div {
        font-size:14px;
    }
    
    .right-div{
        width:100%;
        display:none;
    }
    .left-div{
        width:100%;
        background:#fdfdfd;
        border-radius: 10px 10px 10px 10px;
        
    }
    .partner-form .label{
        font-size:12px;
    }
    .partner-form input{
        padding:12px;
        border-radius: 5px;
    }
    .partner-form{
        margin:20px;
    }
    .prescription-icon{
        width:10px;
    }
    .left-span{
    grid-column: 1/3;
}
.main-section{
    border-radius: 0px 0px 20px 20px;
    margin-top: 10px !important;
}
.right-span{
    grid-column: 1/3;
}

.upload-if-available{
display:block;
font-size: 10px;
    font-style: italic;
    color: #242f4f;
}

}


.carousel{
  width:90%;
  margin:0px auto;
}
.carousel span{
  width:170px !important;
}

.slick-slide{
  margin:10px;
}
.slick-slide img{
  width:100%;
  border: 2px solid #fff;
}

.slick-slide div{
    background: white;
    color: #FF5970;
    border-radius: 2px;
    width: 100%;
    padding: 2px;
    text-align: center;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 5px 5px 10px lightgrey;
    margin-right: 10px;
    width:180px;
}
.otp-form{
    
    margin-left: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: 50px;
    display: grid;
    justify-content: center;
}
.otp-form .label{
    font-size: 20px;
    color: #8a90a1;
    font-weight: bolder;
}
.center-span{
grid-column:1/3;
}
.otp-form input {
 
    opacity: 100;
    position: inherit;
    left: unset;
    -text-align: center;
    color: #242f4f;
    margin-top: 5px;
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    border: none;
    width: 100%;
    box-shadow:0px 0px 10px lightgrey;
}

input:disabled{
background:none;    
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
@media only screen and (max-width: 600px) {
    .otp-form .label{
        font-size:12px;
    }
    .otp-form input{
        padding:12px;
        border-radius: 5px;
    }
    .otp-form{
        margin:20px;
    }
    .login-success-message{
    font-size:17px !important;
    }
    .login-success-id{
    font-size:14px !important;
    }
    .login-success-pay-underline{
        background: #dfe1e5 !important;
    }
}

.login-success-div{
    margin-left: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: auto;
    display: grid;
    justify-content: center;
}
.login-success-message{
    font-size: 20px;
    font-weight: bold;
    color: #242f4f;
 font-family: 'Maven Pro';
}

.login-success-id{
    font-size: 14px;
    font-weight: bold;
    color: #242f4f;
}
.login-success-underline{
    font-size: 10px;
    font-weight: bold;
    color: #242f4f;
}
.login-success-tag{
    font-size: 20px;
    color: #FF5970;
    font-weight: bold;
    font-style: italic;
}

.login-success-pay-underline{
    background: white;
    border-radius: 2px;
    padding: 4px;
    font-size: 12px;
    margin-top: 2px;
    display: inline-flex;
}
.upload_report_span{
    
    display: grid;
    justify-content: center;
    margin-bottom: 50px;
    width: 100%;
}
.logoimage{
    width: 360px;
    margin-top: 20px;
    margin-bottom: auto;
}
@media only screen and (max-width: 600px) {
    .logoimage{
    width: 250px;
    margin-top: 20px;
    margin-bottom: auto;
}
body .whole-body-container .main-section {
min-height: 95px;
}
body .whole-body-container footer {
    margin-bottom:0px;
}
}
.footer-text{
    color: #1a3666;
    font-weight: bold;
}
.dropdown{
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-top: 5px;
    color: #ff7084;
    font-weight:bold;
        box-shadow:0px 0px 10px lightgrey;

}
input:disabled{
background:none;    
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
@media only screen and (max-width: 600px) {
    .otp-form .label{
        font-size:12px;
    }
    .otp-form input{
        padding:12px;
        border-radius: 5px;
    }
    .otp-form{
        margin:20px;
    }
    .booking-success-message{
    font-size:17px !important;
    }
    .booking-success-id{
    font-size:14px !important;
    }
    .booking-success-pay-underline{
        background: #dfe1e5 !important;
    }
}

.booking-success-div{
    margin-left: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: auto;
    display: grid;
    justify-content: center;
}
.booking-success-message{
    font-size: 20px;
    font-weight: bold;
    color: #242f4f;
 font-family: 'Maven Pro';
}

.booking-success-id{
    font-size: 14px;
    font-weight: bold;
    color: #242f4f;
}
.booking-success-underline{
    font-size: 10px;
    font-weight: bold;
    color: #242f4f;
}
.booking-success-tag{
    font-size: 30px;
    color: #ff5970;
    font-weight: bold;
    font-family: 'Maven Pro';
    
}

.booking-success-pay-underline{
    background: white;
    border-radius: 2px;
    padding: 4px;
    font-size: 12px;
    margin-top: 2px;
    display: inline-flex;
}
.disclaimer{
    padding-right: 60px;
    padding-left: 60px;
    margin-bottom: 20px;
    color: grey;
    font-size: 12px;
    font-style: italic;
    font-family: 'Maven Pro';
}