.carepoint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.carepoint-header ul.menu a.is-active {
  color: inherit;
}

.carepoint-header svg {
  display: inline-block;
  vertical-align: top;
}

.carepoint-header h1 {
  display: inline-block;
  vertical-align: top;
  margin: 6px 0 6px 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.carepoint-header button+button {
  margin-left: 0px;
}

.carepoint-header .welcome {
  margin-right: 10px;
  color: #333;
  font-size: 14px;
}

.carepoint-header__nav {
  display: flex;
  gap: 21px;
  align-items: center;
}

.nav-link {
  color: #545659;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

}

.nav-link:hover {
  color: #8CAD06;
}

.nav-link--active {
  color: #8CAD06;
  font-weight: 600;
}


.carepoint-header__account {
  display: flex;
  align-items: center;
  gap: 23px;
}

.icon-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border-radius: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #545659;
  transition: all 0.2s ease;
  border: 0;
  text-transform: capitalize;
}

.icon-button svg {
  flex-shrink: 0;
  fill: #004E90;
  background-color: #E3F4FF;
  border-radius: 50%;
  padding: 5px;
  width: 20px;
  height: 20px;
}

.cart-button {
  position: relative;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: #545659;
  font-size: 12px;
  font-weight: 600;
}


.carepoint-header .circle {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E3F4FF;
  border-radius: 50%;
}

.burger-menu {
  cursor: pointer;
  width: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  display: none;
}

.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #aaa;
  transition: 0.3s;

}

.cross-icon {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cross-icon .icon-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 3px;
  background-color: #aaa;
  transform-origin: center;
  transition: all 0.3s ease;
}

.cross-icon:hover .icon-bar {
  background-color: #333;
}

.cross-icon .icon-bar:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross-icon .icon-bar:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar {
  width: 100%;
  min-height: 100vh;
  box-shadow: 0px 4px 8px rgb(0 0 0 / 16%);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 111;
  transition: 0.5s;
}

.sidebar.active {
  left: 0;
}

.sd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sd-body {
  padding: 20px;
  max-height: calc(100vh - 67px);
  overflow-x: hidden;
  display: none;
}

.sd-body ul {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}

.sd-body ul li {
  list-style: none;
  margin-bottom: 8px;
}

.sd-body ul li .sd-link {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  color: #475f7b;
  background-color: #e5e8ec;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.sidebar .menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: 18px;
  margin-right: 18px;

}


.sidebar .menu li:last-child a {
  background-color: transparent;
  color: #545659;
  padding: 10px 35px;
  width: 236px;
  max-width: 100%;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  font-size: 20px !important;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  transition: background-color 0.2s ease;
  display: block;
  overflow: hidden;
  position: relative;
  border: 1px solid #545659;
}

.sidebar .menu li:last-child a:hover {
  background-color: #F27300 !important;
  color: white;
  transition: all 0.9s ease;
  border: 1px solid #F27300;

}

.sidebar .menu li:first-child a {
  background-color: #F27300;
  color: white;
  padding: 10px 35px;
  width: 236px;
  max-width: 100%;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  font-size: 20px !important;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  transition: background-color 0.2s ease;
  display: block;
  overflow: hidden;
  position: relative;
}

.sidebar .menu li:first-child a:hover {
  background-color: #8CAD06 !important;
  color: white;
  transition: all 0.9s ease;
}

.toggle-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.toggle-menu .nav-link {
  font-size: 18px;
}

.carepoint-header .region-user-account-menu ul.menu {
  padding-left: 0px;
  margin-left: 0px;
}

.carepoint-header .region-user-account-menu ul.menu li.menu-item {
  padding-top: 0;
}

.carepoint-header .nav-link--active-trail {
  font-weight: bold;
  color: #8CAD06;
}

.nav-link--active-trail {
  font-weight: bold;
  color: #8CAD06 !important;
}


.path-frontpage .carepoint-header .nav-link:first-child {
  font-weight: bold;
  color: #8CAD06;
}

.user-logged-in .carepoint-header .region-user-account-menu ul.menu .menu-item:last-child {
  position: relative;
  margin-left: 46px;

}

.user-logged-in .carepoint-header .region-user-account-menu ul.menu .menu-item:last-child::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E3F4FF;
  border-radius: 50%;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004E90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
  background-size: 16px 16px;
}

.logo-section .carepoint-header__account {
  justify-content: right;
  padding-right: 18px;
}

