* {
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

table {
  border-collapse: collapse;
  tr:nth-child(even) { background-color: whitesmoke; }
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #747d86;
  background: #fff;
}

a,
span,
p,
b,
h1,
h2,
h3,
h4,
h5 {
  color: #747d86;
}

i {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

h1 {
  font-size: 48px;
}

h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
}

a {
  text-decoration: none;
}

input::placeholder {
  color: #eee;
  opacity: 1;
}

.sidebar {
  background: #656F78;
  height: 100vh;
  width: 16rem;
  padding: 1rem;
  position: fixed;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  z-index: 50;
}
.sidebar-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 40;
}
@media (min-width: 768px) {
  .sidebar-overlay {
    display: none;
  }
}
.sidebar .logo {
  display: flex;
  padding-bottom: 1rem;
  border-bottom: #747d86 1px solid;
}
.sidebar .logo img {
  width: 100%;
}
.sidebar .menu {
  margin-top: 1rem;
}
.sidebar .menu-element {
  margin-bottom: 0.25rem;
}
.sidebar .menu-element a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: #d1d5db;
  border-radius: 0.375rem;
}
.sidebar .menu-element a.active {
  background: #747d86;
  color: #fff;
}
.sidebar .menu-element a.active span {
  color: #fff;
}
.sidebar .menu-element a i {
  margin-right: 0.75rem;
}
.sidebar .menu-element a span {
  color: #d1d5db;
  line-height: 1.25rem;
  font-size: 0.875rem;
}

.main {
  min-height: 100vh;
  background: #F9FAFB;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media (min-width: 768px) {
  .main {
    margin-left: 16rem;
    width: calc(100% - 256px);
  }
  .main.active {
    margin-left: 0;
    width: 100%;
  }
}
.main .navbar {
  display: flex;
  padding: 0.5rem 1.5rem;
  align-items: center;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  background: #fff;
  z-index: 30;
  position: sticky;
}
.main .navbar button {
  border: none;
  background: transparent;
  color: #939aa1;
}
.main .navbar button:hover {
  cursor: pointer;
  color: #747d86;
}
.main .navbar button i {
  color: #939aa1;
}
.main .navbar span {
  margin-left: 1rem;
  font-weight: 500;
  color: #939aa1;
}
.main .navbar ul {
  margin-left: auto;
}
.main .navbar ul li {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.main .navbar ul li button {
  display: flex;
  align-items: center;
}
.main .navbar ul li button img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
}
.main .content {
  padding: 1rem;
}
.main .content__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .main .content__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .main .content__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.main .content__grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 1024px) {
  .main .content__grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .main .content__grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.main .content__grid-cols-1 .content__information {
  border: #f3f4f6 1px solid;
}

.front-button {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  padding: 12px 19px 7px;
  color: #fff;
  background-color: #1f89ca;
  border: none;
  outline: none;
  font-family: Bebas Neue Bold;
  cursor: pointer;
}

.card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border: #f3f4f6 1px solid;
}
.card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  align-items: flex-start;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.card__header-title {
  font-weight: 500;
}
.card__header i {
  color: #9ca3af;
}
.card .error {
  color: #b90e0e;
}
.card__body {
  display: flex;
  flex-direction: column;
  row-gap: 0.125rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.card__body .title {
  padding-top: 5px;
  font-weight: bold;
}
.card__list {
  padding-left: 20px;
  overflow-y: auto;
  max-height: 150px;
}
.card__list label {
  padding-left: 10px;
}
.card__contacts {
  padding-left: 20px;
}
.card__form div {
  margin-top: 0.5rem;
}
.card__form div:first-child {
  margin-top: 0;
}
.card__form div label {
  display: inline;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5b646c;
}
.card__form div input[type=text], .card__form div input[type=tel], .card__form div input[type=email] {
  margin-top: 0.5rem;
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  width: 100%;
  border: none;
  font-family: inherit;
  color: #5b646c;
  box-shadow: inset 0 0 0 0 #fff, inset 0 0 0 1px rgb(209, 213, 219), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 rgba(0, 0, 0, 0);
}
@media (min-width: 640px) {
  .card__form div input[type=text], .card__form div input[type=tel], .card__form div input[type=email] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.card__form div input[type=text].input-disabled, .card__form div input[type=tel].input-disabled, .card__form div input[type=email].input-disabled {
  background: #f3f4f6;
}
.card__form div input[type=text]::placeholder, .card__form div input[type=tel]::placeholder, .card__form div input[type=email]::placeholder {
  color: #d1d5db;
}
.card__form div select {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: rgb(209, 213, 219) 1px solid;
  background-color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #747d86;
}
.card__form_btns {
  padding-top: 40px;
  text-align: center;
}
.card__form_btns a {
  padding-right: 50px;
}
.card__form_btns button {
  width: 40%;
  display: inline;
}
.card__form-button {
  display: flex;
  width: 100%;
  justify-content: center;
  border-radius: 0.375rem;
  background: #2089CA;
  padding: 0.375rem 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 600;
  border: none;
  font-family: inherit;
}
.card__form-button:hover {
  background: #3695cf;
  cursor: pointer;
}

.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .search-form {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
}
.search-form__wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .search-form__wrapper {
    flex-basis: 100%;
  }
}
.search-form__input {
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  width: 100%;
  background: #f9fafb;
  outline: none;
  border: #f3f4f6 1px solid;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.search-form__input::placeholder {
  color: #9ca3af;
}
.search-form__input:focus {
  border: #3695cf 1px solid;
}
.search-form__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: #9ca3af;
  transform: translate(0, -50%);
}
.search-form__button {
  display: flex;
  justify-content: center;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  background: #2089CA;
  padding: 0.375rem 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 600;
  border: none;
}
.search-form__button:hover {
  cursor: pointer;
  background: #3695cf;
}
.search-form__select {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: #f3f4f6 1px solid;
  background-color: #f9fafb;
  border-radius: 0.375rem;
  appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTExLjk5OTcgMTMuMTcxNEwxNi45NDk1IDguMjIxNjhMMTguMzYzNyA5LjYzNTg5TDExLjk5OTcgMTUuOTk5OUw1LjYzNTc0IDkuNjM1ODlMNy4wNDk5NiA4LjIyMTY4TDExLjk5OTcgMTMuMTcxNFoiIGZpbGw9InJnYmEoMTU2LDE2MywxNzUsMSkiPjwvcGF0aD48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #747d86;
}
@media (max-width: 768px) {
  .search-form__select {
    flex-basis: 100%;
  }
}
.search-form__select:focus {
  border: #3695cf 1px solid;
}

