@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-red: #d31145;
  --color-white: #ffff;
  --color-black: #0000;
  --color-gray: #797979;
}

body {
  /*width: 100%;*/
  /*height: 100vh;*/
  font-family: "Roboto", sans-serif;
  position: static;
}

a {
  text-decoration: none;
}

select {
  text-indent: 1px;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 3px 5px;
  line-height: normal;
  border-style: none;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  color: #3f3e3e;
  box-shadow: 0 0;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

/* for remove the number right side spin icon Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* dropedit*/

.dropedit {
  width: 100%;
  border: none;
}

/* Firefox */

.booking-section {
  background: #cecece;
  width: 100%;
  height: 100%;
  height: auto;
  padding-block: 91px;
  padding-inline: 78px;
  height: 100%;
}

.booking-bg-frame {
  width: 100%;
  background: var(--color-white);
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-top: 97px;
}

.header-tab {
  background-color: var(--color-white);
  padding: 0px 74px;
  box-shadow: 0px 7px 12px rgba(133, 131, 131, 0.25);
  position: absolute;
  width: 91.15%;
  left: 50%;
  top: -20px;
  transform: translate(-50%, -25%);
  border-radius: 10px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.nav_pills_service {
  padding-top: 17px;
}

.header-tab li.nav-item {
  text-align: center;
  margin-right: 66px;
}

.header-tab .nav-pills .nav-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
}

.header-tab .nav-link {
  color: #000;
  position: relative !important;
}

.header-tab .nav-pills .nav-link.active {
  color: var(--color-red);
  background: none;
}

.header-tab .nav-pills .nav-link.active i {
  color: var(--color-red);
}

.header-tab .nav-pills .nav-link.active:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  bottom: 0;
  background-color: var(--color-red);
}

.header-tab .icon-box {
  width: 50px;
  height: 50px;
  font-size: 24px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0px 0px 12px 4px rgb(0 0 0 / 8%);
}

.header-tab .icon-box img:nth-child(2),
.header-tab .nav-pills .nav-link.active .icon-box img:first-child {
  display: none;
}

.header-tab .nav-pills .nav-link.active .icon-box img:nth-child(2) {
  display: inline-block;
}

.specing {
  padding: 0.5rem 0.4rem;
}

.header-tab .nav-item p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.service-section {
  padding: 10px 105px 125px 105px;
  position: relative;
}

.service-section .Book-btn-section {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  transform: translate(-50%, 50%);
}

.service-section .Book-btn-section .btn {
  width: 200px;
  padding: 12px 20px;
  border-radius: 28px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-inline: 10px;
}
.service-section .Book-btn-section .btn:hover {
  width: 200px;
  padding: 12px 20px;
  border-radius: 28px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-inline: 10px;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    transform: scale(1.3);
  }
}

.service-section .Book-btn-section .add-to-cart-btn {
  background-color: #333;
}

.service-section .Book-btn-section .book-btn {
  background-color: var(--color-red);
}

.service-section .service-dropdown {
  border-style: none;
  font-size: 17px;
  font-weight: 600;
  width: 99%;
  outline: none;
  color: #3f3e3e;
  box-shadow: 0 0;
  -webkit-appearance: none;
}

.service-section .service-dropdown option:checked {
  background-color: rgb(193, 193, 193);
}

.service-section .service-dropdown option {
  font-size: 18px;
  padding: 5px;
}

.service-section .services-issue-section {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  width: 100%;
}

/* .service-section .service-first {
  position: relative;
  margin-block: 8px;
} */

.service-divider:last-child {
  border-right: none;
  width: 285px;
}

.service-divider:nth-child(4) {
  width: 246px;
}

.service-divider:nth-child(2) {
  width: 362px;
}

.service-divider:nth-child(3) {
  width: 347px;
}

.nav_pills_service {
  flex-wrap: nowrap;
  overflow: auto;
}

.service-section .service-head {
  display: flex;
  margin-top: 19px;
  align-items: center;
  font-size: 18px;
  color: #3f3e3e;
  position: relative;
}

.service-section .service-head i {
  font-size: 14px;
  color: #7b7979;
}

.service-section .service-head span {
  margin-right: 15px;
}

.service-divider {
  padding-left: 30px;
  width: 290px;
  /*border-right: 1px solid #D9D9D9;*/
}

.service-section .date-field input#dt1 {
  border: none;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}

.service-section .date-field input#dt1:focus-visible {
  border: none;
  outline: none;
}

.service-subsection {
  margin: 30px 0 0;
}

.service-subsection-inner {
  border: 1px solid rgb(182, 180, 180);
  border-radius: 6px;
  display: flex;
  align-items: center;
  width: 100%;
}

.service-subsection p {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 500;
  word-wrap: break-word;
  /* //max-width: 192px; */
}

.service-subsection .serive-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.service-subsection .subservices-issue-section {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  width: 100%;
}

.border-right {
  border-right: 1px solid #d9d9d9;
}

.serive-question .question-radio .form-check-input:checked {
  background-color: #d31145;
  border-color: #d31145;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
  font-size: 17px;
}

.service-subsection .serive-question:nth-child(1),
.service-subsection .serive-question:nth-child(2) {
  margin-bottom: 20px;
}

