body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend-Regular";
  font-size: 18px;
  background-color: #f8f9fa;
}

@font-face {
  font-family: "Lexend-Regular";
  src: url("/assets/fonts/lexend/Lexend-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Sidebar Styling*/
#wrapper {
  display: flex;
  align-items: stretch;
  transition: all 0.3s ease;
}

#sidebar-wrapper {
  position: fixed;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 121px;
  transition: all 0.3s ease;
  border: 1px solid lightgray;
  z-index: 30;
  /* Enable vertical scrolling */
}
#sidebar-wrapper .sidebar-text {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 500;
}
#sidebar-wrapper .list-group img {
  width: 30px;
  height: 30px;
}

#wrapper .sidebar-text {
  transition: all 0.3s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 80px;
}

#wrapper.toggled .sidebar-text {
  transition: all 0.3s ease;
  display: none;
}

#wrapper .sidebar-heading img {
  width: 50px;
  margin-bottom: 1px;
}

#wrapper.toggled .sidebar-heading img {
  margin-bottom: 6px;
}

.list-group-wrapper {
  flex-grow: 1;
  /* Allow list group to take available space */
  overflow-y: auto;
  /* Enable vertical scrolling */
}

.sidebar-heading {
  padding: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  /* Keep header fixed */
}

#wrapper.toggled .sidebar-heading img {
  width: 45px;
}

.dropdown-manage {
  transition: transform 0.3s ease;
}

#manageDropdown[aria-expanded=true] .dropdown-manage {
  transform: rotate(90deg);
}

.btn-group #manageDropdown {
  color: #B4966D;
}

.btn-group #manageDropdown:hover {
  color: #302312;
}

.btn-group #manageDropdown:focus {
  color: #302312;
}

#sidebar-toggle {
  color: #B4966D;
  background-color: antiquewhite;
}

#sidebar-toggle:hover {
  cursor: pointer;
  background-color: #B4966D;
  color: aliceblue;
}

#page-content-wrapper {
  width: 100%;
  /* padding: 20px; */
}

.sidebar-footer {
  margin-top: auto;
  text-align: center;
  padding: 20px;
  flex-shrink: 0;
  /* Keep footer fixed */
}

.sidebar-footer button {
  width: 100%;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    width: 121px;
  }
  #wrapper.toggled #sidebar-wrapper {
    width: 80px;
  }
}
#wrapper.toggled .navbar {
  margin-left: 80px;
}

#wrapper.toggled #salon_cards {
  margin-left: 80px;
}

#wrapper.toggled #salon_data {
  margin-left: 80px;
}

#wrapper.toggled .salon_listing_data {
  margin-left: 80px;
}

#wrapper.toggled .new_salon_form {
  margin-left: 80px;
}

#wrapper.toggled .survey_cards {
  margin-left: 80px;
}

#wrapper.toggled .fa-angle-right {
  line-height: 2;
}

#wrapper.toggled .navbar-dropdown.show {
  margin-right: 90px;
}

#wrapper.toggled .subscription-warning {
  margin-left: 80px;
}

.list-group-item {
  padding: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #302312;
}
.list-group-item .sidebar-icon {
  width: 24px;
  height: 24px;
  transition: stroke 0.3s ease;
}
.list-group-item .sidebar-icon .sidebar-svg-path {
  stroke: #FFDCAC;
  stroke-width: 2px;
  transition: stroke 0.3s ease;
}

.list-group .list-group-item:hover {
  cursor: pointer;
  background-color: #B4966D;
  color: #302312;
}

.list-group .list-group-item:hover list-group-item i {
  color: #302312;
}

/* Hover and focus states for list group item */
.list-group .list-group-item:hover,
.list-group .list-group-item:focus {
  cursor: pointer;
  background-color: #FFDCAC;
  /* Background color on hover/focus */
  color: #302312;
  /* Text color on hover/focus */
}

.list-group .list-group-item .sidebar-text,
.list-group .list-group-item .sidebar-text {
  /* Ensure sidebar text color initially*/
  color: #FFDCAC;
}

.list-group .list-group-item:hover .sidebar-text,
.list-group .list-group-item:focus .sidebar-text {
  color: #302312;
  /* Ensure sidebar text turns white on Hover*/
}

/* SVG path color change on hover and focus */
.list-group .list-group-item:hover .sidebar-svg-path,
.list-group .list-group-item:focus .sidebar-svg-path {
  stroke: #302312;
  /* SVG path color on hover/focus */
}

.sidebar-footer {
  background-color: #302312;
}

#sidebar-toggle {
  background-color: #302312;
  border: 1px solid #FFDCAC;
  padding: 3px 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
}

#sidebar-toggle:hover {
  color: #302312;
  background-color: #FFDCAC;
}

/* Transition for SVG paths */
.sidebar-icon .sidebar-svg-path {
  transition: stroke 0.3s ease;
}

.list-group-wrapper {
  background-color: #302312;
}

/* General styles */
.custom-dropdown {
  position: relative;
}

.custom-dropdown i {
  position: absolute;
  right: 10px;
  transition: transform 0.3s ease;
}

