/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Oswald:wght@500&display=swap');
* {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  /*font-weight: 400;*/
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
html {
  font-size: 16px;
  /* color: #2e4c5c; */
}
@media (min-width: 200px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 300px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 360px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1680px) {
  html {
    font-size: 19px;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 22px;
  }
}
/*Google ads popup */
.pop-up {
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
}
.pop-up iframe {
  border-radius: 0.5em;
  box-shadow: 0em 0em 1em rgba(0,0,0,0.5);
}
@media (max-width: 550px) {
  .pop-up-content > div {
    transform: scale(0.9);
  }
}
@media (max-width: 500px) {
  .pop-up-content > div {
    transform: scale(0.8);
  }
}
@media (max-width: 450px) {
  .pop-up-content > div {
    transform: scale(0.7);
  }
}
@media (max-width: 400px) {
  .pop-up-content > div {
    transform: scale(0.6);
  }
}

body {
  margin: 0;
  padding-top: 7.2em;
}
body.desktop, body.desktop .main-content {
  min-width: 1024px;
}
body.no-scroll {
  overflow: hidden;
}
a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}
img {
  display: block;
}
strong {
  font-weight: 700;
}
p {
  /* font-size: 0.8em; */
  /* margin-top: 0; */
}
p:last-child {
  margin-bottom: 0;
}
.t-05-ease {
  transition: 0.5s ease all;
}
.dn {
  display: none;
}
.ds-ib{
  display: inline-block;
}
.no-pad-top {
  padding-top: 0 !important;
}
.pad-1 {
  padding: 1em;
}
.pad-2 {
  padding: 2em;
}
.mt-2 {
  margin-top: 2em;
}
.mb-2 {
  margin-bottom: 2em;
}
.mt-1 {
  margin-top: 1em;
}
.mb-1 {
  margin-bottom: 1em;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-05 {
  margin-top: 0.5em;
}
.mb-05 {
  margin-bottom: 0.5em;
}
.pt-1 {
  padding-top: 1em;
}
.pb-1 {
  padding-bottom: 1em;
}
.pt-05 {
  padding-top: 0.5em;
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pt-025 {
  padding-top: 0.25em;
}
.pb-025 {
  padding-bottom: 0.25em;
}
.pos-rel {
  position: relative;
}
.pos-abs {
  position: absolute;
}
.pos-fix {
  position: fixed;
}
.pos-sty {
  position: sticky;
  top: 0;
}
.flex-box {
  display: flex;
}
.flex-box > .f-g0-s0 {
  flex-grow: 0;
  flex-shrink: 0;
}
.flex-box > .f-g0-s1 {
  flex-grow: 0;
  flex-shrink: 1;
}
.flex-box > .f-g1-s0 {
  flex-grow: 1;
  flex-shrink: 0;
}
.flex-box > .f-g1-s1 {
  flex-grow: 1;
  flex-shrink: 1;
}
.flex-box.gap-1 {
  gap: 1em;
}
.flex-box.gap-2 {
  gap: 2em;
}
.flex-box.gap-05 {
  gap: 0.5em;
}
.flex-box.col2 > * {
  flex-basis: 50%;
}
.flex-box.col2.fw > * {
  flex-basis: 45%;
}
.flex-box.col3 > * {
  flex-basis: 33.3%;
}
.flex-box.col3.fw > * {
  flex-basis: 31%;
}
.flex-box.col4.fw > * {
  flex-basis: 23%;
	flex-grow: 0;
	flex-shrink: 1;
}
.health-centre-related-articles.flex-box.col4 > a {
  flex-basis: calc((100% / 4) - (3em / 4));
  flex-grow: 0;
  flex-shrink: 0;
}
.health-centre-related-articles.flex-box.col3 > a {
  flex-basis: calc((100% / 3) - (2em / 3));
  flex-grow: 0;
  flex-shrink: 0;
}
.health-centre-related-articles.flex-box.col2 > a {
  flex-basis: calc((100% / 2) - (1em / 2));
  flex-grow: 0;
  flex-shrink: 0;
}
.health-centre-related-articles.flex-box.col1 > a {
  flex-basis: 100%;
  flex-grow: 0;
  flex-shrink: 0;
}
/*
.flex-box.fw > * {
  flex-grow: 1;
}
*/
.flex-box.col5 > * {
  flex-basis: 20%;
}
.flex-box > .fb-100 {
  flex-basis: 100%;
}
.flex-box > .fb-70 {
  flex-basis: 70%;
}
.flex-box > .fb-60 {
  flex-basis: 60%;
}
.flex-box > .fb-50 {
  flex-basis: 50%;
}
.flex-box > .fb-40 {
  flex-basis: 40%;
}
.flex-box > .fb-30 {
  flex-basis: 30%;
}
.flex-box > .fb-25 {
  flex-basis: 25%;
}
.flex-box > .fb-20 {
  flex-basis: 20%;
}
.flex-box.ai-c {
  align-items: center;
}
.flex-box.ai-b {
  align-items: flex-end;
}
.flex-box.fd-c {
  flex-direction: column;
}
.flex-box.fw {
  flex-wrap: wrap;
}
.flex-box.fw-nw {
  flex-wrap: nowrap;
}
.flex-box.jc-fe {
  justify-content: flex-end;
}
.flex-box.jc-sb {
  justify-content: space-between;
}
.flex-box.jc-c {
  justify-content: center;
}
.jc-c {
  justify-content: center;
}
.fullwidth {
  width: 100%;
}
.width-50 {
  width: 50%;
}
.fullheight {
  height: 100%;
}
.halfheight {
  height: 50%;
}
.mw-50 {
  max-width: 50%;
}
.mw-60 {
  max-width: 60%;
}
.mw-70 {
  max-width: 70%;
}
.csr-point{
  cursor: pointer;
}
.ta-c {
  text-align: center;
}
.ta-r {
  text-align: right;
}
.centralized {
  margin-left: auto;
  margin-right: auto;
}
.bg-blue-1 {
  background: #243271;
}
.bg-lg-blue{
  background: #639BCF;
}
.bg-lg-blue * {
  color: #fff;
  font-size: 0.7em;
  width: 135px;
}
.bg-blue-1 * {
  color: #fff;
}
.bg-blue-2 {
  background: #e8f2fa;
}
.bg-gray-1 {
  background: #f5f5f5;
}
.bg-gray-2 {
  background: rgb(224, 224, 224);
  background: linear-gradient(180deg, rgba(224, 224, 224, 1) 0%, rgba(245, 245, 245, 1) 25%);
}
.bg-white {
  background: #fff;
}
.br-b-gray-1 {
  border-bottom: 0.1em solid #e6e6e6;
}
.br-t-gray-1 {
  border-top: 0.1em solid #e6e6e6;
}
.br-b-blue-1 {
  border-bottom: 1px solid #243271;
}
.br-05 {
  border-radius: 0.5em;
}
.br-1 {
  border-radius: 1em;
}
.wrap-1 {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
}
.wrap-2 {
  max-width: 73.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.nav-3 .wrap-2 {
  margin: 0 auto;
}
.fs-08 {
  font-size: 0.8em;
}
.ls-n {
  list-style: none;
  padding-left: 0;
}
.ls-n > * {
  flex-basis: max-content;
}
h2 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  color: #4f9dd4;
}
h2 span {
  color: #AD2831;
  font-family: 'Oswald', sans-serif;
  /* font-size: 0.5em; */
  transform: translateY(-0.7em) translateX(0.2em);
  display: inline-block;
}
h3 {
  font-size: 1em;
  color: #fff;
  font-weight: 700;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 0;
}
h4 {
	font-size: 3em;
	margin-top: 0;
	margin-bottom: 0.5em;
	font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.04em;
	color: #243271;
}
h1 {
	font-size: 2em;
	margin-top: 0;
	margin-bottom: 0.5em;
	font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.04em;
	color: #243271;
}
.home-sub-title{
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  color: #4f9dd4;
  display: inline-block;
}
header {
  z-index: 103;
  box-shadow: 0em 0.2em 0.5em rgb(0 0 0 / 5%);
  top: 0;
}
header .nav-1 {
  height: 2.2em;
}
header .nav-1 > div * {
  font-size: 0.7em;
}
header .nav-1 > div > span {
  font-size: 0.8em;
}
header .nav-1 p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}
header .nav-1 > .flex-box > a {
  margin-right: 2em;
}
header .nav-1 a.button {
  font-weight: 700;
  background: #AD2831;
  font-size: 1em;
  padding: 0.4em 0.75em 0.45em;
  border-radius: 0.5em;
  margin-left: 1em;
}
header.shrink {
  margin-top: -2em;
}
header.searching {
  border-bottom: 0.1em solid rgba(230, 230, 230, 0);
  box-shadow: 0em 0.2em 0.5em rgb(0 0 0 / 0%);
}
header .nav-2 {
  height: 5em;
}
.header-cart-icon {
  width: 25px;
  height: 25px;
}
.header-cart-icon .class-a {
  fill: none;
}
.header-cart-icon .class-b {
  fill: #3c3c3c;
}
.header-login {
  width: 25px;
  height: 25px;
}
.header-login .class-a, .header-login .class-b {
  fill: none;
}
.header-login .class-b {
  stroke: #3c3c3c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1px;
  fill-rule: evenodd;
}
.nav-3 > .flex-box > div {
  padding-right: 0.5em;
}
.nav-3 > .flex-box > div:last-child {
  text-align: right;
  padding-right: 0;
}
.nav-3 .tab {
  width: 0;
  height: 0;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-bottom-width: 1em;
  border-bottom-style: solid;
  border-bottom-color: #f3f1f1;
  position: absolute;
  opacity: 0;
  z-index: 99;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.5s ease all;
}
.nav-3-d {
  box-shadow: 0em 0em 0.75em rgb(0 0 0 / 20%);
  top: 2.7em;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
.nav-3-d ul li {
  margin-bottom: 0.25em;
}
.nav-3-d ul li:last-child {
  margin-bottom: 0;
}
.nav-3-d ul li a {
  font-size: 0.8em;
  color: #2e4c5c;
}
.breadcrumb-title{
  text-transform: uppercase;
}
.breadcrumbs {
  padding-left: 1em;
  padding-right: 1em;
}
.breadcrumbs a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6em;
}
.breadcrumbs a .home {
  width: 1.2em;
  height: auto;
}
.breadcrumbs span {
  padding: 0 0.5em;
}
.breadcrumbs span img {
  width: 0.3em;
}

@media(max-width:576px){
  .breadcrumbs{
    display: none;
  }
  .revamp-google-ads-desktop{
    display: none;
  }
}
.nav-4 {
  z-index: 105;
  height: 100%;
  width: 20em;
  top: 0;
  left: -20em;
  padding: 2em;
  box-shadow: inset -0.2em 0em 2em rgb(0 0 0 / 50%);
}
.nav-4-slideback {
  top: 0;
  z-index: 104;
  height: 100vh;
  width: 100%;
  pointer-events: none;
}
.nav-4 ul {
  font-size: 0.8em;
  padding-left: 1em;
  margin-top: 0;
}
.nav-5 {
  z-index: 101;
  bottom: 0;
  box-shadow: 0em -0.2em 0.5em rgb(0 0 0 / 5%);
  display: none;
}
.nav-5 > .flex-box {
  height: 4em;
}
a.button-blue {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  color: #243271;
  padding: 0.6em 1em;
  text-decoration: none;
  /*background: #ffffff;*/
  transition: 0.5s linear all;
  position: relative;
}
.cart-count{
  position: absolute;
  background: red;
  color: #fff;
  top: -12px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -15px;
  color: #fff!important;
}
a.button-blue span {
  color: #AD2831;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8em;
  transform: translateY(-0.4em) translateX(0.2em);
  display: inline-block;
}
a.see-all {
  display: flex!important;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: center;
  gap: 0.2em;
}
a.see-all span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6em;
  color: #243271;
}
a.see-all img {
  width: 1em;
}
/*
a.button-blue:hover {
  color: #fff;
  border-radius: 1.5em;
  background: #243271;
}
a.button-blue:hover span {
  color: #fff;
}
*/
/* .nav-3 a.button-blue {
  padding-bottom: 1.6em;
} */
.nav-3 > div > div:hover .tab, .nav-3 > div > div:hover .nav-3-d {
  opacity: 1;
  pointer-events: all;
}
/*
a.button-blue.active, .button-blue.active span, a.button-blue.active:hover span {
  color: #66758F;
}
a.button-blue.active:hover {
  border-radius: 0;
  background: #ffffff;
}
*/
.nav-4 a.button-blue {
  color: #fff;
  background: #243271;
}
.nav-4 a.button-blue:hover span {
  color: #AD2831;
}
.avatar {
  width: 5em;
  border-radius: 50%;
  padding: 0.5em 0.4em 0.6em;
}
.customer-feedback {
  margin-top: 4.5em;
}
.customer-feedback .avatar {
  margin-top: -4.5em;
  width: 7em;
}
.nav-4 .button-white {
  color: #243271;
  font-weight: 700;
  font-size: 0.8em;
  padding: 0.5em 1em;
  margin-right: 0.5em;
}
.nav-4 .hello-user {
  margin-bottom: 0.5em;
  display: block;
}
.nav-4 hr {
  border: 1px dashed #fff;
  padding: 0;
  margin: 0.5em 0;
}
.nav-4 .main {
  flex-grow: 1;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
  flex-wrap: nowrap !important;
}
.nav-4 .main::-webkit-scrollbar {
  display: none;
}
.nav-4 .socmed a {
  display: block;
}
.button-white {
  background: #fff;
  display: inline-block;
  border-radius: 1.5em;
  text-decoration: none;
  font-size: 0.8em;
  padding: 0.5em 1em;
  font-weight: 700;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
}
.button-more {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  text-decoration: none;
  color: #243271;
}
.dots {
  text-align: center;
  line-height: 0.2em;
}
.dots > div {
  display: inline-block;
  background: #AD2831;
  height: 0.3em;
  width: 0.3em;
  margin: 0.05em;
  border-radius: 0.15em;
}
.flex-box > div.logo {
  flex-basis: 5em;
  overflow: hidden;
}
.flex-box > div.logo.dissolve {
  flex-basis: 0;
  padding-right: 0;
  opacity: 0;
}
div.logo > div {
  font-family: "Oswald", sans-serif;
}
.flex-box > div.search-box {
  flex-basis: 100%;
  flex-shrink: 1;
  padding-left: 2em;
  padding-right: 2em;
}
.flex-box #searchInput {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/magnifier-with-a-heart.svg");
  background-repeat: no-repeat;
  background-size: 1.5em;
  background-position: 1.5em center;
  border: 0;
  padding: 1em 2em 1em 3.75em;
  border-radius: 2em;
  outline: 0;
}
.flex-box > div.main-nav {
  flex-basis: 14em;
}
.bd-rds-50{
  border-radius: 50%;
}
div.main-nav * {
  color: #2e4c5c;
}

