:root {
    --first-color: #f51170;
    --second-color: #140f83;
    --third-color: #fe510b;
}

body {
    font-family: "Open Sans", sans-serif;
}

.first-color {
    color: var(--first-color);
}

.second-color {
    color: var(--second-color);
}

.img-fluid {
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--first-color);
}

.loader {
    background: linear-gradient(to right, var(--second-color) 50%, transparent 50%);
    animation: spin 1s infinite linear;
}

.loader:before {
    display: block;
    content: '';
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
}

.preloader {
    position: fixed;
    background: #fff;
    z-index: 99999999;
    width: 100%;
    height: 100%;
}

.preloader .circle {
    display: inline-block;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 42%;
    border-radius: 50%;
    background: transparent;
    box-shadow: 4px -40px 60px 5px var(--second-color) inset;
    position: relative;
}

.spin {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--first-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--first-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--first-color)
}

.text-first {
    color: var(--first-color)!important;
}

.bg-first {
    background: var(--first-color) !important;
}

.bg-success {
    background: #7ED321 !important;
}

.bg-white {
    background: #fff !important;
}

.label-primary {
    background: var(--first-color);
    color: #fff;
}

label.label {
    display: inline-block;
    text-align: center;
    font-size: 0.75rem;
    padding: .2rem .8rem;
}

.label-secondary {
    background: var(--second-color);
    color: #000;
}

.label-info {
    background: #50E3C2;
    color: #fff;
}

.label-success {
    background: #7ED321;
    color: #fff;
}

.label-warning {
    background: #FFAA16;
    color: #fff;
}

.label-danger {
    background: #FF1616;
    color: #fff;
}

.label-light {
    background: #dadada;
    color: #000;
}

.label-dark {
    background: #454545;
    color: #fff;
}

.btn-light {
    background-color: #dadada;
}

.btn-white {
    border-color: var(--first-color);
    color: var(--first-color);
    background-color: #fff;
}

.btn-white:hover {
    background: var(--first-color);
    color: #fff;
}

.btn-active {
    background: #38a638;
    color: #fff;
}

.btn-inactive {
    background: #778899;
    color: #fff;
}

.list-style {
    padding: 0px;
    margin: 0px;
    list-style: none;
}


/* header */
.top-bar {
    background: var(--second-color);
    padding: 10px 0;
}
 
.header-left ul {
    padding: 0px;
    margin: 0px;
}

.header-left ul li {
    list-style: none;
    display: inline;
    margin-right: 25px;
}

.header-left ul li i {
    color: #a2d8fe;
    font-size: 17px;
    margin-right: 3px;
}

.header-left ul li a {
    color: #fff;
    font-size: 16px;
}

.top-bar ul.social-profile {
    margin-left: auto;
    text-align: right;
}

ul.social-profile li {
    display: inline-block;
}

ul.social-profile li a {
    display: flex;
    flex-wrap: wrap;
    /* width: 34px; */
    /* height: 34px; */
    background-color: rgba(255, 255, 255, .08);
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    transition: all ease .5s;
}

ul.social-profile li i {
    font-size: 14px;
    color: #fff;
    display: block;
    margin: 0 auto;
    line-height: .8;
    transition: all ease .5s;
}

ul.social-profile li a:hover i {
    transform: rotate(360deg);
}
.navbar-right-menu {
    display: flex;
    justify-content: space-between;
}
  

.navbar-right-menu .header-menu .nav-list {
    margin-right: 20px;
}

.navbar-right-menu .header-menu .nav-list .nav-menu {
    list-style: none;
    gap: 0 32px;
    display: flex;
}
.header-menu .nav-list .nav-menu li a i {
    font-size: 13px;
}
.header-menu .nav-list .nav-menu .sub-menu {
    position: absolute;
    top: 56px;
    left: 0;
    box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
    display: none;
    z-index: 2;
    border: 1px solid #ecf3fa;
    padding-left: 0;
    background-color: #fff;
    border-radius: 6px;
    transition: all .2s ease-in-out;
}

.header-menu .nav-list .nav-menu li {
    position: relative;
    transition: all 0.6s;
}

.header-menu .nav-list .nav-menu li:hover {}

.header-menu .nav-list .nav-menu li:hover .sub-menu {
    display: block;
}

.header-menu .nav-list .nav-menu .sub-menu li.nav-items {
    list-style: none;
    border-bottom: 1px solid #ecf3fa;
    padding: 0;
}

.header-menu .nav-list .nav-menu .sub-menu li.nav-items a.sub-item {
    font-size: 14px;
    width: 100%;
    display: block;
    border-bottom: 1px solid #ecf3fa;
    padding: 9px 100px 9px 15px;
    white-space: nowrap;
    color: #000;
}
.header-menu .nav-list .nav-menu .sub-menu li.nav-items a.sub-item i {
    position: absolute;
    right: 8px;
    font-size: 20px;
    top: 6px;
}
.header-menu .nav-list .nav-menu li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: #000;
    font-family: var(--heading-font);
    padding: 30px 0px;
    transition: all 0.3s;
    text-transform: capitalize;
    position: relative;
    display: block;
}
.header-menu .nav-list .nav-menu li a:hover{
    color:var(--first-color);
}

.header-menu .nav-list .nav-menu .sub-menu li.nav-items ul.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.header-menu .nav-list .nav-menu .sub-menu li.nav-items:hover ul.sub-menu {
    display: block;
}
.right-options {
    display: flex;
    align-items: center;
    gap: 20px;
} 

.right-options .header-icons ul li {
    display: inline-block;
}

.right-options .header-icons ul li a i {
    font-size: 19px;
    color: var(--third-color);
}

.right-options .header-icons ul li a {
    display: block;
    position: relative;
    margin: 0px 5px;
}
.logo-div {
    padding: 10px 0;
}
.logo-div img.img-fluid {
    max-width: 200px;
}
.btn.btn1 {
    padding: 12px 27px;
    background: var(--second-color);
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    font-weight: 600;
    text-align: center;
    transition: all ease .5s;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 50px;
    overflow: hidden;
}

.btn.btn1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 50.5%;
    height: 0%;
    z-index: -1;
    background-color: var(--first-color);
    transition: all ease .5s;
}

.btn.btn1:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 50.5%;
    height: 0%;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all ease .5s;
    background-color: var(--first-color);
}

.btn.btn1:hover:before , .btn.btn1:hover:after {
        height: 100%;
    visibility: visible;
    opacity: 1;
}
.btn.btn2 {
    padding: 12px 27px;
    background: var(--third-color);
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    font-weight: 600;
    text-align: center;
    transition: all ease .5s;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 50px;
    overflow: hidden;
}

.btn.btn2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 50.5%;
    height: 0%;
    z-index: -1;
    background-color: var(--first-color);
    transition: all ease .5s;
}

.btn.btn2:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 50.5%;
    height: 0%;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all ease .5s;
    background-color: var(--first-color);
}

.btn.btn2:hover:before , .btn.btn2:hover:after {
        height: 100%;
    visibility: visible;
    opacity: 1;
}
.main-header.fixed-header {
    position: fixed;
    z-index: 9;
    box-shadow: 0px 0px 15px rgba(39, 32, 120, 0.1);
    width: 100%;
} 
   
.main-header {
    width: 100%;
    position: relative;
    top: 0;
    z-index: 8;
    transition: 0.5s;
    background-color: #fff; 
}
.main-header.bottom-header {
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.06);
    border-top: 1px solid #ececec;
    z-index: 1;
}
.header-menu .nav-list .nav-menu .sub-menu li.nav-items:hover a.sub-item {
    color: var(--third-color);
}
.header-menu .nav-list .nav-menu .sub-menu li.nav-items ul.sub-menu li a.sub-item {
    color: #000;
}
.header-menu .nav-list .nav-menu .sub-menu li.nav-items ul.sub-menu li:hover a.sub-item {
    color: var(--third-color);
}
.right-options .header-icons ul li a .icon-count {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 16px;
    height: 16px;
    line-height: 14px;
    background-color: var(--first-color);
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 50%;
}
.right-options .header-icons ul li a .icon-count span {
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-arrow {
    position: absolute;
    top: 44%;
    border: none;
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 0%;
    text-align: center;
    transition: all ease .5s;
    z-index: 1;
}

.slick-arrow i {
    font-size: 26px;
}

.slick-arrow:hover {
    background-color: var(--first-color);
}

.slick-arrow:hover i {
    color: #fff;
}
 .banner-section .PrevArrow.slick-arrow {
    left: 40px;
}

 .banner-section .NextArrow.slick-arrow {
    left: unset;
    right: 40px;
}
ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0px;
    padding: 0;
    transform: translate(-50%, 0);
}

ul.slick-dots li {
    margin-right: 6px;
    border-color: #909BA9;
    border: 1px solid #909BA9;
    background: #909BA9;
    border-radius: 50%;
    display: inline-block;
    width: 7px;
    height: 7px;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active {
    border-color: var(--second-color);
    border: 1px solid var(--second-color);
    background: var(--second-color);
}

.banner-slider ul.slick-dots {
    display: none!important;
}
.default-padding{
    padding: 70px 0;
}
 

.category-box .category-box-inner {
    text-align: center;
}

.category-box .category-box-inner img {
    width: 173px;
    border-radius: 18px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
} 

.category-box .category-box-inner .category-name h3 {
    font-size: 20px;
    margin-bottom: 0px;
    color: var(--third-color);
}

.category-box .category-box-inner .category-name h3 a {
    color: var(--third-color);
} 
.category-slider ul.slick-dots {
    margin: 0px;
    bottom: -4px;
}
.category-box:hover{
    transform: translateY(-5px);
    transition: 0.5s;
}
.category-box {
    margin-top: 20px;
    margin-bottom: 40px;
}
.new-launched {
    background: #f6f7fb;
}
.mini-banner {
    position: relative;
}
/*.mini-banner img:hover {
    transform: scale(1.050);
    transition: .5s;
}*/
.move-text-one {
    background: var(--second-color);
    position: relative;
    overflow-x: hidden;
    padding: 50px 0;
}

.move-text-one ul {
    white-space: nowrap;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-animation: mymove 5s linear infinite;
    white-space: nowrap;
    animation: mymove 5s linear infinite alternate;
}

.move-text-one ul  li {
    display: inline-block;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 38px;
    padding: 0 40px;
    position: relative;
}

@keyframes mymove {
    from {
        left: 0
    }
    to {
        left: -100px
    }
}

.move-text-one ul li:after {
    position: absolute;
    top: -2px;
    right: -62px;
    content: "";
    background-image: url(../image/move-text-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 42px;
}
.product-card {
    background-color: #fff;
    border: 1px solid #eaebed;
    border-radius: 8px;
    margin-bottom: 25px;
}

.product-card .product-img {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 5px;
    padding: 12px;
    z-index: 1;
}

.product-card .product-img img {
    display: block;
    margin: 0 auto;
    width: 100%;
    transition: all ease .4s;
}

.product-card .product-img .add-to-cart {
    position: absolute;
    top: 55%;
    left: 50%;
    padding: 18px 30px 16px;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.product-info {
    padding: 10px 30px 20px;
}
.product-info h3 a {
    font-size: 18px;
    line-height: 27px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 56px;
}

.product-price {
    color: var(--second-color);
    font-weight: 500;
    font-size: 21px;
}

.product-price span.discount {
    font-size: 16px;
    font-weight: 500;
    margin-left: 6px;
    text-decoration: line-through;
    color: #ff5b5b;
}
.product-info span.product-category-in a {
    font-size: 13px;
    margin-bottom: 3px;
    color: #000;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.product-card .product-img:before {
    position: absolute;
   top: 0;
   left: 0;
   content: "";
   width: 100%;
   height: 100%;
   background-color: rgba(248, 248, 248, .58);
   z-index: 1;
   visibility: hidden;
   opacity: 0;
   transition: all ease .5s;
}
 
.product-card:hover .product-img:before {
   visibility: visible;
   opacity: 1
}
.product-card:hover .product-img .add-to-cart {
   visibility: visible;
   opacity: 1;
   top: 50%
}

.product-card:hover .product-img img {
   transform: scale(1.05)
}
.sec-heading {
    margin-bottom: 25px;
}

.sec-heading span {
    margin: 0 0 5px;
    position: relative;
    display: inline-block;
    padding-left: 50px;
    font-size: 17px;
    color: var(--first-color);
}

.sec-heading span:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 38px;
    height: 1px;
    background-color: var(--first-color);
}

.sec-heading h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--second-color);
}
.product-slider .slider-item {
    margin: 0 5px;
}
.product-slider ul.slick-dots {
    margin: 0px;
    bottom: -6px;
}
.footer-top {
    padding-top: 70px;
    padding-bottom: 70px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
 
.footer-widget .footer-logo img {
    width: 292px;
    margin-bottom: 20px;
}

.footer-widget p.abt-com {
    margin-bottom: 20px;
    color: #000;
    font-size: 15px;
}
h4.f-widget-subtitle {
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 18px;
    color: var(--second-color);
}

ul.social-profile {
    margin-bottom: 11px;
} 

.footer-widget ul.social-profile li a i {
    font-size: 13px;
    color: var(--first-color);
}

.footer-widget ul.social-profile li a:hover {
    background: var(--first-color);
}

.footer-widget ul.social-profile li a:hover i {
    color: #fff;
} 

.footer-widget .footer-widget-title {
    position: relative;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 22px;
    display: block;
    color: var(--first-color);
}
 

.footer-widget ul.footer-menu li {
    margin-bottom: 9px;
}

.footer-widget ul.footer-menu li a {
    position: relative;
    font-weight: 400;
    color: #000;
    font-size: 15px;
}

.footer-widget ul.footer-menu li a:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--first-color);
    visibility: hidden;
    opacity: 0;
    transition: all ease .5s;
}