/* Dropdown menu styles */
.custom-dropdown-menu {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 400;
  color: #B4966D;
  position: absolute;
  z-index: 50;
  display: none;
  border: none;
  border-radius: 1px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.custom-dropdown-menu .dropdown-item:hover {
  color: #B4966D;
}

.custom-dropdown:hover .custom-dropdown-menu,
.custom-dropdown:focus-within .custom-dropdown-menu {
  display: block;
}

.fa-angle-right {
  line-height: 3;
  font-size: 15px;
}

.list-group-wrapper::-webkit-scrollbar {
  width: 0px;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just to visually hide scrollbar, it won't work in all browsers */
}

/* Hide scrollbar in other browsers (Firefox, IE, Edge) */
.list-group-wrapper {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  margin-left: 122px;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.navbar .navbar-brand {
  font-family: "Lexend-Regular";
  font-size: 22px;
  font-weight: 700;
  padding: 0 20px;
  color: #636363;
}
.navbar .navbar-dropdown-container {
  margin-left: auto;
}
.navbar .super_admin {
  margin-right: 140px;
  cursor: pointer;
}
.navbar .super_admin img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 5px;
}
.navbar .super_admin .text-admin div {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 500;
  color: #636363;
}
.navbar .super_admin .text-admin span {
  font-family: "Lexend-Regular";
  font-size: 13px;
  font-weight: 400;
  color: #A7A4A4;
}

/* Custom Dropdown Styling */
.navbar-dropdown {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
  margin-top: 5px;
}
.navbar-dropdown .dropdown-item {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 500;
  color: #636363;
  padding: 10px 20px;
}
.navbar-dropdown .dropdown-item .icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
  transition: stroke 0.3s ease;
}
.navbar-dropdown .dropdown-item .icon .svg-path {
  stroke: #848BA2;
  transition: stroke 0.3s ease;
}
.navbar-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #B4966D;
}
.navbar-dropdown .dropdown-item:hover .icon .svg-path {
  stroke: #B4966D;
}
.navbar-dropdown.show {
  display: block;
  margin-top: 12px;
  margin-right: 130px;
}

.btn:first-child {
  border: none;
}

.btn:first-child:hover {
  background-color: lightgrey;
}

/* Dropdown Icon Rotation */
.dropdown-icon {
  transition: transform 0.3s ease;
}

.super_admin[aria-expanded=true] .dropdown-icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .navbar .text-admin {
    display: none;
  }
  .navbar .super_admin {
    margin-right: 101px;
  }
  .navbar .navbar .super-admin-dropdown-item {
    display: block;
  }
}
.navbar .text-admin-inside {
  font-size: 12px;
}
.navbar .admin-img-inside img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 10px;
}
.navbar .admin-dropdown-inside {
  border-bottom: 1px solid #dcdde0;
  padding-bottom: 8px;
}

@media (max-width: 576px) {
  #wrapper.toggled .navbar {
    margin-left: auto;
  }
  #wrapper.toggled #salon_cards {
    margin-left: auto;
  }
  #wrapper.toggled #salon_data {
    margin-left: auto;
  }
  #wrapper.toggled .salon_listing_data {
    margin-left: auto;
  }
  #wrapper.toggled .subscription-warning {
    margin-left: auto;
  }
  #wrapper.toggled .new_salon_form {
    margin-left: auto;
  }
  #wrapper.toggled .survey_cards {
    margin-left: auto;
  }
  .navbar .super_admin {
    margin-right: 6px;
    padding: 0px;
  }
  .navbar .super_admin img {
    width: 40px;
    height: 40px;
    margin: 0;
  }
  #sidebar-wrapper {
    display: none;
  }
  .navbar .navbar-dropdown-container {
    margin-left: 0;
  }
  .navbar-toggler {
    display: block !important;
    margin-left: 10px;
  }
  #wrapper.toggled .navbar-dropdown.show {
    margin-right: 15px;
  }
  .navbar-logo {
    display: block !important;
    width: 40px;
    height: 40px;
    margin-left: 15px;
  }
  .navbar .navbar-brand {
    padding: 0;
  }
  #sidebar-wrapper {
    position: fixed;
    top: 0;
    left: -121px;
    width: 121px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  #sidebar-wrapper.open {
    left: 0;
    /* Slide in from the left */
  }
  .sidebar-footer {
    display: none;
  }
  #sidebar-wrapper {
    border-bottom: 4px solid antiquewhite;
  }
}
/* Default toggler button style */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .fas {
  font-size: 1.5rem;
  color: #B4966D;
}

/* Page Content Wrapper Styling*/
/* Salon Cards Styling*/
#salon_cards {
  margin-top: 85px;
  margin-left: 125px;
  transition: all 0.3s ease;
}
#salon_cards .card {
  border: none;
}
#salon_cards .card .card-body {
  padding: 12px;
}
#salon_cards .card .card-title {
  font-family: "Lexend-Regular";
  font-size: 18px;
  font-weight: 500;
  color: #636363;
}
#salon_cards .card .card-number {
  font-family: "Lexend-Regular";
  font-size: 24px;
  font-weight: 700;
  color: #636363;
}
#salon_cards .card img {
  width: auto;
  height: 65px;
}

@media (max-width: 992px) {
  #salon_cards .card {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* Salon Table Data Styling*/
#salon_data {
  margin-left: 125px;
  transition: all 0.3s ease;
}

.table th,
.table td {
  vertical-align: top;
  white-space: nowrap;
  padding: 10px 20px;
}

.table thead th {
  vertical-align: bottom;
}

.table-light th,
.table-light td,
.table-light thead th {
  border-color: #dee2e6;
}

#salon_data .card {
  border: none;
  max-height: 62vh;
}

