@charset "UTF-8";
:root {
  --shadow-dark: 0 2rem 6rem rgba(0,0,0, .3);
  --shadow-light: 0 2rem 5rem rgba(0,0,0, .06);
  --line: 1px solid var(--color-grey-light-2);
  --font-main: "RubicDistressed", Garamond, serif;
  --font-paragraph: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.hidden {
  display: none !important;
}

:root {
  --font-main: "RubicDistressed", Garamond, serif;
  --font-paragraph: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

@font-face {
  font-family: "RubicDistressed";
  src: url("../font/RubikDistressed-Regular.ttf");
}
body {
  background-color: #fff;
  font-family: var(--font-paragraph);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
body .container {
  margin: 0 15px;
  padding: 0 15px;
  width: 1320px;
}
@media only screen and (max-width: 1399px) {
  body .container {
    width: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  body .container {
    width: 960px;
  }
}
@media only screen and (max-width: 991px) {
  body .container {
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  body .container {
    width: 100%;
    margin: 0px;
  }
}
@media only screen and (max-width: 576px) {
  body .container {
    width: 100%;
    padding: 0;
  }
}

.error {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 800;
  color: #c31749;
  margin-bottom: 10px;
}

input,
select,
button {
  outline: none;
  height: 28px;
  border-radius: 0;
  border: 1px solid #999;
  padding-left: 10px;
  color: #777;
}

input[type=submit].add-new,
button.delete,
button.edit {
  width: 28px;
  max-width: 28px;
  flex-grow: 0;
  background-color: #c31749;
  border: 1px solid #c31749;
  color: #fff;
  flex-grow: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

button.edit {
  background-color: #2998ff;
  border: 1px solid #2998ff;
}

.clients-search {
  margin-bottom: 15px;
}
.clients-search > .client-add {
  margin-bottom: 15px;
}
.clients-search .client-add {
  padding: 15px;
  background-color: #f0eeee;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 0 10px 0 #f0eeee;
}
.clients-search .client-add .client-new-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.clients-search .client-add .client-new-item input {
  flex-grow: 1;
}
.clients-search .client-add .client-new-item input:not(:last-child) {
  margin-right: 15px;
}

.client-search-item,
.category-search-item {
  width: 100%;
  position: relative;
}
.client-search-item .client-searchfield,
.client-search-item .product-category-searchfield,
.category-search-item .client-searchfield,
.category-search-item .product-category-searchfield {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 10px;
}
.client-search-item #search-res-wrapper,
.category-search-item #search-res-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 100%;
  background-color: #fff;
  border-top: none;
  font-size: 14px;
  z-index: 10;
}
.client-search-item #search-res-wrapper .search-result,
.category-search-item #search-res-wrapper .search-result {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  cursor: pointer;
  align-items: center;
  height: auto;
  min-height: 28px;
  padding-left: 10px;
  border: 1px solid #999;
  border-top: none;
}
.client-search-item #search-res-wrapper .search-result .client-name i,
.client-search-item #search-res-wrapper .search-result .client-phone i,
.client-search-item #search-res-wrapper .search-result .client-bicycle i,
.category-search-item #search-res-wrapper .search-result .client-name i,
.category-search-item #search-res-wrapper .search-result .client-phone i,
.category-search-item #search-res-wrapper .search-result .client-bicycle i {
  color: #c31749;
  margin-right: 6px;
}
.client-search-item #search-res-wrapper .search-result div:not(:last-child),
.category-search-item #search-res-wrapper .search-result div:not(:last-child) {
  margin-right: 15px;
}

.category-search-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f0eeee;
  box-shadow: 0 0 10px 0 #f0eeee;
}
.category-search-item .product-category-search {
  flex: 1;
}
.category-search-item .product-category-search > input {
  width: 100%;
}
.category-search-item .product-category-search #prod-search-res-wrapper .search-result {
  display: grid;
  grid-template-columns: auto 100px;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  background-color: #faf9f9;
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
  height: auto;
  min-height: 28px;
  padding: 0 10px;
}
.category-search-item .product-category-search #prod-search-res-wrapper .search-result[item-type=service] {
  background-color: #ccc;
}
.category-search-item .product-category-search #prod-search-res-wrapper .search-result[item-type=product] {
  background-color: #999;
}
.category-search-item .product-category-search #prod-search-res-wrapper .search-result:hover {
  background-color: #c31749;
  color: #faf9f9;
  box-shadow: 0 0 10px 0 #c31749;
}
.category-search-item .select-categories {
  min-width: 200px;
  border-left: 0px;
  background-color: #bad3d4;
  color: #111;
  padding-right: 15px;
}

