@charset "UTF-8";
/* Variables */
:root {
  --groomit-black: #2E2E2E;
  --groomit-gray: #7C868A;
  --groomit-border: #BEC3C5;
  --groomit-input-bg: #FBFBFB;
  --groomit-dark-blue: #3064A3;
  --groomit-error-color: #EB5757;
  --groomit-red: #FF314A;
  --groomit-light-gray: #E4E4E4;
  --groomit-F2F2F2: #F2F2F2;
  --groomit-recurring: #0A7170;
  --groomit-green: #28B446;
}

/*** Utilities ***/
.m-10 {
  margin: 1rem;
}

.ml-05 {
  margin-left: 0.5rem;
}

.ml-10 {
  margin-left: 1rem;
}

.mt-05 {
  margin-top: 0.5rem;
}

.mt-10 {
  margin-top: 1rem;
}

.mt-10-i {
  margin-top: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-10-i {
  margin-bottom: 1rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-25 {
  margin-bottom: 2.5rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.my-30 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mr-10 {
  margin-right: 1rem;
}

.mr-05 {
  margin-right: 0.5rem;
}

.p-0 {
  padding: 0px;
}

.p-05 {
  padding: 0.5rem;
}

.p-10 {
  padding: 1rem;
}

.p-15 {
  padding: 1.5rem;
}

.p-15px {
  padding: 1.5rem;
}

.p-20 {
  padding: 2rem;
}

.pt-05 {
  padding-top: 0.5rem;
}

.pt-10 {
  padding-top: 1rem;
}

.pt-15 {
  padding-top: 1.5rem;
}

.pt-20 {
  padding-top: 1.5rem;
}

.pb-05 {
  padding-bottom: 0.5rem;
}

.pb-10 {
  padding-bottom: 1rem;
}

.pb-15 {
  padding-bottom: 1.5rem;
}

.pb-20 {
  padding-bottom: 2rem;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-25 {
  padding-bottom: 2.5rem;
}

.pr-15 {
  padding-right: 1.5rem;
}

.pr-05 {
  padding-right: 0.5rem;
}

.pr-10 {
  padding-right: 1rem;
}

.pl-05 {
  padding-left: 0.5rem;
}

.pl-15 {
  padding-left: 1.5rem;
}

.pl-10 {
  padding-left: 1rem;
}

.pl-30 {
  padding-left: 3rem;
}

.pl-25 {
  padding-left: 25px;
}

.pl-55 {
  padding-left: 55px;
}

.py-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.w-40 {
  width: 40%;
}

/***  Custom classes ****/
html,
body {
  height: 100%;
  overflow: hidden;
}

.groomer-profile-container {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  overflow: hidden;
}

.sidebar-container {
  flex: 0 0 390px;
  position: relative;
  z-index: 2;
}

.sidebar-container .wrapper {
  position: fixed;
  top: 100px;
  left: 60px;
  width: 350px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f9f9f9;
  background: #fff;
}

.sidebar-container .wrapper::-webkit-scrollbar {
  width: 6px;
}

.sidebar-container .wrapper::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 6px;
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #fff;
}

.px-md-6 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.main-box-padding {
  padding: 0px 20px 0 20px;
}

.wrapper {
  width: 100%;
  padding: 20px 20px 0 20px;
  border-radius: 15px;
  border: 1px solid var(--Divider, #E4E4E4);
  background: #FFF;
}

.wrapper .no-padding {
  padding: 0 0px 0 20px;
}

.percentage-box {
  display: flex;
  padding: 8px 12px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 5px;
  border-radius: 30px;
  background: #F2F2F2;
  margin-bottom: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "•";
  color: #2E2E2E;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1;
}

.profile-box {
  padding: 20px 0px 0 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, #E7E6F5 0%, rgba(231, 230, 245, 0) 100%);
}

.profile-box h5 {
  color: var(--Black, #2E2E2E);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.button-black:hover {
  height: 50px;
  background: var(--groomit-black);
  color: #fff;
  border: 0px;
  border-radius: 10px;
}

.button-small {
  height: 50px;
  border: 1px solid var(--groomit-gray);
  border-radius: 1rem;
}

.button-small.selected {
  border: 2px solid var(--groomit-red) !important;
  font-weight: bold;
  box-shadow: 0px 0px 7px 0px rgba(132, 132, 132, 0.75);
  -webkit-box-shadow: 0px 0px 7px 0px rgba(132, 132, 132, 0.75);
  -moz-box-shadow: 0px 0px 7px 0px rgba(132, 132, 132, 0.75);
}

.underline {
  text-decoration: underline;
}

.rounded-20 {
  border-radius: 20px;
}

.border-color {
  border-color: #E4E4E4 !important;
}

.abosulte-img {
  right: 20px;
  top: 20px;
  display: flex;
  padding: 7px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #FFF;
  position: absolute;
}

.abosulte-img img {
  width: 21px;
  height: 21px;
}

/* Sidebar Navigation */
.sidebar-nav .list-group-item {
  width: 100%;
  background: transparent;
  border: none;
  border-top: 1px solid #E4E4E4;
  color: var(--Black, #2E2E2E);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.sidebar-nav .list-group-item:last-child {
  border-bottom: none;
}

.sidebar-nav .list-group-item:hover {
  color: #FF314A;
}

.sidebar-nav .list-group-item.active {
  color: var(--Brand-Red, #FF314A);
  background: transparent;
  border-right: 3px solid #FF314A;
  padding-right: 0;
}

.ref-box {
  padding: 20px 5px 20px 15px;
  border-radius: 15px;
  background: #E4F5FF;
  background-image: url(https://dev.groomit.me/v7/images/webapp/icons/banner-cat.svg);
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
}

.ref-box span {
  color: var(--Blue, #3064A3);
}

.mivan-box {
  padding: 8px 15px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid var(--Black, #2E2E2E);
  background: #FFF;
}

.groomer-action-btn {
  display: flex;
  padding: 7px;
  align-items: center;
  border-radius: 10px;
  background: #E7E6F5;
}

.groomer-action-btn img {
  width: 21px;
  height: 21px;
}

.service-box {
  display: flex;
  padding-left: 15px;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid var(--Divider, #E4E4E4);
  background: #FFF;
  gap: 15px;
}

.service-box img {
  width: 255px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-fb-color {
  background-color: #FBFBFB !important;
}

.custom-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
  padding: 10px 15px;
  flex: 1 0 0;
  min-width: 200px;
  border-radius: 10px;
  border: 1px solid var(--Outline, #BEC3C5);
  background: #FBFBFB;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.custom-select:hover {
  border-color: #A7ADB0;
}

/* Placeholder text */
.custom-select-placeholder {
  color: var(--Gray, #7C868A);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

/* Chevron icon wrapper */
.custom-select-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* Dropdown container */
.custom-select-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--Outline, #BEC3C5);
  background: #FFFFFF;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Dropdown items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  color: #2E2E2E;
  cursor: pointer;
  transition: background-color 0.15s ease;
  position: relative;
}

.dropdown-item:hover {
  font-weight: 700;
  background-color: #F9F9F9;
}

/* Active item indicator */
.dropdown-active-indicator {
  width: 2px;
  height: 22px;
  background: transparent;
  flex-shrink: 0;
}

.dropdown-item.active {
  font-weight: 700;
}

.dropdown-item.active .dropdown-active-indicator {
  background: #FF314A;
}

/* Divider between items */
.dropdown-item:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}

.flex-wrapp {
  flex-wrap: wrap;
  gap: 15px;
}

.relative-box {
  flex: 1 1 0;
  min-width: 0;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.image-item {
  width: 272px;
  height: 150px;
  border-radius: 10px;
  background: lightgray;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
  align-items: end;
  display: flex;
  justify-content: center;
  padding: 10px;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  pointer-events: none;
}

.image-item:hover {
  transform: scale(1.03);
}

.review-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #E7E7E7;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-box:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.review-user {
  color: #2E2E2E;
}

.review-pet {
  flex-shrink: 0;
  text-align: right;
}

.review-grey-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  padding: 10px;
  border-radius: 5px;
  background: #F2F2F2;
  width: 100%;
}

.review-grey-box > div:first-child {
  color: #000;
  font-family: var(--font-family-body, Inter);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.review-grey-box > div:last-child {
  color: var(--Dark-BG, #1C1C1E);
  font-family: var(--font-family-body, Inter);
  font-size: var(--font-size-sm, 14px);
  font-weight: 400;
  line-height: 140%;
}

.review-grey-box > div:last-child span {
  color: #3064A3;
  font-family: var(--font-family-body, Inter);
  font-size: var(--font-size-sm, 14px);
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}

.rating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #E5A242;
  color: #FFF;
  font-family: var(--font-family-body, Inter);
  font-size: var(--font-size-sm, 14px);
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.rating-icon div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-icon img {
  width: 15px;
  height: 15px;
  aspect-ratio: 1/1;
}

.review-dropdown {
  position: relative;
  font-family: var(--font-family-body, Inter);
  font-size: 14px;
}

.review-dropdown-select {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #BEC3C5;
  background: #FFF;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.review-dropdown-select:hover {
  border-color: #A7ADB0;
}

.review-dropdown-select img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.review-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #FFF;
  border: 1px solid #BEC3C5;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 10;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 110px;
  width: 100%;
}

.review-dropdown-item {
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.review-dropdown-item:hover {
  background: #F2F2F2;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.breed-search {
  border-radius: 10px;
  border: 1px solid var(--Outline, #BEC3C5);
  background: #FBFBFB;
  padding: 10px 35px 10px 12px;
  width: 100%;
  font-size: 14px;
}

.breed-search:focus {
  outline: none;
}

.search-icon {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  top: 10px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F2F2F2;
  padding: 8px 12px;
  border-radius: 10px;
}

.toggle-label {
  font-size: 14px;
  color: #2E2E2E;
}

/* Toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #333;
}

input:checked + .slider:before {
  transform: translateX(18px);
}

/* Breed list */
.breed-list {
  margin-top: 10px;
  max-height: 260px;
  overflow-y: auto;
  text-align: left;
}

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

.breed-list li {
  padding: 10px 4px;
  border-bottom: 1px solid #E4E4E4;
  cursor: pointer;
}

.breed-list li:hover {
  background-color: #f1f0ec;
}

.breed-header {
  margin-bottom: 8px;
}

.confirm-btn {
  border-radius: 8px;
  padding: 10px 0;
}

.pricing-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #BEC3C5;
  background: #FFF;
  flex: 1 1 300px;
}

.pricing-image-box {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  padding: 7px;
  background: #F2F2F2;
}

.pricing-image-box img {
  width: 22px;
  height: 22px;
}

.package-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--Divider, #E4E4E4);
  background: #FFF;
  flex: 1 1 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.package-title {
  font-family: var(--font-family-body, Inter);
  font-weight: 700;
  font-size: 20px;
}

.gold-package-title {
  color: #E5A242;
}

.eco-package-title {
  color: #3064A3 !important;
}

.silver-package-title {
  color: #7C868A;
}

.package-subtitle {
  font-family: var(--font-family-body, Inter);
  font-weight: 400;
  font-size: 14px;
  color: #2E2E2E;
  margin-top: 2px;
}

.package-price {
  text-align: right;
}

.package-price-start {
  font-family: var(--font-family-body, Inter);
  font-weight: 400;
  font-size: 14px;
  color: #2E2E2E;
}

.package-price-amount {
  font-family: var(--font-family-body, Inter);
  font-weight: 700;
  font-size: 20px;
  color: #2E2E2E;
  margin-top: 2px;
}

.package-description {
  font-family: var(--font-family-body, Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.package-leading {
  padding: 3px 8px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}

.gold-leading {
  background: #FFE8C8;
}

.eco-leading {
  background: #CFDDF1;
}

.silver-leading {
  background: #ECECEC;
}

.package-services {
  display: flex;
  flex-direction: column;
}

/* Each item takes half width (two columns) */
.package-service-item {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: var(--font-family-body, Inter);
  font-weight: 700;
  font-size: 14px;
  color: #2E2E2E;
  padding: 6px 0;
  border-radius: 8px;
}

/* Icon size */
.package-services img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.pet-group {
  display: flex;
  align-items: center;
}

.pet-group img {
  margin-left: -10px;
}

.pet-group img:first-child {
  margin-left: 0;
}

.pet-group img:hover {
  transform: scale(1.05);
  z-index: 2;
}

.small-container {
  width: 390px;
  margin: auto;
}

.profile-header {
  width: 100%;
  height: 76px;
  flex-shrink: 0;
  border-bottom: 1px solid #C9CFD4;
  background: #E7E7E7;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0px 1000px #FBFBFB inset !important;
  -webkit-text-fill-color: #2E2E2E !important;
  caret-color: #2E2E2E;
  outline: none !important;
  background: #FBFBFB !important;
}

.input-bg {
  background: var(--groomit-input-bg);
}

.input-bg.disabled {
  background: var(--groomit-F2F2F2) !important;
  opacity: 1;
  border: 0px !important;
}

.right-10 {
  right: 10px;
}

.border-new-color {
  border-color: var(--groomit-border) !important;
}

.form-group {
  width: 100%;
}

.input-control {
  width: 100%;
  padding: 25px 10px 10px 15px;
  height: 57px;
  font-size: 16px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input-control:focus-visible {
  outline: 0px !important;
}

.floating-label {
  position: absolute;
  top: 18px;
  left: 15px;
  color: var(--groomit-gray) !important;
  font-size: 14px;
  transition: 0.2s ease all;
  pointer-events: none;
  padding: 0 0px;
}

/* When input is focused or not empty */
.input-control:not(:-moz-placeholder) + label {
  top: 7px;
  left: 15px;
  font-size: 12px;
}
.input-control:focus + label,
.input-control:not(:placeholder-shown) + label {
  top: 7px;
  left: 15px;
  font-size: 12px;
}

.select-dropdown {
  width: 100%;
  padding: 11px 9px 6px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  margin-top: 13px;
}

.select-label {
  width: 80%;
  position: absolute;
  left: 9px;
  top: 18px;
  color: var(--groomit-gray) !important;
  background: #FBFBFB;
  padding: 1px 4px;
  transition: 0.2s ease all;
  pointer-events: none;
}

/* Float the label on focus or valid (non-empty) */
.select-dropdown:focus + label,
.select-dropdown:valid + label {
  top: 7px;
  left: 8px;
  font-size: 12px;
  color: #333;
}

.select-dropdown:focus-visible {
  outline: none;
}

/* Optional arrow icon */
.form-group-select::after {
  content: "";
  background-image: url("/v7/images/webapp/icons/arrow-right-blackr.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  width: 16px !important;
  height: 16px !important;
  position: absolute !important;
  right: 12px !important;
  top: 57% !important;
  transform: translateY(-50%) rotate(90deg) !important;
  pointer-events: none !important;
}

/* Hide placeholder option from dropdown */
.select-dropdown .option[disabled] {
  display: none;
}

.textarea {
  width: 100%;
  padding: 0px 12px 12px 12px;
  resize: vertical;
  background: none;
  resize: none;
  margin-top: 25px;
  min-height: 33px;
}

.textarea:not(:-moz-placeholder) + label {
  top: 7px;
  left: 13px;
  font-size: 12px;
  color: #333;
}

.textarea:focus + label,
.textarea:not(:placeholder-shown) + label {
  top: 7px;
  left: 13px;
  font-size: 12px;
  color: #333;
}

.textarea:focus-visible {
  outline: none;
}

.grid-template-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-template-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

/** End Floating **/
.profile-header {
  width: 100%;
  height: 76px;
  border-bottom: 1px solid #C9CFD4;
  background: #E7E7E7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.sidebar-mobile {
  width: 100%;
  background: #FFF;
  display: flex;
}

.sidebar-mobile-link {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 8px;
  position: relative;
}

.sidebar-mobile-link h5 {
  color: #2E2E2E;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  width: 100%;
  transition: color 0.2s ease;
}

.sidebar-mobile-link h5.active {
  font-weight: 700;
}

.sidebar-mobile-link h5.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FF314A;
}

/* Close icon */
.btn-close-header {
  background: transparent;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-close-header img {
  width: 20px;
  height: 20px;
}

/* App logo */
.app-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

/* App info text */
.app-name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.rating-box {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: #000;
  padding: 5.348px;
  border-radius: 5.348px;
  background: #FFF;
}

.star-box img {
  width: 15px;
  height: 15px;
  margin-right: 4px;
}

.star-box span {
  font-weight: 600;
}

/* Get App button */
.btn-get-app {
  background: #FF314A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
}

.btn-get-app:hover {
  background: #e4342a;
}

.sidebar-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 146px;
  height: 43.8px;
  flex-shrink: 0;
  margin: 0 auto;
}

.left-20 {
  left: 20px;
}

@media (max-width: 767px) {
  .package-services {
    flex-direction: row;
  }
  .groomers-section {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-6 {
    padding: 0;
  }
  html,
  body {
    /* overflow: auto; */
    /* enable normal scroll */
  }
  .groomer-profile-container {
    height: 700px;
    overflow-y: auto;
  }
  .sidebar-container {
    position: relative;
    width: 100%;
    flex: unset;
    margin-bottom: 1.5rem;
  }
  .sidebar-container .wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .wrapper {
    padding: 0;
  }
  .main-content {
    margin-left: 0;
    /* height: auto; */
    /* overflow: visible; */
    padding: 1rem;
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* background: #fff; */
  }
  .small-container {
    width: 90%;
    margin: auto;
  }
  .review-box {
    padding: 15px;
    gap: 14px;
  }
  .review-header {
    flex-direction: column;
    gap: 10px;
  }
  .review-pet {
    align-self: flex-start;
    text-align: left;
  }
  .image-item {
    width: 165px;
    height: 120px;
  }
  .pet-icon {
    width: 36px;
    height: 36px;
  }
}
/* Responsive adjustments */
@media (max-width: 991px) {
  .profile-box {
    padding: 20px 0px 0 20px;
  }
  .package-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .profile-box h5 {
    font-size: 20px;
  }
  .abosulte-img {
    right: 15px;
    top: 15px;
  }
  .service-box {
    margin-bottom: 15px;
    gap: 0;
  }
  .services {
    border: 0 !important;
    padding: 0 !important;
  }
  .pricing {
    border: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 1rem !important;
  }
  .portfolio {
    padding-top: 1rem !important;
    padding-bottom: 3rem !important;
  }
  .reviews {
    padding-top: 1rem !important;
    margin-bottom: 130px;
  }
  .review-text {
    margin-top: 8px;
  }
  .custom-select-placeholder {
    font-size: 13px;
  }
  .dropdown-item {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .service-box img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .custom-select-placeholder {
    font-size: 13px;
  }
  .dropdown-item {
    font-size: 14px;
    padding: 9px 0;
  }
}
@media (max-width: 400px) {
  .custom-select-placeholder {
    font-size: 12px;
  }
  .dropdown-item {
    font-size: 13px;
  }
}
/*# sourceMappingURL=groomers-profile.css.map */