.data-container {
  max-height: 20vh;
}

#salon_data .table-light th {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 600;
  color: #717171;
  border: none;
  position: sticky;
  top: 0;
  z-index: 1;
}

#salon_data .table td {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}

#salon_data h4 {
  font-family: "Lexend-Regular";
  font-size: 18px;
  font-weight: 600;
  color: #636363;
  padding: 7px 0;
}

.scrollable-table {
  overflow-x: auto;
  /* Allow horizontal scrolling */
  overflow-y: auto;
}

.gold-text {
  color: #B4966D !important;
  text-decoration: none;
}

.table-responsive {
  overflow-x: auto;
}

.wrap-text {
  word-wrap: break-word;
  white-space: normal;
  min-width: 350px;
}

.table td.wrap-text {
  white-space: normal;
}

@media (max-width: 1400px) {
  .scrollable-table {
    overflow-x: auto;
    overflow-y: auto;
  }
}
.scrollable-table::-webkit-scrollbar {
  width: 6px;
  /* Width for vertical scrollbar */
  height: 6px;
  /* Height for horizontal scrollbar */
}

.scrollable-table::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Background color of the scrollbar track */
}

.scrollable-table::-webkit-scrollbar-thumb {
  background: #d4b085;
  /* Color of the scrollbar thumb */
  border-radius: 10px;
  /* Roundness of the scrollbar thumb */
}

.scrollable-table::-webkit-scrollbar-thumb:hover {
  background: #b38561;
  /* Color of the scrollbar thumb on hover */
}

/* Salon Listing Table Data Styling*/
.salon_listing_data {
  margin-top: 85px;
  margin-left: 125px;
  transition: all 0.3s ease;
}
.salon_listing_data .card {
  border: none;
  max-height: 83vh;
}
.salon_listing_data .listing_table_header h4 {
  font-family: "Lexend-Regular";
  font-size: 18px;
  font-weight: 600;
  color: #636363;
  padding: 7px 0;
}
.salon_listing_data .listing_table_header .btn_add_salon {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #B4966D;
  border: none;
  border-radius: 5px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  border: 2px solid transparent;
}
.salon_listing_data .listing_table_header .add_salon_link {
  text-decoration: none;
}
.salon_listing_data .btn_add_icon {
  margin-right: 8px;
  padding: 0;
  font-size: 28px;
}
.salon_listing_data .table-light th {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 600;
  color: #717171;
  border: none;
  letter-spacing: 0.6px;
  position: sticky;
  top: 0;
  z-index: 1;
}
.salon_listing_data .table-light th .asc,
.salon_listing_data .table-light th .desc,
.salon_listing_data .table-light th .sortable {
  text-decoration: none;
  color: unset;
}
.salon_listing_data .table td {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}
.salon_listing_data .table-light th,
.salon_listing_data .table-light td,
.salon_listing_data .table-light thead th {
  border-color: #dee2e6;
}
.salon_listing_data .table th,
.salon_listing_data .table td {
  vertical-align: top;
  white-space: nowrap;
  padding: 10px 20px;
}
.salon_listing_data .table thead th {
  vertical-align: bottom;
}

.listing_table_header .btn_add_salon:hover {
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
  transition: all 0.3s ease;
}

.scrollable-table {
  overflow-x: auto;
  /* Allow horizontal scrolling */
}

.table-responsive {
  overflow-x: auto;
}

.wrap-text {
  word-wrap: break-word;
  white-space: normal !important;
  min-width: 350px;
}

.table td.wrap-text {
  white-space: normal !important;
}

@media (max-width: 1400px) {
  .scrollable-table {
    overflow-x: auto;
  }
}
.btn_active {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #2FD240;
  background-color: #fff;
  border: 1px solid #2FD240;
  text-align: center;
  align-items: center;
  border-radius: 4px;
  padding: 3px 26px 3px 10px;
  display: inline-flex;
}

.btn_expired {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #EE0C0C;
  background-color: #fff;
  border: 1px solid #EE0C0C;
  text-align: center;
  align-items: center;
  border-radius: 4px;
  padding: 3px 18px 3px 10px;
  display: inline-flex;
}

.btn_active img,
.btn_expired img {
  margin-right: 8px;
  padding: 0;
  /* Space between icon and text */
}

.salon-listing-dropdown .dropdown-item {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 500;
  color: #636363;
  padding: 8px 20px;
  background-color: transparent;
}

.dropdown-menu:focus,
.dropdown-item:focus {
  outline: none;
  background-color: transparent !important;
  box-shadow: none;
}

.arrow-down::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  z-index: 1;
}

.arrow-up::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  z-index: 1;
}

.btn_action {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  position: relative;
  border: none;
}

.btn_action a {
  display: flex;
  align-items: center;
}

.btn_action a i {
  margin-right: 8px;
}

.btn:first-child:hover {
  background-color: transparent;
}

.dropdown li a:hover {
  color: #B4966D;
}

.modal-header {
  border-bottom: none;
  justify-content: space-between;
  align-items: unset;
  padding-top: 4px;
}
.modal-header img {
  width: 75px;
  height: 75px;
}
.modal-header h5 {
  font-family: "Lexend-Regular";
  font-size: 20px;
  font-weight: 600;
  color: #5E6366;
  letter-spacing: 0.7px;
}
.modal-header p {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 400;
  color: #5E6366;
  letter-spacing: 0.7px;
}
.modal-header .btn-close {
  padding-top: 35px;
}
.modal-header .btn-close:focus {
  outline: none;
  box-shadow: none;
}