.question-dropdown select.form-select {
  padding-left: 10px;
  width: 235px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  max-height: 32px;
}

.question-dropdown select.form-select:focus {
  box-shadow: none;
  border: 1px solid #00000038;
}

.subservices-issue-section .question-services {
  padding-inline: 20px;
  padding-block: 15px 0px;
}

.subservices-issue-section .question-services:nth-child(2) {
  border-right: none;
}

.service-subsection .question-radio {
  display: flex;
  align-items: center;
  padding-left: 3px;
  width: 235px;
  font-size: 14px;
}

.service-subsection .question-radio .form-check:nth-child(1) {
  margin-right: 20px;
}

.service-subsection .serive-question p {
  margin-right: 20px;
}

.service-subsection .service-form-area {
  padding: 10px;
  /*border: 1px solid #D9D9D9;*/
  height: 100%;
  border-radius: 6px;
}

.service-subsection .service-form-area textarea {
  background-color: #f3f3f3;
  /*border: none;*/
  height: 144px;
  overflow: hidden;
  padding: 10px;
  height: 100%;
  resize: none;
  /*height:200px;*/
  overflow-y: scroll;
}

.service-subsection .service-form-area textarea::placeholder {
  color: rgb(141, 141, 141);
  font-size: 12px;
}

.booking-bg-frame .emergency-call-btn {
  margin-right: 19px;
}

.booking-bg-frame .emergency-call-btn a {
  padding: 14.5px 30.34px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
}

.Requested-service-btn a {
  padding: 16px 20px;
  background: #c5c3c3;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
  text-wrap: nowrap;
}
.booking-bg-frame .Requested-service-btn {
  margin-right: 18px;
}

.booking-bg-frame .emergency-call-btn img {
  margin-right: 20px;
}

.booking-bg-frame .cart-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-bg-frame .cart-section .cart-btn {
  background-color: #d31145;
  padding: 14px;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  text-align: center;
  position: relative;
}

span.count {
  position: absolute;
  top: 0;
  right: -6px;
  z-index: 2;
  font-size: 12px;
  border-radius: 5px;
  background: #333333;
  width: 18.31px;
  height: 18.31px;
  color: white;
}

.booking-bg-frame .cart-section .dropdown-toggle::after {
  display: none;
}

.booking-bg-frame .cart-section .dropdown-menu.show {
  display: block;
  position: absolute;
  right: 0;
  bottom: -26px;
  width: 257px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: none;
  padding: 20px;
  /* text-wrap: wrap; */
  transform: translate(966px, 101px) !important;
  text-align: center;
}

.booking-bg-frame .cart-section .dropdown-menu.show h6 {
  font-size: 18px;
  margin-bottom: 20px;
}

.booking-bg-frame .cart-section .dropdown-menu.show .signup-btn a,
.signin-btn a {
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 12px;
  padding: 10px 20px;
  border-radius: 12px;
}

.booking-bg-frame .cart-section .dropdown-menu.show .signin-btn {
  margin-bottom: 24px;
}

/* customer-mobile-verify-model */

.mobile-verify .modal-header {
  border: none;
  padding: 0px;
  margin-bottom: -27px;
}

.mobile-verify .modal-content {
  padding: 24px;
  border-radius: 12px;
  border: none;
}

.mobile-verify .modal-body {
  padding: 0px;
  border: none;
  margin-bottom: 32px;
}

.mobile-verify .modal-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.mobile-verify .modal-body p {
  font-size: 14px;
  margin-bottom: 20px;
}

.mobile-verify .account-number {
  padding: 12px;
  border-radius: 10px;
}

.mobile-verify .modal-footer {
  border-top: 0px;
  width: 100%;
  padding: 0px;
  gap: 13px;
  justify-content: center;
}

.mobile-verify .modal-footer button {
  width: 48%;
  margin: 0;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
}

.mobile-verify .modal-footer .btn-confirm {
  color: var(--color-white);
  background: var(--color-red);
}

.mobile-verify .modal-footer .btn-cancel {
  color: #000;
  border: 1px solid #c0c0c0;
}

.mobile-verify .modal.show .modal-dialog {
  transform: none;
  width: 400px;
}

/* customer-mobile-verify-model */

/* customer-mobile-verify-model */

.customer-info .modal-header {
  border: none;
  padding: 0px;
  margin-bottom: 8px;
}

.customer-info .modal-content {
  padding: 24px;
  border-radius: 12px;
  border: none;
}

.customer-info .modal-body {
  padding: 0px;
  border: none;
}

.customer-info .modal-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.customer-info .modal-body p {
  font-size: 14px;
  margin-bottom: 20px;
}

.customer-info input[type="text"],
.customer-info input[type="number"] {
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 0;
}

.select-state.form-select.form-control {
  color: #6c757d;
  opacity: 1;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 0px;
}

.customer-info .modal-footer {
  border-top: 0px;
  width: 100%;
  padding: 0px;
  gap: 24px;
}

.customer-info .modal-footer button {
  width: 48%;
  margin: 0;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
}

.customer-info .modal-footer .btn-confirm {
  color: var(--color-white);
  background: var(--color-red);
}

.customer-info .modal-footer .btn-cancel {
  color: #000;
  border: 1px solid #c0c0c0;
}

