.p-10 {
  padding: 10px;
}

.container {
  overflow: auto;
  margin: 0 auto;
  width: 80%;
}

.mulish {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.dropdown-container {
  position: relative;
  display: inline-block;
  width: 250px;
  font-size: 15px;
  margin-bottom: 15px;
}
.dropdown-container .dropdown-list {
  position: absolute;
  width: 100%;
  padding: 0;
  margin-top: 0;
  list-style: none;
  z-index: 999;
  animation: HideList 0.6s step-start 0.4s forwards;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.23);
  max-height: 12rem;
  transition: all 0.3s ease-in;
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 0;
}
.dropdown-container .dropdown-option {
  width: 100%;
  display: block;
  padding: 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #6b6b6b;
}
.dropdown-container .dropdown-option:hover, .dropdown-container .dropdown-option:focus {
  color: #318825;
}
.dropdown-container .dropdown-active {
  background-color: #f3f3f3 !important;
  color: #1dad00;
}
.dropdown-container .dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: all 0.2s ease-in;
}
.dropdown-container .dropdown-value {
  display: flex;
}
.dropdown-container .dropdown-input {
  display: none !important;
}
.dropdown-container .dropdown-input:checked + .dropdown-value-text {
  display: block;
}
.dropdown-container .dropdown-current {
  position: relative;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.11);
  cursor: pointer;
  border-radius: 8px;
  outline: none;
}
.dropdown-container .dropdown-current:focus + .dropdown-list {
  opacity: 1;
  animation-name: none;
  pointer-events: all;
}
.dropdown-container .dropdown-current:focus + .dropdown-list .dropdown-option {
  cursor: pointer;
}
.dropdown-container .dropdown-current:focus .dropdown-caret {
  transform: translateY(-50%) rotate(180deg);
}
.dropdown-container .dropdown-value-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 10px;
}

@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
button {
  padding: 10px 20px;
  border-radius: 8px;
  outline: none;
  border: none;
  background-color: #fff;
  transition: all 0.4s ease;
  font-size: 17px;
  box-shadow: 0 4px 8px rgba(15, 15, 15, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
button svg {
  margin-right: 10px;
}
button:hover {
  background-color: #f7f7f7;
}

.input-field {
  margin-top: 20px;
  text-align: left;
}
.input-field label {
  font-weight: bold;
}
.input-field input,
.input-field textarea {
  padding: 8px 10px;
  box-shadow: 0 2px 4px rgba(15, 15, 15, 0.18);
  border: none;
  outline: none;
  font-size: 17px;
  width: 100%;
  margin-bottom: 10px;
}
.input-field textarea {
  font-family: "Mulish", sans-serif;
  height: 200px;
  resize: none;
}

.items-list {
  margin-top: 20px;
}
.items-list .itm {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #eeecec;
}
.items-list .itm:last-child {
  border: none;
}
.items-list .itm section {
  flex: 1;
  padding: 8px;
  box-sizing: border-box;
  background-color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
}
.items-list .itm section p {
  margin: 0;
}
.items-list .itm section .price {
  margin-top: 10px;
}
.items-list .itm section:hover {
  background-color: #f7f7f7;
}
.items-list .itm .remove-btn {
  width: 40px;
  height: 40px;
  margin-left: auto;
  background-color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
}
.items-list .itm .remove-btn svg {
  color: black;
}
.items-list .itm .remove-btn:hover {
  background-color: #f7f7f7;
}
.items-list .itm .remove-btn:hover svg {
  color: #cf1a1a;
}

.admin-buttons {
  display: flex;
}
.admin-buttons .logout {
  margin-left: 20px;
  background-color: #faadad;
}

.admin {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 3, 3, 0.14);
  animation: fadeIn 0.4s forwards;
  z-index: 2;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  width: 900px;
  padding: 15px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.26);
  user-select: auto;
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 100vw;
  }
}
.modal .modal-content .modal-header {
  display: flex;
  align-items: center;
}
.modal .modal-content .modal-close {
  margin-left: auto;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: black;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: none;
}
.modal .modal-content .modal-close svg {
  margin: 0;
}
.modal .modal-content .modal-close:hover {
  background-color: #f1f1f1;
}
.modal .modal-content .row-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.tooltip {
  position: relative;
  cursor: pointer;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  font-size: 13px;
  background-color: rgba(43, 43, 43, 0.53);
  color: white;
  max-width: 200px;
  bottom: -50%;
  box-shadow: 0 2px 4px rgba(36, 36, 36, 0.1);
  text-align: center;
  border-radius: 5px;
  pointer-events: none;
  user-select: none;
  padding: 5px;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}
.tooltip:hover::after {
  transform: translate(0%, 50%);
  opacity: 1;
}

.autocomplete-field {
  position: relative;
}
.autocomplete-field .autocomplete-list {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(0, 100%);
  width: 100%;
  z-index: 999;
  list-style: none;
  max-height: 140px;
  overflow-y: scroll;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.autocomplete-field .autocomplete-list li {
  display: flex;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}
.autocomplete-field .autocomplete-list li:last-child {
  border: none;
}
.autocomplete-field .autocomplete-list li:hover {
  background-color: #f3f3f3;
}

.custom-scroll {
  scrollbar-width: 8px;
  -ms-overflow-style: none;
}
.custom-scroll::-webkit-scrollbar {
  background: transparent;
  width: 8px;
  height: 8px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(71, 71, 71, 0.89);
  border-radius: 5px;
}

.invoice-item {
  cursor: pointer;
  background-color: white;
  border-radius: 10px;
  transition: all 0.4s ease;
  padding: 5px 10px;
  display: flex;
  align-items: center;
}
.invoice-item .price {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.invoice-item .info {
  display: inline-block;
}
.invoice-item .title {
  font-weight: bold;
}
.invoice-item:hover {
  background-color: #f8f7f7;
}
.invoice-item .buttn {
  padding: 10px;
  background-color: white;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 10px;
}
.invoice-item .buttn:hover {
  background-color: #f5f5f5;
}
.invoice-item .buttn.download:hover {
  color: #0816d6;
}
.invoice-item .buttn.remove:hover {
  color: #d81313;
}

.invoice-list {
  margin-top: 20px;
}

.page {
  display: flex;
  align-items: center;
}
.page-text {
  margin-right: 10px;
}
.page-control {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.page-btn {
  padding: 10px;
  background-color: white;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 10px;
}
.page-btn.disabled {
  color: #d4d4d4;
}
.page-btn:hover {
  background-color: #f5f5f5;
}

.tools {
  display: flex;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

/*# sourceMappingURL=styles.css.map */
