body {
  background-color: #f5f8fa;
}

.dropdown-toggle::after {
  content: none;
}

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

.form__feedback {
  color: red;
}

.form__feedback i {
  color: red !important;
}

.dropzone .dz-preview .dz-image {
  width: 250px;
  height: 250px;
}

.dropzone .dz-preview .dz-image img {
  width: 100%;
  height: 100%;
}

.flatpickr-clear {
  font-size: 1rem;
  color: var(--bs-gray-700);
  font-weight: 500;
  background-color: transparent;
  outline: 0;
  padding: 3px 0;
  cursor: pointer;
  margin-bottom: 1px;
}

.flatpickr-clear:hover {
  background: var(--bs-gray-100);
}

.city-selector select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  appearance: none;
  background-color: var(--white);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text-dark);
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  border-radius: var(--bs-border-radius);
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  margin-bottom: 0.25rem;
  margin-right: 0.25rem;
  height: 36px;
}

.admin-form-sidebar {
  position: fixed;
}

.admin-form-sidebar .side-menu {
  border-radius: 5px;
  padding: 20px;
  background-color: #f8f9fa;
  position: relative;
}

.admin-form-sidebar .side-menu:before {
  content: " ";
  display: block;
  width: 2px;
  height: 50px;
  background: #ddd;
  position: absolute;
  left: 29px;
  top: 30px;
}

.admin-form-sidebar .side-menu .menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.admin-form-sidebar .side-menu .menu-item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% + 20px);
  background-color: #dcdcdc;
  top: 10px;
  left: 9px;
  z-index: 0;
}

.admin-form-sidebar .side-menu .menu-item:first-child::before {
  top: 50%;
  height: 50%;
}

.admin-form-sidebar .side-menu .menu-item:last-child::before {
  height: 50%;
}

.admin-form-sidebar .side-menu .menu-item .circle {
  width: 20px;
  height: 20px;
  background-color: #E4E6EF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #071437;
  margin-right: 10px;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.admin-form-sidebar .side-menu .menu-item .text {
  font-size: 18px;
  color: #071437;
}

.admin-form-sidebar .side-menu .menu-item.active .circle {
  background-color: #009ef7;
  color: #fff;
}

.admin-form-sidebar .side-menu .menu-item.active .text {
  color: #009ef7;
  font-weight: bold;
}