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

a {
  color: #ff5b4f;
  text-decoration: none;
}

a:hover {
  color: #01adc3;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff5b4f;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff5b4f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #01adc3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #ff5b4f;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #ff5b4f;
}
#header .logo img {
  max-height: 70px;
}
#header.fixed-top .logo img{
 padding: 5px 0px;
}
.scrolled-offset {
  margin-top: 70px;
}

.location span{
  font-style: normal;
}
#header .cart-btn{
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin-left: 20px ;
  background: #e7f1fd;
  color: #ff5b4f;
  display: inline-block;
  border-radius: 50px;
}
#header .cart-btn{
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 10px;
  margin-left: 20px ;
  background: #e7f1fd;
  color: #ff5b4f;
  display: inline-block;
  border-radius: 50px;
}
#header .cart-btn .bi{
  font-size: 18px;
}

span.total-quantity {
  position: absolute;
  top: -0.5rem;
  right: -0.55rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50%;
  background-color: #ff5b4f;
  color: #fff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ff5b4f;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ff5b4f;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ff5b4f;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 1;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ff5b4f;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ff5b4f;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/background3.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #ff5b4f;
}
#hero h2 span {
  color: #ff5b4f;
}
#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ff5b4f;
}
#hero .btn-get-started:hover {
  background: #01adc3;
}
#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}
#hero .btn-watch-video i {
  color: #ff5b4f;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover {
  color: #ff5b4f;
}
#hero .btn-watch-video:hover i {
  color: #01adc3;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #ff5b4f;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #ff5b4f;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.about .content ul li:first-child {
  margin-top: 35px;
}
.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #ff5b4f;
  border-radius: 50px;
}
.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}
.about .content ul p {
  font-size: 15px;
}
.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: #01adc3;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}
.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: #ff5b4f;
}
.services .icon-box:hover .icon {
  border-color: #ff5b4f;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff5b4f;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5b4f;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# package
--------------------------------------------------------------*/
.package {
  padding: 30px 0;
}
.package .product {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.package .product .product-img {
  position: relative;
  overflow: hidden;
}
.package .product .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.package .product .social a:hover {
  background: #5c5f5f;
}
.package .product .social i {
  font-size: 18px;
}
.package .product .product-info {
  padding: 25px 15px;
}
.package .product .product-info h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}
.package .product .product-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.package .product .product-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.package .product:hover .social {
  opacity: 1;
  bottom: 15px;
}
.product-info h6, .bi-price{
  color: #01adc3;
}
.add-cart{
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0px 28px;
    background: #ff5b4f;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 4px;
}
.add-cart:hover{
  background: #01adc3;
  color: #fff;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Latest News
--------------------------------------------------------------*/
.home-blog {
    padding-top: 60px;
    padding-bottom: 60px;
}
.home-blog .section-title {
    padding-bottom: 15px;
}
.home-blog .media {
    margin-top: 50px;
}
@media (min-width: 768px) {
    .home-blog .media {
        margin-top: 30px;
    }
}
.media.blog-media {
    margin-top: 30px;
    position: relative;
    display: block;
    box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
@media (min-width: 992px) {
    .media.blog-media {
        display: table;
    }
}
.media.blog-media .circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: absolute;
    padding: 0;
    top: 20px;
    left: 20px;
    text-align: center;
    box-shadow: none;
    transform: translateX(0);
    color: #fff;
    transition: background-color 0.3s ease;
}
.media.blog-media .circle .day {
    color: #fff;
    transition: color 0.25s ease;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    margin-top: 12px;
}
.media.blog-media .circle .month {
    text-transform: uppercase;
    font-size: 14px;
}
.media.blog-media > a {
    position: relative;
    display: block;
}
@media (min-width: 992px) {
    .media.blog-media > a {
        display: table-cell;
        vertical-align: top;
        min-width: 200px;
    }
}
@media (min-width: 1200px) {
    .media.blog-media > a {
        min-width: 230px;
    }
}
.media.blog-media > a img {
    width: 100%;
}
.media.blog-media:hover > a:before {
    opacity: 1;
    transform: scale(1);
}
.media.blog-media:hover .circle {
    background-color: rgba(255, 255, 255, 0.9);
}
.media.blog-media:hover .circle .day,
.media.blog-media:hover .circle .month {
    color: #222;
}
.media-body h5 {
  color: #222;
}
.media.blog-media:hover .media-body h5 {
    color: #ff5b4f;
}
.media.blog-media:hover .media-body a.post-link {
    color: #ff5b4f;
    text-decoration: underline;
}
.media.blog-media .media-body {
    border: 1px solid #efeff3;
    padding: 20px 30px 10px;
    font-size: 14px;
    background: #fff;
    border-top: none;
}
@media (min-width: 992px) {
    .media.blog-media .media-body {
        padding: 15px 20px 10px;
        border-top: 1px solid #efeff3;
        border-left: none;
        display: table-cell;
        vertical-align: top;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body {
        padding: 20px 20px 10px;
    }
}
.media.blog-media .media-body h5 {
    transition: color 0.3s ease;
    margin-bottom: 15px;
}
@media (min-width: 992px) {
    .media.blog-media .media-body h5 {
        font-size: 15px;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body h5 {
        margin-bottom: 15px;
        font-size: 18px;
    }
}
.media.blog-media .media-body a.post-link {
    display: block;
    color: #222;
    font-size: 11px;
    padding: 23px 0;
    text-transform: uppercase;
    font-weight: 400;
}
@media (min-width: 992px) {
    .media.blog-media .media-body a.post-link {
        padding: 7px 0;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body a.post-link {
        padding: 23px 0;
    }
}
.media.blog-media .media-body ul {
    position: relative;
    padding: 10px 0 0;
}
.media.blog-media .media-body ul li {
    display: inline-block;
    width: 49%;
    position: relative;
}
.media.blog-media .media-body ul li:before {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    width: 1px;
    height: 14px;
    background: #eeeef2;
}
.media.blog-media .media-body ul li:first-child:before {
    visibility: hidden;
}
.media.blog-media .media-body ul:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eeeef2;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #ff5b4f;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
label.error{
  color: #dc3545;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ff5b4f;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #ff5b4f;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #01adc3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f5f8fd;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #ff5b4f;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5b4f;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ff5b4f;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ff5b4f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #01adc3;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}


/*--------------------------------------------------------------
# Vision & Mission
--------------------------------------------------------------*/
.vision-mission .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.vision-mission .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.vision-mission .icon-box:hover::before {
  background: #ff5b4f;
  top: 0;
  border-radius: 0px;
}
.vision-mission .icon {
  margin-bottom: 15px;
}
.vision-mission .icon i {
  font-size: 48px;
  line-height: 1;
  color: #ff5b4f;
  transition: all 0.3s ease-in-out;
}
.vision-mission .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.vision-mission .title a {
  color: #111;
}
.vision-mission .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.vision-mission .icon-box:hover .title a, .vision-mission .icon-box:hover .description {
  color: #fff;
}
.vision-mission .icon-box:hover .icon i {
  color: #fff;
}

.cart-table td {
  padding: 10px;
  vertical-align: middle;
  text-align: center;
}
.cart-table .qty input{
  width: 15%;
  text-align: center;
}
.box-shadow{
  -webkit-box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 8%);
  -moz-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .08);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 8%);
}
.btn-theme{
  background: #ff5b4f;
  color: #fff;
}
.btn-theme:hover {
  background: #0196aa;
  color: #fff;
}
.mb-2{
  margin-bottom: 20px;
}
.mb-3{
  margin-bottom: 30px;
}
.mb-4{
  margin-bottom: 40px;
}
.mb-1{
  margin-bottom: 10px;
}
.mt-3{
  margin-top: 30px;
}
.box-shadow{
  box-shadow: 0px 2px 15px rgb(16 110 234 / 15%);
}


.packages-card .card-body {
  padding: 20px;
  position: relative;
  background: #fff;
}
.pagination {
  display: inline-block;
}
.pagination > li {
  display: inline-block;
}
.page-link:hover, .page-link:focus {
  box-shadow: none;
  background: #0196aa;
  color: #ffffff;
  border-color: #0196aa;
}
.pagination > li > a {
  color: #ff5b4f;
  font-weight: 600;
  border-color: #e9eaed;
}
.package-price {
  color: #0196aa;
  font-weight: 600;
}

.card-body span.packages-price {
  font-size: 24px;
  line-height: 24px;
  color: #ff5b4f;
  font-weight: 600;
}

hr.top-hr:not([size]) {
  height: 0.5px;
  color: #0196aa;
  opacity: 9;
}

hr.bottom-hr:not([size]) {
  height: 0.5px;
  color: #0196aa;
  opacity: 9;
}
.custom-parameter {
  background: #0196aa;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  font-size: 16px;
  text-align: center;
}

.modal-body .package-listing ul {
  padding-left: 1.2rem;
  overflow-y: auto;
  max-height: 292px;
}

.package-listing ul li::marker{
  color: #ff5b4f;
}

.packages-card:hover{
  border: 1px solid #0196aa;
}

.packages-card{
  box-shadow: 0px 2px 15px rgb(16 110 234 / 15%);
}

span.package-offer {
  display: inline-block;
  padding: 6px 10px;
  min-height: 26px;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  background: #fbe6d9;
  color: #ec8238;
}
.packages-price del{
  color: #aaaaaa;
  font-size: 14px;
  padding-left: 1px;
}
a.a-btn {
  color: #ff5b4f;
  position: relative;
  display: inline-block;
  padding-right: 23px;
  font-size: 18px;
}
.packages-card:hover a.a-btn{
  color: #0196aa;
}
.packages-card:hover a.a-btn::before {
  background: #0196aa;
}
.packages-card:hover a.a-btn::after {
  background: #0196aa;
}
a.a-btn::before {
  content: "";
  width: 2px;
  height: 14px;
  display: inline-block;
  background: #ff5b4f;
  position: absolute;
  right: 6px;
  top: 6px;
}
a.a-btn::after {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  display: block;
  background: #ff5b4f;
  right: 0;
  top: 12px;
}

.table> tbody th{
  width: 30%;
  white-space: nowrap;
  font-weight: 600;
}
.packageDetail td{
  width: 70%;
}

.tab .nav-tabs .nav-link.active, .tab .nav-tabs .nav-link:hover, .tab .nav-tabs.active > a:focus, .tab .nav-tabs > a:hover {
  background: #ff5b4f;
  color: #ffffff;
}
.tab .nav-tabs .nav-link {
  text-align: center;
  border-radius: 0;
  font-weight: 600;
  color: #1f2632;
  position: relative;
}

/*--------------------------------------------------------------
# Appointment
--------------------------------------------------------------*/
.bg-1 {
  background: url(../img/appoinment-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.contact-bg{
  background: url(../img/contact-bg.png) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.about-bg{
  background: url(../img/about-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.health-bg{
  background: url(../img/health-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.page-title {
  padding: 50px 0px 50px 0px;
}
.page-title .overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.page-title .block h1 {
  color: #fff;
}
.feature-icon .fa-phone{
  color: #ff5b4f;
}
.appoinment-wrap select.form-control{
  appearance: auto !important;
}

/*--------------------------------------------------------------
# Banner Breadcrumbs
--------------------------------------------------------------*/
.page-title ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 12px;
  margin-bottom: 0;
}
.page-title ul li {
  color: #fff;
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 17px;
  margin-left: 10px;
  margin-right: 10px;
}
.page-title ul li:last-child::before{
  display:none;
}
.page-title ul li::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff5b4f;
}
.page-title ul li a {
  display: inline-block;
  color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
}
.page-title ul li a:hover{
  color: #ff5b4f;
}


/* order card start here */

.order-card .user-card-full {
  overflow: hidden
}

.order-card .card {
  -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  border: none;
  margin-bottom: 30px;
  background: #fff;
}

.order-card .user-profile2 {
  padding: 0px;
}

.order-card .m-b-25 {
  margin-bottom: 25px
}
.order-card .card .card-block p {
  line-height: 25px
}

.order-card .b-b-default {
  border-bottom: 1px solid #e0e0e0
}

.order-card .f-w-600 {
  font-weight: 600
}
.btn-primary{
  background-color: #1d6693;
  border: 1px solid #1d6693;
  color: #fff;
  padding: 5px 18px;
  border-radius: 4px;
}
.btn-primary:hover{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
}

.btn-secondry{
  background-color: #ff5b4f;
  border: 1px solid #ff5b4f;
  color: #fff;
  padding: 5px 18px;
  border-radius: 4px;
}
.btn-secondry:hover{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
}

.report-card .card {
  word-wrap: break-word;
  text-align: center;
}

.report-card .card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem
}

.report-card .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent
}

.report-card .table th,
.table thead th {
  font-weight: 600;
  text-align: center;
}

.report-card .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6
}

.report-card .table th {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6
}

.report-card th {
  text-align: inherit
}
.report-card .table{
  border: 0;
  margin-bottom: 0;
}
.search-patient{
  background-color: #1d66930f;
}

.passworrd-field{
 margin-right: 15px;
}

.btn-submit-pass {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ff5b4f;
  background: none;
  font-size: 16px;
  padding: 8px 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.btn-submit-pass:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.passworrd-field form input[type=password] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
.passworrd-field form {
  margin-top: 10px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 6%);
  text-align: left;
  border: 1px solid #e0e0e0;
}
.table-responsive .table>:not(caption)>*>*{
  border-bottom-width: 0px;
}
.table .btn-primary{
  background: #01adc3;
  border: 1px solid #01adc3;
}
.table .btn-primary:hover{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
  color: #fff;
}
.table .btn-secondry{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
}
.table .btn-secondry:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}

.search-order .btn-submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ff5b4f;
  background: none;
  font-size: 16px;
  padding: 8px 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.search-order .btn-submit:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.search-order .form input[type=text] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
.search-order .form {
  margin-top: 10px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 6%);
  text-align: left;
  border: 1px solid #e0e0e0;
}
.search-order-banner .form {
  width: 40%;
  display: inline-flex;
}
.search-order .btn-submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ff5b4f;
  background: none;
  font-size: 16px;
  padding: 8px 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.search-order .btn-submit:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.order-bg{
  background: url(../img/order-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.order-bg2{
  background: url(../img/order-bg2.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}

.alert-success, .alert-warning  {
  width: 15%;
  right: 0;
  float: right;
  top: 20%;
  border-radius: 0;
  position: fixed;
  display: none;
}
/*#cart-sec{
  display: none;
}*/
/*#checkout-sec{
  display: none;
}*/
button.page-link {
	display: inline-block;
}
button.page-link {
    color: #ff5b4f;
    font-weight: 500;
}
.offset{
  width: 500px !important;  
}

/* Login Start here */

.login .form-style input{
	height:45px;
	border-radius:0;
}
.login .form-style input:focus{
border-bottom:1px solid #1d6693;	
box-shadow:none;
outline:0;
background-color:#ebebeb;	
}
.sideline {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
	color:#ccc;
}
.login button{
  height:45px;	
}

.login .btn {
  display: inline-block ;
  font-weight: 400 ;
  color: #fff ;
  text-align: center ;
  vertical-align: middle ;
  cursor: pointer ;
  user-select: none ;
  border: 1px solid transparent ;
  padding: 0.375rem 0.75rem ;
  font-size: 1rem ;
  line-height: 1.5 ;
  border-radius: 0.25rem ;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out ;
}
.login{
    min-height: 100% ;
    height: auto ;
    padding: 5px ;
    z-index: 550 ;
    width: 100% ;
}
.border-r{
  border-right: 1px solid #e3e3e3;
}
#reset-password{
  display: none;
}
.appoinment-form .form-control{
  border-radius: 0;
  padding: 10px 15px;
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
}
.appoinment-form .form-control:focus{
  border-color: #ff5b4f;
  box-shadow: none;
}
.search-test .form-control {
  padding: 6px 10px;
  border-radius: 0px;
  width: 50%;
}
form.search-test::after {
  content: "";
  clear: both;
  display: table;
}
.search-test button {
  float: left;
  width: 5%;
  padding: 10px;
  background: #ff5b4f;
  color: white;
  font-size: 17px;
  border: 1px solid #ff5b4f;
  border-left: none;
  cursor: pointer;
}

.search-test button:hover {
  background: #01adc3;
}
.search-test .form-control:focus {
  box-shadow: none;
  border-color: #ff5b4f;
}

.search-test-filter .form-control {
  padding: 6px 10px;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  border: 1px solid #01adc3;
}
form.search-test-filter::after {
  content: "";
  clear: both;
  display: table;
}
.search-test-filter button {
  float: left;
  width: 10%;
  padding: 10px;
  background: #ff5b4f;
  color: white;
  font-size: 17px;
  border: 1px solid #ff5b4f;
  border-left: none;
  cursor: pointer;
}

.search-test-filter button:hover {
  background: #01adc3;
  border: 1px solid #01adc3;
}
.search-test-filter .form-control:focus {
  box-shadow: none;
  border-color: #ff5b4f;
}
.bg-color{
  background-color: #01adc3;
}
#navbar .avtar-user ul{
  right: 0px !important;
  left: unset !important;
  padding: 0px !important;
}
#navbar .avtar-user ul li {
  min-width: 150px !important;
}
.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.avtar-user .dropdown-item:active {
  background-color: #fff !important;
  color: #ff5b4f !important;
}
.dropdown-item.active, .dropdown-item:active{
  background-color: #fff !important;
  color: #ff5b4f !important;
}
.report-table .table thead th {
  background-color:#0196aa !important;
  color: #fff !important;
}
.report-table th.align-middle{
  text-align: left;
  border-right: 1px solid #0196aa;
}
.report-table .table strong{
  color: #0196aa !important;
}
#reportModalLabel{
  color: #0196aa !important;
}
.report-table .table>:not(:first-child) {
  border-top: 2px solid #ff5b4f;
}
.report-table .table{
  border-color: #000 !important;
}
#reportModal .btn-secondary{
  background-color:#0196aa !important;
  color: #fff !important;
  border: 1px solid #0196aa !important;
}
.login-card a.patient_signup{
  color: #0196aa;
}
.login-card a.patient_signup:hover{
  color: #ff5b4f;
}
.register select.form-control {
  appearance: auto !important;
}
.register .form-style select {
  height: 45px;
  border-radius: 0;
}
#terms-conditionModal strong{
  color: #ff5b4f;
}
.field-icon {
  margin-top: 40px !important;
  position: absolute;
  z-index: 2;
  right: 5px;
}
.iti{
  width: 100% !important;
}
select.form-control {
  appearance: auto !important;
}
.packages-title{
  height: 38px;
}
.packages-title h5{
  font-size: 1.1rem !important;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.navbar > ul > li > a.cart-btn:before{
  background-color: #fff;
}

.dropdown-menu-arrow {
  top: -28px;
  left: 50%;
  width: 0;
  height: 0;
  position: relative;
}
.dropdown-menu-arrow:before,
.dropdown-menu-arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-width: 12px 10px;
    border-style: solid;
    border-color: transparent;
    z-index: 1001;
  }