.footer-widget ul.footer-menu li a:hover {
    color: var(--first-color);
}

.footer-widget ul.footer-menu li a:hover::after {
    width: 100%;
    visibility: visible;
    opacity: 1;
}
ul.contact-info li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 22px;
}

ul.contact-info li span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    text-align: center;
    transition: all ease .5s;
    margin-right: 12px;
    background: #fe4a5517;
    box-shadow: 0 0 30px rgba(254, 74, 85, .09);
}

ul.contact-info li span i {
    color: var(--third-color);
    line-height: .8;
    display: block;
    margin: 0 auto;
    transition: all ease .5s;
}

ul.contact-info li a ,ul.contact-info li p {
    width: calc(100% - 53px);
    transition: all ease .5s;
    display: block;
    margin: 0;
    color: var(--second-color);
    font-size: 15px;
}
 

ul.contact-info li:hover span i {
    color: var(--first-color);
}

ul.contact-info li:hover a {
    color: var(--third-color);
}
.footer-copyright {
    background: #02161a;
    position: relative;
    padding: 15px 0;
    margin: 0;
    color: #d3d3d3;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-copyright p {
    margin-bottom: 0px;
}
.text-right {
    text-align: right!important; 
}
.cat-box {
    padding: 25px 28px;
    background-image: radial-gradient(95.56% 95.56% at 50% 50%, #fff 0, #bddeff 100%);
    border-radius: 11px; 
    transition: all ease .5s;
}
  
.category2-slider .slider-item {
    margin: 0 10px;
}

.cat-box h4 {
    font-size: 20px;
    margin-bottom: 0px;
} 
.category2-slider .slick-arrow {
    top: -82px;
    background: var(--third-color);
    right: 0px;
    width: 45px;
    height: 46px;
    line-height: 49px;
    border-radius: 50%;
}

.category2-slider .slick-arrow i {
    font-size: 21px;
    color: #fff;
    position: relative;
    left: 2px;
    top: -1px;
}
.category2-slider .PrevArrow.slick-arrow {
    right: 50px;
}
.cat-box:hover { 
    background:var(--second-color);
}
.cat-box:hover h4{
    color:#fff;
}
.scroll-top {
    position: fixed;
    right: 20px;
    z-index: 99;
    width: 50px;
    bottom: 20px;
    height: 50px;
    font-size: 25px;
    transition: .5s;
    line-height: 49px;
    background-color: var(--first-color);
    animation: border-transform 10s linear infinite alternate forwards;
}
.scroll-top i {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 14px;
    font-size: 21px;
}
@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}
#search_modal {}
 
#search_modal .modal-dialog .modal-body {
    background: transparent;
    padding: 0px;
}

#search_modal .modal-dialog .modal-content {
    background: transparent;
    box-shadow: none;
    border: none;
    position: unset;
}

#search_modal .modal-dialog .modal-header {
    border: none;
    padding: 0px;
}

#search_modal .modal-dialog .modal-body .modal-search-form {
    position: relative;
    margin-top: 30px;
}

#search_modal .modal-dialog .modal-body .modal-search-form .form-control {
    padding: 19px 23px;
}

#search_modal .modal-dialog .modal-body .modal-search-form .btn.btn1 {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 8px;
    padding: 10px 14px;
}
#search_modal button.close {
    position: absolute;
    right: 19px;
    top: 17px;
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 48px;
    background-color: #f14680;
    border-radius: 5px;
    color: #ffffff;
    border: none;
    font-size: 30px;
    transition: .5s;
}
#search_modal  .modal-dialog {
    position: unset;  
}
.bodyCare-slider .slider-item {
    margin: 0 5px;
}
.bodyCare-slider .slider-item {
    margin: 0 10px;
} 
.bodyCare-slider .slick-arrow {
    top: -82px;
    background: var(--second-color);
    right: 0px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 49px;
    border-radius: 50%;
}

.bodyCare-slider .slick-arrow i {
    font-size: 15px;
    color: #fff;
    position: relative;
    left: 0px;
    top: 0px;
}
.bodyCare-slider .PrevArrow.slick-arrow {
    right: 50px;
}
.bodyCare-slider .slick-arrow:hover {
    background: var(--first-color);
}
section.breadcrumb {
    text-align: center;
    padding: 15px 0 15px;
    background: linear-gradient(0deg, rgba(255, 244, 244, 0.91) 3.17%, #F7FEFF 94.02%);
    margin: 0px;
}

.breadcrumb-content {}

.breadcrumb-content h2 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    margin: 0 0 9px;
    color: var(--second-color);
}
  
ul.breadcrumb-menu li {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    position: relative;
    color: var(--third-color);
    font-weight: 500;
    padding-right: 10px;
    margin-right: 11px;
}
 

ul.breadcrumb-menu li:last-child {
    margin: 0px;
    padding: 0px;
}

ul.breadcrumb-menu li:first-child:after {
    content: '';
    position: absolute;
    top: 2px;
    right: -4px;
    height: 17px;
    width: 2px;
    background-color: var(--third-color);
}
.category-sidebar .search-bar {
    margin-bottom: 20px;
    position: relative;
}

.category-sidebar .search-bar .form-control {
    padding: 13px 20px;
    background: #eee;
    border-radius: 45px;
}

.category-sidebar .search-bar .btn.btn1 {
    padding: 10px 14px;
    position: absolute;
    right: 6px;
    top: 4px;
}

.sidebar-widget {
    padding: 23px 26px;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.sidebar-widget .sidebar-widget-title {
    font-size: 22px;
    margin-bottom: 11px;
    border-bottom: 1px solid rgba(197, 197, 197, .42);
    padding-bottom: 12px;
}
 
.sidebar-widget ul.category-list-one li {
    display: block;
    margin-bottom: 11px;
    padding-left: 22px;
    position: relative;
}

.sidebar-widget ul.category-list-one li a {
    width: 100%;
    display: block;
    position: relative;
    color: #000;
    font-size: 15px;
}

.sidebar-widget ul.category-list-one li:before {
    position: absolute;
    top: 6px;
    left: 0;
    content: "";
    width: 11.5px;
    height: 11.5px;
    border-radius: 50%;
    border: 1px solid var(--first-color);
}

.sidebar-widget ul.category-list-one li:after {
        position: absolute;
    top: 8px;
    left: 2px;
    content: "";
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background-color: var(--first-color);
}

.sidebar-widget ul.category-list-one li:last-child {
    margin-bottom: 0px;
}
 

.filter-radio-group .form-group {
    margin-bottom: 8px;
} 

.filter-radio-group .form-group label {
    position: relative;
    padding-left: 7px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--third-color);
}
.in-category .in-category-title {
    color: var(--second-color);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}
.incat-box {
    border: 1px solid rgba(0, 0, 0, .07);
    padding: 0;
    border-radius: 5px;
    margin-bottom: 25px;
}

.incat-box .incat-img {
    border-radius: 5px;
    overflow: hidden;
}

.incat-box .incat-img img {
    border-radius: 5px;
    transition: all ease .5s;
    width: 100%;
}

.incat-box .incat-info {
    text-align: center;
    padding: 5px 5px;
}

.incat-box .incat-info h3 {
    font-size: 14px;
    line-height: 22px;
    margin: 0px;
    font-weight: 600;
}

.incat-box .incat-info h3 a {
    color: var(--second-color);
}
 

.incat-box:hover .incat-img img {
    transform: scale(1.05);
}

.incat-box:hover .incat-info h3 a {
    color: var(--first-color);
}
.product-details-gallery {
    position: relative;
}

.product-gallery-slider img {
    width: 100%;
    min-height: 100%;
}

.product-gallery-slider-nav {
    margin: auto;
}

.product-gallery-slider-nav .item-slick img {
    max-width: 100%;
    background-size: cover;
    background-position: center;
    border: 1px solid #eee;
}

.product-gallery-slider-nav .item-slick {
    max-width: 109px !important;
    margin-right: 10px !important;
    outline: none !important;
    cursor: pointer;
}

.product-gallery-slider-nav .slick-arrow {
    display: none !important;
}

.product-gallery-slider-nav button.slide-arrow.prev-arrow.slick-arrow {
    position: absolute;
    top: 48px;
    left: -30px;
    border: none;
    transition: 0.5s;
    border-radius: 4px;
    color: #fff;
    background-color: var(--third-color);
}

.product-gallery-slider-nav button.slide-arrow.next-arrow.slick-arrow {
    position: absolute;
    top: 48px;
    right: -30px;
    border: none;
    transition: 0.5s;
    border-radius: 4px;
    color: #fff;
    background-color: var(--third-color);
}

.product-gallery-slider-nav img {
    padding: 6px 2px;
}

.product-gallery-slider {
    margin-bottom: 20px;
}

.product-gallery-slider img {
    width: 100% !important;
    height: auto;
    border: 1px solid #eee;
}

.gallery-img a.item-slick {
    display: block;
}
 

.product-details .pr-name {
    font-size: 33px;
    color: var(--second-color);
    margin-bottom: 12px;
}

.ratings {
    display: flex;
    margin-bottom: 12px;
}

.ratings ul {
    margin-right: 10px;
}

.ratings ul  li {
    display: inline-block;
}

.ratings ul li i {
    color: #fdcb05;
}

.product-details .product-price {
    margin-bottom: 8px;
    font-size: 24px;
}

p.brand-name {
    color: #2e2e2e;
    font-size: 15px;
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1d2025;
    padding: 10px 11px;
    border-radius: 6px;
    background-color: #f7f8fd;
}

.product-quantity .btn-light {
    color: var(--second-color);
    font-size: 16px;
    border: none;
    width: 26%;
    height: 32px;
    outline: none;
    background-color: transparent;
    border-radius: 2px;
}

.product-quantity .btn-light i {
    font-size: 24px;
    line-height: 14px;
}

.product-quantity .input-qty {
    border: none;
    background: transparent;
    width: 58%;
    text-align: center;
}

