/* Root variables */
:root {
  --primary-color: #1BA5AC;
  --secondary-color: #EFF7F8;
  --ternary-color: #CEEBEE;
  --bg-white: #FFFFFF;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-grey: #4F5051;
  --color-grey2: #888C96;
  --color-blue: #1BA5AC;
  --font-family: 'Inter';
}

body {
  font-size: 14px;
  line-height: 17px;
  font-weight: normal;
  color: var(--color-black);
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--bg-white);
}

@media(min-width: 1500px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1360px;
  }
}

@media(max-width: 767px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 100%;
  }
}

/* COLOR CSS */
.bg-blue {
  background-color: var(--primary-color);
}

.bg-lblue {
  background-color: var(--secondary-color);
}

.bg-white {
  background-color: var(--bg-white);
}

.bg-cyan {
  background-color: var(--ternary-color);
}

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

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

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

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

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

.fw-500 {
  font-weight: 500 !important;
}

/* HEADING TYPE CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

.hd-type1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
}

.hd-type2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 42px;
}

.hd-type3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
}

.hd-type4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.hd-type5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.hd-type6 {
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
}

.hd-type7 {
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
}

@media(max-width:1400px) {
  .hd-type1 {
    font-size: 45px;
    line-height: 52px;
  }
}

@media(max-width:1199px) {
  .hd-type1 {
    font-size: 40px;
    line-height: 48px;
  }

  .hd-type2 {
    font-size: 31px;
    line-height: 40px;
  }

  .hd-type3 {
    font-size: 22px;
    line-height: 27px;
  }
}

@media(max-width:992px) {
  .hd-type1 {
    font-size: 37px;
    line-height: 45px;
  }

  .hd-type2 {
    font-size: 30px;
    line-height: 38px;
  }

  .hd-type4 {
    font-size: 16px;
    line-height: 20px;
  }

  .hd-type5 {
    font-size: 14px;
    line-height: 18px;
  }
}

@media(max-width:767px) {
  .hd-type1 {
    font-size: 33px;
    line-height: 40px;
  }

  .hd-type2 {
    font-size: 27px;
    line-height: 35px;

  }

  .hd-type3 {
    font-size: 19px;
    line-height: 24px;
  }

}

@media(max-width:576px) {
  .hd-type6 {
    font-size: 25px;
    line-height: 35px;
  }
}

/* CMS TYPE CSS */
.cms-type1 {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.cms-type2 {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
}

@media(max-width:767px) {
  .cms-type1 {
    font-size: 13px;
    line-height: 16px;
  }

  .cms-type2 {
    font-size: 13px;
    line-height: 17px;
  }
}

/* SPACE CSS */
.sec-padding {
  padding: 50px 0;
}

.sec-margin {
  margin: 50px 0;
}

.sec-margin75 {
  margin: 75px 0 !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

@media(max-width:1400px) {
  .mb-75 {
    margin-bottom: 60px !important;
  }

  .sec-margin75 {
    margin: 65px 0 !important;
  }

  .mb-30 {
    margin-bottom: 20px !important;
  }

}

@media(max-width:1199px) {
  .mb-75 {
    margin-bottom: 50px !important;
  }

  .sec-margin75 {
    margin: 50px 0 !important;
  }

  .mb-50 {
    margin-bottom: 40px !important;
  }
}

@media(max-width:992px) {
  .mb-75 {
    margin-bottom: 40px !important;
  }

  .mb-50 {
    margin-bottom: 30px !important;
  }

  .mb-30 {
    margin-bottom: 15px !important;
  }
}

/* BUTTON TYPE CSS */
.btn-type1 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 9px 23px;
  text-decoration: none;
  transition: all 0.3s;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  background-color: var(--bg-white);
}

.btn-type1:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
}

.btn-type2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 21px 24px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white);
  background: var(--primary-color);
  width: 100%;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  gap: 15px;
}

.btn-type2:hover {
  color: var(--primary-color);
  background: var(--bg-white);
}

.btn-type3 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 15px;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white);
  background: var(--primary-color);
  width: 100%;
  min-width: 135px;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}

.btn-type3:hover {
  color: var(--primary-color);
  background: var(--bg-white);
}

.btn-type2:hover svg path {
  stroke: var(--primary-color);
}

.btn-type4 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border-radius: 8px;
  padding: 15px;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-white);
  color: var(--primary-color);
  min-width: 135px;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}

.btn-type4:hover {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-type5 {
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  background: var(--primary-color);
  padding: 12px;
  min-width: 138px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}

.btn-type6 {
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  background: transparent;
  padding: 12px;
  min-width: 138px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}

.btn-type5:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-type6:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
}

@media(max-width:1199px) {
  .btn-type2 {
    padding: 20px;
    font-size: 15px;
    line-height: 18px;
  }
}

@media(max-width:767px) {
  .btn-type1 {
    padding: 9px 15px;
    font-size: 14px;
    line-height: 25px;
  }
}

/* LINK TYPE CSS */
.link-type1 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  text-decoration: none;
  transition: all 0.3s;
  gap: 6px;
  display: inline-flex;
  align-items: center;
}

.link-type1 .arrow-icon {
  transition: transform 0.3s ease;
}

.link-type1:hover .arrow-icon {
  transform: translateX(4px);
}

.link-type2 {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  color: var(--primary-color);
  transition: all 0.3s;
}

.link-type2:hover {
  text-decoration: none;
}

.link-type3 {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: var(--primary-color);
  transition: all 0.3s;
  text-decoration: none;
}

.link-type3:hover {
  text-decoration: underline;
}