.customer-info .modal.show .modal-dialog {
  transform: none;
  width: 100%;
  max-width: 674px;
}

/* customer-info-model */

/* add to cart model pop up */

.add-to-cart .added_service_section {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 25px;
}

.add-to-cart .serivce-image {
  width: 70px;
  border-radius: 12px;
  margin-right: 12px;
}

.add-to-cart .serivce-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 70px;
}

.added_service-content p {
  font-size: 12px;
  margin-bottom: 2px;
}

.added_service-content h6 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0e1e1e;
  margin-top: 6px;
}

.add-to-cart .modal-header {
  border: none;
  padding: 0px;
  margin-bottom: 8px;
  position: absolute;
  top: 20px;
  z-index: 2;
  right: 21px;
}

.add-to-cart .modal-header .button-close {
  background-color: #fa1c1c;
  color: white;
  opacity: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  font-size: 25px;
  justify-content: center;
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.add-to-cart .modal-content {
  z-index: 99999 !important;
  /*margin-top: 10em;*/
  padding: 24px;
  border-radius: 12px;
  border: none;
}

.add-to-cart .modal-body {
  padding: 20px;
  border: none;
  width: 100%;
}

.add-to-cart .modal-footer {
  width: 100%;
  justify-content: space-between;
}

.add-to-cart .modal-footer .btn {
  width: 26%;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
}

.add-to-cart .modal-footer .btn-yes {
  color: var(--color-white);
  background: var(--color-red);
}

.add-to-cart .modal-footer .btn-view-cart {
  color: #ffffff;
  border: 1px solid #c0c0c0;
}

.calendar-container {
  height: auto;
  width: 400px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4);
  padding: 20px 20px;
}

.calendar-week {
  display: flex;
  list-style: none;
  align-items: center;
  padding-inline-start: 0px;
}

.calendar-week-day {
  max-width: 57.1px;
  width: 100%;
  text-align: center;
  color: #525659;
}

.calendar-days {
  margin-top: 30px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding-inline-start: 0px;
}

.calendar-day {
  text-align: center;
  color: #525659;
  padding: 10px;
}

.calendar-month-arrow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-month-year-container {
  padding: 10px 10px 20px 10px;
  color: #525659;
  cursor: pointer;
}

.calendar-arrow-container {
  margin-top: -5px;
}

.calendar-left-arrow,
.calendar-right-arrow {
  height: 30px;
  width: 30px;
  border: none;
  border-radius: 10px;
  border: 1px solid gainsboro;
  cursor: pointer;
  color: #525659;
  background-color: transparent;
}

.calendar-today-button {
  margin-top: -10px;
  border-radius: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #525659;
  padding: 5px 10px;
}

.calendar-today-button {
  height: 27px;
  margin-right: 10px;
  background-color: #ec7625;
  color: white;
}

.calendar-months,
.calendar-years {
  flex: 1;
  border-radius: 10px;
  height: 30px;
  border: none;
  cursor: pointer;
  outline: none;
  color: #525659;
  font-size: 15px;
  font-weight: 700;
}

.calendar-day-active {
  background-color: #ec7625;
  color: white;
  border-radius: 10px;
}

.calendar-day.selected {
  background-color: #00a698;
  color: white;
  border-radius: 10px;
}

.calendar-day.selected2 {
  background-color: #ff9400;
  color: white;
  border-radius: 10px;
}

select::-ms-expand {
  display: none;
}

.daysoffers {
  font-size: 14px;
  justify-content: center !important;
}

.greendiscount {
  background-color: #00a698;
  padding: 12px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  display: inline-block;
}

.orangediscount {
  background-color: #ff9400;
  aspect-ratio: 1/1;
  padding: 12px;
  display: inline-block;
  border-radius: 6px;
}
.reddiscount {
  background-color: var(--color-red);
  padding: 12px;
  display: inline-block;
  border-radius: 6px;
}

span.currentdate {
  border-style: none;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  outline: none;
  color: #3f3e3e;
  cursor: pointer;
}

.cart-btn.dropdown-toggle.carethide:after {
  display: none;
}

.dropdown-menu.overflow.show {
  display: block;
  overflow: hidden;
}

.datepicker-days .disabled.day {
  color: #d3d3d3;
  border: none;
  background: none !important;
}
.datepicker-days .disabledCross.day {
  color: #d3d3d3 !important;
  border: none;
  background: none !important;
}

input#datepicker:focus-within {
  outline: none;
}

.datepicker-days tr td,
.datepicker-days tr th {
  padding: 5px 11px;
  height: 40px;
  width: 47px;
  display: table-cell;
  justify-content: center;
  align-items: center;
  margin: 2px;
  border: none;
  border: 1px solid white;
  vertical-align: middle;
  text-align: center;
}

.datepicker-days tr:nth-child(2) th {
  width: 43px;
}

.datepicker-switch {
  width: calc(100% - 98px) !important;
}

.discount_section {
  display: block !important;
  font-size: 14px;
}
.discount_section .daysoffers {
  justify-content: space-around !important;
}
.datepicker-days .day {
  border-radius: 10px;
  /*border:1px solid;*/
  background: #f5f5f5;
}

.datepicker-days .today.day {
  color: #001580;
  /*border: 1px solid #001580;*/
  background: #e9e9e9;
}