.product-quantity .input-qty:focus-visible {
    outline: 0px;
}

.product-list {
    margin-bottom: 20px;
    margin-top: 20px;
}

.product-list ul {
    padding: 0px;
    margin-bottom: 0px;
}

.product-list ul li {
    display: flex;
    margin-bottom: 5px;
}

.product-list ul li p {
    color: #525252c2;
    width: 28%;
    font-size: 16px;
    font-weight: 500;
}

.product-list ul li span {
    font-size: 15px;
    color: var(--third-color);
    font-weight: 600;
}
.product-details {
    margin-left: 20px;
}

.product-details .pr-name {
    font-size: 33px;
    color: var(--second-color);
    margin-bottom: 12px;
}

.ratings {
    display: flex;
    margin-bottom: 12px;
}

.ratings ul {
    margin-right: 10px;
}

.ratings ul  li {
    display: inline-block;
}

.ratings ul li i {
    color: #fdcb05;
}

.product-details .product-price {
    margin-bottom: 8px;
    font-size: 24px;
}

p.brand-name {
    color: #2e2e2e;
    font-size: 15px;
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1d2025;
    padding: 10px 11px;
    border-radius: 6px;
    background-color: #f7f8fd;
}

.product-quantity .btn-light {
    color: var(--second-color);
    font-size: 16px;
    border: none;
    width: 26%;
    height: 32px;
    outline: none;
    background-color: transparent;
    border-radius: 2px;
}

.product-quantity .btn-light i {
    font-size: 24px;
    line-height: 14px;
}

.product-quantity .input-qty {
    border: none;
    background: transparent;
    width: 58%;
    text-align: center;
}

.product-quantity .input-qty:focus-visible {
    outline: 0px;
}

.product-list {
    margin-bottom: 20px;
    margin-top: 20px;
}

.product-list ul {
    padding: 0px;
    margin-bottom: 0px;
}

.product-list ul li {
    display: flex;
    margin-bottom: 5px;
}

.product-list ul li p {
    color: #525252c2;
    width: 28%;
    font-size: 16px;
    font-weight: 500;
}

.product-list ul li span {
    font-size: 15px;
    color: var(--third-color);
    font-weight: 600;
}
.description-box {
    margin-top: 30px;
    background: #f6f7fb;
    padding: 26px 32px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.description-box h4 {
    margin-bottom: 14px;
    color: var(--first-color);
    font-weight: 700;
}

.description-box p {
    font-size: 15px;
    line-height: 25px;
}

.description-box p b {
    color: var(--third-color);
}

.description-box ul {
    margin: 0px;
    padding: 0px;
}

.description-box ul li {
    position: relative;
    list-style: none;
    margin-bottom: 5px;
    padding-left: 22px;
}

.description-box ul li:before {
    left: 3px;
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    background: var(--first-color);
    top: 9px;
    transform: rotate(45deg);
}
.comment-div {
    margin-top: 30px;
    text-align: center;
}

.comment-div h4 {
    margin-bottom: 14px;
    color: var(--first-color);
    font-weight: 700;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group .form-control {
    padding: 10px 20px;
    background: #f6f7fb;
}
/**/
#productModal .modal-content {
        height: auto;
        border-radius: 10px;
    }
    
    #productModal .modal-dialog{
        top: 7%;
    }
    
    #productModal .modal-dialog {
        max-width: 600px;
    }
    
    #productModal.modal.show .modal-dialog {
        transform: none !important;
    }
    
    #productModal.modal.show.modal-static .modal-dialog {
        transform: scale(1.02) !important;
    }
	.modal-dialog .modal-content {
    background-color: #fefefe;
    margin: unset;
    border: 1px solid #888;
    width: 100%;
    overflow: visible;
	}
	.modal-dialog .modal-content .modal-body {
    padding: 0;
}
.product-detail {
    padding: 1rem;
    display: flex;
    border-bottom: 1px solid #dee2e6;
    align-items: center;
}

.product-detail .pr-img img {
    height: 100px;
}

.product-detail .product-details-wrapper {
    margin-right: 0px;
    margin-left: 15px;
}

.product-detail .product-details-wrapper .product-title-wrap {
    font-size: 26px;
    margin-bottom: 13px;
}

.product-detail .product-details-wrapper .product-brabd {
    font-size: 10px;
	margin-bottom: 0px;
}

.product-detail .product-details-wrapper .product-price {
    padding-bottom: 0px;
    padding-top: 0;
}
#productModal .modal-content .modal-header {
     border-bottom: 0px; 
	 padding-bottom: 0px;
    position: relative;
}

#productModal .modal-content .modal-header .sucess-label {
	width: 100%;
    padding: 9px 14px;
    background: #00800042;
    border-radius: 5px;
}

#productModal .modal-content .modal-header .close {
    position: absolute;
    top: -15px;
    right: -13px;
    font-size: 23px;
    background-color: #fff;
    z-index: 1;
    height: auto;
    padding: 6px 7px 10px 8px;
    line-height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 20px 0px rgb(82 63 105 / 10%);
}#productModal .modal-content .modal-header .sucess-label p {
    margin-bottom: 0px;
    color: green;
    font-weight: 600;
}

#productModal .modal-content .modal-header .sucess-label i {
    color: #008000;
    margin-right: 4px;
}
.bottom-btns {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
}
.similar-product-box {
    padding: 15px 21px;
}
.similar-product-box .box-title {
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 15px;
}
.btn.continue {
    border: 1px solid var(--first-color);
    background: #fff;
    color: var(--first-color);
}
.modal-dialog .modal-content .modal-body .product-info h3 a {
    font-size: 22px;
}.btn.continue:hover {
    color: #fff;
}
.modal-dialog .modal-content .modal-body .product-info {
    padding: 8px 11px 8px;
}
.modal-dialog .modal-content .modal-body .similar-product-box .product-info h3 a {
    font-size: 18px;
}
.contact-item {
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
    background-color: #f7f7f7;
    transition: all ease .5s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 12px;
    padding: 21px 24px;
}

.contact-item  .contact-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    transition: all ease .5s;
    text-align: center;
    border-radius: 15px;
}

.contact-item .contact-icon i {
    line-height: .8;
    font-size: 24px;
    position: relative;
    margin: 0 auto;
    display: block;
    transition: all ease .5s;
    color: var(--second-color);
}

.contact-item .contact-info {
    width: calc(100% - 126px);
    margin-left: 30px;
    transition: all ease .5s;
}

.contact-item .contact-info h3 {
    font-size: 19px;
    margin: 0 0 8px;
    font-weight: 600;
}

.contact-item .contact-info a {
    font-size: 16px;
    display: block;
    margin: 0;
    line-height: 1.7;
    color: var(--third-color);
    word-wrap: break-word;
}
.contact-wrapper {
    margin-left: 20px;
}
.contact-wrapper .form-group .form-control {
    padding: 16px 20px;
}
p.desc1 {
    font-size: 16px;
    line-height: 27px;
    text-align: justify;
    color: #606060;
}
p.desc2 {
    font-size: 15px;
    line-height: 24px;
    text-align: justify;
    color: #606060;
}
/**/
.login-form-wrap {
    background-color: #faf9fb;
    padding: 50px;
}

.login-form-wrap h3 {
    margin-bottom: 20px;
    font-size: 25px;
    color: var(--second-color);
    font-weight: 600;
} 

.form-group.mobile-div .form-control {
    padding-left: 50px;
}

.login-form-wrap .form-group  .form-control {
    background: #fff;
}

.form-group.mobile-div .fix-num {
    top: 11px;
    position: absolute;
    left: 10px;
    color: var(--first-color);
    font-weight: 500;
}

.login-form-wrap .btn {
    margin-bottom: 10px;
}
.form-control:focus {  
    border-color: var(--first-color) ;
    box-shadow: none;
}
.link-one {
    background: none;
    border: none;
    color: var(--first-color);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

p.otp-info {
    color: var(--third-color);
    font-size: 14px;
    font-weight: 500;
}
.otp-enter-div.row {
    display: flex;
    max-width: 401px;
    flex-wrap: initial;
}
.otp-enter-box {
    margin-bottom: 18px;
}

.otp-enter-box .input-box {
    border: 2px solid #bb005d;
    width: 100%;
    font-size: 16px;
    height: 58px;
    padding: 11px 11px;
    text-align: center;
}
.code-timer {
    display: inline-block;
    margin-top: 10px;
}
.code-timer-show {
    border-radius: 10px;
    background: #014a94;
    padding: 7px 10px;
    color: #fff;
    display: flex;
    width: fit-content;
    align-items: center;
}
.code-timer span#timer {
    padding-left: 3px;
    color: #fff;
    font-size: 14px;
}
.dashboard {
    background-color: #bb005d12;
    border-radius: 10px;
    overflow: hidden;
}
.dashboard-menu ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0px;
}
.dashboard-menu ul li {
    cursor: pointer;
}
.dashboard-menu ul li .dashboard-nav {
    display: flex;
    padding: 12px 30px;
    width: 100%;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.dashboard-menu ul li a {
    font-size: 17px;
    color: var(--second-color);
}
.dashboard-menu ul li a i {
    margin-right: 10px;
    color: var(--second-color);
    font-size: 20px;
}

.dashboard-menu ul li .dashboard-nav:hover {
    background: var(--second-color);
    color: #fff;
}

.dashboard-menu ul li .dashboard-nav:hover i {
    color: #fff;
}

.dash-right-box {
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 19%) 0px 4px 12px;
    overflow: hidden;
    border-radius: 9px;
    padding: 22px 22px;
}

.loged-user {
    display: flex;
    align-items: center;
}

.loged-user .user-img {
    margin-right: 15px;
    width: 100px;
    border-radius: 50%;
}
 

.loged-user .uswr-detail h4 {
    font-size: 23px;
    color: var(--second-color);
    margin-bottom: 3px;
    font-weight: 600;
}

.loged-user .uswr-detail  .my-profile {
    font-size: 16px;
    margin-bottom: 0px;
    color: var(--first-color);
}

.info-box {
    margin-top: 20px;
    padding: 23px 42px;
    background: #3333330a;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
}

.info-box .info-box-icon img {
    width: 100px;
} 
.info-box .info-box-heading {
    margin-bottom: 0px;
    margin-top: 20px;
    font-size: 19px;
    color: var(--first-color);
}
.style1 table tr th {
    padding: 10px 14px;
    border-bottom: none;
}

.style1 table tr td {
    padding: 10px 11px;
}
.dash-right-box h4.box-title {
    font-size: 25px;
    color: var(--second-color);
    margin-bottom: 20px;
    font-weight: 600;
}
 .btn.btn1.view-btn {
    padding: 7px 12px;
    font-size: 16px;
}

.style1 tr {
    vertical-align: middle;
}
.cart-item-price {
    margin: 0px;
    font-size: 20px;
    color: var(--third-color);
    font-weight: 500;
}
.style1 thead tr {
    background: #eee;
    border-bottom: none;
}
.style1 .product-img {
    background-color: #f7f7f7;
    max-width: 109px;
    padding: 6px;
    border-radius: 5px;
}

.product-img img {
    max-width: 100%;
    display: block;
}

h4.pr-name {
    font-size: 22px;
}
.given-address {
    background-color: #ffffff;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    padding: 20px;
}

