@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

*{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: 3px;
  scrollbar-color: var(--primary-color);
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0%;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background-color: #FEFEFE;
}
:root {
  /*      Theme colors        */
  --primary-color: #1DA1F2 !important;
  --secondary-color: #657786 !important;
  --btn-bg-color: #1DA1F2 !important;
  --btn-bg-hover-color: #1DA1F2 !important;
  --text-color: #000000 !important;
  --input-placeholder: rgba(33,37,41,0.50) !important;
}


/* ---------------- Global Classes ---------------*/
a {
  text-decoration: none;
  color: var(--text-color);
  transition: all .3s ease-out;
}
ul {
  list-style-type: none;
  padding: 0;
  color: var(--text-color);
}
p {
  color: var(--text-color);
  font-size: 1.2rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
  line-height: 1.4;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
.container .row>* {
  padding-left: 1rem;
  padding-right: 1rem;
}
section {
  padding: 3rem 0;
}
.btn-primary {
  color: #FAFAFA;
  padding: 0.8rem 2rem;
  font-size: 15px;
  border-radius: 30px;
  border: 1px solid transparent;
  background-color: var(--btn-bg-color);
  font-weight: 500;
  transition: all .3s ease-out;
}
.btn-primary:hover,
.btn-primary:active,
.btn:first-child:active,
:not(.btn-check)+.btn:active,
.btn:focus-visible,
.btn-outline-primary:hover,
.btn-outline-primary:active {
  color: #FAFAFA;
  background-color: var(--btn-bg-hover-color);
  border-color: transparent;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
}
.btn-outline-primary {
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  font-size: 15px;
  border-radius: 30px;
  border: 1px solid var(--primary-color);
  font-weight: 500;
  transition: all .3s ease-out;
  font-family: "DM Sans", sans-serif;
}
.btn-secondary {
  color: #FAFAFA;
  padding: 0.6rem 2rem;
  font-size: 15px;
  border-radius: 30px;
  border: 1px solid #578676;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all .3s ease-out;
}
.main-title h4 {
  color: var(--text-color);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 42px;
}
.main-title h4 span {
  color: var(--primary-color);
}
::-webkit-input-placeholder {
  color: var(--input-placeholder);
}
::-moz-placeholder {
  color: var(--input-placeholder);
}
:-ms-input-placeholder {
  color: var(--input-placeholder);
}
:-moz-placeholder {
  color: var(--input-placeholder);
}
:focus-visible {
  outline: none;
}

.accordion-button {
  color: var(--text-color);
}
.accordion-button::after {
  content: "\f107";
  font-family: 'FontAwesome';
  background-image: none !important;
}
.accordion-button:not(.collapsed) {
  color: #FAFAFA;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--primary-color);
}
.accordion-button:not(.collapsed)::after {
  content: "\f107";
  font-family: 'FontAwesome';
}
.accordion .accordion-body,
.accordion .accordion-body p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 28px;
}
.accordion-button:focus {
  box-shadow: none;
}
/* .accordion-button::after {
  background-image: url('../images/down-arrow.svg');
}
.accordion-button:not(.collapsed)::after {
  background-image: url('../images/up-arrow.svg');
} */
.form-label,
.form-control,
.form-select {  
  font-size: 14px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.form-control,
.form-select {
  padding: .775rem .75rem;
}
textarea {
  resize: none;
}
/* .form-check .form-check-input {
  width: 1.3em;
  height: 1.3em;
  border: 1px solid var(--primary-color);
}
.form-check .form-check-label {
  font-size: 14px;
  margin-left: 0.5rem;
}
.form-check-input:focus {
  box-shadow: none;
}
.form-check input[type=checkbox]:checked {
  background-color: var(--primary-color);
  color: #FFFFFF;
} */
table.dataTable thead > tr > th.dt-orderable-asc:hover, 
table.dataTable thead > tr > th.dt-orderable-desc:hover, 
table.dataTable thead > tr > td.dt-orderable-asc:hover, 
table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: none;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #00b6ad;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #F5F5F5;
}
.toggle-password {
  color: var(--secondary-color);
  position: absolute;
  right: 20px;
  bottom: 15px;
  cursor: pointer;
}
.required::after {
  content: '*';
  color: #dc3545;
  font-size: 15px;
  padding-left: 3px;
  display: inline-block;
  position: relative;
}
.table.dataTable th,
.table thead th {
  font-size: 0.9rem;
  font-weight: 700;
}
.table.dataTable td,
.table tbody td {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
  white-space: normal;
  vertical-align: middle;
}
.table.dataTable tr td .prod-items-name {
  font-size: 0.8rem;
  margin: 0px;
  font-weight: 700;
}
.dataTable td .status {
  font-size: 0.7rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
}
.dataTable td .process {
  color: #4b93a8;
  background-color: #eff8fb;
}
.dataTable td .draft {
  color: #bf8333;
  background-color: #fdf6ec;
}
.dataTable td .complete {
  color: #469242;
  background-color: #eef8ee;
}
.dataTable td .cancel {
  color: #b13d32;
  background-color: #fcedec;
}
.dt-container .row:first-child, 
.dt-container .row:last-child {
  margin-top: 0px !important;
  padding: .5rem .5rem;
}
.dt-container .row:last-child .dt-info, 
.dt-container .row:last-child .dt-paging .page-link {
  font-size: 14px;
}
.card-header .card-title {
  font-size: 1rem;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  color: rgba(0, 0, 0, 0.80);
  height: auto;
  font-size: 1rem;
  border-radius: 16px;
  background-color: #FFFFFF;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.loader-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
}
#loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}


  /*---------------------------------------------------*/
