@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;
}

.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;
}

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

.w-40 {
  width: 40%;
}

/***  Custom classes ****/
.input-bg {
  background: var(--groomit-input-bg);
}

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

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

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

.font-light-gray {
  color: var(--groomit-border) !important;
}

.black-background {
  background: var(--groomit-black);
}

.recurring-color {
  color: var(--groomit-recurring);
}

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

.button-border {
  height: 50px;
  border: 1px solid var(--groomit-black);
  border-radius: 10px;
}

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

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

/** Floating **/
.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-shown) + 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: "▼";
  position: absolute;
  right: 10px;
  top: 26px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #777;
  font-size: 14px;
}

/* 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-shown) + 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;
}

/** End Floating **/
.rdio {
  position: relative;
}
.rdio input[type=radio] {
  opacity: 0;
}
.rdio label {
  padding-left: 10px;
  cursor: pointer;
}
.rdio label:before {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 1px;
  left: 0;
  content: "";
  display: inline-block;
  border-radius: 50px;
  border: 1px solid var(--groomit-gray);
  background: #fff;
}
.rdio input[type=radio] {
  margin: 0px;
}
.rdio input[type=radio]:disabled + label {
  color: #999;
}
.rdio input[type=radio]:disabled + label:before {
  background-color: var(--groomit-F2F2F2);
}
.rdio input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--groomit-red);
  border-radius: 50px;
}

.rdio-default input[type=radio]:checked + label:before {
  border-color: var(--groomit-red);
}

.rdio-primary input[type=radio]:checked + label:before {
  border-color: var(--groomit-red);
}
.rdio-primary input[type=radio]:checked + label::after {
  background-color: var(--groomit-red);
}

.include-text {
  top: 5px;
  right: 40px;
}

.height-57 {
  height: 57px;
}

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

.green-color {
  color: var(--groomit-green);
}

.error-color {
  color: var(--groomit-error-color);
}

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

.error-border {
  border: 1px solid var(--groomit-error-color) !important;
}

.button-small {
  height: 4.5rem;
  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);
}

.accordion-button-1 {
  background-color: transparent;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 7px 7px auto 7px;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: 20px;
  transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button-1::after {
  width: 13px;
  height: 13px;
  margin: 5px 0px auto 0px;
  background-size: 13px;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: transparent;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
  background-color: transparent;
}

.accordion-right-button {
  height: 35px;
  width: 35px;
}

.bg-f2f2f2 {
  background-color: var(--groomit-F2F2F2) !important;
}

.disabled-service {
  background-color: var(--groomit-F2F2F2) !important;
  color: var(--groomit-gray);
  border: 0px;
}

.form-switch .form-check-input {
  width: 38px;
  height: 22px;
}

.form-check-input-pet:checked {
  background-color: var(--groomit-red) !important;
  border-color: var(--groomit-red) !important;
}

.form-check-input-pet:focus {
  border-color: var(--groomit-red) !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(202, 49, 49, 0.25);
}

.gold-text {
  color: #ED9F00;
}

.silver-text {
  color: var(--groomit-gray);
}

.eco-text {
  color: #3064A3;
}

.delete-image {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--groomit-black);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 2px 7px;
}

.red-check-input[type=checkbox] {
  height: 20px;
  border-radius: 5px;
  width: 20px;
  border: 1px solid var(--groomit-gray);
}

.red-check-input:checked {
  background-color: var(--groomit-red);
  border-color: var(--groomit-red);
}

.red-check-input:disabled {
  background-color: #BEC3C5;
}

.line-container-100 {
  width: 100px;
  margin: 20px auto;
}

.line {
  flex-grow: 1;
  height: 1px;
  background-color: #C9CFD4;
}

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

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

.w-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.h-40px {
  height: 40px !important;
}

.border-last-child li {
  border-bottom: 1px solid var(--groomit-border);
}
.border-last-child li:last-child {
  border: 0px;
}

.nav-tabs .nav-link {
  background-color: var(--groomit-F2F2F2);
  border: 1px solid var(--groomit-border);
}

.nav-link:hover {
  color: var(--groomit-black);
}

.nav-tabs .nav-link.active {
  background-color: var(--groomit-black);
  height: 41px;
  border: 0px;
  color: #fff;
  font-weight: bold;
}

.nav-link.left-nav-button {
  border-radius: 10px 0px 0px 10px !important;
  -webkit-border-radius: 10px 0px 0px 10px !important;
  -moz-border-radius: 10px 0px 0px 10px !important;
}

.nav-link.right-nav-button {
  border-radius: 0px 10px 10px 0px !important;
  -webkit-border-radius: 0px 10px 10px 0px !important;
  -moz-border-radius: 0px 10px 10px 0px !important;
}

.arrow-updown {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow-updown.rotate {
  transform: rotate(180deg);
}

.fs-12px {
  font-size: 12px;
}

.fs-10px {
  font-size: 10px;
}

.floating-box {
  position: absolute;
  top: 0px;
  left: -10px;
  right: -10px;
  background: white;
  border: 0;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0.2s, visibility 0.5s ease 0.2s;
}

.floating-box.show {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

input:-webkit-autofill {
  background-color: #fff !important;
}

.d-package {
  background-color: #F2F2F2 !important;
  box-shadow: none;
}
.d-package .button-small, .d-package .mt-15 {
  display: none !important;
}

.groomer-details-arrow {
  margin-right: -8px;
  margin-top: -5px;
}

.groomer-view-details {
  padding-top: 5px;
  margin-right: -3px;
}

.mbsc-calendar-cell-inner .greyDay {
  background: none !important;
}

@media screen and (max-width: 768px) {
  .small-container {
    width: 90%;
    margin: auto;
  }
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.shake {
  animation: shake 0.4s;
}/*# sourceMappingURL=booking-flow.css.map */