.given-address h4 {
    border-bottom: 1px solid #cbd3d9;
    padding-bottom: 11px;
    font-size: 25px;
    color: var(--second-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.given-address ul.address-details {
    padding: 0  ;
    margin: 0;
    list-style: none;
}

.given-address ul.address-details li {
    font-size: 15px;
    margin-bottom: 8px;
}

.given-address ul.address-details li span {
    color: var(--first-color);
    font-weight: 500;
}
.form-group label {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--third-color);
}
.tracking-div {
    margin-top: 30px;
} 

.tracking-div .tracking-inner ul {
    display: flex;
    list-style: none;
    padding: 0px;
}

.tracking-div .tracking-inner ul li.bullet-1 {
    position: relative;
    width: 25%;
}

.tracking-div .tracking-inner ul li.bullet-1 .check-tick {
    background-color: var(--first-color);
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    position: relative;
}

.tracking-div .tracking-inner ul li.bullet-1 .check-tick i {
    color: #fff;
    font-size: 15px;
    position: relative;
    top: 2px;
}

.tracking-div .tracking-inner ul li.bullet-1:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 7px;
    background: #ddd;
    top: 8px;
}

.tracking-div .tracking-inner ul li.bullet-1 .txt {
    margin-top: 15px;
}

.tracking-div .tracking-inner ul li.bullet-1 .txt img {
    width: 65px;
    margin-bottom: 8px;
}

.tracking-div .tracking-inner ul li.bullet-1 .txt span {
    display: block;
    font-size: 15px;
    line-height: 17px;
}

.tracking-div .tracking-inner ul li.bullet-1.active::before {
    background: var(--first-color);
}

.tracking-div .tracking-inner ul li.bullet-1:last-child::before {
    content: none;
}
.loading {
    background: #7f7f7f82;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    z-index: 1050;
}
.loading-block {
    border-radius: 10px;
    max-width: 257px;
    background-color: #fff;
    margin: 1.75rem auto;
    margin-top: 250px;
    padding: 17px;
}.loading-block .d-flex {
    align-items: center;
}
.loading-block p {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0px;
    margin-left: 15px;
} 

.loading-block .loading-gif .loading-spinner {
    width: 30px;
    height: 30px;
    border: 2px solid var(--third-color);
    border-radius: 50%;
    border-top-color: #0001;
    display: inline-block;
    animation: loadingspinner .7s linear infinite;
}
@keyframes loadingspinner {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}
.search-box {
    width: 598px;
    position: relative;
    margin-left: 84px;
}

.search-box .search-inner {
    position: relative;
}

.search-box .search-inner .form-control {
    border-radius: 41px;
    padding: 13px 30px;
}

.search-box .search-inner .search-con {
    position: absolute;
    right: 9px;
    top: 6px;
    background: var(--first-color);
    padding: 12px;
    border-radius: 50%;
    line-height: 0;
}

.search-box .search-inner .search-con i {
    color: #fff;
}
.search-box {
    position: relative;
}

.search-box .search-result {
    position: absolute;
    z-index: 9;
    width: 100%;
    border: 1px solid #eaeaea !important;
    background: #fff;
    max-height: 300px;
    overflow-y: auto;
}
 

.search-box .search-result .search_suggestions.suggestion_list {
    padding: 0px;
}

.search_suggestions.suggestion_list li.product-category {
    background: #aae3ff;
    padding: 8px 20px;
    border: none;
}

.search_suggestions.suggestion_list li {
    text-align: left;
    padding: 8px 20px;
    list-style: none;
    border-bottom: 1px solid #eaeaea;
}

.search_suggestions.suggestion_list li a {
    display: flex;
    align-items: center;
}

.search_suggestions.suggestion_list li a span {
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--second-color);
    font-weight: 600;
}
.search_suggestions.suggestion_list li.product-category-brn {
    font-size: 13px;
    color: #000;
}

.search_suggestions.suggestion_list li.product-category-brn span {
    display: block;
    margin-bottom: -2px;
}

.search_suggestions.suggestion_list li.product-category-brn a {
    display: block;
    color: var(--third-color);
    font-size: 12px;
    font-weight: 600;
}.search_suggestions.suggestion_list li span img {
    width: 52px;
    margin-right: 17px;
}

.search_suggestions.suggestion_list li a span.product-price {
    font-weight: 600;
    font-family: initial;
    display: block;
    color: #000;
}

.search_suggestions.suggestion_list li a span.product-price span.discount {
    font-size: 15px;
    font-weight: 500;
    margin-left: 6px;
    text-decoration: line-through;
    color: #ff5b5b;
}
.accordion-item .accordion-header .accordion-button {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    border-radius: 5px;
    color: var(--secondaryColor);
    text-align: left;
    align-items: center;
    border: none;
    padding: 15px 20px 15px 20px;
    transition: all ease .5s;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #f8f8f8;
    box-shadow: none;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--second-color);
    color: #fff;
    box-shadow: none;
}


.accordion-item .accordion-header .accordion-button .tab-no {
    display: inline-block;
    height: 100%;
    top: 0;
    right: 0;
    text-align: center;
    margin-right: 10px;
    background: #fff;
    min-width: 0;
    position: relative;
    padding: 0 9px;
    color: var(--second-color);
}
 

.accordion-item .accordion-body {
    border-radius: 0 0 5px 5px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}
  .accordion-item .accordion-body {
    background-color: #faf9fb;
} 
.accordion-item {
    border: none;
    margin: 0 0 20px;
    background: 0 0;
} 
.checkout-form .form-group .form-control { 
    background: #fff;
}
 .checkout-box-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 20px;
}
.accordion-item .accordion-header .accordion-button.collapsed {
    background-color: #f8f8f8;
}  
ul.content-feature-list li {
    margin-bottom: 9px;
    align-items: center;
    display: flex;
}

ul.content-feature-list li i {
    font-size: 19px;
    line-height: 0px;
    margin-right: 8px;
    color: var(--first-color);
} 

.medicines-search-block .search-box {
    position: relative;
}
 

.medicines-search-block .search-box .searchtype-Text .form-control {
    border: 1px solid rgba(207, 204, 204, .34);
    font-size: 16px;
    line-height: 21px;
    padding: 13px 60px 13px 20px;
    border-radius: 5px;
}

.medicines-search-block .search-box .searchtype-Text button {
    position: absolute;
    top: 7px;
    right: 7px;
    padding: 0 12px;
    height: calc(100% - 14px);
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: all ease .5s;
}
.medicines-search-block .search-output-block {
    box-shadow: 0 0 5px #b3b3b3;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 5px;
    z-index: 99;
    top: 52px;
    font-size: 13px;
    width: 100%;
    position: absolute;
    background: #fff;
}

.medicines-search-block {}

.medicines-search-block .search-output-block .search-text-head {
    border-top-right-radius: 5px;
    background: #d9ecff;
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    border-top-left-radius: 5px;
}

.medicines-search-block .search-output-block .search-text-head span {
    color: var(--first-color);
    font-weight: 700;
}

.medicines-search-block .search-output-block ul.searched-list {
    padding: 5px 0;
    margin: 0;
    list-style: none;
    max-height: 237px;
    overflow: auto;
}

.medicines-search-block .search-output-block ul.searched-list li.searched-item {
    padding: 8px 130px 11px 10px;
    margin: 0;
    list-style: none;
    border-bottom: 1px dashed #e1e1e1;
    background: #fff;
    color: #000;
    display: block;
    font-size: 14px;
    position: relative;
}

.medicines-search-block .search-output-block ul.searched-list li.searched-item span.original-price {
    font-size: 13px;
    line-height: 0;
    text-decoration: line-through;
    color: var(--third-color);
    margin-right: 6px;
}

.medicines-search-block .search-output-block ul.searched-list li.searched-item span.discounted-price {
    margin-right: 5px;
    font-size: 17px;
    font-weight: 500;
    color: var(--first-color);
}

.medicines-search-block .search-output-block ul.searched-list li.searched-item .addItem-block {
    float: right;
    background: #014a94;
    padding: 1px 0 1px 1px;
    border-radius: 4px;
    margin-top: 0;
    position: absolute;
    right: 9px;
    top: 7px;
}

.medicines-search-block .search-output-block ul.searched-list li.searched-item .addItem-block .quantitiy-add {
    color: #00548b;
    margin: 0;
    font-size: 12px;
}

.medicines-search-block .search-output-block ul.searched-list li.searched-item .addItem-block .quantitiy-add .quantity-write {
    padding: 3px 0px 3px 9px;
    width: 58px;
    background: #fff;
    color: #000;
    height: 26px;
    vertical-align: bottom;
    text-align: center;
    border-radius: 4px 0 0 4px;
    box-shadow: none;
    outline: none;
    border: none;
}

.medicines-search-block .search-output-block ul.searched-list li.searched-item .addItem-block .quantitiy-add .add-quatity-btn {
    color: #fff;
    position: relative;
    min-width: 44px;
    line-height: 22px;
    top: 0;
    border-radius: 4px;
    font-size: 13px;
    background: transparent;
    box-shadow: none;
    right: 1px;
    border: none;
}
.addtocart-items-block {
    margin-top: 25px;
} 

.addtocart-items-block .cart-table .product-img {
    background-color: transparent;
    max-width: 77px;
    padding: 0;
    padding-bottom: 55px;
    border-radius: 5px;
    margin-top: 20px;
}

.addtocart-items-block .cart-table .product-img img {
    max-width: 100%;
    display: block;
}

.addtocart-items-block .cart-table .cartProduct-details h4.pr-name {
    font-size: 19px;
    color: var(--second-color);
}

.addtocart-items-block .cart-table .cartProduct-details p.productMrp-info {
    color: #313131;
    font-size: 14px;
    padding: 0;
    margin: 0 5px 0 0;
}

.addtocart-items-block .cart-table .cartProduct-details p.productMrp-info b {
    color: var(--first-color);
}

.addtocart-items-block .cart-table .cartProduct-details p.maufacture-by {
    color: #585858;
    font-size: 12px;
    margin: 6px 0 8px;
    line-height: 10px;
}

.addtocart-items-block .cart-table .cartProduct-details .non-returnable {
    margin-top: 10px !important;
    width: fit-content;
    color: #483200 !important;
    font-size: 12px;
    padding: 3px 10px 2px 10px;
    background: #fff0ce;
    line-height: 20px;
    border: 1px dashed #e4b643;
    border-radius: 2px;
    margin-bottom: 8px;
}
.addtocart-items-block .cart-table .cartProduct-details .returnable {
    margin-top: 10px !important;
    width: fit-content;
    color: #483200;
    font-size: 12px;
    padding: 3px 10px 2px 10px;
    background: #00800021;
    line-height: 20px;
    border: 1px dashed green;
    border-radius: 2px;
    margin-bottom: 8px;
}

.addtocart-items-block .cart-table .cartProduct-details .product-options {
    color: #a9a9a9;
    font-size: 13px !important;
    font-weight: 400;
    margin-bottom: 0px;
}

.addtocart-items-block .cart-table .cartProduct-details .product-options  .remove {
    margin-right: 49px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
}

.addtocart-items-block .cart-table .cartProduct-details .product-options .save-later {
    color: var(--third-color);
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}
 

.addtocart-items-block .cart-table .cart-item-price {
    font-size: 16px;
    text-align: right;
}

.addtocart-items-block .cart-table tr {
    vertical-align: middle;
} 
.addtocart-items-block .cart-table .cart-qty .product-quantity {
    width: 168px;
    background: #fff;

}

.addtocart-items-block .cart-table .cart-qty .product-quantity .input-qty {
    text-align: center;
    width: 100%;
}
.seller-infor-block h4.heading {
    margin-bottom: 5px;
    margin-top: 15px;
    font-size: 18px;
    color: var(--second-color);
}
.seller-infor-block p {
    font-size: 14px;
    color: #000;
    margin: 0px !important;
}
.seller-address {
    align-items: self-start;
    display: flex;
}
.seller-infor-block p.seller-com {
    font-size: 15px;
    color: var(--first-color);
}
.ml-auto {
    margin-left: auto !important;
    text-align: right;
}
.ml-auto {
    margin-left: auto!important;
    text-align: right;
     
}
 
.address-selected-block h4.person-details {
    margin-bottom: 8px;
    margin-top: 15px;
    font-size: 22px;
    color: var(--second-color);
}