.modal-body {
  text-align: center;
}
.modal-body .txt-warning {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 400;
  color: #EE0C0C;
  letter-spacing: 0.5px;
}
.modal-body .txt-confirm {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 400;
  color: #717171;
  letter-spacing: 0.5px;
}

.user-mship-cancel {
  padding-left: 35px;
}
.user-mship-cancel input {
  padding: 8px;
  margin-right: 8px;
}

.check-input:checked {
  background-color: #b89366;
  border-color: #b89366;
}

.modal-footer {
  border-top: none;
  justify-content: center;
}
.modal-footer .btn-cancel-object {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #B4966D;
  background-color: #fff;
  border: 2px solid #B4966D;
  border-radius: 6px;
  padding: 7px 26px;
  margin-right: 8px;
}
.modal-footer .btn-delete-object {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #B4966D;
  border: 2px solid #B4966D;
  border-radius: 6px;
  padding: 7px 26px;
  margin-right: 10px;
}

.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 1rem);
}

/* Button Hover Effects */
.btn-cancel-object:hover {
  color: #fff;
  background-color: #b89366;
  border: 2px solid #b89366;
}

.btn-delete-object:hover {
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
}

@media (max-width: 600px) {
  .pagination-container nav ul li {
    padding: 5px 3px;
  }
}
.subscription-warning {
  margin-top: 70px;
  margin-left: 120px;
}

.subscription-warning {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 2px solid #EE0C0C;
  background-color: #FFF4F4;
  color: #D5552D;
  transition: all 0.3s ease;
}

.warning-icon {
  margin-right: 10px;
}

.warning-icon img {
  width: 24px;
  height: 24px;
}

@media (max-width: 530px) {
  .btn_add_text {
    display: none;
  }
  .salon_listing_data .listing_table_header .btn_add_salon {
    padding: 0 10px;
  }
  .salon_listing_data .btn_add_icon {
    margin: 0;
  }
}
.salon-listing-dropdown {
  position: static;
}