.datepicker-days .day:hover {
  opacity: 0.8;
  user-select: none;
  cursor: pointer;
}

.datepicker-days .active.day {
  background: #001580;
  color: #fff;
}

.datepicker-days .day.discount-day-yellow {
  background: #ff9400;
  color: #fff;
}

.datepicker-days .day.discount-day-green {
  background: #00a698;
  color: #fff;
}

.datepicker-days .day.discount-day-red {
  background: #ff0000;
  color: #fff;
}

.datepicker.datepicker-dropdown {
  border-radius: 10px;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  z-index: 9999 !important;
}

.table-condensed > thead > tr:nth-child(2) > .prev {
  font-size: 0;
  background: url("../images/calenderprev.svg") center no-repeat;
  background-size: 8px;
}

.table-condensed > thead > tr:nth-child(2) > .next {
  font-size: 0;
  background: url("../images//calendernext.svg") center no-repeat;
  background-size: 8px;
}

.table-condensed > thead > tr:nth-child(2) > .datepicker-switch {
  text-align: center;
}

.datepicker-switch {
  pointer-events: none;
}

.niceTriggerBox {
  position: relative;
}

.niceTrigger {
  height: 100%;
  position: absolute;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
  top: 0px;
  left: 0px;
}

/*new*/

/* DatePicker select dropdown */

input#datepicker {
  border-radius: 3px;
  font-size: 20px;
  text-align: left;
  border: none;
  background: none;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  padding-block: 20px;
  box-shadow: 0 0;
}
.cursor {
  cursor: not-allowed;
}

/* DatePicker select dropdown */

/* Time slots discount 10% -------------------------------------Select option START*/
.custom-select .discount-yellow,
.custom-select .discount-green {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select .discount-yellow {
  color: #ff9400 !important;
}

.custom-select .discount-yellow::after,
.custom-select .discount-green::after {
  content: "";
  padding: 5px;
  border-radius: 3px;
  float: right;
}

.custom-select .discount-yellow::after {
  background-color: #ff9400;
}

/* Time slots discount 10% End */

/* Time slots discount 12% */
.custom-select .discount-green {
  color: #00a698 !important;
}

.custom-select .discount-green::after {
  background-color: #00a698;
}

/* Time slots discount 12% End */
/* Time slots discount 10% -------------------------------------Select option END*/

.unclick {
  pointer-events: none;
  background-color: rgba(192, 192, 192, 0.493);
  color: black !important;
}

/* Cart pop up CSS  */
.availabe_discount-1 p {
  margin: 0;
}

.availabe_discount-1 p:nth-child(1) {
  font-size: 13px;
  font-weight: 400;
  color: #d31145;
}

.availabe_discount-1 p:nth-child(2) {
  font-size: 12px;
  font-weight: 400;
  color: #676666;
}

button.remove-service-btn {
  background-color: #f00;
  color: #fff;
  padding: 4px 8.5px;
  border-radius: 6px;
  font-size: 12px;
  border: none;
}

button.remove-service-btn img {
  margin-right: 0px;
}

.add-to-cart .modal.show .modal-dialog {
  max-width: 40%;
  margin: 0 auto;
}

.add-to-cart .another-services p {
  text-align: center;
  margin-bottom: 20px;
}

.cart-service-divider {
  margin-bottom: 20px;
}

/* Servises bundle with pop up CSS Start */
.services-bundle .services-frequently-section .services_request_head {
  margin-bottom: 13px;
  border-bottom: 1px solid #e3e3e3;
}

.services-bundle .services-frequently-section .services_request_head h5 {
  color: #494949;
  font-size: 20px;
  font-weight: 400;
}

.services-bundle .services-frequently-images-area {
  display: flex;
  /*align-items: center;*/
  justify-content: space-around;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.services-bundle .services-frequently-images-area .bundle-service-img-section {
  padding: 11px 25px 11px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-top: 14px;
}

.bundle-service-img-section .bundle-service-img {
  min-width: 113px;
  height: auto;
}

.bundle-service-img-section .bundle-service-img img {
  border-radius: 12px;
  min-height: 101px;
  object-fit: cover;
  max-width: 113px;
}

.services-bundle
  .services-frequently-images-area
  .bundle-service-img-section
  .bundle-service-heading {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 5px;
}

.services-bundle
  .services-frequently-images-area
  .bundle-service-img-section
  p {
  margin-bottom: 0px;
  font-size: 12px;
  color: #7b7979;
  word-wrap: break-word;
  max-width: 118px;
}

.services-frequently-section .bundle-service-check {
  position: absolute;
  top: -20px;
  left: -12px;
}

.services-frequently-section .bundle-service-check input:checked {
  background-color: #00ff40;
  border: 2px solid #00ff40;
}

.services-frequently-section .bundle-service-check .form-check-input:focus {
  border-color: #656565;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #00000000;
}

.services-frequently-section .bundle-service-check input {
  width: 24px;
  height: 24px;
  border: 2px solid #656565;
}

.services-bundle .services-frequently-images-area i {
  font-size: 25px;
  color: var(--color-red);
}

.view-cart-button {
  display: flex;
  justify-content: space-between;
}

.view-cart-button .btn {
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #d31145;
  font-weight: 500;
}

.bundle-add-cart-section {
  text-align: center;
}

.bundle-add-cart-section .add-to-cart-btn {
  background-color: #333;
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 62px;
  border: none;
  border-radius: 8px;
}
.bundle-discount p {
  margin-bottom: 0px;
  color: var(--color-red);
  font-size: 16px;
}

/* sidebar CSS start */
.Add_to_cart_section .services-frequently-images-area {
  margin-bottom: 0px;
  margin-top: 10px;
}

.services-frequently-images-area {
  overflow: auto;
}

/* width */
.services-frequently-images-area::-webkit-scrollbar {
  width: 20px;
  height: 7px;
}

/* Track */
.services-frequently-images-area::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.services-frequently-images-area::-webkit-scrollbar-thumb {
  background-color: var(--color-red);
  border-radius: 10px;
}

/* Handle on hover */
.services-frequently-images-area::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

/* sidebar CSS end */

/* Servises bundle with pop up CSS End */

/* Select Option Dropdown customize --------------------------------------------------------------*/
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div {
  font-weight: 500;
  padding: 10px 18px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  color: #616161;
}

.select-selected {
  color: #000000;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  border: none;
  font-weight: bold;
  padding-block: 20px;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Select Option Dropdown customize */

.service-section .fade {
  opacity: 1;
}

.modal.fade.show {
  opacity: 1;
  background: rgb(130 123 121 / 50%);
  padding-top: 130px;
  padding-bottom: 31px;
  z-index: 999;
}

.modal-backdrop {
  z-index: 0;
}
.modal-backdrop .fade {
  opacity: 1;
}

.modal-backdrop.fade.show {
  opacity: 1;
  background: rgb(130 123 121 / 50%);
}

.messageError {
  color: red;
}

/* For date and time span */
.custom-date {
  padding-left: 14px;
}

.service_zip_code {
  position: relative;
}

.service_zip_code img {
  position: absolute;
  right: 20px;
  top: 3px;
  display: none;
}

.contact {
  position: relative;
}

.contact img {
  position: absolute;
  right: 20px;
  top: 3px;
  display: none;
}

.billing_zip_code {
  position: relative;
}

.billing_zip_code img {
  position: absolute;
  right: 20px;
  top: 3px;
  display: none;
}
.zip_code {
  position: relative;
}

.zip_code img {
  position: absolute;
  right: 20px;
  top: 3px;
  display: none;
}

/* ziploader*/
span.spinner-border.spinner-border-sm {
  position: absolute;
  right: 27px;
  top: 6px;
  display: none;
}

/*getnameloader*/
#spinner-v2 {
  position: absolute;
  right: 10%;
  top: 76%;
  display: none;
  justify-content: center;
}

/*createcustomerloader*/
#spinner-v3 {
  position: absolute;
  right: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  display: none;
  justify-content: center;
}

#spinner-v26 {
  position: absolute;
  right: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  display: none;
  justify-content: center;
}

