@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  height: 100vh;
}

body {
  font-family: "Roboto", system-ui;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #000;
  height: calc(100vh - 90px);
  margin-top: 90px;
}

a {
  color: #283d28;
  text-decoration: underline;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  color: #7da13d;
}
a:focus {
  outline: none;
}
a:before, a:after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

input, textarea, button {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
input:hover, textarea:hover, button:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
input:focus, textarea:focus, button:focus {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  outline: none;
}

.navbar-brand {
  margin-right: 30px;
  font-weight: 500;
  padding-bottom: 8px;
}

.col-form-label {
  font-size: 14px;
  font-weight: 500;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
}

span.required {
  color: red;
  font-size: 22px;
  line-height: 0;
}

.center {
  text-align: center;
}

.form-control.error {
  border-color: red;
}

label.error {
  position: absolute;
  color: red;
  font-size: 12px;
  margin-top: -2px;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  -webkit-box-shadow: inset 0 -1px 0 #ddd;
          box-shadow: inset 0 -1px 0 #ddd;
}

#display_mode {
  display: block;
}

#mobile_mode {
  display: none;
}
#mobile_mode .page_title {
  margin-top: -30px;
}
#mobile_mode .page_title h1 {
  margin: 0;
}

@media screen and (max-width: 992px) {
  #display_mode {
    display: none;
  }

  #mobile_mode {
    display: block;
  }
}
.sub-nav li {
  margin-right: 10px;
  margin-bottom: 10px;
}

footer {
  margin-top: 50px;
  height: 30px;
}

.login_wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: normal;
      align-content: normal;
  height: calc(100vh - 200px);
}
.login_wraper .login_form {
  padding: 15px;
  background-color: #efefef;
  border-radius: 10px;
  min-width: 300px;
  -webkit-box-shadow: 7px 7px 5px 0px rgba(184, 177, 177, 0.75);
          box-shadow: 7px 7px 5px 0px rgba(184, 177, 177, 0.75);
}

.page_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: normal;
      align-content: normal;
  border-bottom: 3px solid #6c757d;
  padding: 5px 0;
  margin-bottom: 15px;
}
.page_title h1 {
  font-size: 22px;
  color: #6c757d;
  margin: 0;
}

.footer_bar {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #495057;
}
.footer_bar .footer_bar_wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}
.footer_bar .footer_bar_wraper a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  color: #fff;
}
.footer_bar .footer_bar_wraper a i {
  font-size: 24px;
}
.footer_bar .footer_bar_wraper a.active {
  background-color: #000;
}

@media screen and (max-width: 992px) {
  body {
    height: calc(100vh + 70px);
  }

  .footer_bar {
    display: block;
  }
}
.search_block {
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  padding: 15px;
}

a.add-user {
  display: inline-block;
  background-color: #fa4900;
  color: #fff;
  text-decoration: none;
  padding: 2px 15px;
  border-radius: 50px;
  font-weight: 400;
}

.mobile_search_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  margin-top: 15px;
}
.mobile_search_block .search_input {
  position: relative;
  width: 100%;
}
.mobile_search_block .search_input input {
  background-color: #eaeaea;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  display: block;
  width: 100%;
  padding: 5px 5px 5px 40px;
}
.mobile_search_block .search_input input:placeholder {
  color: #666;
  font-weight: 400;
}
.mobile_search_block .search_input:after {
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  font-family: "Font Awesome 5 Pro";
  content: "";
  color: #666;
  left: 15px;
}
.mobile_search_block a {
  display: block;
  font-size: 20px;
  margin-left: 20px;
  font-size: 100;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 2px 15px;
  background-color: #eaeaea;
}

.list_wraper .list_block {
  margin-top: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  border-bottom: 1px solid #dee2e6;
}
.list_wraper .list_block .lb_image img {
  width: 80px;
  border-radius: 6px;
}
.list_wraper .list_block .lb_info {
  width: 90%;
  padding-left: 15px;
}
.list_wraper .list_block .lb_info .adress {
  color: #909090;
}
.list_wraper .list_block .lb_info .name {
  color: #000;
  font-weight: 600;
}
.list_wraper .list_block .lb_info .competence {
  color: #000;
  font-size: 14px;
}
.list_wraper .list_block .lb_nav a {
  display: block;
  font-size: 24px;
  text-align: center;
  padding: 0;
  margin: 2px 0;
  line-height: 0;
  color: #444;
  position: relative;
  cursor: pointer;
}
.list_wraper .list_block .lb_nav .menublock {
  position: relative;
}
.list_wraper .list_block .lb_nav .menublock ul {
  list-style: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  z-index: 20;
  display: none;
}
.list_wraper .list_block .lb_nav .menublock ul li a {
  line-height: 1;
  text-decoration: none;
  font-size: 16px;
}

a.person_detail {
  text-decoration: none;
  display: block;
  width: 90%;
}

.page_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: normal;
      align-content: normal;
}
.page_top h1 {
  font-size: 20px;
}

.action_wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: normal;
      align-content: normal;
}
.action_wraper .search_input {
  position: relative;
}
.action_wraper .search_input input {
  background-color: #eaeaea;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  display: block;
  width: 100%;
  padding: 3px 5px 3px 40px;
  font-size: 12px;
}
.action_wraper .search_input input:placeholder {
  color: #666;
  font-weight: 500;
  font-size: 12px;
}
.action_wraper .search_input:after {
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  font-family: "Font Awesome 5 Pro";
  content: "";
  color: #666;
  left: 15px;
}
.action_wraper a.history {
  display: block;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px 10px;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  margin-left: 10px;
}
.action_wraper a.add {
  display: block;
  white-space: nowrap;
  background-color: #fa4900;
  border-radius: 6px;
  padding: 3px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  margin-left: 10px;
}

.mob_header_wraper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: normal;
      align-content: normal;
}