div.main-nav .flex-box {      
  gap: 24px;
}
div.main-nav .flex-box > div {
  font-size: 0.7em;
}
div.main-nav .flex-box > a {
  font-size: 0.7em;
  white-space: nowrap;
}
.main-nav svg, .main-nav img {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.mg-0-auto{
  margin: 0 auto;
}
div.main-nav .flex-box > div svg {
  display: block;
  margin: 0 auto 0.5em;
}
.search-tab {
  z-index: 102;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  padding-top: 5em;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 5em;
  overflow: scroll;
}
.search-tab.active {
  pointer-events: all;
  opacity: 1;
}
.search-tab hr {
  margin-top: 2em;
}
.search-tab .category {
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
  margin: 0.1em;
}
.section {
  padding-top: 3em;
  padding-bottom: 3em;
}
.section.pt-1 {
  padding-top: 1em;
}
.section.pb-1 {
  padding-bottom: 1em;
}
.toggle-container {
  height: 1.75em;
  background: #fff;
  border-radius: 1em;
  flex-basis: 3.5em;
}
.toggle-container span.en {
  top: 0.5em;
  right: 0.9em;
  color: #243271;
}
.toggle-container span.bm {
  top: 0.5em;
  left: 0.7em;
  color: #243271;
}
.toggle-container button {
  width: 2em;
  height: 2em;
  border-radius: 1em;
  background: #243271;
  top: 0.25em;
  left: 0.25em;
  border: none;
  transform: translateX(0);
  transition-duration: 0.4s;
}
button:hover {
  cursor: pointer;
}
/* --Classes for JavaScript-- */
#toggle-lang.active {
  transform: translateX(2.25em) !important;
}
/* thumbs */
.thumbs.flex-box > div {
  flex-basis: 23%;
}
.thumbs.flex-box a {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center right;
  width: 100%;
  display: block;
  height: 7em;
  font-family: 'Open Sans', sans-serif;
  border-radius: 0.5em;
  filter: brightness(1);
}
.thumbs.flex-box a div {
  width: 74%;
  font-size: 1.125em;
  letter-spacing: -0.04em;
  line-height: 1em;
  padding: 0 1em;
  font-weight: 700;
}
.thumbs.flex-box a:hover {
  /* transform: scale(1.05); */
  background-size: 110%;
  filter: brightness(1.1);
}
.thumbs.flex-box small {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.2em;
  margin-left: 1.65em;
  margin-top: 2em;
  font-size: 0.6em;
}
.thumbs #b1 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-1.jpg");
  color: #4c818c;
}
.thumbs #b2 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-2.jpg");
  color: #906e7d;
}
.thumbs #b3 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-3.jpg");
  color: #0a7d88;
}
.thumbs #b4 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-4.jpg");
  color: #885b60;
}
.thumbs #b5 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-5.jpg");
  color: #699685;
}
.thumbs #b6 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-6.jpg");
  color: #a38e2c;
}
.thumbs #b7 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-7.jpg");
  color: #959493;
}
.thumbs #b8 {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/box-8.jpg");
  color: #33706b;
}
.swipe-indicator {
  display: none;
}
.swipe {
  width: 1em;
  height: 1em;
  padding-top: 0.06em;
  margin-left: 0.25em;
}
.headline h1{
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  color: #4f9dd4;
  display: inline-block;
}
div.headline {
  margin-bottom: 0.5em;
}
.headline > div {
  flex-shrink: 1;
  flex-grow: 1;
}
.headline > div:first-child {
  padding-right: 1em;
}
.headline > div:last-child {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 1.8em;
  padding-left: 0;
  text-align: right;
}
.headline h2 {
  display: inline-block;
}
.headline > span {
  padding-left: 1em;
}
.slider-container .controls > li {
  display: block;
}
.controls {
  margin: 0 0 0.5em;
  padding-left: 0;
}
.controls .headline {
  order: 0;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
}
.controls .prev {
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}
.controls .more {
  order: 2;
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 1.1em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
body.mobile .controls .more {
  padding-right: 0;
}
.controls .next {
  order: 3;
  flex-grow: 0;
  flex-shrink: 0;
}
.controls .next:hover, .controls .prev:hover {
  cursor: pointer;
}
body.mobile .slider-container .controls .prev, body.mobile .slider-container .controls .next {
  display: none;
}
body.mobile .slider-container .headline > span {
  display: block;
  padding-left: 0;
}
.slider-item {
  padding: 0 0.5em;
}
.slider-item .img > img {
  width: 100%;
  border-radius: 0.5em;
}
.category {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.2em;
  left: 1em;
  top: 1em;
  font-size: 0.6em;
  text-transform: uppercase;
}


.header_bgr {
  display: inline-block;
  width:18px;
  height:18px;
  cursor: pointer;
  text-decoration: none;
}

.header_bgr i {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 3px;
  color:#252525;
  font:bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent:-55px;
  background: #243271;
  transition:all .2s ease-out;
}

.header_bgr i::before, .header_bgr i::after {
  content:'';
  width: 18px;
  height: 3px;
  background: #243271;
  position: absolute;
  left:0;
  transition:all .2s ease-out;
}

.header_bgr i::before { top: -7px; }
.header_bgr i::after { bottom: -7px; }
.header_bgr:hover i::before { top: -10px; }
.header_bgr:hover i::after { bottom: -10px; }
.header_bgr.active i { background: rgba(0,0,0,0); }

.header_bgr.active i::before {
  top:0;
  -webkit-transform: rotateZ(45deg);
     -moz-transform: rotateZ(45deg);
      -ms-transform: rotateZ(45deg);
       -o-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.header_bgr.active i::after {
  bottom:0;
  -webkit-transform: rotateZ(-45deg);
     -moz-transform: rotateZ(-45deg);
      -ms-transform: rotateZ(-45deg);
       -o-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}

/* Button placement */
.header_bgr {
  position: relative;
  top: -6px;
  right: -12px;
}

.category.hot {
  background-color: #AD2831;
}
.slider-item .img .promo {
  display: table;
  background-color: #AD2831;
  color: #fff;
  right: 0.3em;
  bottom: 0.3em;
  line-height: 0.8em;
  width: 2.75em;
  height: 2.75em;
  border-radius: 0.5em;
}
.slider-item .img .promo > div {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Oswald', sans-serif;
  padding-bottom: 0.3em;
}
.slider-item .img .promo small {
  display: block;
  font-weight: 700;
  font-size: 0.5em;
}
.slider-item .desc h2 {
  height: 2.4em;
}
.bg-blue-1 .desc h2 {
  color: #fff;
}
.desc h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1em;
  font-weight: 700;
  color: #243271;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.slider-item .details > div {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
}
.slider-item .details > div:last-child {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}
.slider-item .desc {
  padding: 0 0.5em;
}
.slider-item .card {
  text-decoration: none;
  display: block;
}
.currency {
  font-size: 0.6em;
  transform: translateY(-0.45em);
  display: inline-block;
  font-family: 'Oswald', sans-serif;
}
.price .old {
  font-size: 0.85em;
  color: #a0a3b5;
  margin-bottom: 0.25em;
}
.price .old .value {
  text-decoration: line-through;
}
.price .old .discount {
  color: #4f9dd4;
  display: inline-block;
  font-size: 0.8em;
  padding: 0.1em 0.2em;
  border: 0.1em dashed #4f9dd4;
  margin-left: 1em;
}
.price .new {
  font-size: 1.6em;
  line-height: 0.9em;
  color: #243271;
}
.price .new .value {
  font-size: 0.8em;
  font-weight: 700;
}
.controls i img {
  width: auto;
  height: 0.9em;
}
.my-slider.questions > .slider-item > .card {
  padding: 1em;
  border-radius: 0.5em;
  border: 0.1em dashed #4f9dd4;
}
body.mobile .slider-container > .my-slider {
  max-width: 100%;
  overflow: scroll;
  flex-wrap: nowrap;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
body.mobile .slider-container > .my-slider > .slider-item {
  flex-basis: 62.5vw;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (min-width: 410px) {
  body.mobile .slider-container > .my-slider > .slider-item {
    flex-basis: 46.5vw;
  }
}
@media (min-width: 520px) {
  body.mobile .slider-container > .my-slider > .slider-item {
    flex-basis: 39.5vw;
  }
}
@media (min-width: 640px) {
  body.mobile .slider-container > .my-slider > .slider-item {
    flex-basis: 28vw;
  }
}
@media (min-width: 920px) {
  body.mobile .slider-container > .my-slider > .slider-item {
    flex-basis: 21vw;
  }
}
@media (min-width: 1100px) {
  body.mobile .slider-container > .my-slider > .slider-item {
    flex-basis: 18vw;
  }
}
.banners h2 {
  font-size: 1.2em;
  max-width: 60%;
}
.banners > a {
  padding: 0.5em;
  display: block;
}
.banners > a > img {
  border-radius: 0.5em;
}
.banners .flex-box {
  top: 0;
  left: 0;
  padding: 1em;
  border-radius: 0.5em;
}
.banners .flex-box > div:first-child {
  flex-basis: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}
.banners .flex-box > div:last-child {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 0;
}
.banners a {
  padding-top: 15.2%;
}
.banners a > div {
  background-size: cover;
  background-repeat: no-repeat;
}
.banners #banner-01 > div {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/banner-1.jpg");
}
.banners #banner-02 > div {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/banner-2.jpg");
}
.banners #banner-03 > div {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/banner-3.jpg");
}
.banners #banner-04 > div {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/banner-4.jpg");
}
.banners #banner-05 > div {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/banner-5.jpg");
}
.banners #banner-06 > div {
  background-image: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/banner-6.jpg");
}
.banner.flex-box.fd-c > h2, .banner.flex-box.fd-c > div {
  flex-grow: 0;
  flex-shrink: 0;
}
.banner.flex-box.fd-c > p {
  flex-grow: 1;
  flex-shrink: 1;
}
.burger-wrapper {
  left: 0;
}
.burger {
  margin-left: 1em;
}
.burger .line {
  width: 1.2em;
  height: 0.175em;
  background-color: #243271;
  display: block;
  margin: 0.3em auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.burger .line:first-child, .burger .line:last-child {
  margin: 0 0;
}
.burger:hover {
  cursor: pointer;
}
body.mobile .no-scroller {
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
  flex-wrap: nowrap !important;
}
body.mobile .no-scroller::-webkit-scrollbar {
  display: none;
}
body.slide {
  overflow: hidden;
}
body.slide > .sr {
  transform: translateX(20em);
}
body.slide .nav-4-slideback {
  pointer-events: all;
}
body.slide .slide-disable {
  filter: grayscale(1) opacity(0.4);
  pointer-events: none;
}
body.slide > div.nav-4, body.slide #burger {}
.logos > img {
  height: 3.5em;
  width: auto;
}
@media(min-width:576px){
  .health-centre > div:last-child {
    flex-basis: 300px;
  }
}
@media(max-width:576px){
   #banner-04 {
    flex-basis: 135vw;
    padding-top: 43.2%;
  }
  #banner-05 {
    flex-basis: 135vw;
    padding-top: 43.2%;
  }
  #banner-06 {
    flex-basis: 135vw;
    padding-top: 43.2%;
  }
}