/*	mouse cursor animation
/*---------------------------------------------------*/
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #007bcb;
  -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -30px;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background-color: #007bcb;
  opacity: .2;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #007bcb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}
.mim_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}


.section-title h2 {
  font-size: 2.5rem;
  margin: 0px;
}
/* ------x------- Global Classes -------x-------*/


/* ---------------- Navigation ---------------*/
header {
  box-shadow: 0 2px 20px 0 rgba(0,0,0,.15);
}
.top-bar .navbar-nav {
  gap: 2em;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}
.top-bar ul li .nav-link {
  color: rgba(0, 0, 0, 0.6);
}
.navbar .navbar-brand {
  margin-right: 2.5rem;
}
.navbar-brand img {
  width: 150px;
}
.navbar-collapse ul:not(.dropdown-menu) {
  gap: 1.5em;
  align-items: center;
}
.navbar .navbar-nav .nav-link {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link:focus,
.offcanvas .list-group .nav-link.active {
  color: var(--primary-color);
}
.top-bar ul li .nav-link:hover {
  color: rgba(0, 0, 0, 1);
}
.navbar .collapse form {
  width: 350px;
}
.navbar form .input-group .btn {
  border-color: #dee2e6;
}
.navbar .group-sec-wrap .btn:active {
  color: var(--text-color);
  background-color: transparent;
}
/* ------x------- Navigation -------x-------*/


/* ---------------- Home Page ---------------*/
.discover-list .icon-bx {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 2px solid rgba(29, 161, 242, 0.10);
  transition: 0.3s;
}
.discover-list .icon-bx .icon-cell {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(29, 161, 242, 0.10);
}
.discover-list .icon-content h4 {
  color: var(--text-color);
  font-size: 18px;
  margin: 0px;
}
.discover-list .icon-bx-wraper:hover .icon-bx {
  transform: scale(1.05);
  background: #FFFFFF;
  color: #FFFFFF;
  border-color: var(--primary-color);
}
.discover-list .icon-bx-wraper:hover .icon-bx .icon-cell {
  background: var(--primary-color);
  color: #FFFFFF;
}
.discover-list .icon-bx-wraper:hover .icon-cell svg path {
  fill: #FFFFFF;
}

/* ----- Most Loved Products -----*/
.most-products-wrap {
  width: 100%;
  background-color: #EEEFEF;
}
.products-section .products-row {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}
.products-section .product-card {
  flex:1 1 calc(25% - 24px);
  min-width:260px;
  background:#FFFFFF;
  border:1px solid rgba(0, 0, 0, 0.10);
  border-radius:6px;
  padding:1rem;
  display:flex;
  flex-direction:column;
  transition:0.3s ease;
}
.products-section .product-card:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
}
.products-section .product-thumb {
  width: 100%;
  height: 150px;
  border-radius:4px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#FFFFFF;
}
.products-section .product-thumb img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.products-section .product-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.products-section .badge {
  align-self:flex-start;
  font-size:12px;
  color: var(--primary-color);
  border:1px solid var(--primary-color);
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 1rem;
}
.products-section .badge.non-rx {
  color: var(--secondary-color);
  border:1px solid var(--secondary-color);
}
.products-section .product-title {
  font-size:14px;
  line-height:1.5;
  font-weight:500;
  min-height:42px;
  margin-bottom:10px;
}
.products-section .rating {
  font-size:16px;
  color:#FF8914;
  letter-spacing:2px;
  margin-bottom:12px;
}
.products-section .price {
  font-size:20px;
  font-weight:700;
  margin: 0px;
}
.products-section .product-footer {
  margin-top:auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.products-section .product-footer .btn-order {
  font-size: 13px;
  padding: 0.6rem 1.5rem;
}
/* ----- Most Loved Products -----*/

/* ----- Trusted Voices, Proven Care -----*/
.testimonials-box {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background-color: rgba(245, 245, 245, 0.60);
}
.testimonials-box .testimonials-profile {
  margin-bottom: 1rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.30);
  position: relative;
  overflow: hidden;
}
.testimonials-box .rating input {
  display: none !important;
}
.testimonials-box .rating label {
  font-size: 20px;
  color: #FF8914;
  margin-right: 0.5rem;
}
.testimonials-box .testimonials-content {
  font-size: 1rem;
}