.link-type4 {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  color: var(--color-blue);
  transition: all 0.3s;
}

.link-type4:hover {
  text-decoration: none;
}

@media(max-width:992px) {
  .link-type1 {
    font-size: 12px;
    line-height: 15px;
  }
}

/* SLIDER ARROW */
.slick-arrow {
  font-size: 0;
  line-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.slick-arrow.slick-prev {
  left: -30px;
}

.slick-arrow.slick-next {
  right: -30px;
}

.slick-arrow:hover svg circle {
  fill: var(--primary-color);

}

.slick-arrow:hover svg path {
  stroke: var(--bg-white);
}

.slick-dots {
  display: flex;
  margin: 20px 0 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style: none;
}

.slick-dots li {
  padding: 0;
  margin: 0;
}

.slick-dots li button {
  padding: 0;
  border: 0;
  background: var(--bg-white);
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid var(--primary-color)
}

.slick-dots li.slick-active button {
  background: var(--primary-color);
}

/* COMMON SECTION CSS */
@media(max-width:767px) {
  .sec-topbar {
    gap: 15px;
  }
}

/* ACCORDION TYPE CSS */
.accordion-type1 .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 16px;
  line-height: 20px;
  color: var(--color-black);
  font-weight: 600;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
  position: static;
}

.accordion-type1 .accordion .accordion-item .accordion-header {
  border: 0;
  position: relative;
  width: 100%;
}

.accordion-type1 .accordion .accordion-item {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: var(--secondary-color);
  margin-bottom: 13px;
}

.accordion-type1 .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-type1 .accordion .accordion-item.active {
  background: var(--bg-white);
}

.accordion-type1 .accordion .accordion-item .accordion-body {
  padding: 0 75px 0 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: var(--color-grey);
}

.accordion-type1 .accordion .accordion-item .accordion-header .accordion-button::after {
  background: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 17px;
  height: 17px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-type1 .accordion .accordion-item.active .accordion-header .accordion-button::after {
  background: url(../images/minus.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media(max-width:992px) {
  .accordion-type1 .accordion .accordion-item {
    padding: 15px;
  }

  .accordion-type1 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    line-height: 18px;
  }

  .accordion-type1 .accordion .accordion-item .accordion-body {
    padding: 0;
  }
}

@media(max-width:767px) {
  .accordion-type1 .accordion .accordion-item .accordion-body {
    font-size: 13px;
    line-height: 17px;
  }
}

/* FORM TYPE CSS */
.form-type1 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
}

.form-type1 input {
  border-radius: 8px;
  background-color: var(--bg-white);
  border: 0;
  box-shadow: none;
  padding: 17px 18px;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-black);
  max-width: 325px;
  text-overflow: ellipsis;
}

.form-type1 input:focus {
  box-shadow: none;
}

.form-type1 input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-type1 button {
  border-radius: 8px;
  background-color: var(--primary-color);
  color: var(--color-white);
  border: 0;
  padding: 12px;
  min-width: 90px;
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  transition: all 0.3s;
}

.form-type1 button:hover {
  background-color: var(--bg-white);
  color: var(--color-blue);
}

@media(max-width:1400px) {
  .form-type1 {
    margin-bottom: 20px;
  }
}

@media(max-width:576px) {
  .form-type1 {
    flex-wrap: wrap;
  }

  .form-type1 button {
    width: 100%;
  }
}

.search-control .form-type2 .form-control {
  border-radius: 8px;
  padding: 17px 16px 17px 40px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  box-shadow: none;
  border: 0;
  width: 445px;
  text-overflow: ellipsis;
}

.search-control .form-type2 .form-control.location {
  background: var(--ternary-color) url(../images/map-icon.svg);
  background-repeat: no-repeat;
  background-position: 17px 50%;
}

.search-control .form-type2 .form-control.search {
  background: var(--ternary-color) url(../images/search-icon.svg);
  background-repeat: no-repeat;
  background-position: 17px 50%;
}

.search-control .form-type2 .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.search-control {
  padding: 20px 24px;
  border-radius: 15px;
  background: var(--bg-white);
  width: max-content;
  margin: 0 auto;
}

.home-page .search-control {
  margin: -77px auto 32px;
}

.search-control .form-type2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

form button {
  border-radius: 8px;
  background-color: var(--primary-color);
  color: var(--color-white);
  border: 0;
  padding: 12px;
  min-width: 136px;
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}

form button:hover {
  background-color: var(--bg-white);
  color: var(--color-blue);
}

.eye-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 16px;
  cursor: pointer;
}

@media(max-width:1199px) {
  .search-control {
    width: auto;
  }
}

@media(max-width:992px) {
  .search-control .form-type2 .form-control {
    width: auto;
  }

  .search-control {
    padding: 15px;
    width: max-content;
  }

  .home-page .search-control {
    margin: -60px auto 20px;
  }

  .search-control .form-type2 {
    gap: 10px;
  }
}

@media(max-width:767px) {

  .search-control .form-type2 .form-control,
  .search-control .form-type2 button {
    width: 100%;
  }

  .search-control .form-type2 {
    flex-wrap: wrap;
  }

  .home-page .search-control {
    margin: -120px auto 0;
  }

  .search-control {
    width: auto;
  }
}

/* FORM TYPE 3 */
.form-type3 label {
  font-size: 13px;
  line-height: 16px;
  color: var(--color-black);
  margin-bottom: 9px;
  font-weight: 600;
}

.form-type3 .form-group {
  margin-bottom: 18px;
}