#spinner-v25 {
  position: absolute;

  left: 36em;

  top: 20em;

  height: 35px;

  width: 35px;

  display: none;
}

/* Tooltip CSS start */

input#radio_yes {
  width: 78%;
}

input#radio_no {
  width: 93%;
}

/*dropdown arrow */
.dropdown-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  /* -webkit-appearance: none; */

  /* appearance: none; */
  /* border-radius: 0.25rem; */
  /* transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; */
}

a.remove {
  text-decoration: none !important;
  background-color: #000 !important;
  color: #fff !important;
  width: auto !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  height: 3em !important;
  font-weight: 500 !important;
  border: none !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
}

a.remove:hover {
  color: #fff !important;
  background: #000 !important;
}

#pageloader {
  background: rgba(255, 255, 255, 0.8);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
}

#pageloader img {
  left: 50%;
  margin-left: -32px;
  position: absolute;
  top: 50%;
}

#pageloader1 {
  background: rgba(255, 255, 255, 0.8);
  display: none;
  width: 100%;
  z-index: 9999;
  top: 0;
}

#pageloader1 img {
  left: 50%;
  margin-left: -32px;
  position: absolute;
  top: 50%;
}

/* Thank You Pop-Up Madal */
.thank-you-popup .modal-header {
  display: flex;
  justify-content: end;
  border: none;
}
.thank-you-popup .modal-header .button-close {
  color: #ffffff;
  background: #f04d23;
  border: none;
  padding: 3px 10px;
  border-radius: 50%;
  margin: 0px;
}
.thank-you-popup .modal-dialog {
  max-width: 18%;
  margin: 0 auto;
}
.thank-you-popup .modal-dialog .modal-content {
  border-radius: 30px;
}

.green_time {
  color: green;
}

.red_time {
  color: red;
}

.yellow_time {
  color: #ff9400;
}
.single_add_to_cart_button:before {
  display: none;
}
.bg-blck {
  background-color: #333 !important;
}
.selected-service {
  margin-bottom: 15px;
  border-bottom: 1px solid #e3e3e3;
}
.selected-service h5 {
  color: #494949;
  font-size: 20px;
  font-weight: 400;
}
span.reddiscount {
  background-color: red;
  aspect-ratio: 1/1;
  width: 30px;
  display: inline-block;
  border-radius: 10px;
}