.btn_branches {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #B4966D;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 3px 12px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}
.btn_branches .btn_add_branches {
  margin-right: 8px;
  padding: 8px 0;
  font-size: 16px;
}

.btn_branches:hover {
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
}

.btn_new_items {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  position: relative;
  border: none;
  z-index: 100;
  background: white;
  padding: 10px 0;
  border-radius: 5px;
  top: 100%;
  left: 0;
  margin-top: 5px;
  display: none;
}

.btn_new_items.show {
  display: block;
  margin-top: 10px;
  inset: 0px -100px auto auto !important;
  transform: translate3d(-200px, 49px, 0px) !important;
}

/* Arrow styling */
.btn_new_items::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 10px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent white transparent;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

/* Dropdown Icon Rotation */
.btn_add_branches {
  transition: transform 0.3s ease;
}

.btn_branches[aria-expanded=true] .btn_add_branches {
  transform: rotate(180deg);
}

.branches_dropdown .scrollable-table {
  max-height: 170px;
}
.branches_dropdown .scrollable-table::-webkit-scrollbar {
  width: 3px;
  /* Width for vertical scrollbar */
}

/* Add News Salon Form Styling*/
.form-control::-moz-placeholder {
  color: #ABAFB1;
  opacity: 1; /* Firefox */
}
.form-control::placeholder {
  color: #ABAFB1;
  opacity: 1; /* Firefox */
}

.form-control:disabled {
  color: #5E6366;
  opacity: 70%;
}

.form-control:focus {
  color: #5E6366;
}

.new_salon_form {
  margin-top: 85px;
  margin-left: 125px;
  transition: all 0.3s ease;
}
.new_salon_form .card {
  border: none;
}
.new_salon_form .salon_form_header h4 {
  font-family: "Lexend-Regular";
  font-size: 18px;
  font-weight: 600;
  color: #636363;
  padding: 7px 0;
}
.new_salon_form label {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.6px;
}
.new_salon_form input,
.new_salon_form select,
.new_salon_form textarea {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 400;
  color: #5E6366;
  background-color: rgba(245, 244, 243, 0.6);
  border: none;
  opacity: 100%;
}

.form-select.is-invalid:not([multiple]):not([size]) {
  background-size: 18px;
}

.iti {
  width: 100%;
}
.iti .iti__selected-dial-code {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 400;
  color: #5E6366;
}

.salon_form_button .btn_cancel {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #B4966D;
  background-color: #fff;
  border: 2px solid #B4966D;
  border-radius: 4px;
  padding: 7px 24px;
  margin-right: 8px;
  text-decoration: none;
}
.salon_form_button .btn_addNow {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #B4966D;
  border: none;
  border-radius: 4px;
  padding: 7px 24px;
  margin-right: 10px;
  border: 2px solid transparent;
}

.percentage-group .form-control[type=number]::-webkit-outer-spin-button,
.percentage-group .form-control[type=number]::-webkit-inner-spin-button {
  opacity: 1;
  /* Show spin buttons */
}

/* Style for always visible spin buttons */
.percentage-input .form-control::-webkit-inner-spin-button,
.percentage-input .form-control::-webkit-outer-spin-button {
  opacity: 1;
  /* Ensure the spin buttons are always visible */
  right: 0;
  /* Position them to the right edge of the input */
}

/* Ensure the input group takes full width */
.percentage-group {
  width: 100%;
}

.percentage-input {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Full width for the input field */
.percentage-input .form-control {
  width: 100%;
  padding-right: 25px;
  /* Space for the default spinner */
  text-align: left;
  /* Align text to the left */
  box-sizing: border-box;
  text-indent: 10px;
}

/* Position the percentage symbol */
.percentage-input::after {
  content: "%";
  position: absolute;
  left: 40px;
  /* Position % symbol close to the text */
  color: #5E6366;
  /* Same color as input text */
  font-size: 16px;
  /* Adjust to match input text size */
  font-weight: 400;
  pointer-events: none;
  /* Make % symbol non-interactive */
}

.percentage-input .form-control::-webkit-inner-spin-button {
  margin-right: -20px;
  padding: 0 8px;
  /* Adjust as necessary to position spin buttons properly */
}

.percentage-input .form-control::-webkit-outer-spin-button {
  margin-right: -20px;
  /* Adjust as necessary to position spin buttons properly */
}

.form-label {
  display: block;
  margin-bottom: 5px;
}

.custom-file-input {
  position: relative;
  width: 100%;
  display: flex;
  background-color: rgba(245, 244, 243, 0.6);
  padding: 6px;
  border-radius: 5px;
  align-items: center;
  opacity: 70%;
  cursor: pointer;
}

.custom-file-input img {
  opacity: 1;
}

.upload-icon {
  cursor: pointer;
}

.form-control-file {
  display: none;
}

.file-name {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  display: block;
  padding-left: 10px;
}

.preview-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.preview-image {
  max-width: 100px;
  max-height: 100px;
  margin-right: 10px;
  border-radius: 4px;
  border: 1px solid #B4966D;
}

.delete-icon {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: 1.4px solid #B4966D;
  border-radius: 50%;
  padding: 5px 6px;
  color: #B4966D;
}

/* Button Hover Effects */
.btn_cancel:hover {
  color: #fff;
  background-color: #b89366;
  border: 2px solid #b89366;
}

.btn_addNow:hover {
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
}

.delete-icon:hover {
  color: #fff;
  background-color: #b89366;
}

/* Custom styles for validation */
.form-control.is-invalid {
  background-color: #FCF3F2;
  background-image: url(/assets/images/Salon_Form/input_error.png);
}

.custom-file-input.is-invalid {
  background-color: #FCF3F2;
  background-image: url(/assets/images/Salon_Form/input_error.png);
  background-repeat: no-repeat;
  background-position: right 9px center;
  background-size: 18px;
}

.error-message {
  color: #F57E77;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
  /* Hide initially */
}

.is-invalid + .error-message {
  display: block;
  /* Show error message if invalid */
}

.form-label.invalid {
  color: #F57E77;
}

.control-label.invalid {
  color: #F57E77;
}

/* Toast position */
.toast-container {
  position: fixed;
  top: 75px;
  right: 10px;
  z-index: 100;
}
.toast-container .btn-close:focus {
  outline: none;
  box-shadow: none;
}

.toast-container #errorToast {
  color: #EE0C0C;
  background-color: #FCF3F2;
  border: 1px solid #EE0C0C !important;
  padding-left: 10px;
}

.toast-container #successToast {
  color: #21BC31;
  background-color: #F0F9F6;
  border: 1px solid #21BC31 !important;
  padding-left: 10px;
}

.form-label {
  transition: color 0.3s ease;
}

/* Hide the default calendar icon in the native date input */
input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}

/* Ensure the input and icon are aligned properly */
.custom-date-input {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Add padding to make space for the custom icon */
.custom-date-input .form-control {
  padding-right: 35px;
  text-indent: 40px;
}

/* Style the custom calendar icon */
.calendar-icon-wrapper {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  cursor: none;
}

.calendar-icon-wrapper img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Styling for the input field and labels */
.form-control {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: #5E6366;
  background-color: #F5F4F3;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

.form-label {
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #636363;
  display: block;
  margin-bottom: 5px;
}

.error-message {
  color: #F57E77;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
  /* Hide initially */
}

/* Custom styles for Flatpickr input field */
.flatpickr-input {
  padding-right: 35px;
  width: 100%;
}

.flatpickr-input[readonly] {
  cursor: text !important;
}

/* Add any additional styling specific to Flatpickr */
.flatpickr-calendar {
  font-family: "Lexend", sans-serif;
}

@media (max-width: 400px) {
  .form-buttons-container {
    flex-direction: column-reverse;
    width: 100%;
  }
  .salon_form_button .btn_cancel {
    padding: 7px 32px;
    margin-top: 20px;
  }
}
.form-input-spacing {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.form-input-spacing .control-label {
  display: flex;
  flex: auto;
  justify-content: flex-start;
}

.helper-text {
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ABAFB1;
}

.preview-video {
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-preview-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.video-thumbnail-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.thumbnail-wrapper {
  flex: 0 0 200px;
}

#uploadStatus {
  margin: 10px 0;
  /* padding: 10px; */
  /* border-radius: 4px; */
  /* background: #f8f9fa; */
  max-width: 300px;
  margin-bottom: 15px;
}

#uploadStatus .progress {
  height: 10px;
  margin-bottom: 5px;
}

#uploadStatus .progress-bar,
#upload-container #uploadStatus .progress-bar.progress-bar.bg-success {
  background-color: #B4966D !important;
}

#uploadThumbnailStatus {
  margin: 10px 0;
  /* padding: 10px; */
  /* border-radius: 4px; */
  /* background: #f8f9fa; */
  max-width: 300px;
  margin-bottom: 15px;
}