.form-type3 .form-group input,
.form-type3 .form-group textarea,
.form-type3 .form-group select {
  border-radius: 8px;
  background-color: var(--ternary-color);
  border: 0;
  padding: 17px 20px;
  box-shadow: none;
  color: var(--color-black);
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}

.form-type3 .form-group select {
  background: var(--ternary-color) url(../images/drpdown-arrow.svg) no-repeat;
  background-position: center right 16px;
}

.form-type3 .form-group .date {
  background: var(--ternary-color) url(../images/calendar-icon.svg) no-repeat;
  background-position: center right 15px;
}

.form-type3 .form-group select option:first-child {
  color: rgba(0, 0, 0, 0.5);
}

.form-type3 .form-group.address input {
  background: var(--ternary-color) url(../images/map-icon.svg) no-repeat;
  background-position: center right 16px;
  padding-right: 30px;
}

.verified-badge {
  display: inline-block;
  padding-left: 22px;
  color: #4CAC1B;
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  margin-top: 7px;
  background: url(../images/verified-icon.svg) no-repeat;
}

.form-type3 .form-group input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-type3 .form-group textarea {
  resize: none;
  height: 125px;
}

.form-type3 .form-group textarea.about-hospital {
  height: 80px;
}

/* COMMON BANNER SECTION CSS */
.common-banner-sec {
  padding: 60px 0;
}


.other-banner-sec .hd-type4 {
  margin: 18px 0 30px;
}

@media(max-width:1199px) {
  .other-banner-sec .hd-type4 {
    margin: 20px 0;
  }
}

@media(max-width:992px) {
  .other-banner-sec img {
    margin-top: 30px;
  }
}

@media(max-width:767px) {
  .other-banner-sec .hd-type4 {
    margin: 15px 0;
  }
}

/* CHECK BOX TYPE 1 */
.checkbox-type1 {
  position: relative;
}

.checkbox-type1 input[type="checkbox"] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  margin-left: 0;
}

.checkbox-type1>span {
  font-size: 14px;
  line-height: 16px;
  color: var(--color-grey);
  position: relative;
  padding-left: 25px;
  font-weight: normal;
  cursor: pointer;
  display: inline-block;
}

.checkbox-type1>span:before {
  border: solid 1px var(--primary-color);
  content: "";
  height: 19px;
  width: 19px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--bg-white);
  display: inline-block;
  border-radius: 4px;
}

.checkbox-type1 input[type="checkbox"]:checked+span:before {
  background-color: var(--primary-color);
}

.checkbox-type1 input[type="checkbox"]:checked+span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/check-box.svg");
  height: 19px;
  width: 19px;
  background-size: contain;
  background-repeat: no-repeat;
}

.checkbox-type1 input[type="checkbox"]:disabled+span {
  color: #999;
  cursor: default;
}

.checkbox-type1 input[type="checkbox"]:disabled+span:before {
  background-color: #e2e2e2;
}

/* BREADCRUMB CSS */
.breadcrumb-sec {
  margin: 25px 0;
}

.breadcrumb-sec .breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px 30px;
  padding: 0;
  margin: 0;
}

.breadcrumb-sec .breadcrumb li {
  position: relative;
}