.button-close {
  background-color: #fa1c1c;
  color: white;
  opacity: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  font-size: 25px;
  justify-content: center;
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

/* bundle screen remove button */
.remove-service-btn-single {
  background: #333;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  float: right;
  padding: 5px 10px;
  border-radius: 6px;
  outline: navajowhite;
  border: none;
}

.remove-service-btn-single img {
  padding-right: 5px;
}

/* OTP VERIFICATION CSS START */

.otp-input-fields {
  width: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.otp-input-fields input {
  height: 40px !important;
  width: 40px;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid var(--color-gray);
  text-align: center;
  outline: none;
  font-size: 16px;
  /* Firefox */
}
.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.otp-input-fields input[type="number"] {
  --moz-appearance: textfield;
}
.otp-input-fields input:focus {
  border-width: 2px;
  border-color: #287a1a;
  font-size: 20px;
}

.result {
  max-width: 400px;
  margin: auto;
  padding: 24px;
  text-align: center;
}
.result p {
  font-size: 24px;
  font-family: "Antonio", sans-serif;
  opacity: 1;
  transition: color 0.5s ease;
}
.result p._ok {
  color: green;
}
.result p._notok {
  color: red;
  border-radius: 3px;
}

/* OTP VERIFICATION CSS END */

.displayNone {
  display: none;
}

.feedbackbtncss {
  border: 2px solid transparent;
  padding: 0.5em 5em;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  color: white;
  background-color: #333;
  transition: all 0.1s ease-in-out;
}

.inputBorderRed {
  border: 1px solid #d31145;
  border-radius: 4px;
  box-shadow: 0 0 0.25em 0.25em rgba(0, 0, 0, 0.25);
}

.select-dropdown__list-times:focus {
  outline: 0;
}

.swal2-html-container {
  color: red !important;
}

.datepicker {
  z-index: 9999;
}

/*.service-size{*/
/*        font-size: inherit !important;*/
/*}*/

#availabletime:disabled {
  background-color: white !important;
  margin-top: -8px !important;
}
input#datepicker:disabled {
  background-color: white !important;
  margin-top: -6px !important;
}

#issue-service-select-box:disabled {
  background-color: white !important;
}

#sort-issue-service-select-box:disabled {
  background-color: white !important;
}

#cart_discl {
  font-size: 15px;
  font-style: italic;
  color: grey;
}

.readonly {
  pointer-events: none;
}

#emergency-btn {
  padding: 0px 12px;
  background: #d31145;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
  margin: 6px;
  display: flex;
  flex-wrap: nowrap;
}

#emrg-text {
  font-size: 13px;
  margin: 3px !important;
  margin-bottom: 0 !important;
}
#emrg-num {
  margin: -5px 0px 0px 0px !important;
  max-width: 150px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
}
#emergency-btn {
  width: 225px !important;
  height: 54px;
}

#emrIcon {
  margin-right: 7px;
}
.phone-icon {
  font-size: 44px;
  margin-top: 17px;
  margin-top: 7px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  #emrg-num {
    margin: 0 !important;
    font-weight: 600;
    font-size: 19px;
    line-height: 12px;
    letter-spacing: 2px;
  }
  #emrg-text {
    font-size: 13px;
    margin: 3px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 772px) and (max-width: 991px) {
  #emrg-num {
    margin: 0 !important;
    font-weight: 600;
    font-size: 19px;
    line-height: 12px;
    letter-spacing: 2px;
  }
  #emrg-text {
    font-size: 10px;
    margin: 3px !important;
    margin-bottom: 0 !important;
  }
  #emergency-btn {
    width: 205px;
    height: 44px;
  }
}

.disabledDiv {
  opacity: 0.2;
}

.logout {
  cursor: pointer;
  position: absolute;
  right: 30px;
}
a#log_out {
  cursor: pointer;
  position: absolute;
  right: 34px;
}
.service-first {
  position: relative;
}
.fontselect {
  position: absolute;
  top: -14px;
  right: 9px;
  font-size: 18px;
  color: green;
}
.fontdate {
  position: absolute;
  top: 8px;
  right: 9px;
  font-size: 18px;
  color: green;
}
.fonttime {
  position: absolute;
  top: 8px;
  right: 9px;
  font-size: 18px;
  color: green;
}
.fontquestion {
  position: absolute;
  top: 8px;
  color: green;
  font-size: 20px;
  right: 5px;
}
/*.fontquestion {*/
/*    position: absolute;*/
/*    top: 127px;*/
/*    color: green;*/
/*    font-size: 20px;*/
/*    right: 5px;*/
/*}*/
.inputBorderRed {
  border: 1px solid #d31145;
  border-radius: 4px;
  box-shadow: 0 0 0.25em 0.25em rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid #d31145 !important;
  border-right: 1px solid #d31145 !important;
}
#questions {
  position: relative;
}
/*.fontquestion{*/
/*    position: absolute;*/
/*    top: 14px;*/
/*    right: 56px;*/
/*    font-size: 18px;*/
/*    color:green; */
/*}*/

select#homeage {
  background: #fff;
  padding: 5px;
  appearance: auto;
}
div#ques_div {
  display: flex;
  align-items: center;
}
.subservices-issue-section .question-services {
  display: flex;
  align-items: start;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}