.category-search-item + .heading-product-item {
  border-top: 1px solid #999;
}

.repair-add {
  font-family: var(--font-paragraph);
}
.repair-add .user-wrapper {
  display: flex;
  padding: 15px;
  background-color: #f0eeee;
}
.repair-add .user-wrapper .select-user {
  width: 100%;
}
.repair-add #client-label {
  display: block;
  margin: 15px 0;
  padding: 0 10px;
}
.repair-add #client-label .search-result {
  display: flex;
  align-items: center;
  height: 28px;
  gap: 15px;
}
.repair-add #client-label .search-result i {
  position: relative;
  margin-right: 5px;
  display: inline-block;
  color: #c31749;
}
.repair-add .repair-group {
  margin-bottom: 15px;
  padding-top: 15px;
}
.repair-add .repair-group .cat-header {
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  padding: 0px 15px;
  padding-bottom: 13px;
  border-bottom: 1px dashed #111;
  cursor: pointer;
}
.repair-add .repair-group .cat-header i {
  font-size: 12px;
  margin-left: 8px;
  top: -1px;
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
  transition: all 0.2s ease-in;
  color: #c31749;
}
.repair-add .repair-group .cat-header.closed ~ .repair-item, .repair-add .repair-group .cat-header.closed ~ .product-item {
  height: 0px;
  margin: 0;
  font-size: 0px;
}
.repair-add .repair-group .cat-header.closed ~ .repair-item .service-name,
.repair-add .repair-group .cat-header.closed ~ .repair-item .product-name,
.repair-add .repair-group .cat-header.closed ~ .repair-item .cat-price, .repair-add .repair-group .cat-header.closed ~ .product-item .service-name,
.repair-add .repair-group .cat-header.closed ~ .product-item .product-name,
.repair-add .repair-group .cat-header.closed ~ .product-item .cat-price {
  height: 0px;
}
.repair-add .repair-group .cat-header.closed ~ .repair-item input, .repair-add .repair-group .cat-header.closed ~ .repair-item div.decrement, .repair-add .repair-group .cat-header.closed ~ .product-item input, .repair-add .repair-group .cat-header.closed ~ .product-item div.decrement {
  display: none;
}
.repair-add .repair-group .cat-header.closed i {
  transform: rotate(0deg);
}
.repair-add .repair-group .repair-item,
.repair-add .repair-group .product-item {
  transition: all 0.2s ease-in;
  height: 40px;
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  padding: 0px 15px;
}
.repair-add .repair-group .repair-item .service-name,
.repair-add .repair-group .repair-item .product-name,
.repair-add .repair-group .product-item .service-name,
.repair-add .repair-group .product-item .product-name {
  margin-right: auto;
}
.repair-add .repair-group .repair-item .decrement,
.repair-add .repair-group .product-item .decrement {
  padding: 2px 8px;
  margin-right: 20px;
  background-color: #ccc;
  outline: none;
  border: 1px solid #999;
}
.repair-add .repair-group .repair-item input,
.repair-add .repair-group .product-item input {
  width: 40px;
  text-align: center;
  margin-right: 20px;
}
.repair-add .repair-group .repair-item input::-webkit-inner-spin-button,
.repair-add .repair-group .product-item input::-webkit-inner-spin-button {
  display: none;
}
.repair-add .repair-group .repair-item .cat-price,
.repair-add .repair-group .product-item .cat-price {
  min-width: 90px;
}
@media only screen and (max-width: 576px) {
  .repair-add .repair-group .repair-item,
.repair-add .repair-group .product-item {
    flex-wrap: wrap;
    height: auto;
    padding-right: 60px;
  }
  .repair-add .repair-group .repair-item .service-name,
.repair-add .repair-group .repair-item .product-name,
.repair-add .repair-group .repair-item .cat-price,
.repair-add .repair-group .product-item .service-name,
.repair-add .repair-group .product-item .product-name,
.repair-add .repair-group .product-item .cat-price {
    width: 100%;
    height: auto;
    line-height: 40px;
  }
  .repair-add .repair-group .repair-item .decrement,
.repair-add .repair-group .repair-item input,
.repair-add .repair-group .product-item .decrement,
.repair-add .repair-group .product-item input {
    position: absolute;
    right: 15px;
    margin: 0px;
  }
  .repair-add .repair-group .repair-item .decrement,
.repair-add .repair-group .product-item .decrement {
    bottom: 8px;
    width: 40px;
    padding-left: 15px;
  }
  .repair-add .repair-group .repair-item input,
.repair-add .repair-group .product-item input {
    bottom: 40px;
    text-align: center;
    padding: 0;
  }
}
.repair-add .repair-group .repair-item:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px #fbeddb;
}
.repair-add .repair-group .repair-item:nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px #bad3d4;
}
.repair-add .repair-group .product-item:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px #fbeddb;
}
.repair-add .repair-group .product-item:nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px #bad3d4;
}
.repair-add .add-order {
  width: 100%;
  background-color: #c31749;
  color: #fff;
  font-weight: 600;
  border-color: #c31749;
}
.repair-add .repair-group:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px #fbeddb;
}
.repair-add .repair-group:nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px #bad3d4;
}