.breadcrumb-sec .breadcrumb li::after {
  content: ">";
  color: var(--color-grey);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

.breadcrumb-sec .breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb-sec .breadcrumb a {
  text-decoration: none;
  color: var(--color-grey);
  font-size: 13px;
  line-height: 19px;
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb-sec .breadcrumb li[aria-current="page"] {
  color: var(--color-grey);
  font-size: 13px;
  font-weight: normal;
  line-height: 19px;
}

@media(max-width:576px) {

  .breadcrumb-sec .breadcrumb a,
  .breadcrumb-sec .breadcrumb li[aria-current="page"] {
    font-size: 10px;
    line-height: 15px;
  }

  .breadcrumb-sec .breadcrumb {
    gap: 10px 20px;
  }

  .breadcrumb-sec .breadcrumb li::after {
    right: -15px;

  }
}

/* WISHLIST CSS */
.wishlist-btn {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 19.5px;
  height: 18.5px;
  fill: var(--primary-color);
  transition: fill 0.3s ease;
  position: absolute;
  top: 20px;
  right: 20px;
}

.wishlist-icon.active path {
  fill: var(--primary-color);
}

/* GALLERY POPUP CSS */
.gallery-popup-wrapper .mfp-container {
  width: 720px;
  height: 545px;
  margin: auto;
  right: 0;
  border-radius: 10px;
  background-color: var(--bg-white);
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.gallery-popup-wrapper .mfp-bg {
  background: #1BA5AC4F;
}

.gallery-popup-wrapper figcaption {
  display: none;
}

.gallery-popup-wrapper button.mfp-arrow {
  width: 59px;
  height: 59px;
  transform: translateY(-50%);
  top: 50%;
  opacity: 1;
  margin: 0;
}

.gallery-popup-wrapper .mfp-arrow:before,
.gallery-popup-wrapper .mfp-arrow::after {
  display: none;
}

.gallery-popup-wrapper button.mfp-arrow.mfp-arrow-right {
  right: -9px;
  background: url(../images/slider-right-arrow-blue.svg);
}

.gallery-popup-wrapper button.mfp-arrow.mfp-arrow-left {
  left: -9px;
  background: url(../images/slider-left-arrow-blue.svg);
}

.gallery-popup-wrapper img.mfp-img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-popup-wrapper .mfp-content,
.gallery-popup-wrapper .mfp-figure,
.gallery-popup-wrapper .mfp-figure figure {
  width: 100%;
  height: 100%;
}

.gallery-popup-wrapper .mfp-close {
  width: 25px;
  height: 25px;
  background-color: var(--color-black);
  border-radius: 100%;
  opacity: 1;
  top: -30px;
  right: -30px;
  line-height: 10px;
  padding: 0;
  text-align: center;
}

@media(max-width:1400px) {
  .gallery-popup-wrapper .mfp-container {
    width: 600px;
    height: 450px;
  }
}

@media(max-width:1199px) {
  .gallery-popup-wrapper .mfp-container {
    width: 450px;
    height: 350px;
  }
}

@media(max-width:576px) {
  .gallery-popup-wrapper .mfp-container {
    width: 350px;
    height: 250px;
  }
}

/* REVIEW POPUP CSS */
.review-popup .mfp-container {
  width: 430px;
  height: 385px;
  margin: auto;
  right: 0;
  border-radius: 10px;
  background-color: var(--bg-white);
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.review-popup .mfp-bg {
  background: #1BA5AC4F;
}

.review-popup .review-popup-sec h4 {
  color: var(--color-black);
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 20px;
  line-height: 19px;
}

.review-popup .review-popup-sec label {
  color: var(--color-black);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.review-popup .review-popup-sec .mfp-close {
  background: url(../images/close-icon.svg);
  font-size: 0;
  line-height: 0;
  background-repeat: no-repeat;
  opacity: 1;
  width: 25px;
  height: 25px;
  right: -30px;
  top: -35px;
  margin: 0;
  padding: 0;
}

.review-popup .review-popup-sec .rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.review-popup .review-popup-sec form label {
  color: var(--color-black);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  display: block;
}

.review-popup .review-popup-sec form textarea {
  border-radius: 8px;
  background-color: var(--ternary-color);
  width: 390px;
  height: 130px;
  border: 0;
  resize: none;
  box-shadow: none;
  padding: 20px;
  margin-bottom: 15px;
  outline: none;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-black);
  font-weight: 500;
}

.review-popup .review-popup-sec form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.review-popup .review-popup-sec form button {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:992px) {
  .review-popup .review-popup-sec h4 {
    margin-bottom: 15px;
  }
}

@media(max-width:576px) {
  .review-popup .mfp-container {
    width: 350px;
  }

  .review-popup .review-popup-sec form textarea {
    width: 310px;
  }
}

/* SUCESS POPUP CSS */
.success-popup .mfp-container {
  width: 430px;
  height: 375px;
  margin: auto;
  right: 0;
  border-radius: 10px;
  background-color: var(--bg-white);
  top: 50%;
  transform: translateY(-50%);
  padding: 40px;
}

.success-popup .mfp-bg {
  background: #1BA5AC4F;
}

.success-popup .popup-content {
  margin: 0 auto;
  text-align: center;
}

.success-popup .popup-content img {
  margin-bottom: 15px;
}

.success-popup .popup-content .hd-type7 {
  margin: 10px 0 25px;
  font-weight: normal !important;
}

.success-popup .popup-content a.btn-type6 {
  min-width: 178px;
}

.success-popup .popup-content .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.success-popup .doc-sucess-sec a.btn-type5 {
  min-width: 178px;
}

/* TAB TYPE CSS */
.tab-type1 .tab-heading {
  font-weight: bold;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-black);
  margin-bottom: 36px;
}

.tab-type1 .nav-link {
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font-size: 15px;
  line-height: 26px;
  color: var(--color-black);
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 5px;
}

.tab-type1 .nav-link:last-child {
  margin-bottom: 0;
}

.tab-type1 .nav-link.active {
  background: var(--primary-color);
}

.tab-type1 .nav-link.active svg path {
  stroke: var(--color-white);
}

.tab-type1 .nav-link.active.fill-hover svg path {
  fill: var(--color-white);
}

.tab-type1 .form-content {
  padding: 50px;
  border-radius: 10px;
}

.tab-type1 .tab-content .tab-pane {
  margin-left: 30px;
}

.tab-type1 .form-content .form-wrapper {
  max-width: 510px;
  margin: 0 auto;
}

.tab-type1 .form-content .form-wrapper .profile-image {
  margin: 0 auto 30px;
  text-align: center;
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 37px;
  font-weight: 600;
  line-height: 40px;
  border-radius: 100%;
  position: relative;
}

.tab-type1 .form-content .form-wrapper .profile-image .upload-icon {
  background: url(../images/upload-icon.svg) no-repeat;
  display: inline-block;
  width: 29px;
  height: 29px;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media(max-width:1500px) {
  .tab-type1 .tab-content .tab-pane {
    margin-left: 22px;
  }
}

@media(max-width:1400px) {
  .tab-type1 .tab-content .tab-pane {
    margin-left: 20px;
  }

  .tab-type1 .tab-heading {
    margin-bottom: 25px;
  }
}

@media(max-width:1199px) {
  .tab-type1 .tab-content .tab-pane {
    margin-left: 0px;
  }

  .tab-type1 .tab-heading {
    margin-bottom: 15px;
  }

  .tab-type1 .nav-link {
    margin-bottom: 10px;
  }
}

@media(max-width:992px) {
  .tab-type1 .form-content {
    padding: 30px;
  }

  .tab-type1 .tab-heading {
    font-size: 25px;
    line-height: 30px;
  }

  .tab-type1 .form-content .form-wrapper {
    max-width: 100%;
  }
}

@media(max-width:767px) {
  .tab-type1 .row {
    gap: 20px;
  }

  .dashboard-sec .tab-type1 .form-content .row {
    gap: 0;
  }
}

/* PROGRESS STEPS SECTION CSS */
.progress-steps-sec {
  max-width: 1020px;
  margin: 0 auto;
}

.progress-steps-sec .progress-steps {
  margin: 0;
  padding: 37px 0 0;
  list-style-type: none;
  flex: 0 0 190px;
}

.progress-steps-sec .progress-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 47px;
}

.progress-steps-sec .progress-steps li:last-child {
  margin-bottom: 0;
}

.progress-steps-sec .progress-steps li:after {
  content: '';
  background: #888C96;
  height: 30px;
  width: 1.5px;
  position: absolute;
  left: 16px;
  top: 40px;
}

.progress-steps-sec .progress-steps li.active::after {
  background: var(--primary-color);
}

.progress-steps-sec .progress-steps li .step-count {
  width: 32px;
  height: 32px;
  background: var(--bg-white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-weight: bold;
  font-size: 15px;
  line-height: 22px;
}

.progress-steps-sec .progress-steps li.active .step-count {
  color: var(--color-white);
  background: var(--primary-color);
}

.progress-steps-sec .progress-steps li .step-name {
  color: var(--color-black);
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
}

.progress-steps-sec .progress-steps li.active .step-name {
  color: var(--primary-color);
}

.progress-steps-sec .progress-steps li:last-child::after {
  display: none;
}

.progress-steps-sec h3 {
  margin-bottom: 40px;
}

.progress-steps-sec .progress-steps-sec-wrapper {
  display: flex;
  gap: 40px;
}

.progress-steps-sec .progress-content {
  padding: 35px 50px;
  box-shadow: 0px 3px 8px #B6E1E67A;
  border-radius: 15px;
  flex-grow: 1;
}

.profile-content .profile-image {
  border: 1px solid #B6E1E6;
  background: var(--ternary-color);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 0 auto 8px;
  position: relative;
}

.profile-content .upload-icon {
  background: url(../images/edit-icon.svg) no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
}

.profile-content .upload-msg {
  font-weight: 600;
  font-size: 13px;
  line-height: 26px;
  color: var(--color-black);
  margin-bottom: 50px;
}

.progress-content .progress-buttons {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}



.hospital-photos .photo-upload-sec {
  border: 1px dashed var(--primary-color);
  border-radius: 15px;
  padding: 30px;
  background: var(--ternary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.5px;
  flex-direction: column;
  color: var(--color-black);
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 18px;
}

.custom-upload {
  border-radius: 16px;
  background: var(--primary-color);
  padding: 6px 17px;
  min-width: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--bg-white);
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  cursor: pointer;
}

.hospital-photos .photos-list .photo-item {
  border-bottom: 1px solid #CEEBEE;
  padding-bottom: 12.5px;
  margin-bottom: 12.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hospital-photos .photos-list .photo-item:last-child {
  margin-bottom: 0;
}

.hospital-photos .photos-list .photo-item .photo-name-img {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hospital-photos .photos-list .photo-item .photo-name-img img {
  width: 40px;
  height: 40px;
}

.hospital-photos .photos-list .photo-item .photo-name-img .photo-name {
  color: var(--color-black);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.delete-btn {
  border: 0;
  padding: 0;
  background: transparent;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.checkbox-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid #B6E1E6;
  border-radius: 6px;
  background: var(--bg-white);
  cursor: pointer;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  transition: all 0.3s ease
}

.checkbox-btn input {
  display: none;
}

.checkbox-btn svg path {
  fill: #1ba5ac;
}

.checkbox-btn input:checked+span {
  background: var(--primary-color);
  color: var(--color-white);
  border-color: var(--primary-color);
}

.checkbox-btn input:checked+span svg path {
  fill: var(--bg-white);
}

.checkbox-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  padding: 12px 16px;
}

.specialities-sec .specialities-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.specialities-sec .specialities-wrapper label {
  flex: 0 0 calc(50% - 10px);
}

.facilities-sec .facility-block:not(:last-child) {
  margin-bottom: 20px;
}

.facilities-sec .facility-block .facility-label {
  display: block;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-black);
  margin-bottom: 9px;
  font-weight: 600;
}

.facilities-sec .facility-block .facility-item {
  background-color: var(--ternary-color);
  padding: 16px 20px;
  border-radius: 8px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-right: 45px;
  position: relative;
}

.facilities-sec .form-type3 {
  margin-right: 45px;
  position: relative;
}

.facilities-sec .facility-block .facility-item .delete-btn {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}

.facilities-sec .form-type3 .add-btn {
  border: 0;
  padding: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 34px;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.availibility-sec .availibility-list .availibility-item .checkbox-type1>span {
  font-size: 18px;
  line-height: 19px;
  font-weight: bold;
  color: var(--color-black);
}

.availibility-sec .availibility-list .availibility-item .checkbox-type1>span:before {
  background-color: var(--secondary-color);
}

.availibility-sec .availibility-list .availibility-item {
  border-bottom: 1px solid #CEEBEE;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.availibility-sec h3 {
  margin-bottom: 25px;
}

.time-range-container {
  display: flex;
  gap: 23px;
  margin-top: 10px;
  display: none;
}

.time-range-container .time-block h4 {
  margin-bottom: 7px;
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-black);
}

.time-range-container .time-block .time-inputs span {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 13px;
  line-height: 26px;
  color: var(--color-black);
  display: inline-block;
}

.time-range-container .time-block .time-inputs .time-field {
  border-radius: 8px;
  padding: 12px 17px;
  background: var(--ternary-color);
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-black);
}

.time-range-container .time-block .time-inputs {
  display: flex;
  align-items: center;
  gap: 13px;
}

.time-range-container .time-block .time-inputs .time-field .icon {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.academic-detail .academic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CEEBEE;
}

.academic-detail .academic-header h3 {
  font-weight: bold;
}

.academic-detail .academic-header .add-academic-btn {
  border: 0;
  padding: 0;
  background: transparent;
}

.academic-detail .delete-academic-btn {
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: auto;
  gap: 3px;
  transition: all 0.3s;
}

.academic-detail .delete-academic-btn:hover {
  color: var(--primary-color);
}

@media(max-width:1199px) {
  .progress-steps-sec h3 {
    margin-bottom: 30px;
  }

  .progress-steps-sec .progress-steps-sec-wrapper {
    gap: 30px;
  }

  .progress-steps-sec .progress-content {
    padding: 30px;
  }

  .progress-steps-sec .progress-content .upload-msg {
    margin-bottom: 40px;
  }

  .progress-steps-sec {
    max-width: 100%;
  }
}

@media(max-width:992px) {
  .progress-steps-sec .progress-steps-sec-wrapper {
    gap: 10px;
  }

  .progress-steps-sec .progress-steps {
    flex: 0 0 160px;
  }

  .progress-steps-sec .progress-content .upload-msg {
    margin-bottom: 30px;
  }

  .hospital-photos .photo-upload-sec {
    padding: 20px;
  }

  .availibility-sec .availibility-list .availibility-item .checkbox-type1>span {
    font-size: 16px;
    line-height: 18px;
  }

  .success-popup .mfp-container {
    padding: 25px;
    width: 400px;
    height: 330px;
  }
}

@media(max-width:767px) {
  .progress-steps-sec h3 {
    margin-bottom: 20px;
  }

  .progress-steps-sec .progress-steps {
    padding: 25px 0 0;
  }

  .progress-steps-sec .progress-content .upload-msg {
    margin-bottom: 20px;
  }

  .success-popup .popup-content .hd-type7 {
    margin: 10px 0 15px;
  }
}

@media(max-width:576px) {
  .progress-steps-sec .progress-steps-sec-wrapper {
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .progress-steps-sec .progress-content {
    padding: 20px;
  }

  .progress-steps-sec .progress-steps {
    padding: 0;
    flex: 0 0 100%;
  }

  .specialities-sec .specialities-wrapper label {
    flex: 0 0 100%;
  }

  .success-popup .mfp-container {
    padding: 20px;
    width: 350px;
  }
}

/* FLATPICKER CSS */
.flatpickr-calendar {
  border-radius: 10px;
  border: 1px solid #B6E1E6;
  background: var(--bg-white);
  padding: 10px;
  width: 330px;
}

.flatpickr-calendar .flatpickr-months .flatpickr-month {
  display: flex;
  align-items: center;
  justify-content: space-betwee
}

.flatpickr-calendar .flatpickr-months .flatpickr-month svg path {
  fill: var(--color-blue);
}

.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month svg path {
  fill: var(--color-blue);
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop::after {
  display: none;
}

.flatpickr-calendar .flatpickr-current-month {
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--ternary-color) url(../images/drpdown-arrow.svg) no-repeat;
  background-position: center right 10px;
  padding: 8px 25px 7px 9px;
  color: var(--color-black);
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  appearance: none;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  outline: none;
}

.flatpickr-calendar .flatpickr-current-month input.cur-year {
  padding: 8px 25px 7px 9px;
  color: var(--color-black);
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  appearance: none;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  outline: none;
  background: var(--ternary-color);
}

.flatpickr-calendar .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-next-month {
  position: static;
  padding: 0;
  display: flex;
  align-items: center;
}

.flatpickr-calendar .flatpickr-months {
  margin-bottom: 10px;
}

.flatpickr-calendar span.flatpickr-weekday {
  font-size: 13px;
  line-height: 16px;
  color: var(--color-black);
  font-weight: 600;
}

.flatpickr-calendar .flatpickr-day {
  font-size: 12px;
  line-height: 14px;
  color: var(--color-grey);
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flatpickr-calendar .flatpickr-day:hover {
  background-color: var(--ternary-color);
  border-color: var(--ternary-color);
}

.flatpickr-calendar .flatpickr-day.today,
.flatpickr-calendar .flatpickr-day.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--color-white);
  font-weight: 600;
}

.switch-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-family);
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: var(--color-black);
}

.home-sec .profile-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #CEEBEE;
  padding-bottom: 20px;
  margin-bottom: 20px;
  gap: 20px;
}

.home-sec .profile-sec .profile-sec-left img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.home-sec .profile-sec .profile-sec-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.home-sec .profile-sec .profile-sec-left .name-info .name {
  color: var(--color-black);
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 6px;
}

.visited-hospitals-sec .visited-hospitals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;

}