.dropdown-menu-arrow:after {
  bottom: -21px;
  right: -110px;
  border-bottom-color: #fff;
}
.dropdown-menu-arrow:before {
  bottom: -20px;
  right: -110px;
  border-bottom-color: rgba(0,0,0,.15);
}
.flaticon-help-call {
  color: #ff5b4f;
}
.contact .info-box {
  text-align: center;
  box-shadow: 0 0 30px rgb(214 215 216 / 60%);
  padding: 50px 0 56px 0;
  background: #fff;
}
.form-control{
  border-radius: 25px;
}
.package-listing li{
  list-style-type: square;
}
.loc-head {
  background: #fff;
  border: 1px solid #01adc3;
  display: flex;
  align-items: center;
  color: #ff5b4f;
  width: auto;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 4px;
  width: 100%;
}
.loc-head span.text{color: #ff5b4f;}
.loc-head:hover span.text{
  color: #01adc3;
}
.loc-head:hover span.gps-icon{
  fill: #01adc3;
}
.loc-head:hover span.pic{
  color: #01adc3;
}
.loc-head span.pic {
  border: 2px solid #c0cdd5;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff5b4f;
}
.loc-head span.gps-icon {
  margin-left: 10px;
  fill:#ff5b4f;
}
.loc-head i {
  width: 20px;
}
.loc-head span.text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  margin: 0 0 0 10px;
  color: #ff5b4f;
  max-width: calc(100% - 45px);
  width: 100%;
  text-align: left;
  font-weight: 600;
}
.view-button a.btn-sm{
  font-weight: 400;
  padding: 0.25rem 0.5rem !important;
  font-size: .875rem;
  border-radius: 0.2rem;
  display: inline-block;
}
.dropdown ul span.me-2{
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
  white-space: normal !important;
}

