@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
* {
  margin: 0;
  padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #303030;
  background-color: #ECF0FE;
  overflow-x: hidden;
  padding-top: 50px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #303030; }

.btn {
  border: none;
  display: inline-block;
  outline: transparent;
  font-size: 14px;
  padding: 14px 25px;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  color: #fff;
  -webkit-transition: .4s all;
  -o-transition: .4s all;
  transition: .4s all;
  cursor: pointer; }
  .btn.green {
    background-color: #5BBB7F; }
    .btn.green:hover {
      background-color: #63D28D; }
  .btn.blue {
    background-color: #557AEB; }
    .btn.blue:hover {
      background-color: #578CFF; }
  .btn.orange {
    background-color: #EF7B54; }
    .btn.orange:hover {
      background-color: #FF8758; }

@-webkit-keyframes leftAnim {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes leftAnim {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.section_content_iblcok {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .section_content_iblcok.active .wrapper .scroll_list {
    left: -50px; }
  .section_content_iblcok .iblock_left {
    width: 100%;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
    position: relative;
  }
  .section_content_iblcok .iblock_menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 0;
    width: 20%;
    background-color: #303030;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
    height: 100vh;
    color: #fff;
    position: absolute;
    right: 0;
    display: none; }
    .section_content_iblcok .iblock_menu .personal {
      padding-left: 10px;
      padding-bottom: 20px;
      border-bottom: 1px rgba(255, 255, 255, 0.09) solid; }
      .section_content_iblcok .iblock_menu .personal .user {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
      .section_content_iblcok .iblock_menu .personal .img {
        width: 50px;
        height: 50px;
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-size: cover;
        background-size: cover;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        margin-right: 10px; }
      .section_content_iblcok .iblock_menu .personal h4 {
        font-size: 14px;
        font-weight: 500; }
      .section_content_iblcok .iblock_menu .personal span {
        font-size: 12px;
        font-weight: 300;
        color: #5BBB7F; }
    .section_content_iblcok .iblock_menu .menu {
      margin-top: 100px;
      padding-left: 20px; }
      .section_content_iblcok .iblock_menu .menu h4 {
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px; }
      .section_content_iblcok .iblock_menu .menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        padding-left: 15px; }
        .section_content_iblcok .iblock_menu .menu ul li {
          margin-bottom: 10px; }
          .section_content_iblcok .iblock_menu .menu ul li a {
            color: #fff;
            font-weight: 300;
            font-size: 14px;
            position: relative;
            display: block; }
            .section_content_iblcok .iblock_menu .menu ul li a:before {
              content: '';
              width: 4px;
              height: 4px;
              background-color: #fff;
              -webkit-border-radius: 50%;
                      border-radius: 50%;
              position: absolute;
              top: 7px;
              left: -12px; }
    .section_content_iblcok .iblock_menu .exit {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      background: #EF7B54;
      position: absolute;
      width: 100%;
      bottom: 0;
      left: 0;
      color: #fff;
      font-weight: bold;
      font-size: 14px;
      text-align: center; }
      .section_content_iblcok .iblock_menu .exit a {
        padding: 20px;
        display: block;
        color: #fff; }
  .section_content_iblcok.active .iblock_left {
    width: 80%; }
  .section_content_iblcok.active .iblock_menu {
    width: 20%;
    position: relative;
    display: block;
    -webkit-animation: leftAnim 1s;
            animation: leftAnim 1s; }

header {
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ECF0FE;
  z-index: 2;

}
  header .top {
    padding-top: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    header .top .left {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      header .top .left .logo {
        font-size: 24px;
        font-weight: bold;
        margin-right: 25px; }
        header .top .left .logo span {
          font-weight: 300; }
    header .top .right {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      header .top .right .poligon {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-right: 50px; }
        header .top .right .poligon p {
          font-size: 20px;
          font-weight: bold; }
        header .top .right .poligon span {
          font-size: 14px;
          opacity: .4; }
      header .top .right .personal {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        header .top .right .personal .images {
          width: 40px;
          height: 40px;
          background-repeat: no-repeat;
          background-position: center;
          -webkit-background-size: cover;
          background-size: cover;
          -webkit-border-radius: 50%;
                  border-radius: 50%;
          margin-right: 10px; }
      header .top .right .text p {
        font-size: 20px; }
      header .top .right .text span {
        font-size: 16px;
        opacity: .4; }

.burger {
  cursor: pointer;
  height: 15px;
  margin-top: 15px; }
  .burger span {
    width: 40px;
    height: 2px;
    background-color: #303030;
    display: block;
    position: relative;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all; }
    .burger span:before {
      content: '';
      width: 25px;
      height: 2px;
      display: block;
      position: absolute;
      top: 10px;
      right: 0;
      background-color: #303030;
      -webkit-transition: .4s all;
      -o-transition: .4s all;
      transition: .4s all; }
  .burger.active span {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
    .burger.active span:before {
      -webkit-transform: rotate(-85deg);
          -ms-transform: rotate(-85deg);
              transform: rotate(-85deg);
      width: 40px;
      top: 1px; }

.search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .search .search_content {
    position: relative; }
    .search .search_content input {
      border: none;
      background-color: transparent;
      outline: transparent;
      border-bottom: 1px #CED1DD solid;
      min-width: 530px;
      font-weight: normal;
      font-size: 16px;
      line-height: 20px;
      padding: 15px 20px; }
      .search .search_content input::-webkit-input-placeholder {
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        color: #303030;
        font-family: 'Montserrat', sans-serif; }
      .search .search_content input::-moz-placeholder {
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        color: #303030;
        font-family: 'Montserrat', sans-serif; }
      .search .search_content input:-ms-input-placeholder {
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        color: #303030;
        font-family: 'Montserrat', sans-serif; }
      .search .search_content input::-ms-input-placeholder {
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        color: #303030;
        font-family: 'Montserrat', sans-serif; }
      .search .search_content input::placeholder {
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        color: #303030;
        font-family: 'Montserrat', sans-serif; }
    .search .search_content button {
      width: 23px;
      height: 23px;
      background-color: transparent;
      border: none;
      position: absolute;
      top: 12px;
      right: 0;
      z-index: 2; }

.wrapper {
  margin-top: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 30px;
  position: relative;
  height: 100%;
  padding-bottom: 50px;
}
  .wrapper.null {
    margin-top: 0; }
  .wrapper.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .wrapper.flex .col {
      width: 80%; }
      .wrapper.flex .col:nth-child(1) {
        width: 20%; }
      .wrapper.flex .col:nth-child(2) {
        padding-left: 60px; }
  .wrapper .scroll_list {
    width: 275px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
    position: relative;
    left: 0; }
    .wrapper .scroll_list ul {
      list-style-type: none;
      margin: 0px;
      padding: 0;
      padding-left: 50px;
      text-align: center; }
      .wrapper .scroll_list ul li {
        display: block;
        margin-bottom: 30px; }
        .wrapper .scroll_list ul li.active {
          position: relative; }
          .wrapper .scroll_list ul li.active:before {
            content: '';
            width: 80px;
            height: 2px;
            background-color: #557AEB;
            position: absolute;
            top: 12px;
            left: -100px; }
          .wrapper .scroll_list ul li.active a {
            font-weight: bold;
            font-size: 24px;
            line-height: 29px;
            color: #557AEB; }
            .wrapper .scroll_list ul li.active a span {
              margin-right: 60px; }
        .wrapper .scroll_list ul li.min1 a {
          color: #939AB7;
          font-weight: bold;
          font-size: 21px; }
          .wrapper .scroll_list ul li.min1 a span {
            margin-right: 40px; }
        .wrapper .scroll_list ul li.min2 a {
          color: #939AB7;
          font-weight: bold;
          font-size: 18px;
          opacity: .6; }
          .wrapper .scroll_list ul li.min2 a span {
            margin-right: 40px; }
  .wrapper .button_left {
    position: fixed;
    top: 50px;
    right: 0px;
    height: 100%;
    width: 55px;
    padding-top: 5%; }
    .wrapper .button_left .buttin_left_content {
      position: relative; }
    .wrapper .button_left .btn_left {
      display: inline-block;
      line-height: 1;
      padding: 15px 30px;
      -webkit-border-radius: 15px 15px 0 0;
              border-radius: 15px 15px 0 0;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
      font-weight: bold;
      height: 46px;
      position: absolute;
      top: 0;
      -webkit-transition: .4s all;
      -o-transition: .4s all;
      transition: .4s all;
      cursor: pointer; }
      .wrapper .button_left .btn_left.orange {
        background-color: #EF7B54;
        color: #fff;
        margin-left: -15px; }
        .wrapper .button_left .btn_left.orange:hover {
          background-color: #FF8459; }
      .wrapper .button_left .btn_left.blue {
        background-color: #557AEB;
        color: #fff;
        top: 150px;
        margin-left: -35px; }
        .wrapper .button_left .btn_left.blue:hover {
          background-color: #5C86FF; }
      .wrapper .button_left .btn_left.green {
        background-color: #5BBB7F;
        color: #fff;
        top: 360px;
        margin-left: -70px;
        width: 179px; }
        .wrapper .button_left .btn_left.green:hover {
          background-color: #65DD99; }

.button_print {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .button_print a {
    margin-right: 50px; }
    .button_print a:last-child {
      margin-right: 0; }
    .button_print a img {
      margin-bottom: 5px; }
    .button_print a span {
      display: block;
      color: #939AB7;
      font-size: 12px;
      -webkit-transition: .4s all;
      -o-transition: .4s all;
      transition: .4s all; }
    .button_print a:hover span {
      color: #EF7B54; }

.filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .filter .title {
    color: #939AB7;
    font-weight: 900;
    font-size: 24px; }
  .filter .date_filter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .filter .date_filter .date_start {
      padding-right: 30px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .filter .date_filter label {
      display: block;
      font-size: 12px;
      color: #939AB7; }
    .filter .date_filter input {
      border: none;
      font-size: 18px;
      color: #000;
      outline: transparent;
      padding: 7px 0px;
      background-color: transparent;
      border-bottom: 1px #939AB7 solid; }
  .filter .col {
    width: 33%;
    margin-bottom: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .filter .col:nth-child(2) {
      width: 50%; }
    .filter .col:nth-child(3) {
      margin-bottom: 0; }
    .filter .col:nth-child(4) {
      margin-bottom: 0; }
    .filter .col:nth-child(5) {
      margin-bottom: 0; }
  .filter .buttom_fliter {
    margin-bottom: 20px; }

.table_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px; }
  .table_top .title_table_top {
    font-size: 18px;
    font-weight: bold;
    color: #5BBB7F;
    margin-right: 30px; }
  .table_top .top_col {
    margin-right: 50px; }
    .table_top .top_col:nth-child(3) {
      margin-right: 0; }
    .table_top .top_col span {
      display: block;
      font-size: 12px;
      opacity: .8;
      color: #EF7B54;
      margin-bottom: 10px; }
    .table_top .top_col p {
      font-size: 18px;
      color: #EF7B54;
      font-weight: bold;
      line-height: 1; }

.table_popup {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  right: -200%;
  -webkit-transition: .4s all;
  -o-transition: .4s all;
  transition: .4s all; }
.table_popup:before{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #ECF0FE;
  opacity: .9;
  position: absolute;
  top: 0;
  left: -20%;
  width: 100%;
}
.table_popup.active {
    right: 0; }
  .table_popup .table_popup_content {
    position: relative;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .table_popup .table_popup_content .close {
      position: absolute;
      cursor: pointer;
      width: 50px;
      height: 50px;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      z-index: 10;
      opacity: .7;
      -webkit-transition: .4s all;
      -o-transition: .4s all;
      transition: .4s all; }
      .table_popup .table_popup_content .close:hover {
        opacity: 1; }
      .table_popup .table_popup_content .close span {
        display: block;
        width: 40px;
        height: 2px;
        background-color: #939AB7;
        position: relative;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
        .table_popup .table_popup_content .close span:before {
          content: '';
          display: block;
          width: 40px;
          height: 2px;
          background-color: #939AB7;
          position: absolute;
          top: 0;
          left: 0;
          -webkit-transform: rotate(-85deg);
              -ms-transform: rotate(-85deg);
                  transform: rotate(-85deg); }
    .table_popup#car_table .table_popup_content.reports {
      padding-left: 4%; }
    .table_popup#car_table .table_popup_content.reports .table .item.green .top .car{
      width: 10%;
    }
  .table_popup#reports{
    width: 96%;
  }
.table_popup#city_table .table_popup_content .table .item .city{
  width: 20%;
}
.table_popup#city_table .table_popup_content .table .item .poligon{
  width: 30%;
}
.table_popup#city_table .table_popup_content .table .item .adress{
  width: 40%;
}
.table_popup#city_table{
  width: 96%;
  }
.table_popup#car_table .table_popup_content.reports .table .item.green .top .brand{
  width: 10%;
}
.table_popup#car_table .table_popup_content.reports .table .item.green .top .weight{
  width: 10%;
}
.table_popup#car_table .table_popup_content.reports .table .item.green .top .grushiness{
  width: 10%;
}
.table_popup#car_table .table_popup_content.reports .table .item.green .top .size{
  width: 5%;
}
.table_popup#car_table .table_popup_content.reports .table .item.green .top .owner{
  width: 25%;
}
.table_popup#car_table .table_popup_content.reports .table .item.green .top .contract{
  width: 10%;
}
.table_popup#car_table .table_popup_content.reports .table .item.green .top .inn{
  width: 20%;
}
.table_popup#car_table .table_popup_content.reports .table .item .value{
  font-size: 16px;
}
.table_popup .table_popup_content.reports
    .table_popup .table_popup_content:before {
      content: '';
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.5);
      position: absolute;
      top: 0;
      left: 0; }
    .table_popup .table_popup_content .table {
      position: relative;
      background-color: #ECF0FE;
      height: 100%;
      padding: 20px 30px;
      padding-top: 60px;
      padding-right: 10px; }
      .table_popup .table_popup_content .table .item {
        padding-right: 10px; }
.table_popup.page_reports{
  position: relative;
  width: 100% !important;
  right: 0 !important;
}
.select_page{
  width: 30%;
  margin-right: 30px;
  margin-top: 24px;
}
.table .btn_left {
  position: absolute;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 100px;
  left: -63px;
  color: #fff;
  padding: 10px 20px;
  -webkit-border-radius: 10px 10px 0 0;
          border-radius: 10px 10px 0 0; }
  .table .btn_left.orange {
    background-color: #EF7B54; }
  .table .btn_left.blue {
    background-color: #557AEB;
    left: -93px; }
  .table .btn_left.green {
    background-color: #5BBB7F;
    left: -123px; }

.table .text {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.table h1 {
  font-weight: 900;
  font-size: 48px;
  line-height: 59px; }
.table h1 span{
  font-size: 18px;
  font-weight: normal;
}
.table p {
  font-weight: 300;
  font-size: 24px;
  line-height: 29px; }

.table .item {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 25px rgba(143, 151, 176, 0.05);
          box-shadow: 0px 4px 25px rgba(143, 151, 176, 0.05);
  -webkit-border-radius: 5px;
          border-radius: 5px;
  border-left: 7px #557AEB solid;
  padding: 10px 0;
  padding-left: 20px;
  margin-bottom: 7px; }
  .table .item.green {
    border-left: 7px #5BBB7F solid; }
  .table .item.red {
    border-left: 7px #EF7B54 solid; }
  .table .item .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
.table .item.green .top .data{
  width: 10%;
}
.table .item.green .top .time{
  width: 10%;
}
.table .item.green .top .car{
  width: 15%;
}
.table .item.green .top .type_value{
  width: 10%;
}
.table .item.green .top .weight{
  width: 10%;
}
.table .item.green .top .discussion{
  width: 20%;
}
.table .item.green .top .comment{
  width: 25%;
}
  .table .item .name {
    color: #939AB7;
    font-weight: normal;
    font-size: 12px;
    margin-bottom: 5px; }
  .table .item .value {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px; }
  .table .item .chart span {
    color: #EF7B54; }
  .table .item.new_application .select_list {
    width: 180px; }
  .table .item.new_application .bottom .bottom_content {
    padding-right: 20px; }
  .table .item .select {
    width: 20px;
    padding-top: 8px;
    position: relative; }
    .table .item .select .select_top {
      width: 100%;
      height: 100%;
      display: block;
      cursor: pointer;
    }
    .table .item .select span {
      display: block;
      background-color: #EF7B54;
      width: 5px;
      height: 5px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      position: relative; }
      .table .item .select span:before {
        content: '';
        background-color: #EF7B54;
        width: 5px;
        height: 5px;
        display: block;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        position: absolute;
        top: 10px;
        left: 0; }
      .table .item .select span:after {
        content: '';
        background-color: #EF7B54;
        width: 5px;
        height: 5px;
        display: block;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        position: absolute;
        top: 20px;
        left: 0; }
    .table .item .select .select_list {
      position: absolute;
      bottom: -50px;
      right: 10px;
      background: #FFFFFF;
      -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
              box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
      -webkit-border-radius: 5px;
              border-radius: 5px;
      z-index: 2; }
      .table .item .select .select_list.big {
        width: 230px; }
      .table .item .select .select_list ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        background: #FFFFFF;
        -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
                box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
        -webkit-border-radius: 5px;
                border-radius: 5px; }
        .table .item .select .select_list ul li {
          padding: 7px 20px;
          font-weight: normal;
          font-size: 14px;
          line-height: 17px;
          border-bottom: 1px solid #D6DBEC;
          cursor: pointer;
          -webkit-transition: .4s all;
          -o-transition: .4s all;
          transition: .4s all; }
          .table .item .select .select_list ul li:last-child {
            border: none; }
          .table .item .select .select_list ul li:hover {
            background-color: #EF7B54;
            color: #fff; }

.table.by_days .day {
  width: 30%; }

.table.by_days .car {
  width: 30%; }

.table.by_days .owner {
  width: 30%; }

.table.by_days .bottom {
  margin-top: 15px; }
  .table.by_days .bottom .bottom_items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .table.by_days .bottom .bottom_button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 40px; }
  .table.by_days .bottom .day {
    width: 30%; }
  .table.by_days .bottom .car {
    width: 30%; }
  .table.by_days .bottom .owner {
    width: 30%; }
  .table.by_days .bottom .select {
    width: 20px; }

.table .sort_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .table .sort_list span {
    font-size: 16px;
    line-height: 20px;
    color: #939AB7; }

.table .incoming_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .table .incoming_content .col {
    width: 48%; }
    .table .incoming_content .col h2 {
      font-weight: bold;
      font-size: 24px;
      line-height: 29px;
      color: #939AB7;
      margin-bottom: 20px; }
    .table .incoming_content .col .item .adress {
      width: 35%; }

.table.maps .maps_content {
  position: relative; }

.table.maps .map_text {
  position: absolute;
  top: 20px;
  left: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .table.maps .map_text .select_lst {
    width: 300px;
    margin: 0;
    margin-right: 20px; }
  .table.maps .map_text .map_item {
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 10px 25px;
    margin-right: 20px;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    border: 1px #ced7e1 solid; }
    .table.maps .map_text .map_item input {
      border: none;
      outline: transparent;
      border-bottom: 1px #BDBDBD solid;
      width: 50px;
      font-weight: 300;
      font-size: 16px;
      padding: 0px 0; }
  .table.maps .map_text .comment {
    margin-top: 10px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 10px 10px;
    margin-right: 20px;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    border: 1px #ced7e1 solid; }
    .table.maps .map_text .comment input {
      border: none;
      outline: transparent;
      font-weight: 300;
      font-size: 16px;
      padding: 0px 0;
      width: 100%; }

.table.maps .map iframe {
  width: 100%;
  height: 530px;
  border: none; }

.platforms {
  padding-right: 25px; }
  .platforms .sort_list {
    padding-left: 28px;
    margin-bottom: 10px; }
    .platforms .sort_list img {
      position: relative;
      top: 5px; }
    .platforms .sort_list span {
      font-size: 16px;
      opacity: .6; }
    .platforms .sort_list .adress {
      width: 32%; }
    .platforms .sort_list .container {
      width: 12%; }
    .platforms .sort_list .type_container {
      width: 12%; }
    .platforms .sort_list .owner_car {
      width: 15%; }
    .platforms .sort_list .document {
      width: 13%; }
    .platforms .sort_list .chart {
      width: 11%; }
  .platforms .item .adress {
    width: 29%; }
  .platforms .item .car {
    width: 10%; }
  .platforms .item .container {
    width: 9%; }
  .platforms .item .type_container {
    width: 9%; }
  .platforms .item .owner_car {
    width: 12%; }
  .platforms .item .document {
    width: 10%; }
  .platforms .item .chart {
    width: 11%; }
  .platforms .item .bottom {
    margin-top: 15px; }
    .platforms .item .bottom .bottom_items {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0 15px;
      box-sizing: border-box;

    }
    .platforms .item .bottom .bottom_button {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding-right: 40px; }
    .platforms .item .bottom .adress {
      width: 29%; }
    .platforms .item .bottom .car {
      width: 10%; }
    .platforms .item .bottom .container {
      width: 9%; }
    .platforms .item .bottom .type_container {
      width: 9%; }
    .platforms .item .bottom .owner_car {
      width: 12%; }
    .platforms .item .bottom .document {
      width: 10%; }
    .platforms .item .bottom .chart {
      width: 11%; }

.platforms .item .bottom .bottom_items input{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #BCBFCB;
  text-align: left;
  padding: 5px 0 5px 5px;
  margin-bottom: 20px;
  font-size: 16px;
  outline: transparent;
  margin-bottom: 0;
  margin-top: 8px;
}
.platforms .item .bottom .bottom_items label{
  display: block;
  color: #939AB7;
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 5px;
}
.platforms .item .bottom .bottom_items .select_lst ul{
  background-color: #fff;
}
.platforms .item .bottom .bottom_items .col_full{
  width: 33%;
}
.platforms .item .bottom .bottom_items .weight{
  width: 10%;
}
.platforms .item .bottom .bottom_items .discussion{
  width: 20%;
}
.platforms .item .bottom .bottom_items .comment{
  width: 26%;
}
.platforms .item .bottom .bottom_button .close_change{
  color: #000;
}
.select_lst {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  margin-bottom: 20px; }

.select_lst .placeholder {
  position: relative;
  display: block;
  background-color: transparent;
  z-index: 1;
  padding: 13px 15px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: .4s all;
  -o-transition: .4s all;
  transition: .4s all;
  padding-right: 25px;
  font-size: 14px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05); }
  .select_lst .placeholder:before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../img/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    top: 13px;
    right: 10px;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all; }

.select_lst .placeholder.error {
  border: 1px solid red; }

.select_lst .placeholder:hover {
  color: #EF7B54; }

.select_lst .placeholder:after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
  position: absolute;
  right: 1em;
  top: 40%;
  z-index: 10;
  -webkit-transition: .4s all;
  -o-transition: .4s all;
  transition: .4s all; }

.select_lst.is-open .placeholder:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.select_lst.is-open .placeholder:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

.select_lst.is-open ul {
  display: block; }

.select_lst.select--white .placeholder {
  background: #fff;
  color: #999;
  -webkit-transition: .4s all;
  -o-transition: .4s all;
  transition: .4s all; }

.select_lst.select--white .placeholder:hover {
  background: #fafafa; }

.select_lst ul {
  display: none;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  background: #ECF0FE;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
  z-index: 100;
  max-height: 310px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.09); }

.select_lst ul span {
  display: block; }

.select_lst ul span input {
  width: 100%;
  outline: transparent;
  border: none;
  background-color: #ececec;
  padding: 15px 10px;
  font-size: 13px; }

.select_lst ul li {
  display: block;
  text-align: left;
  padding: 10px 15px;
  font-size: 14px;
  color: #303030;
  cursor: pointer; }

.select_lst ul li:hover {
  background: #EF7B54;
  color: #fff; }

.calendar .fc-head {
  border: none !important;
  border-color: transparent; }

.calendar .fc-widget-header {
  border: none !important;
  border-color: transparent; }

.calendar .fc-head thead {
  border: none !important;
  border-color: transparent; }

.calendar .fc-head th {
  border: none !important;
  border-color: transparent;
  font-size: 18px;
  line-height: 22px;
  color: #939AB7;
  text-transform: uppercase;
  padding: 5px 0; }

.form {
  padding: 40px; }
  .form h1 {
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-size: 61px;
    text-align: center; }
    .form h1 span {
      font-weight: bold; }
  .form .from_iblock {
    margin-top: 20px;
    background: #ECF0FE;
    -webkit-box-shadow: 0px 0px 25px #D2DBFA;
            box-shadow: 0px 0px 25px #D2DBFA;
    -webkit-border-radius: 10px;
            border-radius: 10px;
    width: 490px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    text-align: center; }
    .form .from_iblock h4 {
      margin: 0;
      padding: 0;
      font-weight: bold;
      font-size: 36px;
      margin-bottom: 10px; }
    .form .from_iblock p {
      margin: 0;
      padding: 0;
      font-size: 20px;
      line-height: 24px;
      text-align: center;
      color: #000000;
      opacity: 0.6;
      margin-bottom: 10px; }
    .form .from_iblock form {
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .form .from_iblock form input {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        border: none;
        width: 100%;
        background-color: transparent;
        border-bottom: 1px solid #BCBFCB;
        text-align: center;
        padding: 19px 0;
        margin-bottom: 10px;
        outline: transparent;
        font-size: 18px; }
      .form .from_iblock form .btn {
        margin-top: 20px;
        padding: 16px 70px;
        font-size: 18px;
        font-weight: bold;
        border: none;
        background-color: #5BBB7F;
        width: 40%;
      }
.form .from_iblock form .btn:hover{
  background-color: #6DE199;
}

.personal h1 {
  font-weight: bold;
  font-size: 48px;
  line-height: 59px; }

.personal .personal_content {
  margin-top: 50px; }
  .personal .personal_content form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .personal .personal_content form .col:nth-child(1) {
      width: 30%; }
    .personal .personal_content form .col:nth-child(2) {
      width: 70%; }
  .personal .personal_content .images {
    width: 200px;
    height: 200px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    margin-left: auto;
    margin-right: auto; }
    .personal .personal_content .images .images_info {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.7);
      color: #fff;
      font-size: 14px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      opacity: 0;
      -webkit-transition: .4s all;
      -o-transition: .4s all;
      transition: .4s all; }
      .personal .personal_content .images .images_info:hover {
        opacity: 1; }
      .personal .personal_content .images .images_info .info {
        width: 100%;
        text-align: center; }
      .personal .personal_content .images .images_info label {
        display: block;
        margin-bottom: 10px;
        cursor: pointer; }
        .personal .personal_content .images .images_info label.delet_chek {
          position: relative;
          display: inline-block; }
          .personal .personal_content .images .images_info label.delet_chek:before {
            content: '';
            width: 11px;
            height: 11px;
            display: block;
            border: 2px #fff solid;
            position: absolute;
            top: 2px;
            left: -18px;
            -webkit-border-radius: 2px;
                    border-radius: 2px; }
      .personal .personal_content .images .images_info input.images-clear_id {
        display: none; }
      .personal .personal_content .images .images_info input.images-clear_id:checked + label.delet_chek:before {
        border: 2px #EF7B54 solid; }
      .personal .personal_content .images .images_info input.images-clear_id:checked + label.delet_chek:after {
        content: '';
        display: block;
        position: absolute;
        top: 7px;
        left: -13px;
        width: 5px;
        height: 5px;
        background-color: #EF7B54; }
  .personal .personal_content .form_item input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid #BCBFCB;
    text-align: left;
    padding: 5px 0 12px 5px;
    margin-bottom: 20px;
    font-size: 18px;
    outline: transparent; }
  .personal .personal_content .form_item.field label {
    margin-bottom: 0;
    font-size: 12px;
    margin-left: 5px; }

.form_popup {
  position: relative;
  width: 600px;
  background-color: #ECF0FE;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: 0px 0px 25px #D2DBFA;
          box-shadow: 0px 0px 25px #D2DBFA; }
  .form_popup.poligon {
    width: 850px; }
  .form_popup h2 {
    text-align: center;
    color: #303030;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px; }
  .form_popup p {
    font-size: 24px;
    text-align: center;
    margin-bottom: 5px; }
  .form_popup .select_lst {
    margin-bottom: 0; }
  .form_popup .form_popup_content_top input {
    margin-top: 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid #BCBFCB;
    text-align: left;
    padding: 5px 0 5px 5px;
    margin-bottom: 20px;
    font-size: 18px;
    outline: transparent;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif; }
    .form_popup .form_popup_content_top input::-webkit-input-placeholder {
      font-family: 'Montserrat', sans-serif; }
    .form_popup .form_popup_content_top input::-moz-placeholder {
      font-family: 'Montserrat', sans-serif; }
    .form_popup .form_popup_content_top input:-ms-input-placeholder {
      font-family: 'Montserrat', sans-serif; }
    .form_popup .form_popup_content_top input::-ms-input-placeholder {
      font-family: 'Montserrat', sans-serif; }
    .form_popup .form_popup_content_top input::placeholder {
      font-family: 'Montserrat', sans-serif; }
  .form_popup .form_popup_list {
    margin-top: 20px; }
    .form_popup .form_popup_list .form_popup_item {
      margin-bottom: 20px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .form_popup .form_popup_list .form_popup_item .col {
        font-size: 18px;
        margin-right: 15px;
        width: 50%; }
        .form_popup .form_popup_list .form_popup_item .col input {
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          border: none;
          width: 100%;
          background-color: transparent;
          border-bottom: 1px solid #BCBFCB;
          text-align: left;
          padding: 5px 0 5px 5px;
          margin-bottom: 20px;
          font-size: 16px;
          outline: transparent;
          margin-bottom: 0; }
      .form_popup .form_popup_list .form_popup_item textarea {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        border: none;
        width: 100%;
        background-color: transparent;
        border-bottom: 1px solid #BCBFCB;
        text-align: left;
        padding: 5px 0 5px 5px;
        margin-bottom: 20px;
        font-size: 16px;
        outline: transparent;
        margin-bottom: 0;
        height: 150px;
        font-family: 'Montserrat', sans-serif; }
        .form_popup .form_popup_list .form_popup_item textarea::-webkit-input-placeholder {
          font-family: 'Montserrat', sans-serif; }
        .form_popup .form_popup_list .form_popup_item textarea::-moz-placeholder {
          font-family: 'Montserrat', sans-serif; }
        .form_popup .form_popup_list .form_popup_item textarea:-ms-input-placeholder {
          font-family: 'Montserrat', sans-serif; }
        .form_popup .form_popup_list .form_popup_item textarea::-ms-input-placeholder {
          font-family: 'Montserrat', sans-serif; }
        .form_popup .form_popup_list .form_popup_item textarea::placeholder {
          font-family: 'Montserrat', sans-serif; }
  .form_popup .button {
    text-align: center;
    margin-top: 35px; }
    .form_popup .button .btn {
      padding: 14px 70px; }
  .form_popup .form_popup_list_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .form_popup .form_popup_list_flex h4 {
      color: #EF7B54;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px; }
    .form_popup .form_popup_list_flex .col {
      margin-right: 50px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .form_popup .form_popup_list_flex .col:nth-child(2) {
        margin-right: 0; }
    .form_popup .form_popup_list_flex .form_popup_list_flex_item {
      margin-bottom: 15px; }
      .form_popup .form_popup_list_flex .form_popup_list_flex_item label {
        display: block;
        color: #939AB7;
        font-size: 12px;
        font-weight: 300; }
      .form_popup .form_popup_list_flex .form_popup_list_flex_item input {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        border: none;
        width: 100%;
        background-color: transparent;
        border-bottom: 1px solid #BCBFCB;
        text-align: left;
        padding: 5px 0 5px 5px;
        margin-bottom: 20px;
        font-size: 22px;
        outline: transparent;
        margin-bottom: 0;
        font-weight: 300;
        color: #303030;
        font-family: 'Montserrat', sans-serif; }
      .form_popup .confirm_button{
        text-align: center;
        margin-top: 20px;
      }
.form_popup .confirm_button a{
  font-size: 27px;
  display: inline-block;
  outline: transparent;
}
.form_popup .confirm_button a:hover{
  color: #FF8459;
}
.form_popup .confirm_button a.yes{
  margin-right: 20px;
}

.holder {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(236, 240, 254, .9);
  z-index: 10;
}

.preloader {
  /* size */
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation: rotatePreloader 2s infinite ease-in;
}

@keyframes rotatePreloader {
  0% {
    transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
  }
}
.preloader div {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.preloader div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 10%;
  height: 10%;
  background-color: #5BBB7F;
  transform: translateX(-50%);
  border-radius: 50%;
}

.preloader div:nth-child(1) {
  transform: rotateZ(0deg);
  animation: rotateCircle1 2s infinite linear;
  z-index: 9;
}

@keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }
  0% {
    opacity: 1;
    transform: rotateZ(36deg);
  }
  7% {
    transform: rotateZ(0deg);
  }
  57% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(2) {
  transform: rotateZ(36deg);
  animation: rotateCircle2 2s infinite linear;
  z-index: 8;
}

@keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }
  5.0001% {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  12% {
    transform: rotateZ(-36deg);
  }
  62% {
    transform: rotateZ(-36deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(3) {
  transform: rotateZ(72deg);
  animation: rotateCircle3 2s infinite linear;
  z-index: 7;
}

@keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }
  10.0002% {
    opacity: 1;
    transform: rotateZ(-36deg);
  }
  17% {
    transform: rotateZ(-72deg);
  }
  67% {
    transform: rotateZ(-72deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(4) {
  transform: rotateZ(108deg);
  animation: rotateCircle4 2s infinite linear;
  z-index: 6;
}

@keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }
  15.0003% {
    opacity: 1;
    transform: rotateZ(-72deg);
  }
  22% {
    transform: rotateZ(-108deg);
  }
  72% {
    transform: rotateZ(-108deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(5) {
  transform: rotateZ(144deg);
  animation: rotateCircle5 2s infinite linear;
  z-index: 5;
}

@keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }
  20.0004% {
    opacity: 1;
    transform: rotateZ(-108deg);
  }
  27% {
    transform: rotateZ(-144deg);
  }
  77% {
    transform: rotateZ(-144deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(6) {
  transform: rotateZ(180deg);
  animation: rotateCircle6 2s infinite linear;
  z-index: 4;
}

@keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }
  25.0005% {
    opacity: 1;
    transform: rotateZ(-144deg);
  }
  32% {
    transform: rotateZ(-180deg);
  }
  82% {
    transform: rotateZ(-180deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(7) {
  transform: rotateZ(216deg);
  animation: rotateCircle7 2s infinite linear;
  z-index: 3;
}

@keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }
  30.0006% {
    opacity: 1;
    transform: rotateZ(-180deg);
  }
  37% {
    transform: rotateZ(-216deg);
  }
  87% {
    transform: rotateZ(-216deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(8) {
  transform: rotateZ(252deg);
  animation: rotateCircle8 2s infinite linear;
  z-index: 2;
}

@keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }
  35.0007% {
    opacity: 1;
    transform: rotateZ(-216deg);
  }
  42% {
    transform: rotateZ(-252deg);
  }
  92% {
    transform: rotateZ(-252deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(9) {
  transform: rotateZ(288deg);
  animation: rotateCircle9 2s infinite linear;
  z-index: 1;
}

@keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }
  40.0008% {
    opacity: 1;
    transform: rotateZ(-252deg);
  }
  47% {
    transform: rotateZ(-288deg);
  }
  97% {
    transform: rotateZ(-288deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(10) {
  transform: rotateZ(324deg);
  animation: rotateCircle10 2s infinite linear;
  z-index: 0;
}

@keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }
  45.0009% {
    opacity: 1;
    transform: rotateZ(-288deg);
  }
  52% {
    transform: rotateZ(-324deg);
  }
  102% {
    transform: rotateZ(-324deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
#panel{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media print {
  .top_print_reports{
    display: flex !important;
    font-size: 13px !important;
  }
  .top_print_reports .data{
    width: 8% !important;;
  }
  .top_print_reports .time{
    width: 8% !important;;
  }
  .top_print_reports .discussion{
    width: 20% !important;;
  }
  .top_print_reports .contractor{
    width: 34% !important;;
  }
  .top_print_reports .weight{
    width: 10% !important;;
  }
  .top_print_reports .size{
    width: 10% !important;;
  }
  .top_print_reports .size2{
    width: 10% !important;;
  }
  .filter .buttom_fliter{
    visibility: hidden !important;
  }
   .item.print .name{
    visibility: hidden !important;
    display: none !important;
  }
  body .item.green.print .top{
    display: flex !important;
    font-size: 12px !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    justify-content: space-between !important;
  }
  body .item.green.print .top .data{
    width: 8% !important;
  }
  body .item.green.print .top .time{
    width: 8% !important;
  }
  body .item.green.print .top .discussion{
    width: 20% !important;
  }
  body .item.green.print .top .contractor{
    width: 34% !important;
  }
  body .item.green.print .top .weight{
    width: 10% !important;
  }
  body .item.green.print .top .size{
    width: 10% !important;
  }
  body .item.green.print .top .size2{
    width: 10% !important;
  }
}
@media screen and (max-width: 1180px) {
  .wrapper.flex .col:nth-child(1) {
    width: 25%; }
  .wrapper.flex .col:nth-child(2) {
    width: 85%; } }