.form-user-new {
  display: flex;
  padding: 15px;
  background-color: #f4f2f2;
}
.form-user-new form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.form-user-new form input:not([type=submit]) {
  flex: 1;
  margin-right: 15px;
}

.services-new,
.product-new {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.services-new i,
.product-new i {
  height: 40px;
  line-height: 40px;
  width: 40px;
  padding-left: 8px;
  cursor: pointer;
}
.services-new i:hover,
.product-new i:hover {
  background-color: #c31749;
  color: #fff;
}
.services-new i.icon-doc-text,
.product-new i.icon-doc-text {
  background-color: #ccc;
  box-shadow: 0 0 10px 0 #ccc;
  color: #111;
}
.services-new .new-items-wrapper,
.product-new .new-items-wrapper {
  width: 100%;
  padding: 15px 15px 8px 15px;
  background-color: #ccc;
  box-shadow: 0 0 10px 0 #ccc;
}
.services-new .new-items-wrapper input:not([type=submit]), .services-new .new-items-wrapper select,
.product-new .new-items-wrapper input:not([type=submit]),
.product-new .new-items-wrapper select {
  padding-left: 10px;
  flex: 1;
  outline: none;
  margin-right: 10px;
  margin-bottom: 10px;
}
.services-new .new-items-wrapper select,
.product-new .new-items-wrapper select {
  flex: 1;
}
.services-new .new-items-wrapper .select-categories,
.product-new .new-items-wrapper .select-categories {
  flex-basis: 350px;
  flex-grow: 0;
}
.services-new .new-items-wrapper input.price-new,
.services-new .new-items-wrapper input.stock-new,
.product-new .new-items-wrapper input.price-new,
.product-new .new-items-wrapper input.stock-new {
  width: 100px;
  flex: 0;
}
.services-new .new-items-wrapper input.article-new,
.product-new .new-items-wrapper input.article-new {
  width: 150px;
  flex: 0;
}
.services-new .new-items-wrapper input.percent-new,
.product-new .new-items-wrapper input.percent-new {
  width: 60px;
  flex: 0;
}
.services-new .new-items-wrapper form,
.product-new .new-items-wrapper form {
  display: flex;
}

.new-order .select-categories {
  display: none;
}

.all-products .edit-form {
  box-shadow: 0 0 10px 0 #2998ff;
}
.all-products .edit-form form {
  padding: 15px 0;
  background-color: #ccc;
  display: flex;
  flex-wrap: wrap;
}
.all-products .edit-form form .form-group {
  padding: 15px 15px 0 15px;
  position: relative;
  flex-grow: 1;
}
.all-products .edit-form form .form-group label {
  position: absolute;
  left: 15px;
  top: 0px;
  font-size: 12px;
  font-weight: bold;
}
.all-products .edit-form form .form-group textarea {
  padding: 10px;
}
.all-products .edit-form form .form-group input,
.all-products .edit-form form .form-group select {
  width: 100%;
}
.all-products .edit-form form .form-group input.update-btn {
  background-color: #2998ff;
  color: #faf9f9;
}
.all-products .edit-form form .full-width {
  width: 100%;
}
.all-products .edit-form form .full-width input,
.all-products .edit-form form .full-width textarea {
  width: 100%;
}
.all-products .edit-form form .form-group:not(:last-child) {
  margin-bottom: 15px;
}

.products-table {
  display: flex;
  flex-direction: column;
}
.products-table .heading-product-item,
.products-table .product-item {
  display: grid;
  grid-template-columns: 100px 90px auto repeat(4, 90px) 20px;
  gap: 15px;
  min-height: 28px;
  padding: 6px 15px;
  border-bottom: 1px solid #111;
}
.products-table .heading-product-item .image-main,
.products-table .product-item .image-main {
  max-height: 100px;
}
.products-table .heading-product-item > div,
.products-table .product-item > div {
  min-height: 28px;
  align-content: center;
}
.products-table .heading-product-item .product-action,
.products-table .product-item .product-action {
  cursor: pointer;
}
.products-table .heading-product-item div:not(:last-child),
.products-table .product-item div:not(:last-child) {
  border-right: 1px solid #999;
}
.products-table .all-products .search-result {
  height: 28px;
  line-height: 28px;
  padding-left: 15px;
}
.products-table .product-item:last-child {
  border-bottom: none;
}
.products-table .heading-product-item {
  font-weight: bold;
  background-color: #f0eeee;
  box-shadow: 0 0 10px 0 #f0eeee;
}
.products-table .heading-product-item > div {
  justify-content: center;
}
.products-table .product-item:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px 0 #fbeddb;
}
.products-table .product-item:nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px 0 #bad3d4;
}