#uploadThumbnailStatus .progress {
  height: 10px;
  margin-bottom: 5px;
}

#uploadThumbnailStatus .progress-bar,
#upload-container #uploadThumbnailStatus .progress-bar.progress-bar.bg-success {
  background-color: #B4966D !important;
}

.preview-progress-bar {
  height: 6px;
  border-radius: 3px;
  background-color: #e9ecef;
  margin-bottom: 8px;
}

#uploadStatus .upload-text {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}

#uploadThumbnailStatus .upload-text {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}

.progress-bar {
  transition: width 0.3s ease;
  border-radius: 3px;
}

.progress-bar.bg-success {
  background-color: #28a745;
}

.progress-bar.bg-danger {
  background-color: #dc3545;
}

#thumbnailPreviewContainer {
  position: relative;
  margin-bottom: 15px;
}

.thumbnailPreview-wrapper #thumbnailPreview,
.thumbnailPreview-wrapper .preview-video {
  max-width: 300px;
  min-width: 300px;
}

.fa-info-circle {
  cursor: pointer;
  color: #B4966D;
}

.thumbnailPreview-wrapper .preview-image {
  max-width: 300px;
  min-width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: unset;
  margin-right: unset;
  max-height: unset;
}

@media (max-width: 767px) {
  .thumbnailPreview-wrapper #thumbnailPreview,
  .thumbnailPreview-wrapper .preview-video {
    max-width: 400px;
    min-width: 280px;
    width: 280px;
  }
}
@media (max-width: 576px) {
  .thumbnailPreview-wrapper #thumbnailPreview,
  .thumbnailPreview-wrapper .preview-video {
    max-width: 400px;
    min-width: 210px;
    width: 210px;
  }
}
/* Pagination Styling */
.pagination .page-link {
  margin: 0 6px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #848BA2;
  background-color: #F6F6F6;
  border: none;
}

.pagination .page-item.active .page-link {
  background-color: #B6935E;
  border: none;
  color: white;
}

.pagination .page-arrows {
  border: 2px solid #848BA2;
  background-color: #ffffff;
}

.pagination .page-item.disabled .page-link {
  font-size: 17px;
  color: #000000;
  border: none;
  background-color: transparent;
  padding-bottom: 5px;
}

.pagination-container span {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #848BA2;
}

.page-link:focus {
  outline: none;
  box-shadow: none;
}

.pagination .page-link:hover {
  opacity: 0.6;
}