.address-selected-block p.sub-details {
    font-size: 14px;
    color: #000;
    margin: 0px !important;
}

.address-selected-block p.sub-details span {
    color: var(--first-color);
}
 

.address-selected-block p.pincode {
    font-size: 14px;
    color: #000;
}

.address-selected-block  .earliest-delivery-div {
    padding: 9px;
    border-top: 2px solid #ededed;
    border-bottom: 2px solid #ededed;
    text-align: center;
    margin-top: 13px;
    font-size: 16px;
}

.address-selected-block .earliest-delivery-div  .delivery-date {
    color: var(--first-color);
    font-weight: 600;
}
.addressModal .modal-header {
    padding: 11px 20px;
}

.addressModal {}

.addressModal .modal-header h5.modal-title {
    font-size: 24px;
    color: var(--second-color);
    font-weight: 700;
}

.addressModal .modal-header .close {
    border: none;
    background: transparent;
    font-size: 24px;
    padding: 0px;
}
.addressModal .modal-dialog .modal-content .modal-body {
    padding: 23px 26px;
    background: var(--second-color);
}

.addressModal .modal-dialog {
    max-width: 600px;
}
.shipAdd-change label {
    color: #fff;
    font-size: 19px;
    line-height: 30px;
}

.shipAdd-change label span {
    display: block;
    line-height: 22px;
    font-size: 15px;
}
.accordion-item.payment-method .accordion-body {
    padding: 0;
}

.accordion-item.payment-method .accordion-body .payement-method-div {}

.accordion-item.payment-method .accordion-body .payement-method-div ul {
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 0px;
}

.accordion-item.payment-method .accordion-body .payement-method-div ul li {
    display: block;
    background: #f5faff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding: 17px 20px 17px 31px;
    width: 100%;
}

.accordion-item.payment-method .accordion-body .payement-method-div ul li .checkbox label {
    width: 100%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: var(--third-color);
    padding-left: 8px;
}

.accordion-item.payment-method .accordion-body .payement-method-div ul li .checkbox input {
    display: inline-masonry;
}

.accordion-item.payment-method .accordion-body .payement-method-div ul li .checkbox {
    position: relative;
    display: flex;
}

.accordion-item.payment-method .accordion-body .payement-method-div ul li   .payment-method-img {
    width: 70px;
    height: auto;
    position: absolute;
    right: 12px;
    top: 20px;
}
.summary-box {
    border-radius: 10px;
    padding: 15px 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px 0px;
    background: #fff;
}

.summary-box .summary-desc1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-box .summary-desc1 p {
    margin-bottom: 0px;
    font-size: 14px;
} 

.summary-box .summary-desc1 p.product-price {
    margin-top: 8px;
    font-size: 16px;
    margin-bottom: 10px;
}

.summary-box .summary-desc1 p.product-price .discount {
    font-size: 14px;
}
.summary-box .summary-desc1.total-amt p {
    color: var(--first-color);
    font-weight: 500;
    font-size: 17px;
    margin-top: 10px;
}
.checkout-wrap  .box-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 18px;
}

.checkout-wrap {
    margin-bottom: 20px;
}
.heading-box {
    background-color: var(--second-color);
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 19px;
}

.box-heading-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.box-heading-wrap .wrap-inner {
    border: 1px solid #eee;
    padding: 16px 20px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #faf9fb;
}

.box-heading-wrap .wrap-inner label {
    color: var(--third-color);
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 0px;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
}

.box-heading-wrap .wrap-inner label .code-subinfo {
    display: block;
    color: #000;
    font-size: 12px;
    line-height: 19px;
    font-weight: 400;
    padding: 0;
    font-style: normal;
}

.box-heading-wrap .wrap-inner .form-check {
    padding-left: 1px;
}

.box-heading-wrap .wrap-inner .form-check .form-check-input {
    float: right;
} 

.form-group.write-coupon .form-control {
    border-radius: 30px;
}

.form-group.write-coupon .btn.apply-btn {
    font-size: 14px;
    padding: 8px 17px;
    position: absolute;
    right: 4px;
    top: 4px;
}
.apply-coupon-div .apply-c p {
    font-weight: 600;
    margin: 0px;
}
.navbar-right-menu .header-menu {
    width: 100%;
}
.main-header.bottom-header .navbar-right-menu .header-menu .nav-list .nav-menu { 
     gap: 0  ;  
    justify-content: space-between;
    display: flex;
}
.main-header.bottom-header  .navbar-right-menu .header-menu .nav-list {
    margin-right: 20px;
    width: 100%;
}
.main-header.bottom-header .navbar-right-menu .header-menu {
    width: 100%;
}
.header-menu .nav-list .nav-menu li a{
    padding: 17px 0px;
}
.wishlist-section h4.pr-name {
    font-size: 19px;
}

.rev-box {
    margin-bottom: 20px;
    padding: 20px 23px;
    background: #3333330a;
    border-radius: 15px;
    transition: .3s;
}

.rev-box p.r-txt {
    font-size: 14px;
    margin-bottom: 10px;
}

.rev-box .review-star {
    margin-bottom: 7px;
}

.rev-box .review-star i {
    color: #ffb32b;
}

.rev-box .reviewer-name {
    margin-bottom: 0px;
    color: var(--first-color);
    font-size: 20px;
}
.wishlist-section.cart-page .product-quantity {
    width: 170px;
}

.account-statics table {
    border: 1px solid #dee2e6;
} 

.account-statics table span.stat-heading img {
    margin-right: 10px;
    width: 20px;
}

.account-statics table th , .account-statics table td {
    padding: 10px 22px;
}

.account-statics .acc-heading {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--first-color);
    font-weight: 600;
}
.invite-box {
    margin-bottom: 21px;
}

.invite-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--first-color);
    font-weight: 600;
}

.invite-box .form-group {
    display: flex;
}

.invite-box .form-group input {
    border-top-right-radius: 0px ! Important;
    border-radius: 50px;
    padding-left: 30px;
    border-bottom-right-radius: 0px !important;
}

.invite-box .form-group .btn {
    width: 40%;
    border-top-left-radius: 0px ! Important;
    border-bottom-left-radius: 0px ! Important;
}
.form-flex {
    display: flex;
    align-items: center;
}

.form-flex label {
    width: 30%;
}
.header-menu .nav-list .nav-menu  .mega-li {
    background: var(--first-color);
}

.header-menu .nav-list .nav-menu .mega-li .all-cat {
    color: #fff;
    padding: 17px 18px;
}
.header-menu .nav-list .nav-menu  .mega-li {
    background: var(--first-color);
}

.header-menu .nav-list .nav-menu .mega-li .all-cat {
    color: #fff;
    padding: 17px 18px;
}
.hover-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0px;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    min-width: 100px;
    border-radius: 10px;
    width: 240px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .2);
    z-index: 100;
    overflow: hidden;
}
 

.login-dropdown {
    position: relative;
}

.login-dropdown:hover .hover-dropdown {
    display: block;
}

.hover-dropdown .need-support {
    display: flex;
    justify-content: space-between;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    padding: 12px 11px;
}

.hover-dropdown .need-support span {
    font-size: 15px;
}

.hover-dropdown .need-support .sign-up {
    background: transparent !important;
    padding: 0px !important;
    font-size: 16px;
    color: var(--second-color);
    font-weight: 600;
}

.hover-dropdown ul {
    margin: 0px;
    padding: 0px;
    text-align: left;
}

.hover-dropdown ul li {
    text-align: left;
    display: block;
    border-left: none;
}

.hover-dropdown ul li a {
    border: none;
    text-align: left;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    width: 100%;
    background: #fff;
    transition: all ease .4s;
}

.hover-dropdown ul li a i {
    color: #101010;
    margin-right: 6px;
    font-size: 18px;
}

.hover-dropdown ul li a span {
    font-size: 14px;
    color: #636363;
}

.hover-dropdown ul li a:hover {
    background: #f5f5f5;
}
.sort-category-select select {
    padding: 8px 20px 8px 6px;
    border: 2px solid #e5e7e8;
    outline: none;
    border-radius: 4px;
    color: #706f6f;
    margin-bottom: 20px;
}

.showing-results {
    margin-bottom: 20px;
}

.showing-results p {
    font-size: 15px;
}

.showing-results p b {
    color: var(--first-color);
}
.page-item.disabled .page-link {
    opacity: .6;
}

.page-item.active .page-link {
    background-color: var(--first-color);
    border-color: var(--first-color);
}
.pr-star-rate {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.pr-star-rate .star-box {
    font-size: 11px;
    background: var(--second-color);
    padding: 4px 4px;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 2px;
    margin-right: 7px;
}

.pr-star-rate .star-box i {
    line-height: 0px;
    margin-left: 4px;
    color: #fff;
}

span.star-num {
    line-height: 0px;
}

.pr-star-rate .total-ratings {
    font-size: 11px;
    color: rgba(0,0,0,.58);
}
section.before-footer {
    padding: 40px;
    color: #1a1a1a;
}

.before-footer h2 {
    font-weight: 600;
    font-size: 20px;
    color: var(--first-color);
    margin-bottom: 14px;
}

.before-footer h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--second-color);
}

.before-footer p {
    font-size: 15px;
    line-height: 23px;
    color: #666;
}

.secure-footer .sec-div {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-bottom: 0px;
}
section.secure-footer.policies-sec {
    padding: 20px 0;
}
section.secure-footer {
    padding: 30px 0;
    background: aliceblue;
}
.footer-top .row {
    justify-content: space-between;
}
.secure-footer .sec-div .sec-icon {
    width: 98px;
    height: 98px;
}

.secure-footer .sec-div .sec-text {
    margin-left: 23px;
}

.secure-footer .sec-div .sec-text h4 {
    font-size: 25px;
    margin-bottom: 8px;
}

.secure-footer .sec-div .sec-text p {
    color: #767676;
    font-size: 12px;
    opacity: .7;
    max-width: 250px;
    margin: 0px;
}

.policies-list {
    text-align: center;
}

.policies-list ul {
    padding: 0px;
    margin: 0px;
}

.policies-list ul li {
    list-style: none;
    display: inline-block;
}

.policies-list ul li a {
    padding-right: 23px;
    display: inline-block;
    text-decoration: none;
    color: #8a8a8a;
    font-size: 14px;
    line-height: 25px;
    position: relative;
}

.policies-list ul li a:after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    right: 6px;
    top: 11px;
    background: var(--third-color);
    border-radius: 50%;
}

.policies-list ul li:last-child a {
    padding-right: 0px;
    position: unset;
}
.download-app {
    display: block;
    margin-bottom: 20px;
}

.download-app img {
    width: 202px;
}
ul.social-profile li a img {
    width: 27px;
    height: 26px;
}
.footer-copyright p a {
    color: #fff;
}
.upload-box {
    padding: 50px 70px;
    border-radius: 50px;
    background:#e7e9e8c4;
}

.upload-box h3 {
    font-size: 44px;
    font-weight: 600;
    color: var(--first-color);
    margin-bottom: 16px;
    line-height: 62px;
}

.prescription-content .pres-icon {
    width: 68px;
    margin-bottom: 10px;
}
.ord-num {
    margin-bottom: 15px;
}

.ord-num h2 {
    font-size: 18px;
    font-weight: 400;
}

.ord-num span {
    font-weight: 600;
    color: var(--second-color);
}
.detail-list ul.sum-list {
    padding: 0px;
    list-style: none;
    margin: 0;
}

.detail-list ul.sum-list li {
    width: 100%;
    align-items: center;
    display: inline-flex;
    justify-content: space-between;
    margin-bottom: 13px;
}

.detail-list ul.sum-list li p.list-txt {
    color: #3b3838;
    font-weight: 500;
}

.detail-list ul.sum-list li p.ord-amt {
    font-size: 17px;
    color: var(--third-color);
    font-weight: 700;
}