.dashboard .products-table .category-search-item {
  display: none;
}
.dashboard .products-table .all-products .product-stock {
  background-color: #c31749;
  box-shadow: 0 0 10px 0 #c31749;
  color: #faf9f9;
  font-weight: 800;
  text-align: center;
  position: relative;
}

aside#results {
  width: 100%;
  position: relative;
  display: block;
}
@media only screen and (max-width: 991px) {
  aside#results {
    position: fixed;
    height: auto;
    width: 320px;
    top: 60px;
    left: -320px;
    transition: all 0.3s ease;
  }
  aside#results.results-visible {
    left: 0px;
  }
}
aside#results .summary {
  position: sticky;
  top: 0;
  display: flex;
  padding: 10px 15px;
  font-weight: 600;
  color: #faf9f9;
  background-color: #c31749;
  box-shadow: 0 0 10px 0 #c31749;
}
aside#results .summary #summary {
  margin-left: auto;
}
aside#results .services-wrapper {
  position: sticky;
  top: 38px;
  background-color: #ccc;
  box-shadow: 0 0 10px 0 #ccc;
}
aside#results .services-wrapper .repair-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px dashed #111;
}
aside#results .services-wrapper .repair-item .service-name {
  word-break: break-word;
  margin-right: auto;
  padding-right: 10px;
}
aside#results .services-wrapper .repair-item .cat-price {
  min-width: 80px;
}
aside#results .services-wrapper .products-wrapper .product-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #bad3d4;
  border-bottom: 1px dashed #111;
}
aside#results .services-wrapper .products-wrapper .product-item .product-name {
  word-break: break-word;
  margin-right: auto;
  padding-right: 10px;
}
aside#results .services-wrapper .products-wrapper .product-item .cat-price {
  min-width: 80px;
}

.clients-table .client-retrieved-item,
.clients-table .client-table-headers,
.clients-table .search-result {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0px 15px;
  height: 48px;
  line-height: 48px;
}
.clients-table .client-retrieved-item i,
.clients-table .client-table-headers i,
.clients-table .search-result i {
  margin-right: 6px;
  color: #c31749;
}
.clients-table .client-table-headers {
  background-color: #f0eeee;
  box-shadow: 0 0 10px 0 #f0eeee;
  border-bottom: 1px solid #111;
}
.clients-table .client-table-headers div {
  font-weight: bold;
}
.clients-table .client-retrieved-item:nth-child(even),
.clients-table .search-result:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px 0 #fbeddb;
}
.clients-table .client-retrieved-item:nth-child(odd),
.clients-table .search-result:nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px 0 #bad3d4;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-top: auto;
}
footer i {
  color: #c31749;
  font-size: 20px;
}
footer i:not(:last-child) {
  margin-right: 20px;
}