@media (max-width: 600px) {
  .pagination-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .pagination .page-link {
    margin: 5px 0;
  }
}
.login-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.login-body .login-container {
  display: flex;
  width: 70%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.logo-section {
  background-color: #2D2B2C;
  color: #fff;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.logo-section .desktop-logo {
  max-width: 50%;
  height: auto;
  margin-bottom: 20px;
}
.logo-section .desktop-logo-rings {
  position: relative;
  top: 35px;
  max-width: 90%;
  height: auto;
}

.login-form {
  padding: 40px;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-form h3 {
  font-family: "Lexend-Regular";
  font-size: 26px;
  font-weight: 600;
  color: #2D2B2C;
  padding-bottom: 15px;
}
.login-form form {
  width: 100%;
}
.login-form form label {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.7px;
}
.login-form form input {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 400;
  color: #717171;
  letter-spacing: 0.7px;
  border: none;
  padding: 10px;
  background-color: #f8f9fa;
}
.login-form form .form-check label {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #83898C;
  letter-spacing: 0.7px;
}
.login-form form .form-check input {
  border: 1px solid #CFD3D4;
  padding: 8px;
  margin-right: 10px;
}
.login-form form .form-check a {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #B4966D;
  padding-top: 5px;
}
.login-form form .form-check .form-check-input:checked {
  background-color: #b89366;
  border-color: #b89366;
}
.login-form .btn-login {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #B4966D;
  border: none;
  border-radius: 5px;
  padding: 9px 30px;
  border: 2px solid transparent;
}

/* Custom styling for icons */
.icon {
  width: 20px;
  height: 20px;
}

.input-group input {
  position: relative;
  text-indent: 36px;
}

.input-group-text {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  border: none;
  padding-left: 10px;
}

.input-group-password {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 10;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  border: none;
  padding-right: 10px;
}

.input-group .toggle-password {
  cursor: pointer;
  border: none;
  padding-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .login-container {
    flex-direction: column;
    width: 90%;
  }
  .logo-section {
    display: none;
  }
  .login-form {
    flex: none;
    padding: 20px;
    align-items: flex-start;
  }
  .login-form .mobile-logo {
    display: block;
    max-width: 20%;
    margin: 0 auto 20px;
  }
}
@media (min-width: 993px) {
  .login-form .mobile-logo {
    display: none;
  }
}
/* Hover Effects */
.login-form form .form-check a:hover {
  color: #2D2B2C;
}

.login-form .btn-login:hover {
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
}

/* Password Validation Styling */
.password-validation {
  display: none;
  color: #999;
  font-size: 12px;
  margin-top: 5px;
}

.password-validation p {
  margin: 0;
}

.password-validation span {
  font-weight: 700;
}

.password-validation .char-count.invalid,
.password-validation .capital-letter.invalid,
.password-validation .number.invalid,
.password-validation .special-char.invalid {
  color: #EE0C0C;
}

.password-validation .char-count.valid,
.password-validation .capital-letter.valid,
.password-validation .number.valid,
.password-validation .special-char.valid {
  color: #2FD240;
}

.input-group-password {
  cursor: pointer;
}

/* Salon Cards Styling*/
.survey_cards {
  margin-top: 85px;
  margin-left: 125px;
  transition: all 0.3s ease;
}
.survey_cards .card {
  border: none;
}
.survey_cards .card .card-body {
  padding: 12px;
}
.survey_cards h5 {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_cards label {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.6px;
}
.survey_cards input,
.survey_cards select,
.survey_cards textarea,
.survey_cards #question {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #5E6366;
  background-color: rgba(245, 244, 243, 0.6);
  border: none;
  opacity: 100%;
}
.survey_cards .btn_add_survey {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #b89366;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 8px 20px;
  align-items: center;
  margin-top: 15px;
  justify-content: center;
}
.survey_cards .btn_plus_icon {
  margin-right: 8px;
  padding: 0;
  font-size: 14px;
}

.survey_header .survey_title {
  font-family: "Lexend-Regular";
  font-size: 18px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_header .btn_survey_back {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #B4966D;
  background-color: #fff;
  border: 2px solid #B4966D;
  border-radius: 10px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
}
.survey_header .btn_back_icon {
  margin-right: 8px;
  padding: 0;
  font-size: 14px;
}

.down-icon {
  color: #B4966D;
  border: 1.4px solid #B4966D;
  border-radius: 50%;
  padding: 5px 6px;
}

.up-icon {
  color: #B4966D;
  border: 1.4px solid #B4966D;
  border-radius: 50%;
  padding: 5px 6px;
}

.card-inner {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #E5DFD7 !important;
  padding: 10px;
}
.card-inner button {
  font-size: 12px;
}
.card-inner button .delete-icon {
  width: 25px;
  height: 25px;
  border: 1.4px solid #B4966D;
  border-radius: 50%;
  padding: 5px 6px;
}
.card-inner button .down-icon {
  width: 25px;
  height: 25px;
  border: 1.4px solid #B4966D;
  border-radius: 50%;
  padding: 5px 6px;
}
.card-inner button .up-icon {
  width: 25px;
  height: 25px;
  border: 1.4px solid #B4966D;
  border-radius: 50%;
  padding: 5px 6px;
}

.surveyForm .btn_add_question {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #b89366;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.surveyForm .btn_plus_icon {
  margin-right: 8px;
  padding: 0;
  font-size: 14px;
}
.surveyForm .btn_add_choice {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
  border-radius: 10px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.btn_survey_back:hover {
  color: #fff;
  background-color: #b89366;
  border: 2px solid #b89366;
  transition: all 0.3s ease;
}

.btn_add_question:hover {
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
  transition: all 0.3s ease;
}

.btn_add_choice:hover {
  color: #fff;
  background-color: #b89366;
  border: 2px solid #b89366;
  transition: all 0.3s ease;
}

.btn_add_survey:hover {
  color: #b89366;
  background-color: #fff;
  border: 2px solid #b89366;
  transition: all 0.3s ease;
}

.up-icon:hover {
  color: #fff;
  background-color: #B4966D;
}

.down-icon:hover {
  color: #fff;
  background-color: #b89366;
}

.surveyForm .survey-buttons {
  justify-content: flex-end;
}

.surveyForm #question {
  white-space: pre-wrap;
  /* Preserve whitespace and wrap text */
  overflow-wrap: break-word;
  /* Break words if necessary */
  word-wrap: break-word;
  /* Compatibility for older browsers */
  box-sizing: border-box;
  /* Include padding in the element's total width and height */
  cursor: default;
  /* Show default cursor to indicate it's not editable */
}

.surveyForm #question:empty:before {
  content: attr(data-placeholder);
  /* Use the placeholder text */
  color: #686363;
  /* Placeholder text color */
}

@media (max-width: 400px) {
  .btn_survey_back_text {
    display: none;
  }
  .survey_header .btn_survey_back {
    padding: 8px 12px;
  }
  .survey_header .btn_back_icon {
    margin: 0;
  }
}
/* Salon Cards Styling*/
.survey_cards {
  margin-top: 85px;
  margin-left: 125px;
  transition: all 0.3s ease;
}
.survey_cards .card {
  border: none;
}
.survey_cards h5 {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}
.survey_cards h4 {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_cards .text-between {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_cards .date-between {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 400;
  color: #848BA2;
  letter-spacing: 0.6px;
}

.survey_header .survey_title {
  font-family: "Lexend-Regular";
  font-size: 18px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_header .btn_survey_back {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #B4966D;
  background-color: #fff;
  border: 2px solid #B4966D;
  border-radius: 10px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
}
.survey_header .btn_back_icon {
  margin-right: 8px;
  padding: 0;
  font-size: 14px;
}

.card-inner {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #E5DFD7 !important;
}
.card-inner .survey-inner-txt-1 {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.6px;
  /* Underline style */
}
.card-inner .survey-inner-txt-1 span {
  position: relative;
  /* Underline style */
}
.card-inner .survey-inner-txt-1 span::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background-color: #B4966D;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.card-inner .survey-inner-txt-2 {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 600;
  color: #B4966D;
  letter-spacing: 0.6px;
}

/* Icons styling */
.checkmark {
  color: #2FD240;
  font-size: 18px;
  margin-left: 5px;
}

.star-rating {
  color: #B4966D;
  font-size: 18px;
}

.ban-icon {
  color: #848BA2;
  font-size: 18px;
}

.cross-icon {
  color: rgba(128, 128, 128, 0.5490196078);
  font-size: 18px;
}

.btn_survey_back:hover {
  color: #fff;
  background-color: #b89366;
  border: 2px solid #b89366;
}

@media (max-width: 992px) {
  .flex-lg-row-reverse .align-self-start {
    align-self: flex-end !important;
    margin-bottom: 13px;
  }
}
@media (max-width: 590px) {
  .brunswick-title {
    display: flex;
    flex-direction: column;
    justify-items: end;
    align-items: end;
    justify-content: end;
  }
  .brunswick-title h4 {
    text-align: center;
  }
}
/* Salon Cards Styling*/
.survey_cards {
  margin-top: 85px;
  margin-left: 125px;
  transition: all 0.3s ease;
}
.survey_cards .card {
  border: none;
}
.survey_cards h5 {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}
.survey_cards h4 {
  font-family: "Lexend-Regular";
  font-size: 16px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_cards .text-between {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_cards .date-between {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 400;
  color: #848BA2;
  letter-spacing: 0.6px;
}

.survey_header .survey_title {
  font-family: "Lexend-Regular";
  font-size: 18px;
  font-weight: 600;
  color: #636363;
  letter-spacing: 0.6px;
}
.survey_header .btn_survey_back {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #B4966D;
  background-color: #fff;
  border: 2px solid #B4966D;
  border-radius: 10px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
}
.survey_header .btn_back_icon {
  margin-right: 8px;
  padding: 0;
  font-size: 14px;
}

.card-inner {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #E5DFD7 !important;
}
.card-inner .survey-chart-txt-1 {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.6px;
  padding-right: 20px;
}
.card-inner .survey-chart-txt-2 {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 400;
  color: #848BA2;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.card-inner .chart-table th {
  font-family: "Lexend-Regular";
  font-size: 15px;
  font-weight: 700;
  color: #848BA2;
  letter-spacing: 0.6px;
}
.card-inner .chart-table td {
  font-family: "Lexend-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  letter-spacing: 0.6px;
  text-wrap: wrap;
}

.btn_survey_back:hover {
  color: #fff;
  background-color: #b89366;
  border: 2px solid #b89366;
}

@media (max-width: 992px) {
  .flex-lg-row-reverse .align-self-start {
    align-self: flex-end !important;
    margin-bottom: 13px;
  }
}
@media (max-width: 400px) {
  .btn_survey_back_text {
    display: none;
  }
  .survey_header .btn_survey_back {
    padding: 8px 12px;
  }
  .survey_header .btn_back_icon {
    margin: 0;
  }
}
.membership-container {
  display: flex;
}

.mship-table-container {
  width: 55%;
}

.mship-text-container {
  width: 45%;
  padding-left: 40px;
}

.btn-cancel {
  margin-top: 20px;
}

.membership-table {
  border: 1px;
}

.membership-section .table td {
  padding: 10px 20px;
}

@media (max-width: 992px) {
  .membership-container {
    display: flex;
    flex-direction: column;
  }
  .mship-table-container {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .mship-text-container {
    order: 2;
    width: 100%;
    padding: 0;
  }
}
/* Custom select-option styling*/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select-option {
  position: relative;
  border: 1px solid #b4966d;
  border-radius: 4px;
  padding: 7px 12px;
  cursor: pointer;
}

.custom-select-value {
  font-size: 14px;
  color: #686363;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select-value i {
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #b4966d;
  border-top: 1px solid #b4966d !important;
  border-top: none;
  background-color: #fff;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}

.custom-select-item {
  font-size: 14px;
  color: #686363;
  padding: 6px 12px;
  cursor: pointer;
}

.custom-select-item:hover {
  background-color: #b4966d !important;
  color: #fff !important;
}

.custom-select-option.active .custom-select-dropdown {
  display: block;
}

.custom-select-option.active .custom-select-value i {
  transform: rotate(180deg);
}

/* Custom styling for select2 multiselect */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #B4966D !important;
  border: 1px solid #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #fff !important;
  font-size: 11px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
  border-right: 1px solid #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #B4966D !important;
  background-color: #fff !important;
  border: 1px solid #B4966D !important;
}

.select2-container--default .select2-results__option:hover {
  background-color: #B4966D !important;
}

.select2-container--default .select2-results__option--highlighted {
  background-color: #B4966D !important;
  color: white !important;
}

.select2-results__option--selectable {
  font-size: 14px !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
  font-family: "Lexend-Regular" !important;
  font-size: 14px !important;
  margin-bottom: 5px !important;
}

.select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder {
  font-family: "Lexend-Regular" !important;
  color: #636363 !important;
  opacity: 70% !important;
}

.select2-container--default .select2-search--inline .select2-search__field::placeholder {
  font-family: "Lexend-Regular" !important;
  color: #636363 !important;
  opacity: 70% !important;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #B4966D !important;
}

.form-check-input:checked {
  background-color: #B4966D;
}

.form-check-input[type=checkbox] {
  border: 1px solid #B4966D !important;
  margin-top: 6px !important;
}/*# sourceMappingURL=style.css.map */