.visited-hospitals-sec .visited-hospitals-header .add-btn {
  border: 0;
  padding: 0;
  background: transparent;
}

.visited-hospitals-list .visited-hospitals-item {
  border-radius: 9px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
}

.visited-hospitals-list .visited-hospitals-item .visited-hospitals-left img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.visited-hospitals-list .visited-hospitals-item .visited-hospitals-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-sec .tab-type1 .form-content {
  padding: 25px;
}

.visited-hospitals-list .visited-hospitals-item:not(:last-child) {
  margin-bottom: 10px;
}

.visited-hospitals-list .visited-hospitals-item .hospital-availability {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
}

.visited-hospitals-list .visited-hospitals-item .hospital-availability .switch-wrapper {
  font-size: 13px;
  gap: 7px;
}

.visited-hospitals-list .visited-hospitals-item .hospital-availability .sortby select {
  background: var(--ternary-color) url(../images/drpdown-arrow.svg) no-repeat;
  background-position: center right 10px;
  padding: 4px 25px 4px 9px;
  color: var(--color-black);
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  appearance: none;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  outline: none;
}

.visited-hospitals-list .visited-hospitals-item .hospital-availability .sortby span {
  color: var(--color-black);
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
}

@media(max-width:1199px) {
  .home-sec .profile-sec .profile-sec-left img {
    width: 60px;
    height: 60px;
  }

  .home-sec .profile-sec .profile-sec-left .name-info .name {
    font-size: 20px;
    line-height: 22px;
  }

  .home-sec .profile-sec .profile-sec-left {
    gap: 10px;
  }
}

