button {
  align-self: center;
  display: inline-block;
  min-width: 100px;
  font-weight: 400;
  border: 3px solid transparent;
  color: var(--bg-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 6px 2px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-shadow: 1px 1px 20px 3px rgb(27 32 58 / 50%);

}

.form-class {
  width: -webkit-fill-available;
  width: -moz-available;
}

.form-container {
  width: -webkit-fill-available;
  width: -moz-available;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
}

.form-container form .input_box {
  width: -webkit-fill-available;
  width: -moz-available;
  display: flex;

  /* border-width: 0px 0px 2px 0px; */
  border-style: solid;
  margin-top: 8px;
  position: relative;
  /* padding-left: 8px; */
  margin-left: 2px;
  /* margin-right: 4px; */
  border-radius: 10px;
  border: 3px solid #ced4da;
}

.form-container form .input_box:hover {
  border: 3px solid var(--second-color);
}

.form-container form .input_box:focus {
  border: 3px solid var(--second-color);
}

.form-container form .input_box:active {
  border: 3px solid var(--second-color);
}

.form-container form .input_box input,
.form-container form .input_box select,
.form-container form .input_box textarea {
  width: -webkit-fill-available;
  width: -moz-available;
  border: none;
  font-size: 18px;
  outline: none;
  /* padding: 8px; */
  padding-top: 12px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: -9px;
  /* border: 2px solid var(--second-color); */
  border-radius: 10px;
  height: 36px;
}

.form-container form .input_box select {
  height: 49px;
}

.form-container form .input_box label {
  position: absolute;
  left: 9px;
  font-size: 18px;
  top: 8px;
  pointer-events: none;
  transition: 0.2s;
  color: gray;
}

.form-container form .input_box input:focus+label,
.form-container form .input_box input:valid+label,

.form-container form .input_box select:focus+label,
.form-container form .input_box select:valid+label,

.form-container form .input_box textarea:focus+label,
.form-container form .input_box textarea:valid+label {
  top: -7px;
  font-size: 14px;
  color: var(--second-color);
  background-color: white;
  border-radius: 2px;
  padding-left: 7px;
  padding-right: 7px;
}

.more_options_container {
  position: relative;
}

.options_container {
  display: block;
  position: absolute;
  z-index: 100;
  right: -222px;
  top: -6px;
  background-color: black;
  padding: 3px;
  border-radius: 10px;
}

/* The container */
.rb_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.rb_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.rb_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.rb_container:hover input~.rb_checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.rb_container input:checked~.rb_checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.rb_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.rb_container input:checked~.rb_checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.rb_container .rb_checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.input-icon-container {
  display: flex;
  align-items: center;
  font-size: 40px;
  width: 42px;
  background-color: var(--second-color);
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 7px;
  color: white;
  justify-content: center;

}

.client_search_wrapper {
  width: -webkit-fill-available;
  width: -moz-available;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px 23px;
  border-radius: 36px;
  outline: none;
  border: 3px solid;
}

.client_search_wrapper:hover {
  outline: 2px solid var(--second-color);
}

.client_search_input {
  display: block;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  width: -moz-available;
  /* height: calc(1.5em + 0.75rem + -7px); */
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-color);
  background-clip: padding-box;
  border: none;
  outline: none;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn {
  background: var(--button-color);
}

.btn-delete {
  display: block;
  background-color: var(--button-neg-color);
  color: white;
  border: 2px solid;
  border-radius: 7px;
}

.btn-positive {
  text-decoration: none;
  background-color: var(--button-pos-color);
}

.btn-negtive,
.btn-negative {
  text-decoration: none;
  background-color: var(--button-neg-color);
}

.btn_inner_wrapper {
  display: flex;
  align-items: center;
}

.btn_inner_wrapper i {
  margin-right: 3px;
  margin-left: 3px;
}

.input-group {
  position: relative;
  border: 1px gray solid;
  padding: 5px;
  border-radius: 10px;
}

.input-item {
  display: flex;
  flex-direction: column;
  border: 1px gray solid;
  background-color: #dddbd6;
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  font-size: medium;
  transition: 0.5s ease-in;
  /*  overflow: hidden; */
}

.input-item:hover {
  box-shadow: 0 0 2px 4px rgba(108, 92, 231, 0.4);
  transition: 0.5s ease-in;
}

.input-item:focus {
  border: 1px gray solid;
  outline: unset;
  box-shadow: 0 0 2px 4px rgba(108, 92, 231, 0.4);
  transition: 0.5s ease-in;
}

.input-item input:focus,
.input-item select:focus,
.input-item textarea:focus {
  border: unset;
  outline: unset;
}

.input-item input,
.input-item select,
.input-item textarea {
  border: unset;
  background-color: transparent;
  padding: 2px 10px;
  box-sizing: border-box;
  min-height: 46px;
  font-size: medium;
  transition: 0.5s ease-in;
  width: 100%;
}

input[type="file"] {
  min-height: unset;
  padding: 10px;
}

.input_item_input_container {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
}

.input_item_input_container input,
.input_item_input_container select {
  width: 100%;
}

.input_item_error_indicator_container {
  position: relative;
  display: none;
}

.input_item_error_indicator_text {
  width: max-content;
  position: absolute;
  display: none;
  background: #c96e6e;
  font-size: small;
  padding: 5px 5px;
  border-radius: 10px;
  right: 50%;
  bottom: -39px;
  z-index: 1;
}

.input_item_error_indicator_text::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #c96e6e;
  /* Match background */
}