.user-table {
  background-color: #f4f2f2;
  box-shadow: 0 0 10px 0 #f4f2f2;
}
.user-table .user-retrieved-item {
  display: grid;
  grid-template-columns: auto repeat(5, 160px);
  padding: 10px 15px;
  align-items: center;
}
.user-table .user-retrieved-item .payout {
  width: 28px;
  padding: 0 5px;
  background-color: #c31749;
  border: 1px solid #c31749;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.user-table .user-retrieved-item .user-name {
  min-width: 200px;
  margin-right: auto;
}
.user-table .user-retrieved-item .user-phone {
  min-width: 90px;
}
.user-table .user-retrieved-item .user-money {
  min-width: 100px;
}
.user-table .user-retrieved-item div {
  margin-right: 15px;
  min-height: 28зч;
}
.user-table .user-retrieved-item:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px 0 #fbeddb;
}
.user-table .user-retrieved-item:not(.user-table-headers):nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px 0 #bad3d4;
}
.user-table .user-table-headers {
  font-weight: bold;
  background-color: #f0eeee;
  box-shadow: 0 0 10px 0 #f0eeee;
  border-bottom: 1px solid #111;
}

@media only screen and (max-width: 991px) {
  nav {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 11;
  }
}
nav .naw-wrapper {
  display: flex;
  width: 100%;
  padding: 0 15px;
  justify-content: center;
  font-family: var(--font-main);
  position: relative;
  align-items: center;
  height: 60px;
  background-color: #ccc;
  box-shadow: 0 0 10px 0 #ccc;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  nav .naw-wrapper {
    width: 100%;
  }
}
nav .naw-wrapper .logo {
  position: relative;
  display: inline-block;
  margin-right: auto;
  height: inherit;
  padding: 5px 0;
}
nav .naw-wrapper .logo img {
  position: relative;
  display: block;
  max-height: 100%;
  width: auto;
}
nav .naw-wrapper .mobile-menu {
  position: relative;
  display: none;
  cursor: pointer;
  transition: all 0.4s ease;
  height: 40px;
  width: 28px;
  color: #c31749;
}
@media only screen and (max-width: 1199px) {
  nav .naw-wrapper .mobile-menu {
    display: none;
  }
}
nav .naw-wrapper .mobile-menu i {
  color: #c31749;
  font-size: 26px;
  top: 4px;
  position: relative;
  display: inline-block;
}
nav .naw-wrapper .mobile-menu i.icon-cancel {
  display: none;
}
nav .naw-wrapper #mobile-menu:checked ~ .mobile-menu .icon-menu {
  display: none;
}
nav .naw-wrapper #mobile-menu:checked ~ .mobile-menu .icon-cancel {
  display: block;
}
nav .naw-wrapper #mobile-menu:checked ~ .nav-menu {
  display: inline-flex;
}
nav .naw-wrapper #summ-mobile-label {
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 1199px) {
  nav .naw-wrapper #summ-mobile-label {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0;
    width: auto;
    text-align: center;
  }
  nav .naw-wrapper #summ-mobile-label > * {
    font-size: 20px;
    color: #111;
  }
}

nav + .nav-menu {
  flex-wrap: wrap;
  background-color: #f4f2f2;
}
@media only screen and (max-width: 991px) {
  nav + .nav-menu {
    margin-top: 70px;
  }
}

.nav-menu {
  display: flex;
  flex-direction: row;
  color: #111;
  list-style: none;
  align-self: stretch;
  align-items: center;
  font-weight: bold;
}
.nav-menu li {
  padding: 0 15px;
  text-transform: uppercase;
  align-self: stretch;
  line-height: 60px;
  font-size: 16px;
  transition: all 0.2s ease-in;
}
.nav-menu li:hover {
  background-color: #c31749;
  color: #faf9f9;
  box-shadow: 0 0 10px 0 #c31749;
}
.nav-menu li a {
  display: inline-block;
  text-decoration: none;
  line-height: 60px;
  height: 60px;
}
.nav-menu li.user-name {
  position: relative;
  transition: all 0.2s ease-in;
}
.nav-menu li.user-name:hover {
  background-color: #c31749;
  color: #faf9f9;
}
.nav-menu li.user-name:hover ul {
  background-color: #c31749;
  height: 60px;
  display: block;
}
.nav-menu li.user-name ul {
  display: none;
  position: absolute;
  z-index: 10;
  top: 60px;
  width: 140px;
  right: 0px;
  background-color: #ccc;
}
.nav-menu .current {
  background-color: #c31749;
  color: #fff;
}