.testimonials-wrap .testimonials-slide {
  padding-bottom: 6rem;
}
.testimonials-slide .swiper-button-next, 
.testimonials-slide .swiper-button-prev {
  color: var(--primary-color);
  top: inherit;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #1DA1F2;
}
.testimonials-slide .swiper-button-next {
  right: calc(50% - 60px);
}
.testimonials-slide .swiper-button-prev {
  left: calc(50% - 60px);
}
.testimonials-slide .swiper-button-next:after, 
.testimonials-slide .swiper-rtl .swiper-button-prev:after {
  content: '\f061';
  font-family: 'FontAwesome';
  font-size: 24px;
  transform: rotate(-45deg);
}
.testimonials-slide .swiper-button-prev:after, 
.testimonials-slide .swiper-rtl .swiper-button-next:after {
  content: '\f060';
  font-family: 'FontAwesome';
  font-size: 24px;
  transform: rotate(45deg);
}
/* ----- Trusted Voices, Proven Care -----*/

/* ---------------- Home Page ---------------*/


/* ---------------- Footer Section ---------------*/
.site-footer {
  font-family: "DM Sans", sans-serif;
  background-color: rgba(0, 0, 0, 0.90);
}
.site-footer .top-row {
  padding:2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-footer .list-links a,
.site-footer .smalltxt {
  font-size: 1rem;
  font-family: "DM Sans", sans-serif;
  color:rgba(255, 255, 255, 0.70);
}
.site-footer a:hover {
  color:#FFFFFF;
}
.site-footer .title {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.site-footer .newsbox {
  width: 100%;
  position:relative;
  margin:1rem 0;
}
.site-footer .newsbox input {
  width:100%;
  height:56px;
  border: none;
  padding-right: 4rem;
  padding-left: 1.3rem;
  border-radius:30px;
  font-family: "DM Sans", sans-serif;
}
.site-footer .newsbox .btn {
  position: absolute;
  right: 10px;
  top: 50%;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-weight: 700;
  transform: translateY(-50%);
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .phone {
  margin: 0.5rem 0 1rem;  
}
.site-footer .phone a {
  color: #FFFFFF;
}
.site-footer .top-row .iconline {
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-bottom:10px
}
.site-footer .top-row .iconline .ico {
  color: var(--primary-color);
}
.site-footer .smalltxt a {
  color: #FFFFFF;
}
.site-footer .bottom-row {
  padding: 1rem 0;
  color:rgba(255, 255, 255, 0.70);
}
.site-footer .bottom-row a {
  color: rgba(29, 161, 242, 0.70);
}
.site-footer .bottom-row .cards span {
  display: inline-block;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}
/* ------x------- Footer Section -------x-------*/