.input_item_error_indicator_icon {
  font-size: larger;
  background: #fb00007a;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 10px;
  color: black;
  border: 1px solid red;
}

.required_icon_container {
  display: flex;
  align-items: center;
  font-size: x-small;
  color: red;
}

.input_item_error_indicator_icon:hover .input_item_error_indicator_text {
  display: flex;
  transition: 0.5s ease;
}

/* custom upload */
.upload-container {
  width: -webkit-fill-available;
  width: -moz-available;
  font-family: 'Segoe UI', sans-serif;
}

.upload-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #f0f4ff;
  border: 2px dashed #3a6bff;
  border-radius: 8px;
  color: #3a6bff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-button:hover {
  background: #e0e9ff;
  border-color: #2a5bef;
}

.upload-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.upload-input {
  display: none;
}

.file-info {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* custom upload */
/* custom combobox */
.combox_box_container {
  position: relative;
  max-width: min-content;
}

.combox_box_container table,
thead {
  width: 100%;
  color: black;
}

.combox_box_container tr {
  background: #ccd0d3;
  border-bottom: 1px solid gray;
  cursor: pointer;
  padding: 5px 5px;
}

.combox_box_container tr:hover {
  background: var(--table-row-hover-color);
  color: black;
}

.combox_box_selected_item tr {
  background: var(--table-row-hover-color);
}

.combo_box_list_container {
  display: none;
  position: absolute;
  z-index: 100;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-radius: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #bfb8b8;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes stretchSnap {

  0% {
    transform: translateY(-20%);
    opacity: 0;
  }

  70% {
    transform: translateY(10%);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-dropdown {
  animation: stretchSnap 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.combo_box_list_table {
  max-height: 329px;
  /* position: absolute; */
  /* width: 100%; */
  overflow: auto;
}

.combo_box_search_input_container input {
  width: -webkit-fill-available;
  width: -moz-available;
  /* min-height: 29px; */
  /* padding: 5px 5px; */
  border: unset;
  outline: unset;
  /* background: #f9f9f9; */
  /* background: linear-gradient(0deg, rgba(173, 173, 184, 1) 0%, rgba(139, 139, 153, 1) 33%, rgba(155, 155, 167, 1) 60%, rgba(242, 242, 242, 1) 100%); */
  font-size: medium;
  /* margin-bottom: 5px; */
  /* border: 2px solid gray; */
}

.combo_box_list_item_cell_container {
  display: flex;
  justify-content: space-between;
}

.combo_box_list_item_text_container {
  min-height: 32px;
  display: flex;
  align-content: center;
  align-items: center;
  padding: 2px 2px;
}

.token_item_holder_container {
  min-width: 100px;
  width: 100%;
  padding: 1px 5px;
  display: flex;
  flex-wrap: wrap;
  overflow-wrap: normal;
  align-items: center;
  color: #2d2b2b;
  gap: 5px;
}

.token_container {
  position: relative;
  display: flex;
  justify-content: space-around;
  background: var(--button-color);
  color: white;
  border-radius: 10px;
  padding: 4px 5px;
  flex-direction: row-reverse;
  align-items: center;
}

.token_delete_btn {
  font-size: medium;
  /* position: absolute; */
  background: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  top: -9px;
  left: 0;
  cursor: pointer;
  height: 20px;
  width: 20px;
}

.combo_box_user_input {
  display: flex;
  justify-content: space-around;
  /* background-color: #e9e8e8; */
  height: 100%;
  max-height: 100px;
  /* padding: 5px 8px; */
  /* padding-top: 5px; */
  border-radius: 5px;
  min-height: 39px;
  /* padding-left: 5px; */
  overflow: hidden;
  /* margin: 0px 2px; */
  align-items: center;
}

.combo_box_user_input input {
  background: transparent;
  border: unset;
  outline: unset;
}

.combo_box_icon {
  display: flex;
  /* background-color: var(--button-color); */
  color: black;
  align-items: center;
  justify-content: center;
  padding: 1px 6px;
  width: 48px;
  cursor: pointer;
  max-width: 33px;
}

.combo_box_progress_icon {
  max-width: 33px;
  background: black;
}

.combo_box_clear_icon {
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  margin: 5px 5px;
  justify-content: center;
}

.combo_box_clear_icon i {
  width: 25px;
  height: 25px;
  color: white;
  display: flex;
  align-items: center;
  margin: 5px 5px;
  padding: 5px;
  border-radius: 58%;
  background: red;
  cursor: pointer;
  justify-content: center;
}

/* custom combobox */


/* Specific fixes for select elements */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Removes default dropdown arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%0A2C34' %3E%3Cpath d='M11.178 19.569a.998.998 0 0 0 1.644 0l9-13A.999.999 0 0 0 21 5H3a1.002 1.002 0 0 0-.822 1.569l9 13z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1em;
  padding-right: 2rem;
  /* Make room for custom arrow */
}



.form-button {
  display: flex;
  justify-content: center;
}

.form-input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

label.form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  width: 339px;
}

.form-input-control {
  display: block;
  width: -webkit-fill-available;
  width: -moz-available;
  /* height: calc(1.5em + 0.75rem + -7px); */
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-color);
  background-clip: padding-box;
  border: 3px solid #ced4da;
  outline: none;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input-control select {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + -7px);
  /* padding: 0.375rem 0.75rem; */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-color);
  background-clip: padding-box;
  border: 0px solid #ced4da;
  outline: none;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select-void-option {
  background-color: rgb(173, 173, 173);
}

.form-input-control option {
  min-height: 90px;
}

.form-input-control option:hover {
  background-color: var(--second-color);
}

select.form-input-control[size],
select.form-input-control[multiple] {
  height: auto;
}

textarea.form-input-control {
  font-family: -apple-system, Arial, sans-serif;
  height: auto;
}

.form-btn {
  align-self: center;
  margin-top: 10px;
  display: inline-block;
  font-weight: 400;
  background: var(--second-color);
  border: 3px solid transparent;
  color: var(--bg-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-submit-group {
  width: fit-content;
  flex-direction: column;
  align-items: center;
}


/*Transitions*/

.form-input-control:hover {
  border: 3px solid var(--container-color);
}

.form-input-control:focus {
  border: 3px solid var(--second-color);
}

.form-btn,
.btn:hover {
  background: var(--hover-color);
  border: solid 3px white;
  outline: 1px solid var(--text-color);
  transition: 0.3s;
}

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: fit-content;
}

.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

.select-selected {
  background-color: var(--bg-color);
}


/* 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,
.select-selected {
  color: var(--text-color);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent var(--text-color) transparent;
  cursor: pointer;
}


/* Style items (options): */

.select-items {
  position: absolute;
  background: var(--bg-color);
  color: var(--text-color);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}


/* Hide the items when the select box is closed: */

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--second-color);
  color: var(--bg-color);
}