.repairs-table {
  display: block;
  margin-bottom: 20px;
}
.repairs-table .table-heading {
  background-color: #f0eeee;
  box-shadow: 0 0 10px 0 #f0eeee;
  border-bottom: 1px dashed #111;
}
.repairs-table .table-heading,
.repairs-table .table-row {
  display: grid;
  grid-template-columns: auto 150px repeat(2, 100px) 200px;
  grid-template-rows: auto;
  gap: 15px;
  padding: 10px 15px;
  align-items: center;
}
.repairs-table .table-row {
  margin-bottom: 15px;
}
.repairs-table .table-row > .order-name {
  cursor: pointer;
}
.repairs-table .table-row .search-results {
  display: grid;
  grid-column-start: 1;
  grid-column-end: 6;
  background-color: #ccc;
  box-shadow: 0 0 10px 0 #ccc;
}
.repairs-table .table-row .search-results form .order-item {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  border-bottom: 1px dashed #111;
}
.repairs-table .table-row .search-results form .order-item div[class*=name] {
  margin-right: auto;
}
.repairs-table .table-row .search-results form .order-item .decrement {
  width: 28px;
  height: 28px;
  background-color: #2998ff;
  color: #faf9f9;
  padding: 4px 10px;
  margin-right: 8px;
}
.repairs-table .table-row .search-results form .order-item input {
  margin-right: 8px;
  width: 50px;
}
.repairs-table .table-row .search-results form .order-item .cat-price {
  width: 80px;
}
.repairs-table .table-row .search-results .search-result,
.repairs-table .table-row .search-results .search-headers {
  display: grid;
  grid-template-columns: auto repeat(3, 100px);
  gap: 15px;
  align-items: center;
  border-bottom: 1px dashed #111;
}
.repairs-table .table-row .search-results .search-result div,
.repairs-table .table-row .search-results .search-headers div {
  padding: 5px 10px;
}
.repairs-table .table-row .search-results .search-result:last-child {
  border-bottom: none;
}
.repairs-table .table-row .search-results .product {
  background-color: #999;
}
.repairs-table .table-row .search-results .search-headers {
  font-weight: bold;
  border-bottom: 1px solid #111;
  background-color: #c31749;
  box-shadow: 0 0 10px 0 #c31749;
  color: #fff;
}
.repairs-table .table-row.order {
  margin-bottom: 0;
  background-color: #bad3d4;
  box-shadow: 0 0 10px 0 #bad3d4;
}
.repairs-table .table-row.order + .order {
  margin-top: 15px;
}
.repairs-table .table-row.client {
  grid-template-columns: repeat(2, 1fr) 380px;
  align-items: center;
  background-color: #fbeddb;
  box-shadow: 0 0 10px 0 #fbeddb;
}
.repairs-table .table-row.client i {
  margin-right: 6px;
  color: #c31749;
}
.repairs-table .table-row .order-actions {
  display: flex;
  justify-content: end;
}
.repairs-table .table-row .order-actions > *:not(:last-child) {
  margin-right: 6px;
}
.repairs-table .table-row .order-actions .edit,
.repairs-table .table-row .order-actions .delete {
  color: #faf9f9;
  height: 28px;
  width: 28px;
  padding: 4px 0 0 3px;
  cursor: pointer;
}
.repairs-table .table-row .order-actions .edit {
  background-color: #2998ff;
}
.repairs-table .table-row .order-actions .delete {
  background-color: #c31749;
}
.repairs-table .table-heading {
  font-weight: bold;
}
.services-table .services-group {
  margin-bottom: 20px;
  padding: 10px 15px 20px 15px;
}
.services-table .services-group .cat-header {
  display: block;
  text-align: left;
  border-bottom: 1px dashed #000;
  margin-bottom: 1px;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 6px;
}
.services-table .services-group .services-item {
  height: 40px;
  display: flex;
  align-items: center;
}
.services-table .services-group .services-item .service-name {
  margin-right: auto;
}
.services-table .services-group .services-item .decrement {
  height: 26px;
  width: 26px;
  margin-right: 20px;
  background-color: #ccc;
  outline: none;
  border: 1px solid #999;
}
.services-table .services-group .services-item input {
  height: 26px;
  width: 40px;
  text-align: center;
  margin-right: 20px;
}
.services-table .services-group .services-item input::-webkit-inner-spin-button {
  display: none;
}
.services-table .services-group .services-item .service-price {
  margin-right: 20px;
}
.services-table .services-group .services-item .service-percent {
  min-width: 50px;
}
.services-table .services-group:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px 0 #fbeddb;
}
.services-table .services-group:nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px 0 #bad3d4;
}