.service-subsection .serive-question {
  align-items: start !important;
  flex-direction: column;
  width: 50% !important;
}
.service-subsection .service-form-area {
  padding: 10px 0 !important;
}
div#dateTimeDiv {
  display: flex;
  align-items: center;
  /*border-left: 1px solid #ddd;*/
}

input.input_add {
  width: 100%;
}
.additional-address .modal-body p {
  font-size: 14px;
  margin-bottom: 3px;
}

.service-address-confirm-btn {
  color: var(--color-white);
  background: var(--color-red);
}
.service-section .service-divider {
  padding-left: 0px;
}
.service-section .service-divider select {
  padding-left: calc(0.75rem + 30px);
}

#ques_div.inputBorderRed #static_questions {
  pointer-events: unset;
}
#ques_div #static_questions {
  /* //pointer-events: none; */
  padding: 10px 20px;
}
div#ques_div {
  margin-left: 10px;
  padding: 0 !important;
  width: calc(50% - 10px);
}
#customer_info .modal-body input[type="text"],
#customer_info .modal-body input[type="email"],
#customer_info .modal-body input[type="number"],
#customer_info .modal-body select,
.mobile-verify .account-number {
  min-height: 45px;
  font-size: 16px;
  color: black;
}
input#datepicker[disabled],
#availabletime[disabled] {
  background: #f5f5f5 !important;
  color: #bbbbbb;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}
.mobile-verify #address.modal.show .modal-dialog {
  width: 650px;
  max-width: 650px;
}
.mobile-verify #address.modal.show .modal-dialog .modal-header button.btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.mobile-verify #address.modal.show .modal-dialog .modal-header > div {
  position: relative;
}
.mobile-verify
  #address.modal.show
  .modal-dialog
  .modal-header
  > div
  p#customer_billing_address {
  padding-right: 70px;
}
.box-grey-cstm-mdl {
  flex-wrap: wrap;
  background: #e5e5e5;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 10px 10px;
}

.box-grey-cstm-mdl h6 {
  width: 100%;
  margin-bottom: 10px;
  padding: 0px 5px;
}
.checkbox-service-address {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 6px;
}
.checkbox-service-address span {
  font-size: 14px;
}
.checkbox-service-address input#copybillingtoservice {
  margin: 0;
  width: 16px;
  height: 16px;
}
#customer_info .modal-header .button-close {
  position: absolute;
  top: -6px;
  right: -5px;
  z-index: 9;
}
.modal-header .button-close {
  position: absolute;
  top: 12px;
  right: 13px;
  z-index: 9;
}

div#customer_info .modal-header {
  margin: 0;
  position: relative;
}
#customer_info .modal-footer button#form_reset {
  color: var(--color-red);
  border-color: var(--color-red);
}

.service-address-confirm-btn {
  color: var(--color-white);
  background: var(--color-red);
  padding: 0.4em;
  width: 48%;
}

button#cancel {
  border: 1px solid var(--color-red);
  justify-content: center;
  width: 48%;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #888;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.custom-scrollbar {
  width: 100%;
  height: 10em;
  overflow: auto;
  border: 1px solid #ccc;
  padding: 10px;
}

div#updateAddress .modal-body input[type="text"],
div#updateAddress .modal-body input[type="email"],
div#updateAddress .modal-body input[type="number"],
div#updateAddress .modal-body select,
.mobile-verify .account-number {
  min-height: 45px;
  font-size: 16px;
  color: black;
}
div#updateAddress .modal-body p#newresponseMessage {
  margin: 0;
}
div#updateAddress .modal-body {
  margin-bottom: 10px;
}
div#updateAddress .modal-dialog {
  width: 480px;
  max-width: 480px;
}
.x-bar-is-sticky.x-bar-outer-spacers {
  z-index: 99;
}
input#datepicker {
  border: 1px solid #d9d9d9;
  cursor: not-allowed;
  height: 45px;
}

select#availabletime {
  border: 1px solid #d9d9d9;
  margin: 0px 4px;
}
div#dateDiv {
  margin: 3px;
  padding: 2px;
}

.availabe_discount p {
  margin-bottom: 6px !important;
  font-size: 14px;
}
.col-full {
  background: #efefef;
  border-radius: 13px;
  padding: 12px;
}
@media (max-width: 576px) {
  a#log_out {
    cursor: pointer;
    position: unset;
  }
  .table-condensed tbody tr {
    display: table-row !important;
  }
  .fontselect {
    top: 8px;
  }
  .datepicker-days tr td,
  .datepicker-days tr th {
    padding: 2px 4px !important;
    height: 35px;
    width: 44px;
  }
  a.remove {
    font-size: 14px !important;
    gap: 4px !important;
    padding: 8px 22px 8px 12px !important;
  }
  div#updateAddress .modal-dialog {
    width: calc(100% - 10px) !important;
  }
}
span#responseMessage {
  font-size: 13px;
}
input#datepicker,
#availabletime {
  margin: 0;
}
.billing-address-model h5 {
  margin-top: 4px !important;
}
.add-new-services {
  margin-top: 0px !important;
  margin-bottom: 42px;
}
.new-account-creates {
  max-height: 520px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 26px 26px 15px 26px !important;
}
#cart-popup {
  padding: 0px !important;
}