.crud-button-container {
  width: 100%;
  align-content: center;
  text-align: center;
  position: relative;
  display: inline-block;
  color: var(--text-color);
}

.crud-button-container a {
  color: var(--bg-color);
}

.crud-button-container a:hover {
  color: var(--second-color);
}

.multi-line {
  height: 73px;
}

.inner-form-group {
  border-radius: 10px;
  border: 1px var(--text-color) solid;
  padding: 5px;
}

.form-group {
  margin-bottom: 3px;
  border-bottom: 1px solid gainsboro;
}

.combo-box-container {
  height: fit-content;
  display: inline-block;
  position: relative;
  color: var(--text-color);
  background-color: var(--bg-color);
  background-clip: padding-box;
  border: 3px solid #ced4da;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.combo-box-container:hover {
  border: 3px solid var(--second-color);
}

.combo-box-text-input {
  display: block;
}

.combo-box-text-input {
  border: 0px;
  display: block;
  width: -webkit-fill-available;
  width: -moz-available;
  /* height: calc(1.5em + 0.75rem + -7px); */
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  border-radius: 7px;
}

.combo-box-input-container {
  display: flex;
}

.combo-box-dropdown-Icon-container {
  width: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  background: var(--second-color);
  border-radius: 7px;
  min-width: 39px;
  color: white;
  cursor: pointer;
}