.right-nav.dropdown ul{
  width: 240px;
}
.right-nav.dropdown ul .list-item{
  height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
}
select.page-link{
  color: #ff5b4f;
}
@media screen and (max-width: 768px) {
  #header .logo img {
    padding: 5px 0px;
  }
  .d-xs-none{
    display: none !important;
  }
  .search-order-banner form {
    width: 100%;
}
#hero {
  height: 100vh;
}
.cart-table .qty input {
  width: 100%;
}
.alert-success, .alert-warning  {
  width: 50%;
}
.user-card-full .card-block{
  padding: 15px;
}
.user-card-full h4{
  padding-left: 15px;
} 
.passworrd-field{
  margin-right: 0px;
}
.report-card .btn-icon{
  margin-bottom:10px;
}
.user-card-full h4.card-block{
    margin-top: 1rem!important;
}
.border-r{
  border-right: none;
}
.login .p-5{
  padding: 15px !important;
}
.search-order-banner .form {
  width: 100%;
}
}



/*--------------------------------------------------------------
# Schedule Timing
--------------------------------------------------------------*/

.profile-sidebar {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}
.widget-profile {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.pro-widget-content {
  padding: 20px;
  text-align: center;
}
.widget-profile .profile-info-widget {
  display: block;
  text-align: center;
}
.profile-det-info h3 {
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 20px;
  color: #ff5b4f;
}

.schedule-timing .form-group {
  margin-bottom: 1.25rem;
}
.schedule-timing .tab-content {
  padding-top: 20px;
}
.patient-details h5 {
  color: #757575;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-timing .tab-pane{
  padding-left: 0;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #01adc3;
}
.schedule-timing .nav-link 
{
  color: #01adc3;
}
.schedule-header {
  border-bottom: 1px solid #f0f0f0;
  border-radius: 4px 4px 0 0;
  padding: 10px 20px;
}

.schedule-nav .tab-content .nav-item:hover {
  background: #fff !important;
}
.schedule-nav .nav-item:hover {
  background: #eee !important;
  color: #000 !important;
}
.schedule-nav .tab-content .nav-item {
  border: none;
}

.schedule-timing .tab-content>.active {
  display: block;
}
.schedule-timing .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.schedule-timing .fade {
  transition: opacity .15s linear;
}
.schedule-nav .nav-tabs {
  border: 0 !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab-view .nav-item {
  width: 25%;
  text-align: center;
  color: #000;
  font-weight: 700;
}
.schedule-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 3px 0 0;
}
.doc-times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.doc-slot-list a {
  color: #01adc3;
  display: inline-block;
  margin-left: 5px;
}


/*--------------------------------------------------------------
# 03/02/2022
--------------------------------------------------------------*/
.schedule-timing .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
}
.schedule-nav li span {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
}