.detail-list ul.sum-list li p {
    margin: 0px;
}

.detail-list ul.sum-list li.total {
    border-top: 1px solid #eee;
    padding-top: 7px;
    margin-bottom: 0px;
}

.detail-list ul.sum-list li.total .list-txt {
    color: var(--second-color);
    font-size: 20px;
}

.ord-sidebox {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.ord-sidebox h5.title {
    padding: 9px 18px;
    background: var(--first-color);
    color: #fff;
    font-size: 18px;
    margin: 0px;
}

.ord-sidebox .sidebox-inner {
    background: linear-gradient(0deg, rgba(255, 244, 244, 0.91) 3.17%, #F7FEFF 94.02%);
    padding: 12px 18px;
}

.ord-sidebox .sidebox-inner ul {
    margin: 0px;
    padding: 0px;
}

.ord-sidebox .sidebox-inner ul li {
    list-style: none;
    font-size: 14px;
    margin-bottom: 6px;
}

.ord-sidebox .sidebox-inner ul li span {
    font-weight: 700;
}

.ord-sidebox .sidebox-inner li a {
    width: max-content;
    color: var(--second-color);
    font-weight: 600;
    background: #fff;
    padding: 6px 16px;
    display: block;
    border-radius: 20px;
}
.style1 {
    margin-bottom: 10px;
}
 .text-left {
    text-align: left!important;
}
.blog-card {
    margin-bottom: 19px;
}

.blog-card .blog-card-img {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.blog-card img {
    border-radius: 5px;
    transition: all ease .5s;
}

 .blog-card-info {
    padding: 13px 0 0;
}

 .blog-card-info ul.blog-metainfo {
    margin-bottom: 15px;
}

 .blog-card-info ul.blog-metainfo li {
    display: inline-block;
    margin-right: 21px;
    position: relative;
    color: var(--second-color);
    padding-left: 22px;
    font-size: 15px;
}

 .blog-card-info ul.blog-metainfo li i {
    position: absolute;
    top: 3px;
    left: 0;
    line-height: 1;
    color: var(--first-color);
}

 .blog-card-info ul.blog-metainfo li a {
    color: var(--second-color);
}

 .blog-card-info .blog-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

 .blog-card-info .blog-title .blog-date {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 67px;
    height: 61px;
    text-align: center;
    border-radius: 2px;
    background-color: rgba(21, 185, 217, .08);
    font-weight: 500;
    color: var(--second-color);
    line-height: 17px;
    transition: all ease .5s;
}

 .blog-card-info .blog-title .blog-date span {
    display: block;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    list-style: none;
    transition: all ease .5s;
}

 .blog-card-info .blog-title h3 {
    width: calc(100% - 86px);
    margin-left: auto;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 30px;
} 

.blog-card:hover  img {
    transform: scale(1.05) rotate(1deg);
}
.sidebar-widget.search-box {
    margin-left: 0px;
    width: 100%;
    padding: 0;
    background-color: transparent;
}

.sidebar-widget.search-box .form-control {
    width: 100%;
    height: 52px;
    background: 0 0;
    border: 1px solid rgba(207, 204, 204, .34);
    font-size: 16px;
    line-height: 21px;
    padding: 10px 60px 10px 20px;
    border-radius: 5px;
}

.sidebar-widget.search-box button {
    position: absolute;
    top: 7px;
    right: 7px;
    padding: 0 12px;
    height: calc(100% - 14px);
    border: none;
    border-radius: 5px;
    text-align: center;
    background: var(--first-color); 
    transition: all ease .5s;
}

.sidebar-widget.search-box button i {
    color: #fff;
}

.blog-sidebar {}

.sidebar-widget .sidebar-widget-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding-bottom: 17px;
    margin-bottom: 20px;
    color: var(--second-color);
    border-bottom: 1px solid rgba(197, 197, 197, .42);
}

.popular-post-widget {}

.popular-post-widget .pp-post-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 20px;
}

.popular-post-widget .pp-post-item .pp-post-img {
    width: 85px;
    border-radius: 5px;
    border-radius: 5px;
}

.popular-post-widget .pp-post-item .pp-post-img img {
    width: 100%;
    border-radius: 10px;
}

.popular-post-widget .pp-post-item .pp-post-info {
    width: calc(100% - 100px);
    margin-left: 15px;
}

.popular-post-widget .pp-post-item .pp-post-info span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    display: block;
    position: relative;
    color: var(--first-color);
    margin-bottom: 8px;
}

.popular-post-widget .pp-post-item .pp-post-info h6 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0;
}

.popular-post-widget .pp-post-item .pp-post-info h6 a {
    color: var(--second-color);
}

.blog-sidebar .sidebar-widget {
    background-color: #faf9fb;
    padding: 30px 38px 35px;
}

.blog-sidebar .sidebar-widget ul.tag-list {
    margin-top: 0;
}

.blog-sidebar .sidebar-widget ul.tag-list li {
    display: inline-block;
    margin: 12px 8px 0 0;
}

.blog-sidebar .sidebar-widget ul.tag-list li a {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    padding: 8px 20px 8px;
    color: var(--third-color);
    border-radius: 5px;
    background-color: #ffffff;
    transition: all ease .5s;
}

.blog-sidebar .sidebar-widget ul.tag-list li a:hover {
    background: var(--first-color);
    color: #fff;
}

.sidebar-widget.contact-widget-two {
    background-image: url(../image/blog3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    padding: 74px 40px 55px !important;
    text-align: center;
}

.sidebar-widget.contact-widget-two h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.sidebar-widget.contact-widget-two:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 5px;
    background: rgba(9, 0, 85, .63);
}
.sidebar-widget.search-box {
    padding: 0;
    background-color: transparent;
} 
.blog-detail-div .blog-img {
    border-radius: 20px;
    margin-bottom: 5px;
}

.blog-detail-div .blog-title {
    margin-bottom: 15px;
}

.blog-detail-div p {
    font-size: 16px;
    line-height: 27px;
    text-align: justify;
    color: #606060;
}

.blog-detail-div .quote-box {
    padding: 30px 42px 40px;
    background-color: #f7f7f7;
    border-bottom: 3px solid #bb005d;
    margin: 30px 0;
    z-index: 1;
    position: relative;
}

.blog-detail-div .quote-box p {
    color: var(--second-color);
    font-weight: 500;
    font-size: 17px;
}

.blog-detail-div .quote-box h6 {
    color: var(--third-color);
    position: relative;
    padding-left: 55px;
    font-size: 16px;
    font-weight: 400;
}

.blog-detail-div .quote-box i {
    font-size: 33px;
    color: var(--first-color);
}

.blog-detail-div .quote-box h6:before {
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    width: 39px;
    height: 2px;
    background-color: #c6c6c6;
}