.page-404 .log-wrapper {
  font-family: var(--font-main);
  padding: 100px 0;
}
.page-404 .log-wrapper .heading {
  font-size: 150px;
  text-align: center;
}
.page-404 .log-wrapper .sub-heading {
  font-size: 40px;
  text-align: center;
}

.user-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}
.user-info-wrapper .user-money {
  margin-right: 15px;
}

.month-wrapper .table-heading {
  font-weight: bold;
}
.month-wrapper .month-repairs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(28px, auto);
  align-items: center;
  padding: 0 15px;
}
.month-wrapper .month-repairs:nth-child(even) {
  background-color: #fbeddb;
  box-shadow: 0 0 10px 0 #fbeddb;
}
.month-wrapper .month-repairs:nth-child(odd) {
  background-color: #bad3d4;
  box-shadow: 0 0 10px 0 #bad3d4;
}

.container.new-order {
  display: grid;
  grid-template-areas: "header header" "menu result" "footer footer";
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 60px auto 60px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .container.new-order {
    grid-template-columns: 1fr;
    grid-template-rows: 60px auto 60px 60px;
    grid-template-areas: "header" "menu" "result" "footer";
    padding: 0 15px;
  }
}
.container.new-order nav {
  grid-area: header;
  box-shadow: 0px 0px 15px #999;
}
.container.new-order section {
  grid-area: menu;
}
.container.new-order aside {
  grid-area: result;
}
.container.new-order footer {
  grid-area: footer;
}

.container.one-column {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .container.one-column nav + section {
    margin-top: 75px;
  }
}
.container.one-column footer {
  margin-top: auto;
}

.container.login-page {
  grid-template-areas: "content field";
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.container.login-page section {
  grid-area: content;
  display: flex;
}
.container.login-page section img {
  width: 100%;
  height: auto;
  align-self: center;
}
@media screen and (max-width: 1199px) {
  .container.login-page section img {
    margin-top: auto;
  }
}
.container.login-page aside {
  grid-area: field;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.container.login-page aside .forms-wrapper {
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.container.login-page aside .forms-wrapper .login,
.container.login-page aside .forms-wrapper .registration {
  position: relative;
  width: 50%;
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  background-color: #f4f2f2;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #c31749;
  box-shadow: 0 0 10px 0 #c31749;
}
.container.login-page aside .forms-wrapper .login.active,
.container.login-page aside .forms-wrapper .registration.active {
  background-color: #c31749;
  color: #fff;
}
.container.login-page aside .forms-wrapper .login.active ~ .registration-form,
.container.login-page aside .forms-wrapper .registration.active ~ .login-form {
  display: none;
}
.container.login-page aside .forms-wrapper form {
  width: 100%;
  padding: 10px;
  background-color: #c31749;
  box-shadow: 0 0 10px 0 #c31749;
}
.container.login-page aside .forms-wrapper form input,
.container.login-page aside .forms-wrapper form button {
  width: 100%;
}
.container.login-page aside .forms-wrapper form input:not(:last-child) {
  margin-bottom: 10px;
}
.container.login-page aside .forms-wrapper form .error {
  color: #111;
  line-height: 20px;
}
.container.login-page aside footer {
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .container.login-page aside {
    flex-direction: column;
  }
}
@media screen and (max-width: 1199px) {
  .container.login-page aside footer {
    margin-bottom: auto;
  }
}
@media screen and (max-width: 1199px) {
  .container.login-page {
    grid-template-areas: "content" "field";
    grid-template-columns: 1fr;
  }
}

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