.schedule-nav li span.slot-date {
  display: block;
  color: #757575;
  font-size: 14px;
}
.schedule-nav li {
  float: left;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
  width: 20%;
}
@media (max-width: 1200px) {
  .schedule-nav li {
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    width: 20%;
  }
}
.schedule-nav li.left-arrow {
  left: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 15%;
  width: 20px !important;
  transform: translateY(-50%);
}
.schedule-nav li.right-arrow {
  right: 0px;
  padding: 0 !important;
  position: absolute;
  text-align: center;
  top: 15%;
  width: 20px !important;
  transform: translateY(-50%);
}
.schedule-cont {
  padding: 20px 0px;
}
.time-slot ul {
  list-style: none;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 0;
  padding: 0;
}
.clearfix::before {
  display: table;
  content: '';
}
.time-slot li {
  float: left;
  padding-left: 5px;
  padding-right: 5px;
  width: 14.28%;
  min-height: 1px;
}
.time-slot li .timing {
  background-color: #e9e9e9;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  color: #757575;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 5px 5px;
  text-align: center;
  position: relative;
}
.time-slot li .timing.selected {
  background-color: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.time-slot li .timing.selected::before {
  color: #fff;
  content: "\f00c";
  font-size: 12px;
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 900;
  position: absolute;
  right: 6px;
  top: 9px;
}
.schedule-widget{
  margin-top: 10px;
}

@media (max-width: 768px) {
  .schedule-widget > div {
    width: 730px;
  }   
  .schedule-widget {
    overflow-x: auto;
  }
  .schedule-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: unset;
  }
  .schedule-nav li {
      -ms-flex: 0 0 100px;
      flex: 0 0 100px;
      width: 100px;
  }
  .time-slot li {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
  }
}