@media(max-width:991px) {
  .dashboard-sec .tab-type1 .form-content {
    padding: 15px;
  }

  .visited-hospitals-list .visited-hospitals-item {
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px;
  }

  .visited-hospitals-list .visited-hospitals-item .visited-hospitals-left {
    width: 100%;
  }
}

@media(max-width:767px) {
  .home-sec .profile-sec {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .home-sec .profile-sec .profile-sec-left .name-info .name {
    font-size: 18px;
    line-height: 20px;
  }
}

@media(max-width:576px) {
  .home-sec .profile-sec {
    flex-wrap: wrap;
  }
}

.dashboard-sec .profile-content {
  max-width: 695px;
  margin: 0 auto;
}

@media(max-width:1199px) {
  .dashboard-sec .profile-content {
    max-width: 100%;
  }

  .profile-content .upload-msg {
    margin-bottom: 40px;
  }
}

@media(max-width:992px) {
  .profile-content .upload-msg {
    margin-bottom: 30px;
  }
}

@media(max-width:767px) {
  .profile-content .upload-msg {
    margin-bottom: 20px;
  }
}

.mobile-edit {
  position: relative;

}

.mobile-edit input {
  background-color: #E4E4E4 !important;
}

.change-mobile {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-white);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  padding: 7px 13px;
  background: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.top-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.top-btns .back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.3s;
  width: auto;
}