.mm-panels>.mm-panel>.mm-navbar+.mm-listview .menu-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.mm-panels>.mm-panel>.mm-navbar+.mm-listview .menu-item a .menu-icon svg {
  width: 18px;
  height: 18px;
  fill: #004E90;
}

.cart-wrapper {
  display: flex;
  align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: '';
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  top: 23px !important;
}

@media (min-width:1100px) and (max-width:1400px) {
  .carepoint-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width:1112px) {
  .carepoint-header {
    padding: 34px 20px;
  }

  .icon-button {
    padding: 8px 0px;
  }

  .logo {
    width: 318px;
    object-fit: contain;
  }
}

@media (min-width:1100px) {
  .logo-section .carepoint-header__account {
    display: none;
  }

}

@media (max-width:1100px) {

  .carepoint-header .circle {
    height: 20px;
    width: 20px;
    background: transparent;
  }

  .carepoint-header .circle img {
    width: 18px;
    height: 18px;
  }

  .carepoint-header__account.desktop {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .carepoint-header__nav {
    display: none;
  }

  .logo-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .carepoint-header {
    padding: 10px;
    display: flex;
    flex-direction: column;
  }

  .carepoint-header__account {
    justify-content: space-between;
    padding: 0 8px;
  }

  .icon-button {
    padding: 8px 0px;
  }
}

#testimonials .swiper-button-next {
  display: none;
}

#testimonials .swiper .swiper-button-next {
  display: block;
}

@media (max-width:1024px) {
  .swiper-button-next {
    background-image: url('/themes/custom/carepoint_theme/assets/Button.svg') !important;
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px !important;
    height: 25px !important;
    background-position: center !important;

  }
}

@media (min-width:600px) and (max-width:1024px) {
  .toggle-menu .nav-link {
    font-size: 20px;
  }

}

@media (max-width:768px) {
  .toggle-menu .nav-link {
    font-size: 20px;
  }

  .carepoint-header {
    padding: 10px;
    display: flex;
    flex-direction: column;
  }


  .logo {
    width: 270px;
    object-fit: contain;
  }

  .logo-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .carepoint-header__account {
    justify-content: space-between;
    padding: 0 8px;
  }

  .icon-button {
    padding: 8px 0px;
  }
}

@media (max-width:499px) {

  .logo {
    width: 205px;
    object-fit: contain;
  }
}

@media (max-width:530px) {
  .sidebar .menu li {
    width: 100% !important;
  }

  .sidebar .menu li a {
    width: 100% !important;
  }
}

@media (max-width:500px) {
  .carepoint-header__account {
    gap: 11px;
    padding-left: 8px;
    padding-right: 0;
    justify-content: left;
    flex-wrap: wrap;
    row-gap: 0px;
  }

  .region-user-account-menu ul.menu {
    gap: 0px !important;
  }

  .icon-button {
    gap: 6px;
  }

  .carepoint-header .circle {
    height: 20px;
    width: 20px;
    background: transparent;
  }

  .carepoint-header .circle img {
    width: 18px;
    height: 18px;
  }

  .region-user-account-menu ul.menu li.menu-item a {
    font-size: 15px !important;
  }

  .user-logged-in .region-user-account-menu ul.menu .menu-item:last-child {
    margin-left: 36px !important;
  }

  .guest-user .region-user-account-menu ul.menu .menu-item:last-child {
    margin-left: 0 !important;
  }


  .region-user-account-menu ul.menu .menu-item:last-child::before {
    left: -26px !important;
    width: 20px !important;
    height: 20px !important;
    background-size: 12px 12px !important;
  }

  .cart-button .circle {
    height: 20px;
    width: 20px;
  }

  .cart-button .circle img {
    width: 10px;
  }

  .cart-block--summary__count {
    font-size: 15px;
    color: #004E90;
  }

  .logo-section img,
  .pro-qcp-footer img {
    width: 210px !important;
  }
}

@media (max-width:370px) {

  .logo-section img,
  .pro-qcp-footer img {
    width: 160px !important;
  }
}

@media (max-width:325px) {
  .logo-section .carepoint-header__account {
    padding-right: 8px !important;
  }

  .cart-block--summary__count {
    font-size: 14px;
  }
}

.mm-menu {
  width: 100% !important;
}

.mm-wrapper__blocker {
  width: 100% !important;
  left: 0 !important;
}

.mm-menu.mm-menu_position-left {
  width: 100% !important;
}

.mm-wrapper_opened .mm-page {
  transform: translate(100%, 0) !important;
}

.page-qcp-onboarding .logo-section .cart-wrapper {
  display: none;
}