/************************* schedule Page ***************************/
.schedulebold{ font-size:14px; font-weight:bold; color:#555;}
.scheduleContainer{ width:100%; background:#fff; padding:0px 0px 20px 0px; margin:15px auto}
.scheduleHeader{ width:100%; padding:20px 10px;  background:#D9EDF6;color:#05629D; font-size:22px; font-weight:bold; text-transform:capitalize;}
.scheduleBox{ width:100%; height:auto; padding:10px 0px 10px 0px; border-left:1px solid #ddd;border-right:1px solid #ddd;border-bottom:1px solid #ddd;}
/************* Color Refences*/
.scheduleConfirm{ float:left; height:20px; padding:0px 20px 0px 0px; line-height:20px; margin:2px 5px;}

.shbox{ height:50px;}
.scheduleBooked{ background:#F8C65B;  }
.scheduleBooked:hover{ background:#1F6C9C;  cursor:pointer;}
.scheduleAvailable{ background:#BE93C8;   }
.scheduleAvailable:hover{ background:#2D96D8;color:#fff;cursor:pointer;}
.scheduleVacation{ background:#F982AC;  }
.scheduleVacation:hover{ background:#1F6C9C;color:#fff;cursor:pointer;}
.scheduleLunch{ background:#D9EDF6 ;  }
.scheduleLunch:hover{ background:#1F6C9C;color:#fff;cursor:pointer;}
.scheduletentitive{ background:#8CD061 ; }
.scheduletentitive:hover{ background:#1F6C9C;color:#fff;cursor:pointer;}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ff5b4f;
  text-decoration: none;
}

a:hover {
  color: #01adc3;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff5b4f;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff5b4f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #01adc3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #ff5b4f;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #ff5b4f;
}
#header .logo img {
  max-height: 70px;
}
#header.fixed-top .logo img{
 padding: 5px 0px;
}
.scrolled-offset {
  margin-top: 70px;
}

.location span{
  font-style: normal;
  text-transform: capitalize;
}
#choose_location .modal-body .btn-theme:hover{
  background: #ff5b4f;
  color: #fff;
  cursor: unset;
}
#header .cart-btn{
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin-left: 20px ;
  background: #e7f1fd;
  color: #ff5b4f;
  display: inline-block;
  border-radius: 50px;
}
#header .cart-btn{
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 10px;
  margin-left: 20px ;
  background: #e7f1fd;
  color: #ff5b4f;
  display: inline-block;
  border-radius: 50px;
}
#header .cart-btn .bi{
  font-size: 18px;
}

span.total-quantity {
  position: absolute;
  top: -0.5rem;
  right: -0.55rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50%;
  background-color: #ff5b4f;
  color: #fff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ff5b4f;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ff5b4f;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ff5b4f;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 1;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ff5b4f;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ff5b4f;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/background3.jpg") top left;
  background-size: cover;
  position: relative;
}
.soum-banner{
  background: url("../img/soum-banner.jpg") top left !important;
  background-size: cover !important;
  background-repeat: no-repeat
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #ff5b4f;
}
#hero h2 span {
  color: #ff5b4f;
}
#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ff5b4f;
}
#hero .btn-get-started:hover {
  background: #01adc3;
}
#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}
#hero .btn-watch-video i {
  color: #ff5b4f;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover {
  color: #ff5b4f;
}
#hero .btn-watch-video:hover i {
  color: #01adc3;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #ff5b4f;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #ff5b4f;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.about .content ul li:first-child {
  margin-top: 35px;
}
.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #ff5b4f;
  border-radius: 50px;
}
.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}
.about .content ul p {
  font-size: 15px;
}
.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: #01adc3;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}
.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: #ff5b4f;
}
.services .icon-box:hover .icon {
  border-color: #ff5b4f;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff5b4f;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5b4f;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# package
--------------------------------------------------------------*/
.package {
  padding: 30px 0;
}
.package .product {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.package .product .product-img {
  position: relative;
  overflow: hidden;
}
.package .product .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.package .product .social a:hover {
  background: #5c5f5f;
}
.package .product .social i {
  font-size: 18px;
}
.package .product .product-info {
  padding: 25px 15px;
}
.package .product .product-info h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}
.package .product .product-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.package .product .product-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.package .product:hover .social {
  opacity: 1;
  bottom: 15px;
}
.product-info h6, .bi-price{
  color: #01adc3;
}
.add-cart{
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    margin: 0px 28px;
    background: #ff5b4f;
    color: #fff;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 4px;
}
.add-cart:hover{
  background: #01adc3;
  color: #fff;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Latest News
--------------------------------------------------------------*/
.home-blog {
    padding-top: 60px;
    padding-bottom: 60px;
}
.home-blog .section-title {
    padding-bottom: 15px;
}
.home-blog .media {
    margin-top: 50px;
}
@media (min-width: 768px) {
    .home-blog .media {
        margin-top: 30px;
    }
}
.media.blog-media {
    margin-top: 30px;
    position: relative;
    display: block;
    box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
@media (min-width: 992px) {
    .media.blog-media {
        display: table;
    }
}
.media.blog-media .circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: absolute;
    padding: 0;
    top: 20px;
    left: 20px;
    text-align: center;
    box-shadow: none;
    transform: translateX(0);
    color: #fff;
    transition: background-color 0.3s ease;
}
.media.blog-media .circle .day {
    color: #fff;
    transition: color 0.25s ease;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    margin-top: 12px;
}
.media.blog-media .circle .month {
    text-transform: uppercase;
    font-size: 14px;
}
.media.blog-media > a {
    position: relative;
    display: block;
}
@media (min-width: 992px) {
    .media.blog-media > a {
        display: table-cell;
        vertical-align: top;
        min-width: 200px;
    }
}
@media (min-width: 1200px) {
    .media.blog-media > a {
        min-width: 230px;
    }
}
.media.blog-media > a img {
    width: 100%;
}
.media.blog-media:hover > a:before {
    opacity: 1;
    transform: scale(1);
}
.media.blog-media:hover .circle {
    background-color: rgba(255, 255, 255, 0.9);
}
.media.blog-media:hover .circle .day,
.media.blog-media:hover .circle .month {
    color: #222;
}
.media-body h5 {
  color: #222;
}
.media.blog-media:hover .media-body h5 {
    color: #ff5b4f;
}
.media.blog-media:hover .media-body a.post-link {
    color: #ff5b4f;
    text-decoration: underline;
}
.media.blog-media .media-body {
    border: 1px solid #efeff3;
    padding: 20px 30px 10px;
    font-size: 14px;
    background: #fff;
    border-top: none;
}
@media (min-width: 992px) {
    .media.blog-media .media-body {
        padding: 15px 20px 10px;
        border-top: 1px solid #efeff3;
        border-left: none;
        display: table-cell;
        vertical-align: top;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body {
        padding: 20px 20px 10px;
    }
}
.media.blog-media .media-body h5 {
    transition: color 0.3s ease;
    margin-bottom: 15px;
}
@media (min-width: 992px) {
    .media.blog-media .media-body h5 {
        font-size: 15px;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body h5 {
        margin-bottom: 15px;
        font-size: 18px;
    }
}
.media.blog-media .media-body a.post-link {
    display: block;
    color: #222;
    font-size: 11px;
    padding: 23px 0;
    text-transform: uppercase;
    font-weight: 400;
}
@media (min-width: 992px) {
    .media.blog-media .media-body a.post-link {
        padding: 7px 0;
    }
}
@media (min-width: 1200px) {
    .media.blog-media .media-body a.post-link {
        padding: 23px 0;
    }
}
.media.blog-media .media-body ul {
    position: relative;
    padding: 10px 0 0;
}
.media.blog-media .media-body ul li {
    display: inline-block;
    width: 49%;
    position: relative;
}
.media.blog-media .media-body ul li:before {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    width: 1px;
    height: 14px;
    background: #eeeef2;
}
.media.blog-media .media-body ul li:first-child:before {
    visibility: hidden;
}
.media.blog-media .media-body ul:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eeeef2;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #ff5b4f;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ff5b4f;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #ff5b4f;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #01adc3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f5f8fd;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #ff5b4f;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
  text-transform: capitalize;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5b4f;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ff5b4f;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ff5b4f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #01adc3;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}


/*--------------------------------------------------------------
# Vision & Mission
--------------------------------------------------------------*/
.vision-mission .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.vision-mission .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.vision-mission .icon-box:hover::before {
  background: #ff5b4f;
  top: 0;
  border-radius: 0px;
}
.vision-mission .icon {
  margin-bottom: 15px;
}
.vision-mission .icon i {
  font-size: 48px;
  line-height: 1;
  color: #ff5b4f;
  transition: all 0.3s ease-in-out;
}
.vision-mission .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.vision-mission .title a {
  color: #111;
}
.vision-mission .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.vision-mission .icon-box:hover .title a, .vision-mission .icon-box:hover .description {
  color: #fff;
}
.vision-mission .icon-box:hover .icon i {
  color: #fff;
}

.cart-table td {
  padding: 10px;
  vertical-align: middle;
  text-align: center;
}
.cart-table .qty input{
  width: 15%;
  text-align: center;
}
.box-shadow{
  -webkit-box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 8%);
  -moz-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .08);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 8%);
}
.btn-theme{
  background: #ff5b4f;
  color: #fff;
}
.btn-theme:hover {
  background: #0196aa;
  color: #fff;
}
.mb-2{
  margin-bottom: 20px;
}
.mb-3{
  margin-bottom: 30px;
}
.mb-4{
  margin-bottom: 40px;
}
.mb-1{
  margin-bottom: 10px;
}
.mt-3{
  margin-top: 30px;
}
.box-shadow{
  box-shadow: 0px 2px 15px rgb(16 110 234 / 15%);
}


.packages-card .card-body {
  padding: 20px;
  position: relative;
  background: #fff;
}
.pagination {
  display: inline-block;
}
.pagination > li {
  display: inline-block;
}
.page-link:hover, .page-link:focus {
  box-shadow: none;
  background: #0196aa;
  color: #ffffff;
  border-color: #0196aa;
}
.pagination > li > a {
  color: #ff5b4f;
  font-weight: 600;
  border-color: #e9eaed;
}
.package-price {
  color: #0196aa;
  font-weight: 600;
}

.card-body span.packages-price {
  font-size: 20px;
  line-height: 24px;
  color: #ff5b4f;
  font-weight: 600;
}

hr.top-hr:not([size]) {
  height: 0.5px;
  color: #0196aa;
  opacity: 9;
}

hr.bottom-hr:not([size]) {
  height: 0.5px;
  color: #0196aa;
  opacity: 9;
}
.custom-parameter {
  background: #0196aa;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.packages-card .package-listing ul {
  padding-left: 1.2rem;
  height: 100px;
  overflow-y: auto;
}

.package-listing ul li::marker{
  color: #ff5b4f;
}

.packages-card:hover{
  border: 1px solid #0196aa;
}

.packages-card{
  box-shadow: 0px 2px 15px rgb(16 110 234 / 15%);
}

span.package-offer {
  display: inline-block;
  padding: 6px 10px;
  min-height: 26px;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  background: #fbe6d9;
  color: #ec8238;
}
.packages-price del{
  color: #aaaaaa;
  font-size: 14px;
  padding-left: 1px;
}
a.a-btn {
  color: #ff5b4f;
  position: relative;
  display: inline-block;
  padding-right: 23px;
  font-size: 18px;
}
.packages-card:hover a.a-btn{
  color: #0196aa;
}
.packages-card:hover a.a-btn::before {
  background: #0196aa;
}
.packages-card:hover a.a-btn::after {
  background: #0196aa;
}
a.a-btn::before {
  content: "";
  width: 2px;
  height: 14px;
  display: inline-block;
  background: #ff5b4f;
  position: absolute;
  right: 6px;
  top: 6px;
}
a.a-btn::after {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  display: block;
  background: #ff5b4f;
  right: 0;
  top: 12px;
}

.table> tbody th{
  width: 30%;
  white-space: nowrap;
  font-weight: 600;
}
.packageDetail td{
  width: 70%;
}

.tab .nav-tabs .nav-link.active, .tab .nav-tabs .nav-link:hover, .tab .nav-tabs.active > a:focus, .tab .nav-tabs > a:hover {
  background: #ff5b4f;
  color: #ffffff;
}
.tab .nav-tabs .nav-link {
  text-align: center;
  border-radius: 0;
  font-weight: 600;
  color: #1f2632;
  position: relative;
}

/*--------------------------------------------------------------
# Appointment
--------------------------------------------------------------*/
.bg-1 {
  background: url(../img/appoinment-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.contact-bg{
  background: url(../img/contact-bg.png) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.about-bg{
  background: url(../img/about-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.health-bg{
  background: url(../img/health-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.page-title {
  padding: 50px 0px 50px 0px;
}
.page-title .overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.page-title .block h1 {
  color: #fff;
}
.feature-icon .fa-phone{
  color: #ff5b4f;
}
.appoinment-wrap select.form-control{
  appearance: auto !important;
}

/*--------------------------------------------------------------
# Banner Breadcrumbs
--------------------------------------------------------------*/
.page-title ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 12px;
  margin-bottom: 0;
}
.page-title ul li {
  color: #fff;
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 17px;
  margin-left: 10px;
  margin-right: 10px;
}
.page-title ul li:last-child::before{
  display:none;
}
.page-title ul li::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff5b4f;
}
.page-title ul li a {
  display: inline-block;
  color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
}
.page-title ul li a:hover{
  color: #ff5b4f;
}


/* order card start here */

.order-card .user-card-full {
  overflow: hidden
}

.order-card .card {
  -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  border: none;
  margin-bottom: 30px;
  background: #fff;
}

.order-card .user-profile2 {
  padding: 0px;
}

.order-card .m-b-25 {
  margin-bottom: 25px
}
.order-card .card .card-block p {
  line-height: 25px
}

.order-card .b-b-default {
  border-bottom: 1px solid #e0e0e0
}

.order-card .f-w-600 {
  font-weight: 600
}
.btn-primary{
  background-color: #1d6693;
  border: 1px solid #1d6693;
  color: #fff;
  padding: 5px 18px;
  border-radius: 4px;
}
.btn-primary:hover{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
}

.btn-secondry{
  background-color: #ff5b4f;
  border: 1px solid #ff5b4f;
  color: #fff;
  padding: 5px 18px;
  border-radius: 4px;
}
.btn-secondry:hover{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
}

.report-card .card {
  word-wrap: break-word;
  text-align: center;
}

.report-card .card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem
}

.report-card .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent
}

.report-card .table th,
.table thead th {
  font-weight: 600;
  text-align: center;
}

.report-card .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6
}

.report-card .table th {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6
}

.report-card th {
  text-align: inherit
}
.report-card .table{
  border: 0;
  margin-bottom: 0;
}
.search-patient{
  background-color: #1d66930f;
}

.passworrd-field{
 margin-right: 15px;
}

.btn-submit-pass {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ff5b4f;
  background: none;
  font-size: 16px;
  padding: 8px 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.btn-submit-pass:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.passworrd-field form input[type=password] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
.passworrd-field form {
  margin-top: 10px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 6%);
  text-align: left;
  border: 1px solid #e0e0e0;
}
.table-responsive .table>:not(caption)>*>*{
  border-bottom-width: 0px;
}
.table .btn-primary{
  background: #01adc3;
  border: 1px solid #01adc3;
}
.table .btn-primary:hover{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
  color: #fff;
}
.table .btn-secondry{
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
}
.table .btn-secondry:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}

.search-order .btn-submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ff5b4f;
  background: none;
  font-size: 16px;
  padding: 8px 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.search-order .btn-submit:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.search-order .form input[type=text] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
.search-order .form input[type=text]:focus-visible{
  outline: none;
}
.search-order .form {
  margin-top: 10px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 6%);
  text-align: left;
  border: 1px solid #e0e0e0;
}
.search-order-banner .form {
  width: 40%;
  display: inline-flex;
}
.search-order .btn-submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ff5b4f;
  background: none;
  font-size: 16px;
  padding: 8px 20px;
  background: #ff5b4f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.search-order .btn-submit:hover{
  background: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.order-bg{
  background: url(../img/order-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.order-bg2{
  background: url(../img/order-bg2.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}

.alert-success, .alert-warning  {
  width: 18%;
  right: 0;
  float: right;
  top: 20%;
  border-radius: 0;
  position: fixed;
  display: none;
  z-index: 999;
}
button.remove_cart:hover{
  background: #0196aa;
  border: 1px solid #0196aa;
}
.schedule-timing select.form-control {
	appearance: none !important;
}
/*#cart-sec{
  display: none;
}*/
/*#checkout-sec{
  display: none;
}*/
button.page-link {
	display: inline-block;
}
button.page-link {
    color: #ff5b4f;
    font-weight: 500;
}
.offset{
  width: 500px !important;  
}

/* Login Start here */

.login .form-style input{
	height:45px;
	border-radius:0;
}
.login .form-style input:focus{
border-bottom:1px solid #1d6693;	
box-shadow:none;
outline:0;
background-color:#ebebeb;	
}
.sideline {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
	color:#ccc;
}
.login button{
  height:45px;	
}

.login .btn {
  display: inline-block ;
  font-weight: 400 ;
  color: #fff ;
  text-align: center ;
  vertical-align: middle ;
  cursor: pointer ;
  user-select: none ;
  border: 1px solid transparent ;
  padding: 0.375rem 0.75rem ;
  font-size: 1rem ;
  line-height: 1.5 ;
  border-radius: 0.25rem ;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out ;
}
.login{
    min-height: 100% ;
    height: auto ;
    padding: 5px ;
    z-index: 550 ;
    width: 100% ;
}
#loginErrorDiv{
  display: none;
  width: 15%;
  position: absolute;
  right: 0;
  top: 20%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.border-r{
  border-right: 1px solid #e3e3e3;
}
#reset-password{
  display: none;
}
.appoinment-form .form-control{
  border-radius: 0;
  padding: 10px 15px;
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
}
.appoinment-form .form-control:focus{
  border-color: #ff5b4f;
  box-shadow: none;
}
.search-test .form-control {
  padding: 6px 10px;
  border-radius: 0px;
  width: 50%;
}
form.search-test::after {
  content: "";
  clear: both;
  display: table;
}
.search-test button {
  float: left;
  width: 5%;
  padding: 10px;
  background: #ff5b4f;
  color: white;
  font-size: 17px;
  border: 1px solid #ff5b4f;
  border-left: none;
  cursor: pointer;
}

.search-test button:hover {
  background: #01adc3;
}
.search-test .form-control:focus {
  box-shadow: none;
  border-color: #ff5b4f;
}

.search-test-filter .form-control {
  padding: 6px 10px;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  border: 1px solid #01adc3;
}
form.search-test-filter::after {
  content: "";
  clear: both;
  display: table;
}
.search-test-filter button {
  float: left;
  width: 10%;
  padding: 10px;
  background: #ff5b4f;
  color: white;
  font-size: 17px;
  border: 1px solid #ff5b4f;
  border-left: none;
  cursor: pointer;
}

.search-test-filter button:hover {
  background: #01adc3;
}
.search-test-filter .form-control:focus {
  box-shadow: none;
  border-color: #ff5b4f;
}
.bg-color{
  background-color: #01adc3;
}
#navbar .avtar-user ul{
  right: 0px !important;
  left: unset !important;
  padding: 0px !important;
}
#navbar .avtar-user ul li {
  min-width: 150px !important;
}
.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.avtar-user .dropdown-item:active {
  background-color: #fff !important;
  color: #ff5b4f !important;
}
.dropdown-item.active, .dropdown-item:active{
  background-color: #fff !important;
  color: #ff5b4f !important;
}
.report-table .table thead th {
  background-color:#0196aa !important;
  color: #fff !important;
}
.report-table th.align-middle{
  text-align: left;
  border-right: 1px solid #0196aa;
}
.report-table .table strong{
  color: #0196aa !important;
}
#reportModalLabel{
  color: #0196aa !important;
}
.report-table .table>:not(:first-child) {
  border-top: 2px solid #ff5b4f;
}
.report-table .table{
  border-color: #000 !important;
}
#reportModal .btn-secondary{
  background-color:#0196aa !important;
  color: #fff !important;
  border: 1px solid #0196aa !important;
}
.login-card a.patient_signup{
  color: #0196aa;
}
.login-card a.patient_signup:hover{
  color: #ff5b4f;
}
.register select.form-control {
  appearance: auto !important;
}
.register .form-style select {
  height: 45px;
  border-radius: 0;
}
#terms-conditionModal strong{
  color: #ff5b4f;
}
.iti{
  width: 100% !important;
}
select.form-control {
  appearance: auto !important;
}
.packages-title{
  height: 38px;
}
.packages-title h5{
  font-size: 1.1rem !important;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.navbar > ul > li > a.cart-btn:before{
  background-color: #fff;
}

.dropdown-menu-arrow {
  top: -28px;
  left: 50%;
  width: 0;
  height: 0;
  position: relative;
}
.dropdown-menu-arrow:before,
.dropdown-menu-arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-width: 12px 10px;
    border-style: solid;
    border-color: transparent;
    z-index: 1001;
  }