.top-btns .back-link svg {
  position: relative;
  transform: rotateY(180deg);
}

.top-btns .back-link:hover {
  color: var(--color-blue);
}

.top-btns .back-link:hover svg path {
  stroke: var(--color-blue);
}

.top-btns .edit-btn {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  color: var(--color-white);
  gap: 9px;
  text-decoration: none;
  border-radius: 8px;
  background: var(--primary-color);
  padding: 12px 19px;
  border: 1px solid var(--primary-color);
}

.top-btns .edit-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.top-btns .edit-btn:hover svg path {
  stroke: var(--primary-color);
}

.hospital-details-sec .hospital-details-left .img-name {
  gap: 27px;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.hospital-details-sec .hospital-details-left .img-name img {
  width: 113px;
  height: 113px;
  object-fit: cover;
}

.hospital-details-sec .hospital-details-left .img-name .name {
  font-weight: bold;
  font-size: 28px;
  line-height: 30px;
  color: var(--color-black);
}

.hospital-details-sec .hospital-details-left .location-contact-email {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.hospital-details-sec .hospital-details-left .location-contact-email a {
  padding-left: 25px;
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-grey);
  text-decoration: none;
}

.hospital-details-sec .small-title {
  color: var(--color-black);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.hospital-details-sec .hospital-details-left .location-contact-email a:hover {
  color: var(--color-blue);
}

.hospital-details-sec .hospital-details-left .location-contact-email a.location {
  background: url(../images/map-icon-blue.svg) no-repeat;
  background-position: left top;
}

.hospital-details-sec .hospital-details-left .location-contact-email a.contact {
  background: url(../images/phone.svg) no-repeat;
  background-position: left top;
}

.hospital-details-sec .hospital-details-left .location-contact-email a.email {
  background: url(../images/email-icon.svg) no-repeat;
  background-position: left top;
}

.hospital-details-sec .hospital-details-left .about-hospital {
  background: url(../images/info-icon.svg) no-repeat;
  background-position: left top;
  padding-left: 25px;
  margin-bottom: 40px;
}

.hospital-details-sec .hospital-details-left .facilities {
  margin-bottom: 40px;
}

.hospital-details-sec .hospital-details-left .list {
  background: url(../images/list-icon.svg) no-repeat;
  background-position: left top;
  padding-left: 25px;
}

.hospital-details-sec .hospital-details-left .list .small-title {
  margin-bottom: 15px;
}

.hospital-details-sec .hospital-details-left .specialities .specialities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hospital-details-sec .hospital-details-left .specialities .specialities-list .specialities-item {
  border: 1px solid #B6E1E6;
  border-radius: 6px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  color: var(--color-black);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  flex: 0 0 200px;
}

.hospital-details-sec .hospital-details-left .photos {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #C0E0E3;
}

.hospital-details-sec .hospital-details-left .photos .small-title {
  margin-bottom: 15px;
}

.hospital-details-sec .hospital-details-left .photos-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hospital-details-sec .hospital-details-left .photos-list img {
  width: 75px;
  height: 75px;
  object-fit: cover;
}

.hospital-details-sec {
  display: flex;
  gap: 30px;
}

.hospital-details-sec .hospital-details-right {
  flex: 0 0 425px;
  background: var(--bg-white);
  box-shadow: 0px 3px 8px #B6E1E67A;
  border-radius: 10px;
  height: fit-content;
  padding: 20px;
  margin-top: 30px;
}

.hospital-details-sec .hospital-details-right h4 {
  margin-bottom: 20px;
}

.tab-type2 {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #C0E0E3;
  ;
}

.tab-type2 .nav-item button {
  padding: 0;
  margin: 0;
  border: 0;
  font-weight: 600;
  color: var(--color-grey);
  font-size: 14px;
  line-height: 18px;
}

.tab-type2 .nav-item button.active {
  color: var(--color-blue);
}

.time-and-fee {
  display: flex;
  gap: 75px;
}

.time-and-fee .time-box .time-slot {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: var(--color-black);
  display: block;
  margin-bottom: 5px;
}

.time-and-fee .time-box .time {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-grey);
}

.time-and-fee+h5 {
  margin: 25px 0;
}

@media(max-width:1400px) {
  .hospital-details-sec .hospital-details-left .img-name .name {
    font-size: 24px;
    line-height: 28px;
  }

  .hospital-details-sec .hospital-details-left .img-name {
    margin-bottom: 25px;
    gap: 20px
  }

  .hospital-details-sec .hospital-details-left .location-contact-email a {
    font-size: 13px;
    line-height: 17px;
  }

  .hospital-details-sec .hospital-details-left .location-contact-email {
    gap: 20px;
    margin-bottom: 25px;
  }

  .hospital-details-sec .hospital-details-left .about-hospital,
  .hospital-details-sec .hospital-details-left .facilities {
    margin-bottom: 25px;
  }

  .hospital-details-sec .hospital-details-left .photos {
    padding-top: 20px;
    margin-top: 20px;
  }

  .time-and-fee+h5 {
    margin: 20px 0;
  }
}

@media(max-width:1199px) {
  .hospital-details-sec .hospital-details-right {
    flex: 0 0 350px;
  }

  .hospital-details-sec .hospital-details-right h4 {
    margin-bottom: 15px;
  }

  .tab-type2 {
    gap: 30px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .time-and-fee {
    gap: 40px;
  }

  .hospital-details-sec .hospital-details-left .img-name .name {
    font-size: 22px;
    line-height: 26px;
  }

  .hospital-details-sec .hospital-details-left .img-name img {
    width: 100px;
    height: 100px;
  }

  .hospital-details-sec .hospital-details-left .img-name {
    margin-bottom: 20px;

  }

  .hospital-details-sec .hospital-details-left .location-contact-email a.location br {
    display: none;
  }

  .hospital-details-sec .hospital-details-left .location-contact-email {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hospital-details-sec .hospital-details-left .photos-list img {
    width: 60px;
    height: 60px;
  }

  .time-and-fee .time-box .time-slot {
    font-size: 13px;
    line-height: 13px;
  }

  .time-and-fee .time-box .time {
    font-size: 13px;
    line-height: 17px;
  }
}

@media(max-width:991px) {
  .hospital-details-sec {
    flex-wrap: wrap;
  }

  .hospital-details-sec .hospital-details-right {
    flex: 0 0 100%;
    margin-top: 0;
  }

  .hospital-details-sec .hospital-details-left .img-name .name {
    font-size: 20px;
    line-height: 24px;
  }
}

@media(max-width:576px) {
  .time-and-fee {
    gap: 35px;
  }

  .tab-type2 {
    gap: 25px;
  }
}

/* DROPDOWN CSS */
.dropdown.user-dropdown .dropdown-menu {
  box-shadow: 0px 3px 15px #1BA5AC8F;
  border-radius: 10px;
  border: 0;
  padding: 0;
  margin: 25px 0 0 !important;
}

.dropdown.user-dropdown .dropdown-menu li a {
  padding: 11px;
  text-align: center;
  color: var(--color-black);
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  border-bottom: 1px solid #DFE8E9;
  opacity: 1;
}

.dropdown.user-dropdown .dropdown-menu li a:hover {
  background: var(--primary-color);
  color: var(--color-white);
}

.dropdown.user-dropdown .dropdown-menu li:first-child a {
  border-radius: 10px 10px 0 0;
}

.dropdown.user-dropdown .dropdown-menu li:last-child a {
  border-radius: 0 0 10px 10px;
}

.dropdown.user-dropdown {
  margin-left: 70px;
}

.dropdown.user-dropdown .dropdown-toggle {
  border-radius: 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 6px;
  padding: 0;
}

.dropdown.user-dropdown .dropdown-toggle::after {
  display: none;
}

.dropdown.user-dropdown .dropdown-toggle .user-img {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  background: var(--primary-color);
  color: var(--color-white);
}

.dropdown.user-dropdown .dropdown-toggle .user-name {
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  color: var(--primary-color);
}
.dashboard-sec .dropdown.user-dropdown .dropdown-toggle .user-name {
  color: var(--color-black);
}
@media(max-width:1199px){
  .dropdown.user-dropdown .dropdown-menu{
        margin: 15px 0 0 !important;
  }
}
@media(max-width:991px){
  .dropdown.user-dropdown {
    margin: 0 20px;
}

}
@media(max-width:767px){
  .dropdown.user-dropdown .dropdown-toggle .user-name,
  .dropdown.user-dropdown .dropdown-toggle .drop-icon{
    display: none;
  }
  .header .header-wrapper .header-right{
    flex-direction: row-reverse;
  }
  .dropdown.user-dropdown{
    margin: 0 0 0 10px;
  }
}