.health-centre .desc {
  padding: 0.25em 0.5em 0.5em;
}
.health-centre .item {
  color: #2e4c5c;
  display: block;
	margin-bottom: 1em;
}
.health-centre .item > img {
  border-radius: 0.5em;
}
.health-centre .desc h2 {
  height: auto;
}
div > .banner-item {
  margin-bottom: 1em;
}
div > .banner-item:last-child {
  margin-bottom: 0;
}
.banner-item a img {
  display: block;
  border-radius: 0.5em;
}
.banner-item *{
  border-radius: 0.5em;
}
.banner-item > h2 {
	margin-bottom: 0.5em;
}
.health-centre .banners-holder .desc {
	padding: 0;
}
.doctor-connect {
  background: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/bg-connect-doctor.jpg") no-repeat right center #bbdbda;
  background-size: contain;
  border-radius: 0.5em;
}
.doctor-connect * {
  color: #4d7473;
}
.subscribe {
  background: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/bg-subscribe.jpg") no-repeat right center #c8ebe1;
  background-size: contain;
  border-radius: 0.5em;
}
.subscribe * {
  color: #4d7473;
}
.tag a {
  display: inline-block;
  flex: none;
  padding: 6px 18px;
  background: #3F4B81;
  border-radius: 8px;
}
.tag a span {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
}
.nav-see-all-cat span{
  color: #243271 !important;
}
.nav-see-all-cat{
  color: #243271 !important;
  background-color: #fff !important;
  text-transform: uppercase;
  border: 1px solid #243271;
}
.doctor-connect .content {
  width: 80%;
}
.stars > div {
  flex-basis: 1em;
  height: 1em;
  background-size: cover;
}
.stars > div.on {
  background: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/star-on.svg") no-repeat;
}
.stars > div.off {
  background: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/star-off.svg") no-repeat;
}
footer a {
  display: block;
}