.dropdown-menu-arrow:after {
  bottom: -21px;
  right: -110px;
  border-bottom-color: #fff;
}
.dropdown-menu-arrow:before {
  bottom: -20px;
  right: -110px;
  border-bottom-color: rgba(0,0,0,.15);
}
.flaticon-help-call {
  color: #ff5b4f;
}
.contact .info-box {
  text-align: center;
  box-shadow: 0 0 30px rgb(214 215 216 / 60%);
  padding: 50px 0 56px 0;
  background: #fff;
}
.form-control{
  border-radius: 25px;
}
.package-listing li{
  list-style-type: square;
}
.loc-head {
  background: #fff;
  border: 1px solid #01adc3;
  display: flex;
  align-items: center;
  color: #ff5b4f;
  width: auto;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 4px;
  width: 100%;
}
.loc-head span.text{color: #ff5b4f;}
.loc-head:hover span.text{
  color: #01adc3;
}
.loc-head:hover span.gps-icon{
  fill: #01adc3;
}
.loc-head:hover span.pic{
  color: #01adc3;
}
.loc-head span.pic {
  border: 2px solid #c0cdd5;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff5b4f;
}
.loc-head span.gps-icon {
  margin-left: 10px;
  fill:#ff5b4f;
}
.loc-head i {
  width: 20px;
}
.loc-head span.text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  margin: 0 0 0 10px;
  color: #ff5b4f;
  max-width: calc(100% - 45px);
  width: 100%;
  text-align: left;
  font-weight: 600;
}
.view-button a.btn-sm{
  font-weight: 400;
  padding: 0.25rem 0.5rem !important;
  font-size: .875rem;
  border-radius: 0.2rem;
  display: inline-block;
}
.dropdown ul span.me-2{
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
  white-space: normal !important;
}