.dropdown-menu {
  z-index: 30;
  background: #fff;
  border: #f3f4f6 1px solid;
  width: 100%;
  max-width: 140px;
  border-radius: 0.375rem;
  padding: 0.375rem 0;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  font-size: 13px;
  padding: 0.375rem 1rem;
  color: #939aa1;
}
.dropdown-menu li a:hover {
  background: #f9fafb;
  color: #3695cf;
}
.dropdown button {
  font-size: 0.75rem;
}

.hidden {
  display: none;
}

.-translate-x-full {
  transform: translate(-100%);
}

.table {
  width: 100%;
  min-width: 540px;
}
.table thead tr th {
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #9ca3af;
  text-align: left;
  padding: 0.5rem 1rem;
  background: #f9fafb;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.table thead tr th:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.table thead tr th:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.table tbody tr td {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-bottom: #f9fafb 1px solid;
}
.table tbody tr td span {
  color: inherit;
}
.table tbody tr td a {
  color: inherit;
  width: 1.5rem;
  height: 1.5rem;
}
.table tbody tr td a.table__edit-button {
  color: inherit;
  width: 1.5rem;
  height: 1.5rem;
  background: #f9fafb;
  display: inline;
  padding-right: 10px;
  justify-content: center;
  border-radius: 0.25rem;
}
.table tbody tr td a.table__edit-button i {
  color: inherit;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.table-wrapper {
  overflow-x: auto;
}

.pagination {
  margin-left: auto;
  margin-right: auto;
}
.pagination ul {
  display: inline-flex;
  height: 2.5rem;
  line-height: 1.25rem;
  font-size: 0.875rem;
}
.pagination ul li {
  height: 100%;
}
.pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #a3a9ae;
  line-height: 1.25rem;
  background: #fff;
  border: #d1d5db 1px solid;
  border-inline-end-width: 0;
  height: 2.5rem;
}
.pagination ul li a.active {
  color: #2089CA;
  background: #eff6ff;
}
.pagination ul li a.active:hover {
  background: #90c4e5;
  color: #1d4ed8;
}
.pagination ul li a:hover {
  background: #f3f4f6;
  color: #848c93;
}
.pagination ul li:first-child a {
  border-start-start-radius: 0.5rem;
  border-end-start-radius: 0.5rem;
}
.pagination ul li:last-child a {
  border: #d1d5db 1px solid;
  border-start-end-radius: 0.5rem;
  border-end-end-radius: 0.5rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .modal {
    padding-top: 10px;
  }
}
.modal_content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border: #f3f4f6 1px solid;
  border-radius: 0.375rem;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .modal_content {
    width: 95%;
  }
}
.modal_close {
  color: #aaaaaa;
  float: right;
  margin-right: 10px;
  font-size: 28px;
  font-weight: bold;
}
.modal_close:hover, .modal_close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

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