.combo-box-dropdown-container {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  /* padding: 12px 16px; */
  z-index: 15;
  width: fit-content;
  min-width: -webkit-fill-available;
  min-width: -moz-available;
  height: fit-content;
  max-height: 200px;
  margin-top: 3px;
  background-color: var(--bg-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-left: 3px;
  padding-right: 3px;
  /* animation: animatetop 0.7s; */
  overflow-y: auto;
  scroll-behavior: smooth;
}

.combo-box-container:active .combo-box-dropdown-container {
  display: block;
}

.combo-box-dropdown-show {
  display: block;
}

.combo-box-table {
  display: table;
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
}

.combo-box-table-head {
  display: table-row;
  background-color: var(--cell-boders);
}

.combo-box-table-body-row {
  display: table-row;
  border-bottom: 1px solid gray;
}

.combo-box-table thead {
  position: sticky;
  top: 0;
  background-color: gray;
}

.combo-box-table tr {
  border-bottom: 1px solid var(--cell-boders);
  cursor: pointer;
}

.combo-box-table td {
  border: 0px solid var(--cell-boders);
  cursor: pointer;
}

.date-picker-container {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  flex-direction: column;
  align-items: center;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  padding-right: 18px;
  border: 2px solid #80808091;
  margin-bottom: 17px;
  border-radius: 10px;
  position: relative;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-group-label {
  position: absolute;
  top: -15px;
  left: 26px;
  background-color: white;
  border: 2px solid #8080805e;
  color: gray;
  border-radius: 6px;
  font-weight: bold;
  min-width: 100px;
  padding-left: 10px;
  padding-right: 10px;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */

  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  padding-right: 18px;
  border: 2px solid #80808091;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-group-label {
  position: absolute;
  top: -15px;
  left: 26px;
  background-color: white;
  border: 2px solid #8080805e;
  color: gray;
  border-radius: 6px;
  font-weight: bold;
  min-width: 100px;
  padding-left: 10px;
  padding-right: 10px;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  border: 2px solid #80808091;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-group-label {
  position: absolute;
  top: -15px;
  left: 26px;
  background-color: white;
  border: 2px solid #8080805e;
  color: gray;
  border-radius: 6px;
  font-weight: bold;
  min-width: 100px;
  padding-left: 10px;
  padding-right: 10px;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  border: 2px solid #80808091;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-group-label {
  position: absolute;
}

.combo-box-table td {
  border: 0px solid var(--cell-boders);
  cursor: pointer;
}

.date-picker-container {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  flex-direction: column;
  align-items: center;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  border: 2px solid #80808091;
  margin-bottom: 10px;
  border-radius: 10px;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-group-label {
  position: absolute;
}

.combo-box-table td {
  border: 0px solid var(--cell-boders);
  cursor: pointer;
}

.date-picker-container {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  flex-direction: column;
  align-items: center;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  border: 2px solid #80808091;
  margin-bottom: 10px;
  border-radius: 10px;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-container form .form-table .form-group-label {
  display: block;
}

.combo-box-table td {
  border: 0px solid var(--cell-boders);
  cursor: pointer;
}

.date-picker-container {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  flex-direction: column;
  align-items: center;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

/* .form-table {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 10px;
    position: relative;
    border: 2px solid #80808091;
    margin-bottom: 10px;
    border-radius: 10px;
}

.form-table-row {
    display: table-row;
}

.form-table-cell {
    display: table-cell;
}

.form-group-label {
    display: block;
    position: absolute;
    min-width: 86px;
    top: -23px;
    left: 29px;
    background-color: wheat;
    padding: 1px;
    padding-left: 10px;
    padding-right: 10px;
} */
.date-picker-container {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  flex-direction: column;
  align-items: center;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  border: 2px solid #80808091;
  margin-bottom: 10px;
  border-radius: 10px;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-group-label {
  display: block;
  position: absolute;
  /* min-width: 86px; */
  top: -13px;
  left: 29px;
  background-color: white;
  color: gray;
  font-weight: bold;
  border-radius: 4px;
  /* padding: 1px; */
  padding-left: 10px;
  padding-right: 10px;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  padding-right: 18px;
  border: 2px solid #80808091;
  margin-bottom: 16px;
  border-radius: 10px;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.form-group-label {
  display: block;
  position: absolute;
  /* min-width: 86px; */
  top: -13px;
  left: 29px;
  background-color: var(--second-color);
  color: white;
  font-weight: bold;
  border-radius: 4px;
  /* padding: 1px; */
  padding-left: 10px;
  padding-right: 10px;
}

.combo-box-table td {
  border: 0px solid var(--cell-boders);
  cursor: pointer;
}

.date-picker-container {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  flex-direction: column;
  align-items: center;
}

.date-picker-inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  /* padding: 10px; */
  width: -webkit-fill-available;
  width: -moz-available;
}

.date-picker-input-box {
  margin-left: 2px;
}

.form-table {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
  padding-right: 20px;
  border: 2px solid #80808091;
  margin-bottom: 14px;
  border-radius: 10px;
}

.form-table-row {
  display: table-row;
}

.form-table-cell {
  display: table-cell;
}

.back-button {
  display: flex;
  border: 2px solid white;
  background-color: var(--nav-hover-color);
  padding: 5px;
  color: white;
  font-size: x-large;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.back-button:hover {
  border: 2px solid var(--second-color);
  background-color: white;
  color: var(--second-color);


}

.form-header-text {
  font-weight: bold;
  font-size: x-large;
  margin-bottom: 10px;

}

.hor-block {
  width: -webkit-fill-available;
  width: -moz-available;
}

.step_form_container {
  display: flex;
  background: #06397066;
  border-radius: 10px;
  padding: 10px;
}

.step_form_inner_container {
  display: block;
  width: 100%;
}

.step_form_header {
  display: flex;
}

.step_form_progress_indicator_container {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 1px;
  position: absolute;
  top: -57px;
}

.step_form_progress_indicator {
  cursor: pointer;
  display: flex;
  background: black;
  color: white;
  padding: 10px;
  min-width: 134px;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  flex-direction: column;
  gap: 5px;
}

.step_form_progress_indicator_finished {
  background: green;
  color: white;
}

.step_form_progress_indicator_finished .step_form_progress_bar {
  background: white;
}

.step_form_progress_indicator_active {
  background: lightgray;
  color: black;
}

.step_form_progress_indicator_number {
  display: flex;
  background: gray;
  padding: 3px;
  width: 19px;
  border-radius: 50%;
  height: 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
}

.step_form_title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.step_form_progress_bar {
  display: flex;
  background: green;
  height: 5px;
  width: 100%;
  border-radius: 10px;
}

.step_form_content_container {
  display: flex;
  background: lightgray;
  flex-direction: column;
  position: relative;
  margin-top: 69px;
  padding: 5px;
  padding-top: 10px;
  border-radius: 10px;
  border: 1px solid black;
}

.step_form_content {
  display: none;
  flex-direction: column;
  min-width: 847px;
}

.step_form_navigation_container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.step_form_nav_btn {
  cursor: pointer;
  border-radius: 20px;
}

.step_form_nav_btn_back {
  background: black;
}

.step_form_nav_btn_next {
  background: olivedrab;
}

.step_form_nav_btn div {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 5px;
  transition: 1s ease-in;
}

.step_form_nav_btn:hover div {
  justify-content: space-between;
  transition: 1s ease-in;
}

@media(max-width:706px) {
  .form-container {
    padding: 13px 4px;
  }

  .form-table {
    grid-template-columns: auto;
  }

  .date-picker-inner-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
}