.blog-detail-div h3 {
    font-size: 28px;
    color: var(--second-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-detail-div ol {
    margin-bottom: 20px;
}

.blog-detail-div ol li {
    margin-bottom: 15px;
    padding-left: 3px;
    color: var(--third-color);
}
.blog-detail-div ul {
    margin-bottom: 20px;
}

.blog-detail-div ul li {
    margin-bottom: 15px;
    padding-left: 3px;
    color: var(--third-color);
    position: relative;
}
.blog-detail-div ul li:before{
    content: "\f272";
    font-family: 'bootstrap-icons';
    color: var(--first-color);
    position: absolute;
    left: -20px;
    top: 0px;
}
.comment-item-wrap {
    margin-bottom: 28px;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.comment-item-wrap .comment-box-title {
    margin-bottom: 25px;
    font-weight: 600;
}

.comment-item-wrap .comment-item {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.comment-item-wrap .comment-item.reply {
    margin-left: 40px
}

.comment-item-wrap .comment-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0
}

.comment-item-wrap .comment-item .comment-author-img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    position: relative;
    top: 4px
}

.comment-item-wrap .comment-item .comment-author-img img {
    border-radius: 5px;
    width: 100%;
}

.comment-item-wrap .comment-item .comment-author-wrap {
    width: calc(100% - 122px);
    margin-left: 22px
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name {
    margin: 0 0 12px
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
    line-height: 1;
    margin: 0 20px 0 0;
    font-size: 18px;
    color: var(--third-color);
    display: inline-block
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--paraColor);
    margin-top: 10px
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-text p {
    margin: 0
}

.comment-item-wrap .reply-btn {
    display: inline-block;
    line-height: 1;
    font-weight: 600;
    color: var(--first-color);
    font-size: 15px; 
}

.comment-item-wrap .reply-btn:hover {
    color: var(--second-color);
}

.comment-box-title h4 {
    margin-bottom: 0;
    line-height: 1
}

.comment-box-title p {
    margin-top: 10px;
    margin-bottom: 0
}
.faq-form {
    background-color: #faf9fb;
    padding: 40px;
    margin-bottom: 25px;
    border-radius: 15px;
}

.faq-form .form-control {
    background: #fff;
}

.faq-form h3 {
    font-size: 25px;
    margin-bottom: 13px;
    color: var(--first-color);
    font-weight: 600;
}

.invoice-slip {}

.invoice-slip .milega-logo {
    max-height: 100px;
    margin-bottom: 25px;
    width: auto;
}

.invoice-slip  .order-details-box {
    margin-bottom: 15px;
}

.invoice-slip .order-details-box p {
    margin-bottom: 4px;
    font-size: 15px;
}

.invoice-slip .order-details-box p span {
    color: var(--third-color);
    font-weight: 500;
}

.invoice-slip .style1 {
    margin-bottom: 25px;
} 

.invoice-slip .ord-total-amt-block ul {
    padding: 0;
    list-style: none;
}

.invoice-slip .ord-total-amt-block ul li {
    margin-bottom: 7px;
    font-size: 17px;
    width: 100%;
}

.invoice-slip .ord-total-amt-block ul li span.amt-total {
    font-weight: 500;
    text-align: right;
    margin-left: auto;
    float: right;
    font-size: 19px;
    color: var(--first-color);
}

.invoice-slip .ord-total-amt-block ul li.grand-total {
    font-size: 20px;
    margin-top: 13px;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.invoice-slip .ord-total-amt-block ul li.grand-total span.amt-total {
    font-size: 20px;
    font-weight: 600;
}
.invoice-header .heading {
    color: var(--first-color);
    font-size: 26px;
    font-weight: 600;
} 
body.printing header {
    display: none;
}

body.printing section.breadcrumb {
    display: none;
} 

body.printing .dashboard {
    display: none;
}

body.printing footer {
    display: none;
}
body.printing   .col-lg-9 {
    width: 100%;
}

body.printing .default-padding {
    padding: 9px 0;
}

body.printing .container {
    padding: 0 9px;
    width: 100%;
    max-width: 100%;
}
body.printing .invoice-header {
    display: none;
}
.link-one:hover {
    color: var(--second-color);
}
 .cart-item-status {
    padding: 6px 10px;
    border-radius: 50rem !important;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}
.cart-item-status.shipped {
    background-color: #198754 !important;
}
.cart-item-status.pending {
    background-color: #dc3545 !important;
}
.cart-item-status.canceled {
    background-color: #6c757d !important;
}
.order-medi-upload {
    position: relative;
    border: 1px solid #d2dfe3;
    padding: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.order-medi-upload  .OMU-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--second-color);
}

.order-medi-upload .file-upload {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.order-medi-upload .file-upload .image-upload-wrap {
    position: relative;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0px auto;
}

.order-medi-upload .file-upload .image-upload-wrap .file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.order-medi-upload .file-upload .file-upload-content {
    display: none;
    text-align: center;
}

.order-medi-upload .file-upload h4 {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 20px 0px;
    color: var(--first-color);
    text-align: center;
}

.order-medi-upload .file-upload .file-upload-btn {
    width: 300px;
    margin: 0;
    color: var(--third-color);
    background: #f5f5f5;
    border: 1px solid var(--third-color);
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 29px;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 600;
}
.order-medicine-sidebar {
    position: relative;
    padding: 20px;
    border: 1px solid #d2def2;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}

.order-medicine-sidebar h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--second-color);
}

.order-medicine-sidebar .presc_img {
    margin: 25px 0px;
}

.order-medicine-sidebar .presc_img img {
    width: 210px;
    height: auto;
}

.order-medicine-sidebar .order-steps {
    padding: 20px 0px;
    overflow: hidden;
}

.order-medicine-sidebar .order-steps h3 {
    font-size: 19px;
    letter-spacing: 0;
}

.order-medicine-sidebar .order-steps ul {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-left: 0;
    list-style: none;
}

.order-medicine-sidebar .order-steps ul li {
    flex: 1;
    text-align: center;
}

.order-medicine-sidebar .order-steps ul li .order-step-number {
    border-color: var(--third-color);
    color: var(--third-color);
    border-width: 0.063rem;
    width: 70px;
    height: 70px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 0px;
    border-radius: 50%;
    border-style: solid;
    margin: auto;
    vertical-align: middle;
}

.order-medicine-sidebar .order-steps ul li .order-step-number-text {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding: 10px 0px;
}
section.order-success {
    background: #bb005d17;
    margin-bottom: 60px;
    text-align: center;
}

.order-success .checkmark__background {
    fill: var(--second-color);
    animation: rotate 35s linear both infinite;
}

.order-success .checkmark__check {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate3d(-50%, -50%, 0);
    fill: #ffffff;
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.order-success .thank-u {
    color: var(--second-color);
    margin-top: 20px;
    font-weight: 700;
}

.order-success  p {
    color: var(--third-color);
    font-size: 16px;
    line-height: 26px;
}

.order-success p.trans-info {
    margin-bottom: 0px;
    font-size: 19px;
}

.order-success p.trans-info .trans-no {
     margin-left: 10px;  
   font-weight: 700;  
     color: var(--first-color);  
}
.order-details-box {
    border-radius: 5px;
    background-color: #eff2f7;
    border: 1px solid #ddd;
    margin-bottom: 25px;
    height: auto;
    padding: 20px 20px;
}

.order-details-box h5 {
    color: var(--second-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.order-details-box p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 4px;
}

.order-details-box p span {
    color: var(--first-color);
    font-size: 16px;
    font-weight: 600;
}
.note span {
    text-decoration: underline;
    color: #ff0000;
    margin-right: 10px;
    text-transform: uppercase;
}
.dash-right-box h4.box-title {
    margin-bottom: 13px;
} 

.pay-request ul {
    margin-bottom: 16px;
} 

.pay-request ul li {
    margin-bottom: 10px;
    color: var(--third-color);
}
 

.pay-request ul li span {
    font-weight: 600;
}

.pay-request .hg-text {
    background: #14f08a3d;
    color: #198754;
    font-size: 16px;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
}

.policy-box h4 {
    color: var(--first-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.policy-box p {
    font-size: 16px;
    line-height: 27px;
    text-align: justify;
    color: #606060;
}

/**/
.dr-box {
    padding: 40px 35px;
    box-shadow: 0px 9px 20px rgb(46 35 94 / 7%);
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #E6E9EB !important;
	margin-bottom: 30px;
}

.dr-box .dr-img {
     margin-right: 0;
    max-width: 172px;
    border-radius: 10px;
}

.dr-flex.profession p.dr-type {
    color: var(--first-color); 
    font-size: 17px;
    margin-bottom: 4px;
}

.dr-flex.profession p.abt-edu {
    color: var(--bs-body-color);
    font-size: 14px;
}
.btn-flex {
    gap: 10px;
    display: flex
;
    align-items: center;
}

.btn-flex a {
    width: 49%;
}

.dr-desc {
    text-align: left;
    width: 83%;
}
.dr-flex.profession .dr-sm-icon {
    width: 20px;
    max-height: 20px;
    margin-right: 12px;
}

.dr-flex.profession {
    display: flex;
    justify-content: start;
    margin-bottom: 13px;
}
.dr-flex.profession p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 26px;
    color: var(--third-color);
}
section.appointment .dr-desc {
    width: 75%;
}
.dr-banner {
    box-shadow: 0px 9px 20px rgb(46 35 94 / 7%);
    border-radius: 10px;
    border: 1px solid #E6E9EB !important;
    margin-bottom: 35px;
    padding: 10px;
}
.dr-banner img {
    border-radius: 10px;
}
.appointment-box {
    background-color: #faf9fb;
    padding: 30px;
    border-radius: 5px;
}
.appointment-box  .form-group .form-control { 
    background: #fff;
}
p.hg-text {
    background: #14f08a3d;
    color: #198754;
    font-size: 17px;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
}
  
p.note span {
    text-decoration: underline;
    color: #ff0000;
    margin-right: 10px;
    text-transform: uppercase;
}
.accordion-body.banner-body img {
    border: 1px solid;
    margin-bottom: 15px;
}
.review-stars i:hover {
    color: #ffcc00;
}

.review-stars i.active {
    color: #ffcc00;
}
.reachus-form {
    text-align: center;
    background: var(--first-color);
    padding: 24px 30px;
    border-radius: 23px;
} 

.reachus-form .section-title h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}
 
.reachus-form .form-group .form-control {
    padding: 15px 20px;
    border-color: #e6e6e6;
    border-radius: 10px;
}
.text-second{
    color: var(--second-color)!important;
}


@media only screen and (max-width: 767px) {
    .mb-d-none{
        display:none!important;
    }
    .mb-d-block{
        display:block!important;
    }
    .header-left ul li i { 
        font-size: 14px;
        margin-right: 0px;
    }
    .header-left ul li a { 
        font-size: 14px;
    }
    .top-bar{
        padding: 3px 0 6px 0px;
    }
    /*.navbar-right-menu {
        display: none;
    }
    .navbar-right-menu {
        left: -100%;
        top: 0px;
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: 100% !important;
        background: var(--second-color);
        padding: 30px;
        animation: slide-in-left 1s forwards;
        z-index: 999;
    }*/
    .toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
    }
    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }
    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }
    .toggle-icon span:first-child {
        top: 0;
    }
    .toggle-icon span:nth-child(2) {
        top: 44%;
    }
    .toggle-icon span:last-child {
        bottom: 2px;
    }
    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }
    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }
    .main-header {
        padding: 4px 0;
    }
    .banner-section .slick-slide img {
        width: 100%;
    }
    .slick-arrow{
        width: 40px;
        height: 40px;
        line-height: 41px;
        top: 41%;
    }.slick-arrow i {
        font-size: 18px;
    }
    .banner-section .PrevArrow.slick-arrow {
        left: 10px;
    }
    .banner-section .NextArrow.slick-arrow {
        left: unset;
        right: 10px;
    }
    .default-padding {
        padding: 50px 0;
    }
    .category-box .category-box-inner img {
        width: 140px;
        margin-bottom: 6px;
    }
    .category-box .category-box-inner .category-name h3{
        font-size:15px;
    }    
    .mini-banner{
        margin-bottom: 20px;
    }
    .new-launched br {
        display: none !important;
    }
    .move-text-one ul li { 
        font-size: 20px;
        margin: 0 0px;
        padding: 0 33px;
    }
    .move-text-one ul li:after { 
        top: -2px;
        right: -21px;
        width: 25px;
        height: 31px; 
    }
    .move-text-one{
        padding: 40px 0;
    }
    .product-info h3 a {
        font-size: 16px;
        line-height: 23px;
        height: 47px;
    }
    .product-info {
        padding: 10px 16px 13px;
    }
    .sec-heading h2 {
        font-size: 30px;
    }
    .category2-slider ul.slick-dots {
        display: none!important;
    }
    h4.pr-name {
        font-size: 14px;
    }
    .category2-slider .slick-arrow {
        top: -64px; 
        right: 0px;
        width: 40px;
        height: 41px
    }
    .category2-slider .slick-arrow i {
        font-size: 18px;  
        left: 0px;
        top: -5px;
    }
    .category2-slider .PrevArrow.slick-arrow {
        right: 44px;
    }
    .bodyCare-slider ul.slick-dots {
        display: none!important;
    }
    .bodyCare-slider .slick-arrow {
        top: -64px; 
        right: 0px;
        width: 40px;
        height: 41px
    }
    .bodyCare-slider .slick-arrow i {
        font-size: 18px;  
        left: 0px;
        top: -5px;
    }
    .bodyCare-slider .PrevArrow.slick-arrow {
        right: 44px;
    }
    .footer-top {
        padding-top: 50px;
        padding-bottom: 25px;
    }.footer-widget {
        margin-bottom: 20px;
    }
    .footer-widget p.abt-com{
        font-size: 13px;
    }
    .mobile-quick-menu {
        display: none;
    }
    span.mobile-quick-arrow {
        display: inline-flex;
        padding-left: 10px;
        float: right;
    }
    span.mobile-quick-arrow i {
        display: block !important;
    }
    .mobile-quick-menu.active {
        display: block !important;
    }
    .footer-widget .footer-widget-title { 
        font-size: 19px;
        line-height: 27px;
    }
    .footer-copyright p {
        text-align: center;
        font-size: 12px;
    }
    body.mobile-menu .navbar-right-menu {
        display: block !important;
        overflow-y: auto;
    }
    .preloader .circle {
        left: 38%;
    }
    .navbar-right-menu .header-menu .nav-list .nav-menu{
        display: block;
    }
    .header-menu .nav-list .nav-menu li a{
        font-size: 15px;
        color: var(--second-color); 
        padding: 7px 0px;
    }
    .right-options {
        display: none;
        margin-top: 20px;
    }
    .right-options .header-icons {
        margin-bottom: 13px;
    }
    .right-options .header-icons ul li a { 
        margin: 0px 10px;
    }
    .right-options .header-icons ul li a i{
        color: #91dafe;
    }
    .right-options .btn.btn1 { 
        background: #fff; 
        color: var(--first-color);
    }
    .right-options .btn.btn1:hover {  
        color: #fff;
    }
    .navbar-right-menu .header-menu .nav-list {
        margin-right: 0;
    }
    .header-menu .nav-list .nav-menu li a i {
        position: absolute;
        right: 0px;
        font-size: 14px;
    }
    .header-menu .nav-list .nav-menu .sub-menu {
        margin-left: 20px;
        position: relative;
        top: 4px;
        box-shadow: none;
        left: 0;
        border: none;
        width: auto;
    }
    .header-menu .nav-list .nav-menu .sub-menu li.nav-items ul.sub-menu{
        top: 4px;
        position: relative;
        left: 0;
    }
    .header-menu .nav-list .nav-menu .sub-menu li.nav-items ul.sub-menu li {
        padding-left: 18px;
    }
    .header-menu .nav-list .nav-menu .sub-menu li.nav-items a.sub-item{
        font-size: 13px;   
        padding: 7px 29px 7px 10px;
    }
    body.mobile-menu .close-menu {
        display: block !important;
        position: absolute;
        top: 0;
        right: 9px;
    }
    body.mobile-menu .close-menu i {
        color: var(--second-color);
        font-size: 28px;
    }
    .product-details .pr-name {
        font-size: 23px;
    }
    .product-details {
        margin-left: 0;
        margin-top: 20px;
    }
    .product-quantity {
        margin-bottom: 15px;
    }
    .description-box p {
        text-align: justify;
        font-size: 12px;
        line-height: 19px;
    }
    .similar-product-box {
        padding: 6px 8px;
    }
    .modal-dialog .modal-content .modal-body .product-info h3 a{ 
        height: 53px;
    }
    .btn.btn1 {
        font-size: 12px;
        padding: 12px 20px;
    }
    .btn.btn2 {
        font-size: 12px;
        padding: 12px 20px;
    }
    .bottom-btns {
        padding: 15px 7px;
    }
    .product-info h3 a{
        height: auto!important;
    }
    .modal-dialog .modal-content .modal-body .product-info h3 a {
        font-size: 22px;
        line-height: 30px;
    }
    .modal-dialog .product-card .product-img{
        padding: 6px;
    }
    .modal-dialog .modal-content .modal-body .similar-product-box .product-info h3 a {
        font-size: 17px;
        line-height: 23px;
    }
    .modal-dialog .modal-content .modal-body .similar-product-box .product-info .product-category-in a {
        font-size: 11px;
    }
    #productModal .modal-content .modal-header .close {
        position: relative;
        top: 0;
        right: 0;
        margin-left: 20px;
    }
    #productModal .modal-content .modal-header .sucess-label p {
        font-size: 13px;
    }
    .style1 table tr th {
        font-size: 14px;
    }
    .tracking-div .tracking-inner ul {
        display: block;
    }
    .tracking-div .tracking-inner ul li.bullet-1 {
        position: relative;
        width: 100%;
        margin-left: 40px;
        display: flex;
        padding-bottom: 21px;
    }
    .tracking-div .tracking-inner ul li.bullet-1:before {
        width: 6px;
        height: 100%;
        background: #ddd;
        top: 8px;
        left: 8px;
    }
    .tracking-div .tracking-inner ul li.bullet-1 .txt {
        margin-top: 0px;
        margin-left: 20px;
    }
    .tracking-div .tracking-inner ul li.bullet-1 .txt img {
        width: 51px;
    }
    .dash-right-box {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .mobile-show-page {
        display: block !important;
    }
    .bottom-sticky-menu {
        padding: 10px 0;
        box-shadow: 0 0 20px #59667a59;
        position: sticky;
        width: 100%;
        bottom: 0;
        z-index: 111;
        background: #fff;
    }
    .bottom-sticky-menu a.menu-item {
        text-align: center;
        position: relative;
        width: 20%;
    }
    .bottom-sticky-menu a.menu-item img.menu-item-img {
        width: 25px;
    }
    .bottom-sticky-menu a.menu-item p.menu-name {
        margin-bottom: 0px;
        margin-left: 10px;
        margin-top: 5px;
        line-height: 16px;
        font-size: 13px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        width: 60px;
    }
    a.menu-item.active p.menu-name {
        font-weight: 600;
        color: var(--first-color);
    }
    a.menu-item.active:before {
        top: -10px;
        background: azure;
        border-top: 4px solid var(--first-color);
        content: '';
        position: absolute;
        right: 26%;
        height: 2px;
        width: 36px;
    }
    .login-form-wrap {
        background-color: #faf9fb;
        padding: 26px 34px;
    }
    p.bottom-info {
        font-size: 12px;
    }
    .otp-enter-div.row {
        max-width: 58px;
    }
    .otp-enter-box .input-box{
        height: 47px;
        padding: 11px 6px;
    
    }
    .accordion-item .accordion-header .accordion-button { 
        font-size: 15px;
    }
    .accordion-item .accordion-header .accordion-button .tab-no{
        height: 25px;    
        padding: 0px 6px;
        font-size: 12px;
    }
    .accordion-item .accordion-body{
        padding: 20px;
    }
    .checkout-box-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    .advantage-block {
        margin-top: 15px;
    }
    .addressModal .modal-header h5.modal-title {
        font-size: 20px;
    }
    .addressModal .modal-dialog .modal-content .modal-body {
        padding: 19px 21px;  
    }
    /**/
    .search-box {
        position: absolute;
        top: 76px;
        z-index: 11;
        width: 100%;
        margin: 0;
        left: 0;
        box-shadow: 0 4px 7px rgba(0, 0, 0, 0.06);
    }
    header {
        margin-bottom: 36px;
    }
    .main-header.bottom-header .navbar-right {
        display: none;
        left: -100%;
        top: 0px;
        position: fixed;
        width: calc(100% - 60px);
        max-width: 341px;
        height: 100% !important;
        background:#fff;
        padding: 30px;
        animation: slide-in-left 1s forwards;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
        z-index: 999;
    }
    body.mobile-menu .main-header.bottom-header .navbar-right {
        display: block !important;
        overflow-y: auto;
    }
    body.mobile-menu .main-header.bottom-header { 
        z-index: 9;
    }
    .main-header.bottom-header {
        box-shadow: none;
        border-top: none;
        z-index: 1;
        padding: 0px;
    }
    body.mobile-menu .main-header {
        z-index: 1;
    }
    .search-box .search-inner .form-control {
        border-radius: 0;
        padding: 10px 20px;
        border: 1px solid var(--first-color);
    }
    .search-box .search-inner .search-con {
        background: transparent;
        right: 7px;
        top: 3px;
    }
    
    .search-box .search-inner .search-con i {
        color: var(--second-color);
    }
    .main-header.bottom-header .navbar-right-menu .header-menu .nav-list .nav-menu {
        display: block;
    }
    .header-menu .nav-list .nav-menu .sub-menu li.nav-items:last-child {
        border-bottom: none;
        border: none;
    }
    
    .header-menu .nav-list .nav-menu .sub-menu li.nav-items:last-child .sub-item {
        border: none;
    }
    
    .description-box {
        padding: 23px 23px;
    }
    .cart-item-price { 
        font-size: 16px;
    }
    .wishlist-section h4.pr-name {
        font-size: 13px;
    }
    .wishlist-section .btn.btn1 {
        font-size: 10px;
        padding: 8px 14px;
    }
    .wishlist-section.cart-page .product-quantity {
        width: auto;
    }
    .form-flex {
        display: block; 
    }
    
    .form-flex label {
        width: 100%;
    }
    .header-menu .nav-list .nav-menu .mega-li {
        background: #fff;
    }
    .header-menu .nav-list .nav-menu .mega-li .all-cat { 
        padding: 7px 0px;
        color: var(--first-color);
    }
    .incat-box .incat-info h3 {
        font-size: 10px;
        line-height: 11px;
    }
    .incat-box .incat-info { 
        padding: 3px 0px;
    }
    .in-category .in-category-title {
        text-align: left;
        font-size: 18px;
        margin-bottom: 9px;
    }
    .incat-box{
        margin-bottom: 15px;
    }
    .before-footer h2 { 
        font-size: 15px;
        line-height: 24px;
    }
    .before-footer h3 {
        font-size: 14px;
    }
    .before-footer p {
        font-size: 11px;
        line-height: 17px;
    }
    .secure-footer .sec-div .sec-text h4 {
        font-size: 20px;
    }
    .secure-footer .sec-div .sec-icon {
        width: 80px;
        height: 80px;
    }
    .secure-footer .sec-div{
        margin-bottom: 10px;
    }
    .policies-list ul li a {
        padding-right: 13px; 
        font-size: 11px;
        line-height: 20px;
    }
    .policies-list ul li a:after { 
        width: 3px;
        height: 3px;
        right: 2px;
        top: 10px;
    }
    section.secure-footer.policies-sec {
        padding: 11px 0;
    }
    section.before-footer {
        padding: 5px;
    }
    .upload-box {
        position: relative;
        padding: 18px 15px;
        border-radius: 24px;
    }
    .prescription-content {
        display: flex;
        align-items: center;
    }
    .prescription-content .pres-icon {
        width: 41px;
        margin-bottom: 0px;
        margin-right: 8px;
    }
    .upload-box h3 {
        font-size: 16px; 
        margin-bottom: 0px;
        line-height: 23px;
    }
    .prescription-content .btn {
        font-size: 10px;
        padding: 9px 7px;
        width: 36%;
    } 
    p.desc1 {
        font-size: 13px;
        line-height: 21px;
    } 
    .accordion-item .accordion-body p {
        font-size: 13px;
        line-height: 24px;
    }
    .scroll-top{
        bottom: 75px;
    }
    .mb-pb-0{
        padding-bottom: 0px!important;
    }
    .blog-detail-div .blog-card-info ul.blog-metainfo {
        margin-bottom: 0px;
    }
    .blog-card-info .blog-title h3{
        font-size: 20px;
    }
    .blog-card-info .blog-title .blog-date{
        width: 52px;
        height: 53px;
        font-size: 12px;
        line-height: 12px;
    }
    .blog-card-info .blog-title .blog-date span { 
        font-size: 19px;
    }
    .blog-card-info .blog-title h3 {
        width: calc(100% - 63px);
    }
    .blog-detail-div p {
        font-size: 13px;
        line-height: 22px;
    }
    .blog-detail-div .quote-box p { 
        font-size: 14px;
    }
    .blog-detail-div h3 { 
        margin-bottom: 10px;
    }
    .blog-detail-div ol li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 3px;
    }
    .blog-detail-div ul li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 3px;
    }
    .faq-form { 
        padding: 25px;
    }
    .faq-form h3 {
        font-size: 22px
    }
    .invoice-slip .ord-total-amt-block ul li { 
        font-size: 13px;
    }
    .invoice-slip .ord-total-amt-block ul li.grand-total {
        font-size: 15px;
    }
    .invoice-slip .ord-total-amt-block ul li.grand-total span.amt-total {
        font-size: 15px;
    }
    .invoice-slip .ord-total-amt-block ul li span.amt-total{
        font-size: 14px;
    }
    .cart-item span {
        font-size: 14px;
    }
    .invoice-slip .order-details-box p { 
        font-size: 12px;
    }
    .mb-ordersBlock {
        margin-bottom: 20px;
    }
    
    .mb-orders-box {
        border-radius: 9px; 
        background-color: #f9fafb;
        padding: 13px 15px;
        margin-bottom: 20px;
        border: 1px solid #eaeaea;
    }
    
    .mb-orders-box .pr-name {
        display: block;
        margin-bottom: 4px;
        font-size: 14px;
    }
    
    .mb-orders-box .cart-item-status {
        font-size: 10px;
        margin-bottom: 10px;
        padding: 5px 10px;
    }
    .order-medicine-sidebar h3 {
        font-size: 21px;
    }
    .order-medicine-sidebar .order-steps ul li .order-step-number-text {
        font-size: 12px;
    }
    .order-medi-upload .OMU-title {
        font-size: 20px;
    }
    .order-medi-upload .file-upload h4 {
        font-size: 15px;
        margin: 14px 0px;
    }
    .order-medi-upload .file-upload .file-upload-btn {
        font-size: 13px;
        margin-top: 0px;
    }
    .order-details-box p{
        font-size: 14px;
    }
    .order-details-box .d-flex {
        display: block !important;
    }
    .order-details-box .d-flex div {
        width: 100% ! important;
    }
    .order-details-box p span{
        font-size: 14px;
    }
    .order-details-box {
        margin-top: 20px;
    }
    .order-success p.trans-info { 
        font-size: 16px;
    }
    .order-success p { 
        font-size: 14px;
        line-height: 21px;
    }
    .policy-box p {
        font-size: 12px;
        line-height: 22px;
    }
    .policy-box h4 {
        font-size: 19px; 
        margin-bottom: 4px;
    }
    .breadcrumb-content h2 {
        font-size: 28px; 
        margin: 0 0 1px;
    }
    ul.breadcrumb-menu li {
        font-size: 11px;
    }
    ul.breadcrumb-menu li:first-child:after{
        width: 1px;
    }
    /**/
    .dr-box {
        display: block!important;
    }
     .dr-desc {
        width: 100%!important;
    }
    .dr-box .dr-img {
        margin-bottom: 20px;
    }
    .dr-flex.profession p.dr-type { 
        font-size: 14px;
    }
    .dr-flex.profession p { 
        font-size: 13px;
        line-height: 22px;
    }
    .dr-flex.profession .dr-sm-icon {
        width: 17px;
        max-height: 17px;
    }
    .appointment-box { 
        padding: 15px; 
    }

}


@keyframes slide-in-left {
    0% {
        left: -100%;
    }
    100% {
        left: 0px;
    }
}