.right-nav.dropdown ul{
  width: 240px;
}
.right-nav.dropdown ul .list-item{
  height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
}
select.page-link{
  color: #ff5b4f;
}
@media screen and (max-width: 768px) {
  #header .logo img {
    padding: 5px 0px;
  }
  .d-xs-none{
    display: none !important;
  }
  .search-order-banner form {
    width: 100%;
}
#hero {
  height: 100vh;
}
.cart-table .qty input {
  width: 100%;
}
.alert-success, .alert-warning  {
  width: 50%;
}
.user-card-full .card-block{
  padding: 15px;
}
.user-card-full h4{
  padding-left: 15px;
} 
.passworrd-field{
  margin-right: 0px;
}
.report-card .btn-icon{
  margin-bottom:10px;
}
.user-card-full h4.card-block{
    margin-top: 1rem!important;
}
.border-r{
  border-right: none;
}
.login .p-5{
  padding: 15px !important;
}
.search-order-banner .form {
  width: 100%;
}
}



/*--------------------------------------------------------------
# Schedule Timing
--------------------------------------------------------------*/

.profile-sidebar {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}
.widget-profile {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.pro-widget-content {
  padding: 20px;
  text-align: center;
}
.widget-profile .profile-info-widget {
  display: block;
  text-align: center;
}
.profile-det-info h3 {
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 20px;
  color: #ff5b4f;
}

.schedule-timing .form-group {
  margin-bottom: 1.25rem;
}
.schedule-timing .tab-content {
  padding-top: 20px;
}
.patient-details h5 {
  color: #757575;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-timing .tab-pane{
  padding-left: 0;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #01adc3;
}
.schedule-timing .nav-link 
{
  color: #01adc3;
}
.schedule-header {
  border-bottom: 1px solid #f0f0f0;
  border-radius: 4px 4px 0 0;
  padding: 10px 20px;
}

.schedule-nav .tab-content .nav-item:hover {
  background: #fff !important;
}
.schedule-nav .nav-item:hover {
  background: #eee !important;
  color: #000 !important;
}
.schedule-nav .tab-content .nav-item {
  border: none;
}

.schedule-timing .tab-content>.active {
  display: block;
}
.schedule-timing .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.schedule-timing .fade {
  transition: opacity .15s linear;
}
.schedule-nav .nav-tabs {
  border: 0 !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab-view .nav-item {
  width: 25%;
  text-align: center;
  color: #000;
  font-weight: 700;
}
.schedule-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 3px 0 0;
}

.doc-slot-list {
  background-color: #d9edf0;
  border: 1px solid #d9edf0;
  border-radius: 3px;
  color: #000;
  font-size: 14px;
  margin: 10px 10px 0 0;
  padding: 6px 15px;
}
.doc-slot-list:hover {
  color: #ff5b4f;
  background-color: #d9edf0;
  border: 1px solid #ff5b4f;
  font-size: 14px;
}
.doc-times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.doc-slot-list a {
  color: #01adc3;
  display: inline-block;
  margin-left: 5px;
}


/*--------------------------------------------------------------
# 03/02/2022
--------------------------------------------------------------*/
.schedule-timing .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
}
.schedule-nav li span {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
}