/*10-04-2024 Css Here*/
#customer_info {
  z-index: 1000;
  padding: 53px 0px 0px !important;
}

#customer_info .modal-dialog {
  margin: 0px auto;
}

.new-account-creates {
  max-height: 100%;
  overflow: initial !important;
}

.customer-info .modal.show .modal-dialog {
  transform: none;
  width: 100%;
  max-width: 674px;
  margin: 0 auto;
}
/*12/04/24*/

.x-masthead,
.x-colophon {
  z-index: 9 !important;
}

div#wpadminbar {
  z-index: 999 !important;
}
.availabe_discount {
  margin-bottom: 20px;
}
.services-rating h4 {
  margin-top: 0;
}
.services_request_head h5 {
  margin-top: 6px;
}
.selected-service h5 {
  margin-top: 6px;
}

#textAreaDiv {
  padding: 10px !important;
}

span#respMessage {
  font-size: 12px;
}
p#ques_tion {
  display: inline-block;

  width: 23em;
}

.edit-button {
  float: right;
}
button#create_billing_add {
  background: #000;
  border: 1px solid #bbafaf;
}
button.swal2-confirm.swal2-styled.swal2-default-outline {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #000;
  color: #fff;
}
.class_disColor {
  color: #ccc;
}

@media (max-width: 1367px) {
  .service-section .service-divider select {
    padding-left: 8px;
    font-size: 14px;
    padding-right: 30px;
  }
  .ordered-services-section
    .ordered-services-area
    ul.bg-them
    li.nav-item
    a.nav-link,
  .ordered-services-section .ordered-services-area ul.bg-them a.nav-link {
    font-size: 14px;
    padding: 10px 15px;
  }
  a.remove {
    font-size: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  a.remove img {
    width: 12px;
  }
}

.question-dropdown select.form-select,
.serive-question#questions #ques-dynam,
.serive-question#questions #ques-dynam .question-dropdown {
  width: 100% !important;
}
.serive-question#questions #ques-dynam {
  margin-bottom: 4px;
}
#questions {
  padding: 4px 10px 0;
}
#User_feedback .modal-body #customer_feedback .action-group {
  gap: 20px;
  justify-content: space-between;
}
#User_feedback .modal-body #customer_feedback .action-group input {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 4px 10px;
  flex: 1;
}

.service-dropdown {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23fff '><polygon points='0,0 100,0 50,50'/></svg>")
    no-repeat;
  background-size: 16px;
  background-position: calc(100% - 20px) 17px;
  background-repeat: no-repeat;
}

span#spinner-v16 {
  margin-top: 135px;
}
.mobile-verify.remove-user {
  height: 37%;
}

/*24 July*/
div#datepicker_container_cstm {
  position: absolute;
  z-index: 99;
}
body:has(div#datepicker_container_cstm .datepicker-orient-top)
  div#datepicker_container_cstm {
  bottom: 100%;
}

div#datepicker_container_cstm .datepicker {
  position: static !important;
}
#cs-content .x-section:first-child {
  z-index: 2;
}

.inputBorderRed1 {
  background-color: #d31145;
  color: white !important;
  border-radius: 4px;
  box-shadow: 0 0 0.25em 0.25em rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid #d31145 !important;
  border-right: 1px solid #d31145 !important;
}
.redbg1 {
  background-color: #d31145;
  color: white !important;
}

.redbg1 option {
  background-color: #fff;
  color: black;
}

/* ----22-08-2024---- */
body.modal-open {
  position: fixed;
  width: 100%;
}

body:has(#add-to-cart.modal.show) {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.swal2-container.swal2-center.swal2-backdrop-show:has(
    .swal2-popup.swal2-modal.swal2-icon-warning.swal2-show
  ) {
  z-index: 9999;
}

/* 30-09-2024 */

@media (max-width: 767px) {
  .customer-info .modal.show .modal-dialog {
    height: unset !important;
  }
  #thank_you .modal-dialog.modal-dialog-centered {
    width: calc(100% - 70px) !important;
    max-width: 320px !important;
  }
  #updateAddress .modal-dialog.modal-dialog-centered {
    width: calc(100% - 10px);
  }

  #add-to-cart .view-cart-button .btn {
    padding: 10px 5px !important;
    flex: 1;
    margin: 0;
  }

  #add-to-cart .view-cart-button {
    gap: 6px !important;
  }
  #add-to-cart,
  #order_placed {
    padding-top: 0 !important;
  }
  .ordered-services-section
    .ordered-services-area
    ul.bg-them
    li.nav-item
    a.nav-link,
  .ordered-services-section .ordered-services-area ul.bg-them a.nav-link {
    padding: 10px 8px !important;
  }
  .ordered-services-section .ordered-services-area > ul.bg-them {
    padding-top: 30px !important;
  }
}

body:has(#order_placed.show) {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

#customer_address_view {
        max-height: 200px; 
        overflow-y: auto; 
    }

.twoBtnBox_Footer button {
    font-size: 13px;
}
#order_placed .modal-footer button {
    font-size: 13px;
}

.question-radio .form-check input {
    width: 16px !important;
    height: 16px;
}