.health-centre-page .category-content-header{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.category-content-header{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 20em;
  text-align: left;   
}
@media(max-width: 767px){
  .category-content-header{
      height: 50vh;
      background-repeat: no-repeat;
  }
  .category-banner{
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 1240px) {
  .pad {
    padding: 0 1em;
  }
  .nav-2 {
    padding-left: 2em;
  }
}
@media (max-width: 920px) {
  .r-920 {
    display: none;
  }
  body {
    padding-top: 7.2em;
  }
}
@media (max-width: 1100px) {
  .thumbs.flex-box a {
    background-position: 60% center;
  }
}
@media (max-width: 1024px) {
  body.mobile .no-scroller-1024 {
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    flex-wrap: nowrap !important;
  }
  body.mobile .no-scroller-1024::-webkit-scrollbar {
    display: none;
  }
  body.mobile .no-scroller-1024.col3 > * {
    flex-basis: 40vw;
    flex-grow: 0;
    flex-shrink: 0;
  }
  body.mobile .banners a {
    padding-top: 22%;
  }
  .banners a > div {
    background-position: center 50%;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 6.2em;
    padding-bottom: 4em;
  }
  .f-g0-s0.f-g1-s0-767 {
    flex-grow: 1;
  }
  .a-767 {
    display: block;
  }
  .r-767 {
    display: none;
  }
  .swipe-indicator {
    display: flex;
  }
  .flex-box > div.search-box {
    padding-left: 0;
    padding-right: 0;
  }
  .flex-box > div.logo {
    padding-right: 1em;
  }
  header .nav-2 {
    height: 4em;
  }
  .headline > div:first-child > span {
    display: block;
    padding-left: 0;
  }
  .wrap-2 {
    padding-left: 0;
    padding-right: 0;
  }
  .wrap-2 > div {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .thumbs {
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    flex-wrap: nowrap !important;
  }
  .thumbs::-webkit-scrollbar {
    display: none;
  }
  .thumbs.flex-box > div {
    flex-basis: 28vw;
  }
  .thumbs.flex-box small {
    margin-top: 1.25em;
    margin-left: 1.4em;
  }
  .thumbs.flex-box a {
    height: 6em;
  }
  .thumbs.flex-box a div {
    font-size: 1em;
  }
  body.mobile .no-scroller-1024.col3 > * {
    flex-basis: 60vw;
  }
  body.mobile .banners a {
    padding-top: 30%;
  }
  body.mobile .banners h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 620px) {
  body.mobile .no-scroller-1024.col3 > * {
    flex-basis: 80vw;
  }
  body.mobile .banners a {
    padding-top: 40%;
  }
  body.mobile .banners h2 {
    font-size: 5vw;
  }
}
@media (max-width: 550px) {
  .thumbs.flex-box > div {
    flex-basis: 35vw;
  }
}
@media (max-width: 475px) {
  .thumbs.flex-box > div {
    flex-basis: 10.5em;
  }
  .banner h2.mw-70, .banner p.mw-70 {
    max-width: 100%;
  }
  .doctor-connect {
    padding-bottom: 10em;
    background: url(https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/bg-connect-doctor-m.jpg) no-repeat center bottom #bbdbda;
    background-size: 100%;
  }
  .subscribe {
    padding-bottom: 10em;
    background: url("https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-revamp/bg-subscribe-m.jpg") no-repeat center 1em #c8ebe1;
    background-size: 29em;
  }
}
@media (max-width: 420px) {
  body.mobile .no-scroller-1024.col3 > * {
    flex-basis: 85vw;
  }
  .banners{
    overflow: scroll;
  }
  .banners a{
    flex-basis: 85vw!important;
    flex-grow: 0;
    flex-shrink: 0;
    padding-top: 50%;
  }
  body.mobile .banners a {
    padding-top: 50%;
  }
}
@media (max-width: 374px) {
  body.slide > .sr {
    transform: translateX(82vw);
  }
  .nav-4 {
    width: 82vw;
    left: -82vw;
  }
}
@media (max-width: 1023px) {
  .r-1023 {
    display: none;
  }
  .footer.flex-box {
    flex-wrap: wrap;
    max-width: 40em;
  }
  .footer.flex-box > div.fb-30 {
    flex: 1 1 100%;
  }
  .health-centre.flex-box > div:last-child {
    /* display: none; */
  }
  .health-centre.flex-box {
    flex-direction: column;
  }
  .customer-feedback {
    flex-wrap: wrap;
  }
  .customer-feedback.flex-box.col4 > div {
    flex-basis: 40%;
    flex-shrink: 1;
    flex-grow: 1;
    margin-bottom: 4em;
  }
}
@media (max-width: 639px) {
  .footer.flex-box > div {
    flex: 1 1 40%;
  }
}
@media (max-width: 767px) {
  .banners-02.flex-box {
    flex-direction: column;
  }
}
@media (max-width: 519px) {
  .customer-feedback.flex-box.col4 {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .r-500 {
    display: none;
  }
  .dn.a-500 {
    display: block;
  }
}
@media (max-height: 650px) {
  .nav-4 {
    padding: 0.5em 1em;
  }
}
@media (max-width: 299px) {
  header .nav-2 {
    height: 5em;
  }
}
.ac .ac-header {
  margin: 0;
  padding: 0;
}
.ac .ac-trigger {
  font-weight: 800;
  text-align: left;
  width: 100%;
  padding: 0.5em 1em 0.6em;
  display: block;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
  margin: 0;
  border: 0;
  font-size: 0.8em;
}
.ac .ac-trigger::after {
  content: "+";
  text-align: center;
  width: 1em;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 0.5em;
  top: 50%;
}
.ac .ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
}
.ac .ac-panel .ac-text {
  padding: 0.5em 1em 0.6em;
  margin: 0;
}
.ac.js-enabled .ac-panel {
  visibility: hidden;
}
.ac.is-active .ac-panel {
  visibility: visible;
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: "–";
}
.ac.is-active .ac-trigger {
  color: #4f9dd4;
}
.ac .ac-trigger span {
  color: #AD2831;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8em;
  transform: translateY(-0.4em) translateX(0.2em);
  display: inline-block;
}
.push-down > div {
  padding-top: 6.5em;
}
.google-banner {
  text-align: center;
  background: rgb(82, 85, 102);
  background: radial-gradient(circle, rgba(82, 85, 102, 1) 0%, rgba(73, 75, 88, 1) 25%);
}
.google-banner a {
  display: inline-block;
  margin: 0 auto;
}
.google-banner a img {
	width: 100%;
	max-width: 970px
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banners-holder {
	margin-bottom: 1em;
}
.banners-holder > .banner-item {
	top: 6.25em;
}
.banners-holder > .banner-item > h2 {
	    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1em;
    font-weight: 700;
    color: #243271;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.related-articles a {
  color: #243271;
  display: block;
  padding: 0.75em 0;
  font-size: 0.75em;
	/* border-bottom: 0.1em solid #e6e6e6; */
}

/*Scrollbar*/

::-webkit-scrollbar {
  width: 12px;
  height: 0;
  background-color: transparent;
}

@media(min-width:576px){
  ::-webkit-scrollbar {
    height: 8px;
  }
}

::-webkit-scrollbar-track {
  background: #fff; 
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px; 
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

::-webkit-scrollbar-thumb:active {
  background: #888; 
}

/*Horizontal scrollers*/
.scroller::-webkit-scrollbar-track
{
	border-radius: 4px;
	background-color: transparent;
}

.scroller::-webkit-scrollbar
{
	width: 4px;
  height: 8px;
	background-color: transparent;
}

.scroller::-webkit-scrollbar-thumb
{
	border-radius: 4px;
	background-color: rgba(119, 118, 118, 0.2);
}
.scroller{
  overflow: auto;
  white-space: nowrap;
}
@media(max-width:768px)
{
  .scroller{
    width:105%;
  }
} 

.article-sticky{
  position: sticky;
  /* top: 6.25em; */
}

.hc-in-rel-art-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  height: 150px;
  width: 336px;
}

/* 14.0 Google Ads */


.google-ads-position-desktop{
  display: flex;
  justify-content: center;
  margin-top: 0;
  width: 100%;
}

.google-ads-position-mobile{
  display: none;
}

.google-ads-large-leaderboard{
  display: flex;
  /* margin-top: 15px; */
  /*margin: 20px 0;*/
  /* margin-bottom: 20px; */
  justify-content: center;
  width: 100%;
}

.google-ads-leaderboard{
    display: none;
}

.ads-leaderboard-individual-soalan{
  display: flex;
  /* text-align: center; */
  justify-content: center;
  margin: 20px 0;
  width: 100%;
}

@media (max-width: 960px){
  .google-ads-large-leaderboard{
    display: none;
  }

  .google-ads-leaderboard{
    display: flex;
    /* text-align: center; */
    justify-content: center;
    margin: 20px 0;
    width: 100%;
  }
}

@media(max-width: 768px){
  .google-ads-position-desktop{
    display: none;
  }

  .google-ads-position-mobile{
    display: flex;
    /* text-align: center; */
    justify-content: center;
    /* margin: 20px 0; */
    overflow: hidden;
    /* margin-bottom:20px; */
    width: 100%;
  }

  .google-ads-leaderboard{
    display: none;
  }

  .ads-leaderboard-individual-soalan{
    display: none;
  }
}

.hc-art-bg-img{
  background-position: center;
  background-size: cover;
  height: 320px;
  margin: 5% 0;
  border-radius: 8px;
}

.hc-in-body{
  font-family: 'Open Sans', sans-serif !important;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
}

.hc-in-body li{
  font-family: 'Open Sans', sans-serif !important;
  /* font-size: 14px!important; */
}

.hc-in-body p{
  font-family: 'Open Sans', sans-serif !important;
  /* font-size: 16px!important; */
}

.hc-in-body span{
  color: #2e4c5c!important;
  font-family: 'Open Sans', sans-serif !important;
  /* font-size: 16px!important; */
  line-height: 26px;
}

.hc-in-body sup{
  font-size: 10px!important;
}

.hc-in-body span sup span{
  font-size: 10px!important;
}

.hc-in-body a{
  color: #00a2e3;
  text-decoration: none;
}

.hc-in-body img{
  margin: 0 auto;
  width: 85%;
  object-fit: contain;
}

.hc-in-body figure{
  text-align: center;
}

.hc-in-body table,tr,td,th{
  border: 1px solid #000;
}

@media(max-width:576px){
  .hc-art-bg-img{
    height: 190px;
    margin-top: 10%;
  }
}


.desktop-only{
  display: block;
  }
  
  @media (max-width: 768px){
  .mobile-only{
    display: block;
  }
  .desktop-only{
    display: none;
  }
  }

.hc-art-yt{
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.hc-art-yt-mb{
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hc-art-yt-mb iframe{
  width: 100%!important;
}

.hc-yt-floating{
  display: none;
  bottom: 30px;
  position: fixed;
  width: 100%;
  z-index: 10;
  text-align: right;
}

.hc-yt-player{
  height:250px;
  width:450px;
}

.popup-close-icon {
  align-items: center;
  background-color: #eee;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  display: flex;
  float: right;
  height: 25px;
  justify-content: center;
  width: 25px;
  z-index: 10000;
  top: 7px;
  /* left: 22em; */
  position: relative;
}

.popup-close-icon svg {
  width: 16px;
}

@media (max-width: 576px) {
  .popup-close-icon {
    margin: -14px;
  }
}


.popup-close-icon-video {
  align-items: center;
  background-color: #eee;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  float: right;
  height: 25px;
  justify-content: center;
  width: 27px;
  z-index: 10000;
  top: -11px;
  position: relative;
  right: 13px;
}

.popup-close-icon-video svg {
  width: 16px;
}

@media (max-width: 576px) {
  .popup-close-icon-video {
    margin: -14px;
  }
}

.hc-hh-floating-top-btn{
  top: 0;
  display: flex;
  height: 56px;
  position: sticky;
  width: 100%;
  z-index: 9999;
}

.hc-arm-self-floating-top-btn{
  bottom: 0;
  display: flex;
  height: 56px;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.hc-hh-floating-top{
  background: #F18800;
  color: #fff;
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.hc-arm-self-floating-top-2{
  background: #FF0000;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.hc-hh-floating-top-close{
  position: relative;
  left: 27%;
}

.hc-hh-floating-top-close svg{
  cursor: pointer;
  width: 16px;
}

.hc-hh-floating-top a{
  background-color: #fff;
  color: #F18800;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  left: 11%;
  position: relative;
  font-weight: bold;
  width: 12%;
}

.hc-arm-self-floating-top-btn a{
  background-color: #0095FF;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  left: 11%;
  position: relative;
  font-weight: bold;
  width: max-content;
}

.hh-hc-main-banner-desc{
  margin: 15px 0;
}

@media(max-width:576px){
  .hc-arm-self-floating-top-btn a{
    left: 1%;
    width: 28%;
  }
  .hc-hh-floating-top-btn{
    display: none;
  }
}


.category-banner h2{
  color: #496146;
  font-size: 4em;
  font-size: 1.5em;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  color: #FFF!important;
}

.category-banner p{
  color: #fff;
  font-size: 1em;
  color: #FFF!important;

}

@media(max-width:767px){
.category-banner h2{
  font-size: 3em;
}
.category-banner p{
  display: inline-block;
  max-width: 28em;
  font-size: 1em;
}
}

/*16.0 Banner*/

.hc-as-cta-banner{
  background-color: #0000C9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.hc-as-cta-banner-div-1 p:nth-child(1){
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.hc-as-cta-banner-div-1 a{
  background-color: #EF7D00;
  border-radius: 8px;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

.hc-as-cta-banner img{
  float: left;
  width: 18%;
}

.hc-as-cta-banner-div-1{
  padding: 22px 0;
}

@media(max-width:576px){
  .hc-as-cta-banner img{
    width: 43%;
    height: 91px;
    position: relative;
    top: 35px;
  }
  .hc-as-cta-banner-div-1 p:nth-child(1){
    font-size: 16px;
  }
  .hc-as-cta-banner{
    display: flex;
  }
}
.hc-cta-banner img{
  float: right;
  width: 140px;
  position: absolute;
  bottom: 0;
}

.hc-cta-banner p:nth-child(1){
  font-weight: bold;
}

.hc-cta-banner p:nth-child(2){
  width: 70%;
}

.hc-cta-banner a{
  background-color: #ED4B7A;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
  display: block;
  width: 43%;
  text-align: center;
  position: relative;
  bottom: 11px;
  font-size: 14px;
}

.hc-cta-banner{
  width: 65%;
  margin: 34px auto;
  background-repeat: no-repeat;
  padding: 5px 15px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.hc-cta-2-div{
  position: relative;
}

.hc-cta-banner-div-1{
  width: 70%;
}

.hc-sc-cta-banner{
  background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-sc-banner-ds.png');
}

.hc-vacc-cta-banner{
  background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-vacc-banner-ds.png');
}

.hc-hh-banner{
  background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-sc-hh-ds.png');
}


.hc-hh-banner-2{
  background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-hh-banner-2-ds-bg+article+banner.png');
}
.hc-asthma-banner{
  background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc_asthma_article+banner+desktop.png');
}

@media(max-width:576px){
  .hc-cta-banner img{
    right: 0;
  }
  .hc-cta-banner{
    background-position: right;
    width: 65%;
  }
  .hc-sc-cta-banner{
  background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-sc-banner-mb.png');
  }
  .hc-vacc-cta-banner{
    background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-vacc-banner-mb.png');
  }
  .hc-hh-banner{
    background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-sc-hh-mb.png');
  }

  .hc-hh-banner-2{
    background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc-hh-banner-2-mb-bg+article+banner.png');
  }
  .hc-asthma-banner{
    background-image: url('https://doc-cdn.s3.ap-southeast-1.amazonaws.com/health-center/hc_asthma_article+banner+mobile.png');
  }
  .hc-cta-banner a{
    width: 45%;
    font-size: 13px;
    padding: 2px;
  }
  .hc-cta-banner-div-1{
    width: auto;
  }
  .hc-disclaimer{
    margin: 0px 25px 15px;
  }
}

.hc-disclaimer{
  color: #2e5aa9;
  font-weight: bold;
  font-size: 20px;
}

.external-link-svg svg {
  align-items: center;
  display: flex;
  margin-left: 5px;
  width: 15px;
}

.soalan-link-svg-fill {
  fill: #41c0f1;
}

.reference-text-link {
  align-items: center;
  color: #3c3c3c;
  display: flex;
  margin-bottom: 8px;
  text-decoration: none;
}

.hc-article-reference-title{
  font-size: 16px;
  font-weight: 700;
}

.hc-article-reference{
  margin: 40px 0;
}

/*Search result*/

.searchbar-col{
  align-items: center;
  display: flex;
}
.searchbar-form {
  padding: 0;
  width: 100%;
}
.searchbar-input,.searchbar-input:active {
  border: none;
  border-radius: 6px 0 0 6px; 
  height: 48px;
  vertical-align: top;
  padding-left: 14px;
  padding-top: 12px;
  padding-bottom: 14px;
  outline:none;
  width: calc(100% - 50px);
}
.searchbar-icon-crosshair {
    position: relative;
    top: 5px
}
.search-button {
  align-items: center;
  background: #96CCD6;
  border: none;
  border-radius: 0 6px 6px 0;
  color: white;
  cursor: pointer;
  display:inline-flex;
  height: 48px;
  justify-content: center;
  margin-left: -5px;
  outline:none;
  vertical-align: top;
  width: 56px;
} 
.search-button svg{
  fill:#387B86;
  width:24px;
}

@media(max-width:576px){
  .search-button svg{
    width: 28px;
    margin: 8px;
  }
  .searchbar-col{
    padding:0;
  }
}
  /* 4.3.1 Search result */

  .search-result {
    background-color: #fff;
    border-radius: 5px; 
    cursor: pointer;
    overflow: hidden;
    position: relative;
    /* width: 84%; */
    z-index: 999;
    /* left: 8%; */
    top: 0;
}

@media(min-width: 577px){
  .search-result{
    /* box-shadow: inset 0 0 1px 1px #eef; */

  }
}
  .search-back-btn{
    display:none;
  }

  @media (max-width: 768px) {
    .search-result {
      background-color: #fff;
      border-radius: 5px; 
      cursor: pointer;
      overflow: hidden;
      position: relative;
      width: 88%;
      z-index: 999;
      left: 6%;
  }
  } 

  .result-detail:first-child {
    /* border-top:1px solid #eee; */
  }

.result-detail {
  color: #333;
  /* border-bottom:1px solid #eee; */
  display: flex;
  padding: 5px 0;
  text-decoration: none;
  width: 100%;
}

.result-image {
  align-items: center;
  display:flex;
  justify-content: center;
  width: 20%;
}

@media (max-width: 768px) {
  .result-image {
    width: 20%;
  }
  .result-detail {
    height: 72px;
    overflow: hidden;
  }
}

.result-image div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  width: 80px;
}

.result-title-price {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 80%;
}



@media (max-width: 768px) {
  .result-title-price {
    display: block;
    margin-top: 5px;
    padding-left: 5px;
    width: 70%;
  }
  .result-title{
    font-weight: bold;
  }
}



  .result-title { 
    margin-left: 0;
    max-width: 60%;
    text-align: left;
  } 
  @media(max-width:576px){
    .result-title {
      display:table-caption; 
      max-width:90%;       
      overflow: hidden; 
      text-overflow: ellipsis;
      white-space: nowrap; 
      width: 100%; 
    }
  }

  .search-result a {
    text-decoration: none;
  }

  .result-title span{
    color:#777;
    display: flex; 
    font-weight: 400; 
  }

  @media(min-width:576px){
    .result-title span{
      color:#777;
      display: flex; 
      font-weight: 400;
      position: absolute;
    }
  }

  .result-price { 
    display: flex;
    margin-right: 10px;
    width:80px;
  }

  @media(min-width: 576px){
    .result-price {
      display: flex;
      margin-right: 10px;
      width: 80px;
      margin-top: 20px;
  }
  }

  .result-buy-icon {
    display:none;
  }

  .result-buy-icon svg {
    width: 25px;
  }

  @media (max-width: 768px) { 
    .result-buy-icon {
      display: flex;
      width: 10%;
    }
  }

  .search-back-btn {
    background: #fff;
    border: none;
  }
  .search-back-btn svg {
    width: 25px;
  }

  .clear-btn svg {
    width: 30px;
  }

  .article-author-img{
    width: 52px;
    object-fit: contain;
    /* height: 50px; */
  }
  /*4.3.1.1. Search Suggestions*/

  .search-suggest{
    display:none;
  }
  .searchSuggestShow{
  display:block; 
  text-align: left;
  white-space: initial;
  }
  @media(max-width:576px){
    .searchSuggestShowMobile{
  display:block;
    }
  }

  .search-suggest .search-history-title{
    background:none;
    display:block;
  }
  .search-suggest div{
    background-color: #eee;
    border-radius: 5px;
    color: #777;
    display: table;
    overflow: scroll;
    margin: 10px;
    padding: 15px 20px;
  }

  @media(max-width:576px){
    .search-suggest-mobile div{
      background-color: #eee;
      border-radius: 5px;
      color: #777;
      display: inline-block;
      overflow: hidden;
      margin: 3px;
      padding: 14px 20px;
    }
    .search-style-mobile{
      text-align: left;
        width: 100%;
        white-space: initial;
    }

  }
  @media(min-width: 768px){
    .search-suggest div{
      display: inline-table;
    }
  }

  .hc-smoking-quiz-div{
    flex-basis: 23%;
    flex-grow: 1;
    flex-shrink: 1;
  }

  @media(max-width: 767px){
    .cart-count{
      right: 36px;
      top: 1px;
    }
  }

  @media(max-width:768px){
    .smoking-home-img-mb{
      width: 100%;
      height: 100px;
    }
  }
  @media(min-width:768px){
    .index-small-img{
      /* width: 281px; */
      height: 160px;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
  
    .index-big-img{
      /* width: 578px; */
      height: 275px;
    }
    .health-centre-related-articles.flex-box.col1 .item > img{
      height: 21em ;
    }
    .health-centre-related-articles.flex-box.col2 .item > img{
      height: 18em ;
    }
    .health-centre-related-articles.flex-box.col3 .item > img{
      height: 15em ;
    }

    .cat-small-img{
      width: 198px;
      height: 122px;
      object-fit: cover;
    }
  
    .cat-big-img{
      width: 693px;
      height: 346px;
    }
  }

  @media(min-width:1920px){
    .index-big-img{
      height: auto;
    }
    .index-small-img{
      height: 223px;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
  }

  .category-stdrd-title{
    color: #fff!important;
    font-size: 4em!important;
  }

  .category-stdrd-title-2{
    color: #fff!important;
    font-size: 3em!important;
  }

  .category-stdrd-desc{
    color: #fff!important;
    font-size: 1em!important;
  }

  @media(max-width:576px){
    .category-stdrd-title{
      color: #fff!important;
      font-size: 3em!important;
    }
    .category-stdrd-desc{
      color: #fff!important;
      font-size: 1em!important;
    }
  }

  .search-close-svg svg{
    height: 20px;
    fill: #8d8d8d;
    background: 0 0;
  }

  .search-close-svg{
    display: none;
  }

  .input-container{
    width: 100%;
    background: #f5f5f5;
    /* margin-bottom: 10px; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 10px;
    border-radius: 25px;
    height: 50px;
  }

  .header-a-block{
    flex-basis: 5em;
    overflow: hidden;
  }

  .navbar-home-link{
    font-weight: 800;
    text-align: left;
    width: 100%;
    padding: 0.5em 1em 0.6em;
    display: block;
    cursor: pointer;
    background-color: transparent;
    transition: color 0.25s ease;
    position: relative;
    text-decoration: none;
    margin: 0;
    border: 0;
    font-size: 0.8em;
  }

  @media (max-width: 767px){
  .header-a-block{
      padding-right: 1em;
  }
  }

 
  .section-art-product{
    margin: 2em 0;
  }
  .price{
    position: absolute;
    bottom: 0;
  }
  .art-product-title{
    font-weight: bold;
    font-size: 0.8em;
    line-height: 1.3em;
  }
  .art-product-desc{
    font-size: 10px;
    display: block;
  }
  .art-product-slider{
    display: flex;
    overflow: auto;
    /* overflow-y: hidden; */
    background-color: #E8F2FA;
    border-radius: 8px;
    /* width: 750px; */
  }
  .art-product-img{
    height: 100px;
    border-radius: 8px;
  }
  .art-product-cta{
    background-color: #e8f2fa;
    color: #243271;
    font-weight: 700;
    padding: 10px;
    border-radius: 24px;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
  }
  .art-product-space{
    /* margin-left: 15px; */
  }
  .art-product h2{
    margin-top: 0;
  }
  .indi-card a{
    color: #243271;
  }
  @media(max-width:576px){
    .art-product{
      padding: 5px;
    }
    .art-product h2{
      margin-top: 14px;
      font-size: 16px;
    }
    .art-product-img {
      height: 185px;
      border-radius: 8px;
      width: 100%;
    }
    .art-product-desc {
        font-size: 10px;
        display: block;
    }
    .art-product-cta {
        background-color: #e8f2fa;
        color: #243271;
        font-weight: 700;
        padding: 6px;
        border-radius: 24px;
        text-decoration: none;
        width: 72%;
        display: block;
        text-align: center;
        margin-top: 20px;
        margin: 0px auto;
        bottom: 0px;
        position: relative;
    }
    .art-product-medicine-img{
      margin-bottom: 20px;
    }
    .health-centre-article h2{
      margin-top: 0!important;
    }
    .price{
      position: absolute;
      bottom: 12px; 
    }
  }

  .health-centre-article h2{
    /* margin-top: 0!important; */
  }

  .productSliderID h2{
    margin-top: 0;
  }

  @media (max-width: 1240px){
.no-pad {
    /* padding: 0 1em; */
    padding-left: 0;
    padding-right: 0;
}
}

.featured-img-position{
  /* display: flex; */
    /* justify-content: center; */
    padding: 10px;
    /* margin: 20px; */
}

/* .featured-img-position img{
  width: 150px !important;
  aspect-ratio: auto 150 / 150;
  height: 150px;
} */

.prodSliderImg{
  aspect-ratio: auto 150 / 150;
  height: 150px;
  padding: 5px;
}
/* Hello Bar  */
    .docbot{
      background-color: #ad2831;
      padding: 8px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 700;
      /* display: block; */
      margin-left: 15px;
      text-align: center;
    }

    .docbot-2{
      background-color: #ad2831;
      padding: 8px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 700;
      /* display: block; */
      /* margin-left: 15px; */
      text-align: center;
      width: 47%;
    }
    
    .docbot-desc{
      margin-left: 50px;
    }

    .doc-bot-close svg{
      float: right;
      width: 16px;
    }

    .docbot-mobile{
      height: 3.2em!important;
      display: flex;
      align-items: center;
    }

    .docbot-desktop{
      display: block;
    }
    @media (max-width: 767px){
      .docbot-desktop{
        display: none;
      }
    }

    @media (min-width: 768px){
      .docbot-mobile{
        display: none;
      }
    }

    /* TICKER */

    @keyframes blink {
      0% {
        background-color: #AD2831;
      }
      50% {
        background-color: #fff;
        color: #AD2831;
      }
      100% {
        background-color: #AD2831;
      }
    }

    .hellobar-btn{
      /* animation: blink 1s infinite; */
    }
    
#ticker .button {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.9em;
}
#closeticker {
  width: 1em;
  position: absolute;
  right: 1em;
  bottom: 38.5%;
  display: none;
}

/* TICKER */
@media(max-width: 767px) {
#ticker {
  display: none;
}
#closeticker {
  display: block;
}
.ticker-active {
  padding-top: 10em;
}
.ticker-active #header > .nav-1.pad {
  height: auto;
  padding-left: 0;
  padding-right: 0;
}
.ticker-active #header > .nav-1.pad > div {
  padding-left: 1em;
  padding-right: 1em;
  height: 2.2em;
}
.ticker-active #header > .nav-1.pad > div#ticker {
  height: initial;
  background: #4f9dd4;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  /* TICKER - END*/
}

#ticker .button{
  margin-right: 0.8em;
}
}

/*Product Placement*/

.product-scroller {
  width: 100%;
  background: #E8F2FA;
  overflow-x: scroll;
  overflow-y: hidden;
}
.product-div {
  display: flex;
  /* gap: 1em; */
  padding: 0.5em;
}
.indi-product-div {
  background-color: #fff;
  border-radius: 8px;
  color: #243271!important;
  flex-basis: 20%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 4%;
}
.img-div {
  flex-basis: 20%;
  flex-grow: 0;
  flex-shrink: 0;
}

.product-content {
  flex-grow: 1;
  padding: 1em;
}

@media(max-width:767px){
  .indi-product-div{
    flex-basis: 54%;
    padding-bottom: 10%;
  }
  .art-product-title {
    font-weight: 700;
    display: block;
    font-size: 12px;
    color: #243271;
  }
  .price .new .value{
    font-size: 0.6em;
  }
  .currency{
    font-size: 0.4em;
  }
}

/* 8. DOC ADS */

.cta-container {
  border:1px solid #dbdbdb;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-top:30px;
  padding: 0;
}

@media(min-width:576px){
  .cta-container {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 20px;
    width: 100%;
  }
}

.cta-news-input{
  border: 1px solid #dbdbdb;
  padding: 8px;
}

.cta-news-subscribe{
  background-color: #0071eb;
  color: #fff;
  padding: 8px 20px;
  vertical-align: bottom;
  text-decoration: none;
}


.cta-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 4px 4px 0;
  display: block;
  width: 40%;
}

.cta-img-1 {
  background-image: url('https://doc-cdn.s3-ap-southeast-1.amazonaws.com/soalan/soalan_konsultasi.png');
}

.cta-text {
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 4px 0 0 4px;
  display: block;
  padding: 20px;
  width: 60%;
}

.cta-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  margin: 10px 10px 0 0;
}

.cta-text a{
  display:inline-block;
}
.cta-button-2{
  display:inline-block;
  text-align:center;
}

.cta-button {
  border:1px solid #0071eb;
  border-radius: 4px;
  color: #0071eb;
  display: block;
  margin-top: 10px;
  padding: 12px 20px;
  text-decoration: none;
  width: max-content;
}

.cta-img-2 {
  background-image: url('https://doc-cdn.s3-ap-southeast-1.amazonaws.com/soalan/saringan-kesihatan.png');
}

.cta-img-news{
  background-image: url('https://doc-cdn.s3-ap-southeast-1.amazonaws.com/soalan/newsletter_img.png');
}

.q_accordian{
  font-size: 1.5em;
  font-weight: bold;
  color: #243271;
}

@media(max-width:576px){
  .cta-text{
    background-image:none;
    padding: 10px;
    text-align:center;
    width:100%;
  }
  .cta-text a{
    display: inline-block;
    margin-bottom: 10px;
  }
  .cta-text-3{
    color:#000;
    margin: 20px 0;
  }
  .cta-container{
    margin-top:0;
  }
}

.soalan-user-sec {
  margin-top: 35px;
}

.soalan-user-icon {
  display: inline-block;
  border-radius: 50%;
  height: 60px;
  vertical-align: middle;
  width: 60px;
}

.soalan-user-name {
  display: inline-block;
  font-size: 16px;
  margin-left: 22px;
}
.soalan-user-icon {
  display: inline-block;
  border-radius: 50%;
  height: 60px;
  vertical-align: middle;
  width: 60px;
}

.soalan-question-box{
  padding: 1em;
    border-radius: 8px;
    margin: 1em;
}

.soalan-author{
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.soalan-answer-box{
  border-radius: 8px;
  padding: 1em;
}

.q_accordian{
  margin-top: 1em!important;
}

.soalan-in-body{
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 28px;
}

.chat {
  position:relative;
  /* width:270px; */
  padding:10px;
  /* height:50px; */
  margin:1em auto;
  text-align:left;
  color:black;
  background:#e5e5ea;
  border-radius: 30px;
}

/* creates part of the curve */
.chat:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 7px;
  left: -8px;
  height: 20px;
  border-left: 20px solid #d3d3d3;
  border-bottom-right-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
}

/* creates part of the curved pointy bit */
.chat:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 4px;
  width: 26px;
  height: 20px;
  background: white;
  border-top-right-radius: 14px;
  -webkit-transform: translate(-30px, -2px);
}

.cat-icon{
  overflow: auto;
}

.cat-icon a{
  border: 1px solid #000;
  color: #243271;
  padding: 0.5em 3em;
  border-radius: 8px;
  height: 24vh;
}

.cat-icon p{
  color: #243271;
  font-weight: bold;
  padding-bottom: 1em;
}

.cat-icon img{
  padding-top: 1em;
  height: 86px;
  width: 82px;
  margin: 0 auto;
}

@media(min-width:576px){
  .health-centre-related-articles a{
    flex-grow: 0!important;
    flex-shrink: 0!important;
  }
}