:root {
  --font-family: 'Montserrat', sans-serif;
  --primary-color1: #8ab920;
  --primary-color2: #204285;
}
* {
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
  font-size: 16px;
  background: #f9f9f9;
}
label {
  display: block;
  padding: 10px 0;
}
input {
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  outline: none;
}
input:focus {
  border-color: #999 !important;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
textarea,
select,
button {
  border-radius: 5px;
  border: 1px solid var(--primary-color1);
  outline: none;
  font-size: 14px;
}
textarea:focus,
select:focus,
button:focus {
  border-color: #00a193 !important;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
select {
  width: 100%;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
select,
textarea {
  padding: 7px 10px;
  font-size: 14px;
}
.sidebar {
  min-width: 215px;
}
.table-tr {
  cursor: pointer;
}
.table-tr:hover {
  background: #ebf8f0;
}
tr:nth-child(odd) {
  background: #fff;
}
tr:nth-child(even) {
  background: #f5f5f5;
}
.table-header .table-th {
  cursor: pointer;
}
.table-header th:hover {
  text-decoration: underline;
}
.table-header th.sortable {
  text-decoration: none;
  cursor: not-allowed;
}
#sidebar {
  display: none;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 1024px) {
  #sidebar {
    display: block;
  }
}
#sidebar.active {
  display: block;
}
.sidebar {
  flex: 0;
  letter-spacing: 0;
  word-spacing: 0;
  transition: opacity 0.2s ease;
  height: 100%;
  z-index: 50;
  position: fixed;
  background-color: #fff;
  box-shadow: 0 0 8px 1px rgba(0,0,0,0.5);
}
@media screen and (min-width: 1024px) {
  .sidebar {
    box-shadow: none;
    background-color: transparent;
    position: relative;
    z-index: 10;
  }
}
.search-item {
  width: 100%;
  flex-grow: 1;
  padding: 5px;
  display: flex;
  flex-direction: column;
}
.search-item-max-third {
  max-width: 33%;
}
.search-item span {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #888;
}
.search-item input,
.search-item span {
  width: 100%;
}
.search-item input {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 7px;
}
.message .modal-container textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  min-height: 250px;
  padding: 8px;
}
.column-row-value a {
  color: #4a4a4a;
}
.email-templates textarea {
  min-height: 350px;
}
.search-toggle {
  opacity: 1;
}
input[type="file"] {
  padding: 10px;
}
/*# sourceMappingURL=resources/assets/stylus/admin.css.map */
