* {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  font-weight: 400; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Flex", sans-serif;
  margin: .3em 0;
  font-weight: bold; }

h1 {
  font-size: 3.5em; }

h2 {
  font-size: 3em; }

h3 {
  font-size: 2.5em; }

h4 {
  font-size: 2em; }

h5 {
  font-size: 1.5em; }

h6 {
  font-size: 1.25em; }

p {
  padding: 10px 0; }

strong {
  font-weight: 600;
  font-size: 1em; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #DDDDDD;
  margin: .25em 0;
  padding: 0; }

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: #CFCFCF;
  color: #344A5F; }
  body #content {
    padding: 5px; }

::-webkit-scrollbar {
  width: 2px;
  height: 5px; }

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 165, 0, 0);
  border-radius: 0; }

::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 6px rgba(117, 117, 117, 0.75); }

a {
  text-decoration: none;
  color: #344A5F; }

.text-center {
  text-align: center; }

header {
  display: flex;
  gap: 1em;
  justify-content: space-between;
  padding: .5em;
  z-index: 1;
  background-color: #F0F1F2;
  align-items: center; }
  header a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 1.25em; }
    header a:hover {
      color: #ffffff;
      text-decoration: underline; }
  header .logotype {
    max-height: 30px;
    width: auto; }
  header .account_block {
    color: #ffffff;
    display: flex;
    justify-items: center;
    align-items: center; }
    header .account_block .logo {
      height: 34px;
      width: auto;
      margin: 0 12px; }
    header .account_block .username {
      color: #252330;
      position: relative;
      display: flex;
      font-size: 1.1em;
      flex-direction: column;
      justify-content: center;
      align-content: center;
      height: 100%;
      z-index: 2;
      cursor: pointer; }
      header .account_block .username span {
        color: #757575; }
      header .account_block .username a {
        display: none; }
      header .account_block .username.active {
        cursor: pointer; }
        header .account_block .username.active a {
          display: inline-block;
          position: absolute;
          right: 0;
          bottom: -2em;
          z-index: 9; }

#content {
  min-height: calc(100vh - 72px); }
  #content .inner_content {
    max-height: calc(100vh - 170px);
    min-height: 100px;
    overflow-y: scroll;
    scrollbar-width: thin;
    position: relative;
    padding: 4px; }

footer {
  background: black;
  width: 100%;
  display: flex;
  justify-content: center;
  color: #ffffff;
  font-weight: 400; }
  footer a {
    font-size: 1.2em;
    padding: .5em;
    color: #ffffff;
    text-decoration: none;
    justify-self: flex-start; }

input, select, textarea {
  display: inline-block;
  background-color: #FFFFFF;
  width: 100%;
  border-radius: 3px;
  border: none;
  padding: 6px; }
  input:focus, select:focus, textarea:focus {
    outline: none; }

input[type="number"] {
  text-align: right; }

label {
  color: #757575; }

button, .btn {
  display: inline-block;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 1.1em;
  border: none;
  background-color: #6175eb;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  justify-items: center;
  align-items: center; }
  button:hover, .btn:hover {
    background-color: #5768cf;
    cursor: pointer;
    text-decoration: none; }

form {
  text-align: center;
  width: auto;
  max-width: 600px;
  margin: 10px auto; }
  form label {
    display: none; }
  form input, form select, form textarea {
    margin: 5px 0; }
  form input[type='checkbox'] {
    width: 18px;
    height: 18px; }
  form p {
    padding: 0;
    margin: 4px 0;
    text-align: left; }
    form p label {
      text-align: left;
      display: inline-block; }
    form p input[type=checkbox] {
      width: 18px;
      height: 18px; }
  form button {
    display: inline-flex;
    padding: 8px 10px !important;
    font-size: 1.1em;
    margin: 4px 0; }

.company_logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .5rem; }
  .company_logo > img {
    height: auto;
    max-height: 30px;
    width: auto;
    max-width: 50px; }

.create_company {
  padding: 6px 0 0 6px;
  font-size: 1.2em; }
  .create_company span {
    font-size: 1em; }