.schedule-nav li span.slot-date {
  display: block;
  color: #757575;
  font-size: 14px;
}
.schedule-nav li {
  float: left;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
  width: 20%;
}
.schedule-nav li.left-arrow {
  left: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 15%;
  width: 20px !important;
  transform: translateY(-50%);
}
.schedule-nav li.right-arrow {
  right: 0px;
  padding: 0 !important;
  position: absolute;
  text-align: center;
  top: 15%;
  width: 20px !important;
  transform: translateY(-50%);
}
/*.schedule-cont {
  padding: 20px;
}*/
.time-slot ul {
  list-style: none;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 0;
  padding: 0;
}
.clearfix::before {
  display: table;
  content: '';
}
.time-slot li {
  float: left;
  padding-left: 5px;
  padding-right: 5px;
  width: 14.28%;
  min-height: 1px;
}
.time-slot li .timing {
  background-color: #e9e9e9;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  color: #757575;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 5px 5px;
  text-align: center;
  position: relative;
}
.time-slot li .timing.selected {
  background-color: #01adc3;
  border: 1px solid #01adc3;
  color: #fff;
}
.time-slot li .timing.selected::before {
  color: #fff;
  content: "\f00c";
  font-size: 12px;
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 900;
  position: absolute;
  right: 6px;
  top: 9px;
}

@media (max-width: 768px) {
  .schedule-widget > div {
    width: 730px;
  }   
  .schedule-widget {
    overflow-x: auto;
  }
  .schedule-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: unset;
  }
  .schedule-nav li {
      -ms-flex: 0 0 100px;
      flex: 0 0 100px;
      width: 100px;
  }
  .time-slot li {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
  }
}
/************* Color Refences*/


.scheduleTable {
  width: 100%;
  margin: 10px auto;
  border: 1px solid #ddd;
}
.scheduleTableHeader {
  width: 100%;
  background: #0196aa;
  border-bottom: 1px solid #0196aa;
}
.scheduleHeaderCol {
  width: 14.23%;
  float: left;
  padding: 5px 0px 5px 0px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}

.scheduleTableHeaderSub {
  width: 87.3%;
  background: #007484;
  float: left;
  text-align: center;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}
.scheduleTableHeaderSubbottom {
  width: 87.3%;
  background: #29bed2;
  float: left;
  text-align: center;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}
.scheduleHeaderColTime {
  background: #006372;
  width: 12.5%;
  line-height: 70px;
  font-weight: 600;
  float: left;
  padding: 10px 0px 10px 0px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
}
.scheduleHeaderColdate {
  width: 14.23%;
  float: left;
  padding: 5px 10px 5px 10px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}

.scheduleHeaderColBorder {
  border-right: 1px solid #316687;
}
.scheduleTableRow {
  width: 100%;
  border-bottom: 1px solid #fff;
  background: #fff;
}
.scheduleTableRow:hover {
  background: #f7f7f7;
}
.scheduleTableRowCol {
  width: 12.5%;
  color: #017786;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  text-transform: capitalize;
}
.scheduleHeaderRowColBorder {
  border-right: 1px solid #fff;
}
.scheduleTableRowalternate {
  background: #00bcd429;
}

.schedulebutton {
  text-align: center;
  background: #ff5b4f;
  border: 1px solid #ff5b4f;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: block;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
}
.schedulebutton:hover {
  color: #fff;
  background: #01adc3;
  border: 1px solid #01adc3;	
}
/************************* schedule Page ***************************/
textarea.form-control, select.form-control, input.form-control{
  border-radius: 4px;
}
textarea.form-control:focus,  select.form-control:focus, input.form-control:focus{
  background-color: #fff !important;
}
.dateRangePicker .fa-calendar{
  position: absolute;
  right: 5px;
  top: 10px;
  z-index: 1;
}
.patient-location{
  display: none;
}
.error_div {
  font-size: 15px;
  color: #b94a48 !important;
  text-align: center;
}

.labImage {
  text-align: center;
}

.labImage img {
  margin: 20px;
  width: 200px;
}

.form-horizontal .control-label {
  padding-top: 0;
  font-weight: 600;
}

.box {
  border-radius: 3px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  padding: 10px 25px;
  /*text-align: right;*/
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
}
.box-icon {
  background-color: #0196aa;
  border-radius: 50%;
  display: table;
  height: 120px;
  margin: 0 auto;
  width: 120px;
  margin-top: -61px;
}
.box-icon span {
  color: #fff;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
.wrapperLogin{
  background-color: #0196aa;
}
.btn-theme{
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
  background: #ff5b4f;
  color: #fff;
  display: inline-block;
  text-transform: capitalize;
  border-radius: 4px;
}
.btn-theme:hover{
  background: #01adc3;
  color: #fff;
}
.ez-form-body input.form-control {
  height: 45px;
  border-radius: 0;
}
.ez-form-body .well{
  border-radius: 0;
}
.btn:active:focus, .btn:focus {
  outline: none;
}
.mt-3{
  margin-top: 30px;
}
.mt-1{
  margin-top: 10px;
}
#change-image:hover{
  color: #ff5b4f !important;
}
#change-image_2:hover{
  color: #ff5b4f !important;
}
.order-error{
  position: absolute;
  right: 0;
  top: 25%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.modal-footer .printReport{
  margin-left: 5px;
}
.modal-footer #btn_schedule{
  margin-left: 5px;
}

.message_error{
  top: 35%;
}
.order_error{
  top: 45%;
}
#printReportModal_all .table{
  border-color: #ddd !important;
}
.printReportModal_all .table_border {
  padding: 15px;
}
.off-badge {
  margin-top: 5px;
}
.packages-card .price_div{
  height: 45px;
  text-align: right;
}
.price_div .packages-price del{
  float: left;
}
.testList .packages-title h6{
  text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#labTest .pagination > li > a{
  background-color: #ff5b4f;
  color: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  border-color: #efefef;
  font-weight: 400;
  letter-spacing: 0.03px;
  font-size: 16px;
  cursor: pointer;
  margin-left: 3px;
  border: 0;
}

#labTest .pagination > li > a:hover{
  background: #0196aa;
  color: #fff;
  outline: 0;
}

#health-sec .pagination > li > a{
  background-color: #ff5b4f;
  color: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  border-color: #efefef;
  font-weight: 400;
  letter-spacing: 0.03px;
  font-size: 16px;
  cursor: pointer;
  margin-left: 3px;
  border: 0;
}

#health-sec .pagination > li > a:hover{
  background: #0196aa;
  color: #fff;
  outline: 0;
}

.navbar li.active > a {
  color: #ff5b4f;
}
.navbar > ul > li.active > a:before {
  background-color: #ff5b4f;
  visibility: visible;
  width: 100%;
}
#resenregCode .alert-succes{
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.schedule-nav .nav-pills{
  border-bottom: 1px solid #ddd;
}
.schedule-nav .nav-pills .nav-link{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.schedule-nav .nav > li > a {
  padding: 10px 15px !important;
}
.login .pass-field {
  position: relative;
}
.iti__selected-flag{
  height: 45px !important;
}