#auth_form {
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-content: center;
  gap: 36px;
  margin: 40px 0; }
  #auth_form .logotype {
    max-width: 160px; }
  #auth_form .form_title {
    text-align: center;
    font-size: 24px;
    font-weight: 300; }
  #auth_form form {
    text-align: center;
    border-radius: 5px;
    border: 1px solid #CACDD6;
    background: #FFF;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px; }
    #auth_form form p {
      display: grid;
      grid-template-rows: auto auto; }
      #auth_form form p label, #auth_form form p input {
        font-size: 1.25em;
        font-weight: 300; }
      #auth_form form p input {
        border-radius: 5px;
        border: 1px solid #CACDD6;
        background: #F8F9FA; }
    #auth_form form button {
      border-radius: 5px;
      background: #6175eb;
      box-shadow: 0 0 2px 0 #6175eb;
      width: 100%;
      display: block;
      margin: 20px 0 0 0; }
      #auth_form form button:hover {
        background-color: #6570BF; }

.account_wrap {
  gap: 1em;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 580px;
  position: relative;
  margin: 0 auto; }
  .account_wrap .content {
    position: relative;
    width: 100%;
    max-width: 580px;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    place-self: center; }
  .account_wrap .nav_menu {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 4px;
    position: relative; }
    .account_wrap .nav_menu a {
      background-color: #FFFFFF;
      color: #344A5F;
      border: none;
      border-radius: 4px;
      font-size: 1.2em;
      text-align: center;
      padding: 6px 0;
      position: relative; }
      .account_wrap .nav_menu a:hover {
        background-color: rgba(106, 103, 120, 0.25);
        font-weight: 500; }
      .account_wrap .nav_menu a.active {
        background-color: #6A6778;
        color: #FFFFFF;
        font-weight: 500; }
      .account_wrap .nav_menu a i {
        position: absolute;
        left: 15px;
        top: 10px; }
  .account_wrap .main_filter {
    display: flex;
    gap: .5em;
    margin: 4px 0;
    position: relative; }
    .account_wrap .main_filter label {
      width: 100%; }
      .account_wrap .main_filter label input {
        font-size: 1.2em;
        padding: 6px;
        width: 100%;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        border: none;
        font-weight: 300;
        color: #DDDDDD; }
        .account_wrap .main_filter label input::placeholder {
          color: #DDDDDD; }
    .account_wrap .main_filter a {
      color: #FFFFFF;
      font-weight: 300;
      display: inline-flex;
      justify-items: center;
      align-items: center; }
      .account_wrap .main_filter a:hover {
        background-color: #6570BF; }
      .account_wrap .main_filter a i {
        font-weight: 300;
        font-size: 1em;
        margin-right: 5px; }
  .account_wrap .title_block {
    font-size: 1em;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin: 5px 0; }
    .account_wrap .title_block .btn {
      font-size: 1em;
      font-weight: normal; }

.order_status {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .order_status strong {
    font-size: 1.1em; }
  .order_status span {
    margin: 0 6px 0 0; }
  .order_status .orange, .order_status .blue, .order_status .green, .order_status .red {
    display: inline-block;
    border-radius: 50%;
    border: none;
    width: 14px;
    height: 14px; }
  .order_status .orange {
    background-color: #F38E33; }
  .order_status .blue {
    background-color: #2A94D6; }
  .order_status .green {
    background-color: #4AB471; }
  .order_status .red {
    background-color: #E34133; }

.order_datas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .5em .2em 26px; }

.order_meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-weight: 300;
  color: #757575;
  z-index: 10; }
  .order_meta .logo_w {
    position: absolute;
    z-index: 0;
    bottom: 5px;
    right: 5px; }
    .order_meta .logo_w > img {
      height: auto;
      max-height: 40px;
      width: auto;
      max-width: 60px; }
  .order_meta strong {
    color: #344A5F;
    font-weight: 600;
    padding: 0 10px 0 0; }
  .order_meta i {
    color: #2A94D6;
    padding: 0 5px; }
  .order_meta .meta_address {
    color: #6175eb; }
    .order_meta .meta_address a {
      color: #6175eb; }
  .order_meta .meta_company {
    color: #2C293A;
    font-weight: 600; }
    .order_meta .meta_company .logo {
      height: 20px;
      width: auto; }
  .order_meta .meta_name {
    color: #757575; }
    .order_meta .meta_name i {
      color: #757575;
      font-size: 1em;
      font-weight: 300; }

.order_title {
  color: #344A5F;
  font-size: 1.2em;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 0 0 0; }

.save_order, .comments_form {
  background-color: #f0f1f2;
  border-radius: 6px;
  padding: .5em;
  margin: 0 0 .75em 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25); }

.comments_form {
  padding: 0 .5em; }

.order_item {
  display: block;
  border-radius: 6px;
  background-color: #FFFFFF;
  padding: .5em;
  margin: 0 0 .75em 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  color: #344A5F;
  position: relative; }
  .order_item .order_title {
    padding: 10px 0 6px 0; }
  .order_item .order_desc {
    padding: 4px 0;
    word-wrap: break-word;
    margin: 0 0 8px 0;
    font-size: 1.2em; }
    .order_item .order_desc a {
      color: #50599B; }
    .order_item .order_desc p {
      padding: 0;
      font-size: 16px; }

.order_edit .status {
  text-align: right; }
  .order_edit .status span {
    color: #252330;
    font-weight: 600; }

.order_edit .order_desc {
  padding: 8px 0; }

.order_edit .order_medias a {
  display: inline-block;
  padding: 4px 0;
  color: #50599B; }

.order_edit .order_medias i {
  color: #2A94D6; }

.order_edit .order_meta {
  padding: .5em .5em 0; }

.order_edit .order_comments {
  padding: 0 .5em;
  background-color: #FFFFFF;
  border-radius: 6px; }
  .order_edit .order_comments .title {
    color: #757575; }
  .order_edit .order_comments .comment_item {
    padding: .5em 0;
    margin: 6px 0;
    color: #252330;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: .25em;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }
    .order_edit .order_comments .comment_item .comment_title span {
      font-weight: 300; }
    .order_edit .order_comments .comment_item .comment_title .comment_name {
      font-weight: 500; }
    .order_edit .order_comments .comment_item .comment_title .comment_data {
      color: #757575; }
    .order_edit .order_comments .comment_item .comment_text {
      word-break: break-all; }
    .order_edit .order_comments .comment_item .comment_medias {
      padding: 8px 0 0 0;
      display: block;
      color: #50599B; }
      .order_edit .order_comments .comment_item .comment_medias a {
        color: #50599B;
        display: inline-block; }
      .order_edit .order_comments .comment_item .comment_medias i {
        color: #2A94D6; }

.order_content {
  background-color: #FFFFFF;
  border-radius: 3px;
  position: relative; }

.status_changer {
  display: grid;
  grid-template-columns: calc(50% - .5em) calc(50% - .5em);
  gap: 1em; }

.manager_changer {
  margin: 10px 0; }
  .manager_changer form {
    display: grid;
    grid-template-columns: calc(50% - .5em) calc(50% - .5em);
    gap: 1em; }
    .manager_changer form p {
      padding: 0;
      margin: 0; }
    .manager_changer form button {
      padding: 6px 10px !important;
      margin: 0;
      align-self: end; }

.archive_changer {
  display: grid;
  grid-template-columns: calc(50% - .5em) calc(50% - .5em);
  gap: 1em;
  padding: 10px 0;
  margin: 10px 0; }
  .archive_changer p {
    padding: 0;
    margin: 0; }
  .archive_changer button {
    padding: 6px 10px !important;
    margin: 0;
    align-self: end; }

.companies_list {
  padding: 0.5em;
  list-style: none; }

#id_equipments label {
  display: grid;
  grid-template-columns: auto 1fr;
  text-align: left;
  gap: 1em; }

._equipment {
  position: relative; }
  ._equipment .btn_equip {
    position: absolute;
    right: 20px;
    top: 10px; }

.half_row {
  width: 48.5%; }

.grey {
  color: #757575; }

.order_equipments {
  background: #FFF;
  border-top: 1px solid #ddd;
  padding: 0 .5em;
  margin: 0; }

.date_filter_btn {
  background-color: #FFFFFF !important;
  color: #344A5F !important;
  border: none;
  border-radius: 4px;
  font-size: 1.2em;
  text-align: center;
  padding: 6px;
  position: relative; }
  .date_filter_btn:hover {
    background-color: rgba(106, 103, 120, 0.25);
    font-weight: 500; }
  .date_filter_btn i {
    margin-right: 1px; }

.date_filter {
  display: flex;
  gap: .5rem;
  position: fixed;
  right: calc(50% - 290px);
  top: 125px;
  height: 0;
  overflow: hidden;
  z-index: 10; }
  .date_filter.active {
    height: 3rem; }

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