@charset "UTF-8";
* {
  outline: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-tap-highlight-color: transparent !important; }

*:hover {
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Geometria';
  padding-top: 80px;
  background: #f8f8f8; }
  @media (max-width: 575px) {
    body {
      background: #ffffff;
      padding-top: 56px; } }
  body * {
    /* полоса прокрутки (скроллбар) */
    /* ползунок скроллбара */
    /* Стрелки */ }
    body * ::-webkit-scrollbar {
      width: 4px;
      height: 4px;
      background-color: rgba(0, 0, 0, 0); }
    body * ::-webkit-scrollbar-thumb {
      background-color: #e5e5e5;
      border-radius: 9em;
      -webkit-box-shadow: inset 1px 1px 10px #f3faf7;
      box-shadow: inset 1px 1px 10px #f3faf7;
      border-radius: 4px;
      opacity: 0.7; }
    body * ::-webkit-scrollbar-thumb:hover {
      opacity: 1; }
    body * ::-webkit-scrollbar-button:vertical:start:decrement {
      background: #000;
      background-color: #f6f8f4; }
    body * ::-webkit-scrollbar-button:vertical:end:increment {
      background: #000;
      background-color: #f6f8f4; }
    body * ::-webkit-scrollbar-button:horizontal:start:decrement {
      background: #000;
      background-color: #f6f8f4; }
    body * ::-webkit-scrollbar-button:horizontal:end:increment {
      background: #000;
      background-color: #f6f8f4; }

h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700; }
  @media (max-width: 575px) {
    h1 {
      font-size: 18px; } }

h2 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700; }
  @media (max-width: 575px) {
    h2 {
      font-size: 14px; } }

h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700; }

.fs-14 {
  font-size: 14px;
  line-height: 20px; }

a {
  text-decoration: none !important; }

input[type="text"],
select {
  line-height: 22px;
  padding-top: 13px;
  padding-bottom: 11px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 10px;
  border: solid 1px #e5e5e5;
  background-color: #ffffff; }
  input[type="text"]:hover,
  select:hover {
    border-radius: 8px;
    border: solid 1px #cccccc; }
  input[type="text"]:focus,
  select:focus {
    border-radius: 8px;
    border: solid 1px #3c99d3; }

.input_group label {
  padding-left: 16px;
  font-size: 14px;
  margin-bottom: 4px;
  display: block; }

label {
  margin: 0; }

ol {
  padding-left: 30px; }

ul {
  padding-left: 30px; }
  ul.line {
    list-style: none; }
    ul.line li {
      list-style-type: none; }
      ul.line li:before {
        content: "—";
        margin-left: -21px;
        margin-right: 8px; }

.select_list {
  position: relative;
  z-index: 9; }
  .select_list .header {
    line-height: 22px;
    padding-top: 13px;
    padding-bottom: 11px;
    padding-left: 16px;
    padding-right: 48px;
    border-radius: 10px;
    border: solid 1px #e5e5e5;
    background-color: #ffffff;
    position: relative; }
    .select_list .header span {
      display: block;
      white-space: nowrap;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .select_list .header i {
      position: absolute;
      right: 12px;
      top: 12px; }
    .select_list .header:hover {
      border-radius: 8px;
      border: solid 1px #cccccc; }
    .select_list .header:focus {
      border-radius: 8px;
      border: solid 1px #3c99d3; }
  .select_list .list {
    position: absolute;
    top: 100px;
    max-height: 216px;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
    box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
    padding: 8px 0;
    border-radius: 10px;
    overflow: auto; }
    .select_list .list label {
      width: 100%;
      margin: 0;
      cursor: pointer; }
      .select_list .list label input {
        position: absolute;
        opacity: 0;
        pointer-events: none; }
      .select_list .list label span {
        display: block;
        padding: 10px 16px; }
        .select_list .list label span.active {
          background: #d9eaf6 !important;
          color: #3c99d3;
          font-weight: bold; }
      .select_list .list label:hover span {
        background: #f5f5f5; }
  .select_list.open {
    z-index: 99; }
    .select_list.open .header {
      border-radius: 8px;
      border: solid 1px #3c99d3; }
      .select_list.open .header i {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
    .select_list.open .list {
      top: 52px;
      opacity: 1;
      pointer-events: auto; }

.checkbox + .checkbox,
.radio + .checkbox, .checkbox +
.radio,
.radio +
.radio {
  margin-top: 16px; }

.checkbox label,
.radio label {
  position: relative;
  cursor: pointer; }
  .checkbox label input,
  .radio label input {
    position: absolute;
    opacity: 0;
    pointer-events: none; }
    .checkbox label input:checked + span:before,
    .radio label input:checked + span:before {
      opacity: 1 !important; }
  .checkbox label span,
  .radio label span {
    display: block;
    font-size: 16px;
    line-height: 24px;
    padding-left: 28px;
    position: relative; }
    .checkbox label span:before,
    .radio label span:before {
      content: "";
      display: block;
      width: 24px;
      height: 24px;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      opacity: 0.7; }
  .checkbox label:hover span:before,
  .radio label:hover span:before {
    opacity: 1; }

.checkbox label input:checked + span:before {
  background: url("../img/icons/input/checkbox_active.svg") no-repeat center;
  background-size: contain; }

.checkbox label span:before {
  background: url("../img/icons/input/checkbox_hover.svg") no-repeat center;
  background-size: contain; }

.radio label input:checked + span:before {
  background: url("../img/icons/input/radiobutton_active.svg") no-repeat center;
  background-size: contain; }

.radio label span:before {
  background: url("../img/icons/input/radiobutton_hover.svg") no-repeat center;
  background-size: contain; }

.tooltip.show {
  opacity: 1 !important; }

.tooltip .tooltip-inner {
  padding: 10px 12px;
  border-radius: 10px;
  background-color: #000000;
  font-size: 14px;
  line-height: 20px;
  font-family: 'Geometria';
  font-weight: 300; }

.popover {
  padding: 10px 12px;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-family: 'Geometria';
  font-weight: 300;
  border: 0;
  -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
  box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4); }
  .popover.show {
    opacity: 1 !important; }
  .popover .popover-body {
    padding: 0; }

.bs-popover-auto[x-placement^=top] > .arrow::before, .bs-popover-top > .arrow::before {
  border-top-color: rgba(0, 0, 0, 0); }

.bs-popover-auto[x-placement^=right] > .arrow::before, .bs-popover-right > .arrow::before {
  border-right-color: rgba(0, 0, 0, 0); }

.bs-popover-auto[x-placement^=bottom] > .arrow::before, .bs-popover-bottom > .arrow::before {
  border-bottom-color: rgba(0, 0, 0, 0); }

.bs-popover-auto[x-placement^=left] > .arrow::before, .bs-popover-left > .arrow::before {
  border-left-color: rgba(0, 0, 0, 0); }

.datepickers-container .datepicker {
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
  box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
  border: 0;
  width: 274px; }
  .datepickers-container .datepicker .datepicker--pointer {
    border-top: 0;
    border-right: 0; }
  .datepickers-container .datepicker .datepicker--nav-title {
    font-size: 16px;
    font-weight: bold; }
  .datepickers-container .datepicker .datepicker--content {
    padding: 0 11px 11px 11px; }
    .datepickers-container .datepicker .datepicker--content .datepicker--days-names {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .datepickers-container .datepicker .datepicker--content .datepicker--days-names .datepicker--day-name {
        color: #808080;
        font-size: 14px;
        text-transform: lowercase;
        line-height: 32px; }
    .datepickers-container .datepicker .datepicker--content .-other-month- {
      color: #cccccc; }
    .datepickers-container .datepicker .datepicker--content .datepicker--day-name,
    .datepickers-container .datepicker .datepicker--content .datepicker--cell {
      width: 32px;
      height: 32px; }
    .datepickers-container .datepicker .datepicker--content .datepicker--day-name {
      display: block !important;
      -webkit-box-flex: initial;
      -ms-flex: initial;
      flex: initial; }
    .datepickers-container .datepicker .datepicker--content .datepicker--cells .datepicker--cell {
      margin: 2px;
      font-weight: bold;
      border-radius: 50%; }
      .datepickers-container .datepicker .datepicker--content .datepicker--cells .datepicker--cell.-focus- {
        background: #f5f5f5; }
      .datepickers-container .datepicker .datepicker--content .datepicker--cells .datepicker--cell.-current- {
        color: #3c99d3; }
      .datepickers-container .datepicker .datepicker--content .datepicker--cells .datepicker--cell.-selected- {
        background: #3c99d3;
        color: #fff; }
      .datepickers-container .datepicker .datepicker--content .datepicker--cells .datepicker--cell.-other-month- {
        font-weight: 300; }

.breadcrambs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0 0 15px 0; }
  .breadcrambs li {
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .breadcrambs li a,
    .breadcrambs li span {
      display: block;
      font-size: 12px;
      line-height: 20px;
      font-weight: 300;
      text-decoration: none !important;
      color: #000; }
    .breadcrambs li i {
      display: block;
      width: 16px;
      height: 16px; }
      .breadcrambs li i:before {
        font-size: 16px;
        display: block; }
    .breadcrambs li + li {
      padding-left: 10px; }

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px; }
  @media (max-width: 575px) {
    .title {
      margin-bottom: 8px; } }
  .title h1, .title h2, .title h3 {
    margin: 0;
    line-height: 40px; }
    .title h1 a, .title h2 a, .title h3 a {
      color: #000000;
      text-decoration: none !important; }
      .title h1 a i, .title h2 a i, .title h3 a i {
        margin-right: 12px; }
    @media (max-width: 575px) {
      .title h1, .title h2, .title h3 {
        line-height: 24px; } }
  .title .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 767px) {
      .title .buttons > * {
        display: none !important; }
      .title .buttons .toggle_visible {
        display: block !important;
        padding: 8px 0;
        width: 24px;
        background-color: initial !important; } }
  @media (max-width: 767px) and (max-width: 575px) {
    .title .buttons .toggle_visible {
      padding: 0; } }
    .title .buttons .file_folder_btns {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      display: none; }
      .title .buttons .file_folder_btns.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    .title .buttons > a,
    .title .buttons .file_folder_btns > *,
    .title .buttons .popup_block > a {
      display: block;
      height: 40px;
      width: 40px;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      border-radius: 10px;
      background-color: rgba(229, 229, 229, 0);
      position: relative; }
      .title .buttons > a:hover,
      .title .buttons .file_folder_btns > *:hover,
      .title .buttons .popup_block > a:hover {
        background-color: rgba(229, 229, 229, 0.4); }
      .title .buttons > a i,
      .title .buttons .file_folder_btns > * i,
      .title .buttons .popup_block > a i {
        height: 24px; }
      .title .buttons > a + a,
      .title .buttons .file_folder_btns > * + a,
      .title .buttons .popup_block > a + a {
        margin-left: 16px; }
    .title .buttons .popup_block {
      margin-left: 16px; }
    .title .buttons .toggle_folders .hide,
    .title .buttons .toggle_visible .hide {
      display: none; }
    .title .buttons .separator {
      width: 1px;
      height: 24px;
      background-color: #e5e5e5;
      margin: 8px 15px; }

.button-border {
  cursor: pointer;
  height: 48px;
  border-radius: 10px;
  border: solid 2px #3c99d3;
  padding: 12px 40px;
  display: inline-block;
  position: relative;
  background: initial; }
  .button-border span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #3c99d3; }
  .button-border-ico {
    padding-left: 56px; }
    .button-border-ico i {
      position: absolute;
      left: 16px;
      top: 10px;
      height: 24px; }
      .button-border-ico i:before {
        color: #3c99d3; }
  .button-border-loading {
    padding-left: 56px; }
    .button-border-loading .donut {
      position: absolute;
      left: 16px;
      top: 12px;
      height: 24px;
      border-left-color: #3c99d3; }

.loading_32,
.loading_56 {
  margin: 0 15px; }

.loading_32 {
  cursor: pointer;
  height: 48px;
  border-radius: 10px;
  padding: 12px 0 12px 40px;
  display: inline-block;
  position: relative;
  background: initial; }
  .loading_32 span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #000000; }
  .loading_32 .donut {
    position: absolute;
    left: 0;
    top: 12px;
    height: 24px;
    border-left-color: #3c99d3; }

.loading_56 {
  cursor: pointer;
  height: 48px;
  border-radius: 10px;
  padding: 12px 0 12px 60px;
  display: inline-block;
  position: relative;
  background: initial; }
  .loading_56 span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #000000; }
  .loading_56 .donut {
    position: absolute;
    left: 0;
    top: 0;
    height: 48px;
    width: 48px;
    border-left-color: #3c99d3;
    border-width: 4px; }

.button {
  cursor: pointer;
  height: 48px;
  border: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
  box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
  background-color: #3c99d3;
  padding: 12px 40px;
  display: inline-block;
  position: relative; }
  .button:hover {
    background-color: #42aced; }
  .button:active {
    background-color: #3c99d3; }
  .button span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff; }
  .button-ico {
    padding-left: 56px; }
    .button-ico i {
      position: absolute;
      left: 16px;
      top: 10px;
      height: 24px; }
      .button-ico i:before {
        color: #3c99d3; }
  .button-loading {
    padding-left: 56px; }
    .button-loading .donut {
      position: absolute;
      left: 16px;
      top: 12px;
      height: 24px; }

.progress_bar {
  height: 20px;
  border-radius: 10px;
  background-color: #e5e5e5;
  overflow: hidden;
  position: relative; }
  .progress_bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 14px;
    line-height: 1;
    z-index: 1; }
  .progress_bar + .progress_bar {
    margin-top: 24px; }
  .progress_bar > div {
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #3c99d3; }
  .progress_bar.progress_bar_2px {
    height: 2px;
    border-radius: 1px; }
    .progress_bar.progress_bar_2px > div {
      border-radius: 1px; }
  .progress_bar.progress_bar_4px {
    height: 4px;
    border-radius: 2px; }
    .progress_bar.progress_bar_4px > div {
      border-radius: 2px; }
  .progress_bar.progress_bar_8px {
    height: 8px;
    border-radius: 4px; }
    .progress_bar.progress_bar_8px > div {
      border-radius: 4px; }

header {
  height: 80px;
  -webkit-box-shadow: 0 16px 50px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 50px 0 rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 30px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media (max-width: 575px) {
    header {
      height: 56px;
      padding: 16px 15px; } }
  header .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    header .left .open_menu {
      border: 0;
      margin: 0 24px 0 0;
      padding: 0;
      background: url("../img/icons/menu.svg") no-repeat center;
      width: 24px; }
      @media (min-width: 1199px) {
        header .left .open_menu {
          display: none; } }
    header .left .logo {
      display: block;
      padding: 6px 0; }
      @media (max-width: 575px) {
        header .left .logo {
          padding: 0;
          height: 24px; } }
      header .left .logo img {
        display: block; }
        @media (max-width: 575px) {
          header .left .logo img {
            height: 24px; } }
  header .back {
    position: absolute;
    left: 324px;
    top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    header .back a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 12px 0; }
      @media (max-width: 575px) {
        header .back a {
          padding: 0; } }
      header .back a i {
        display: block; }
      header .back a span {
        display: block;
        color: #000000;
        font-size: 18px;
        font-weight: bold;
        margin-left: 12px;
        line-height: 24px; }
    header .back .mobile_more {
      padding: 12px 0;
      display: none; }
      @media (max-width: 575px) {
        header .back .mobile_more {
          padding: 0; } }
  header .search {
    position: absolute; }
    @media (min-width: 1200px) {
      header .search {
        top: 16px;
        left: 379px; } }
    @media (max-width: 1199px) {
      header .search {
        position: relative; } }
    @media (max-width: 767px) {
      header .search {
        margin-left: auto; } }
    @media (max-width: 767px) {
      header .search.open {
        position: absolute;
        background: #fff;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: auto;
        height: auto;
        padding: 16px 15px; } }
    @media (max-width: 575px) {
      header .search.open {
        padding: 8px 15px; } }
    @media (max-width: 767px) {
      header .search.open .input_search {
        width: calc(100% - 32px); } }
    @media (max-width: 767px) {
      header .search.open .input_search input[type="text"] {
        display: block; } }
    @media (max-width: 575px) {
      header .search.open .input_search input[type="text"] {
        height: 40px; } }
    @media (max-width: 575px) {
      header .search.open .input_search .icon-search {
        top: 8px; } }
    @media (max-width: 767px) {
      header .search.open .input_search .close_mobile {
        display: block !important;
        position: absolute;
        right: -32px;
        top: 12px; } }
    @media (max-width: 575px) {
      header .search.open .input_search .close_mobile {
        top: 8px; } }
    @media (max-width: 767px) {
      header .search.open .config .search_settings {
        opacity: 1;
        pointer-events: auto;
        right: 59px;
        top: 28px; } }
    @media (max-width: 575px) {
      header .search.open .config .search_settings {
        top: 16px; } }
    @media (max-width: 575px) {
      header .search {
        height: 24px; } }
    header .search .close_mobile {
      display: none !important; }
      header .search .close_mobile i {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
    header .search .popup {
      position: absolute;
      left: 0;
      right: 0;
      top: 53px;
      border-radius: 10px;
      background-color: #ffffff;
      padding: 24px;
      -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
      box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
      opacity: 0;
      pointer-events: none; }
      @media (max-width: 991px) {
        header .search .popup {
          left: -50px;
          right: -50px; } }
      @media (max-width: 767px) {
        header .search .popup {
          position: fixed;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: 9999;
          overflow: auto; } }
      @media (max-width: 575px) {
        header .search .popup {
          padding: 16px; } }
      header .search .popup.open {
        opacity: 1;
        pointer-events: auto; }
      header .search .popup .close {
        position: absolute;
        top: 26px;
        right: 24px; }
        @media (max-width: 575px) {
          header .search .popup .close {
            top: 16px;
            right: 16px; } }
        header .search .popup .close i {
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
      header .search .popup h2 {
        margin-bottom: 24px; }
        @media (max-width: 575px) {
          header .search .popup h2 {
            font-size: 18px; } }
      header .search .popup .input_line {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        header .search .popup .input_line .name {
          width: 130px;
          padding: 12px 0; }
          @media (max-width: 575px) {
            header .search .popup .input_line .name {
              width: 100%;
              padding: 0; } }
          header .search .popup .input_line .name span {
            line-height: 24px;
            font-size: 16px; }
        header .search .popup .input_line .input {
          width: calc(100% - 130px - 24px); }
          @media (max-width: 575px) {
            header .search .popup .input_line .input {
              width: 100%;
              margin-top: 8px; } }
          header .search .popup .input_line .input select, header .search .popup .input_line .input input {
            width: 100%;
            display: block; }
        header .search .popup .input_line + .input_line {
          margin-top: 16px; }
          @media (max-width: 575px) {
            header .search .popup .input_line + .input_line {
              margin-top: 24px; } }
      header .search .popup .buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 40px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end; }
        header .search .popup .buttons .button,
        header .search .popup .buttons .button-border {
          display: block; }
          @media (max-width: 575px) {
            header .search .popup .buttons .button,
            header .search .popup .buttons .button-border {
              padding-left: 0;
              padding-right: 0;
              width: 100%; } }
        header .search .popup .buttons > * + * {
          margin-left: 24px; }
          @media (max-width: 575px) {
            header .search .popup .buttons > * + * {
              margin-left: 10px; } }
      header .search .popup #search_result {
        margin: -24px;
        padding: 8px 0; }
        header .search .popup #search_result a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding: 8px 12px; }
          header .search .popup #search_result a:hover {
            background: #f5f5f5; }
          header .search .popup #search_result a i {
            height: 24px;
            display: block;
            margin-right: 12px; }
          header .search .popup #search_result a span {
            font-size: 16px;
            color: #000000;
            line-height: 24px;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis; }
            header .search .popup #search_result a span b {
              color: #3c99d3; }
    header .search .input_search {
      width: 566px;
      position: relative; }
      @media (max-width: 991px) {
        header .search .input_search {
          width: 350px; } }
      @media (max-width: 767px) {
        header .search .input_search {
          width: 50px; } }
      header .search .input_search input[type="text"] {
        padding-left: 50px;
        padding-right: 50px;
        display: block;
        width: 100%; }
        @media (max-width: 767px) {
          header .search .input_search input[type="text"] {
            display: none; } }
        @media (max-width: 575px) {
          header .search .input_search input[type="text"] {
            display: none; } }
      header .search .input_search .icon-search {
        position: absolute;
        top: 12px;
        left: 15px; }
        @media (max-width: 767px) {
          header .search .input_search .icon-search {
            left: 13px; } }
        @media (max-width: 575px) {
          header .search .input_search .icon-search {
            top: 0; } }
      @media (max-width: 767px) {
        header .search .input_search .popup {
          top: 80px;
          border-radius: 0;
          -webkit-box-shadow: none;
          box-shadow: none; }
          header .search .input_search .popup a {
            padding: 8px 16px 8px 28px !important; } }
      @media (max-width: 575px) {
        header .search .input_search .popup {
          top: 56px; } }
    header .search .config {
      position: absolute;
      top: 0;
      left: 0;
      right: 0; }
      header .search .config .search_settings {
        position: absolute;
        top: 12px;
        right: 12px;
        border: 0;
        margin: 0;
        padding: 0;
        background: none; }
        @media (max-width: 767px) {
          header .search .config .search_settings {
            opacity: 0;
            pointer-events: none; } }
        header .search .config .search_settings i {
          font-weight: 300; }
  header .right_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    header .right_block .notification {
      margin: 4px;
      padding: 8px;
      border-radius: 10px;
      cursor: pointer; }
      header .right_block .notification:hover {
        background-color: rgba(229, 229, 229, 0.4); }
      @media (max-width: 575px) {
        header .right_block .notification {
          padding: 0 0 0 12px; } }
      header .right_block .notification i {
        height: 24px;
        display: block; }
    header .right_block .profile {
      margin-left: 23px; }
      @media (max-width: 575px) {
        header .right_block .profile {
          display: none; } }
      header .right_block .profile .ava {
        width: 48px;
        height: 48px;
        border: 1px solid #E6E6E6;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 10px;
        background-size: cover;
        background-position: center; }
  @media (max-width: 1199px) {
    header.doc_page > * {
      display: none; }
    header.doc_page .back {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      left: 16px;
      right: 16px; }
      header.doc_page .back .mobile_more {
        display: block; } }

.left_block {
  width: 354px;
  height: calc(100vh - 80px);
  -webkit-box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }
  @media (max-width: 1199px) {
    .left_block {
      left: -354px; }
      .left_block.open {
        left: 0; } }
  @media (max-width: 575px) {
    .left_block {
      height: 100vh;
      width: 288px;
      overflow: auto; }
      .left_block.open {
        top: 0;
        left: 0; } }
  .left_block .mobile {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 12px;
    padding-left: 15px;
    padding-right: 15px;
    display: none; }
    @media (max-width: 575px) {
      .left_block .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    .left_block .mobile .ava {
      width: 48px;
      height: 48px;
      border: solid 1px #e5e5e5;
      border-radius: 50%;
      background-size: cover;
      background-position: center; }
    .left_block .mobile i:before {
      color: #808080; }
    .left_block .mobile .close {
      width: 24px;
      height: 24px;
      margin: 12px 0;
      opacity: 1 !important;
      cursor: pointer; }
    .left_block .mobile .exit {
      width: 24px;
      height: 24px;
      margin: 12px 0;
      display: block;
      cursor: pointer; }
  .left_block .buttons {
    padding: 24px;
    position: relative; }
    @media (max-width: 575px) {
      .left_block .buttons {
        padding: 24px 15px; } }
    .left_block .buttons button {
      background: none; }
    .left_block .buttons .add-new_popup {
      width: 306px;
      border-radius: 10px;
      background-color: #ffffff;
      position: absolute;
      top: 124px;
      left: 24px;
      padding: 8px 0;
      z-index: 1;
      opacity: 0;
      pointer-events: none;
      -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
      box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4); }
      @media (max-width: 575px) {
        .left_block .buttons .add-new_popup {
          left: 15px;
          width: 250px; } }
      .left_block .buttons .add-new_popup.open {
        opacity: 1;
        pointer-events: auto;
        top: 24px; }
      .left_block .buttons .add-new_popup a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-decoration: none;
        color: #000000;
        padding: 8px 16px; }
        .left_block .buttons .add-new_popup a:hover {
          background-color: rgba(229, 229, 229, 0.4); }
        .left_block .buttons .add-new_popup a i {
          width: 24px;
          height: 24px; }
        .left_block .buttons .add-new_popup a span {
          padding-left: 12px;
          display: block;
          line-height: 24px; }
  .left_block .menu {
    padding-right: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5; }
    .left_block .menu a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 12px 30px;
      border-radius: 0 10px 10px 0;
      background: #ffffff;
      text-decoration: none; }
      @media (max-width: 575px) {
        .left_block .menu a {
          padding: 12px 15px; } }
      .left_block .menu a:hover {
        background-color: rgba(229, 229, 229, 0.4); }
      .left_block .menu a.mt-16 {
        margin-top: 16px; }
      .left_block .menu a.active {
        background-color: rgba(60, 153, 211, 0.2); }
        .left_block .menu a.active span {
          color: #3c99d3;
          font-weight: 700; }
      .left_block .menu a i {
        height: 24px;
        position: relative; }
        .left_block .menu a i.new:after {
          content: "";
          border-radius: 50%;
          width: 8px;
          height: 8px;
          border: solid 1px #ffffff;
          background-color: #e62e49;
          position: absolute;
          top: 0;
          right: 0; }
      .left_block .menu a span {
        line-height: 24px;
        display: block;
        padding-left: 12px;
        color: #000000; }
  .left_block .folder_list {
    padding: 0;
    overflow: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; }
    @media (max-width: 575px) {
      .left_block .folder_list {
        position: relative;
        top: initial !important;
        height: auto !important;
        left: 0;
        right: 0; } }
    .left_block .folder_list .icon-down-16px {
      color: #808080 !important; }
    .left_block .folder_list .root {
      padding: 32px 24px 15px 24px; }
      .left_block .folder_list .root .name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 6px 0;
        cursor: pointer;
        position: relative; }
        .left_block .folder_list .root .name i {
          width: 20px;
          height: 20px;
          -webkit-transition: all 0.15s ease-in-out;
          -o-transition: all 0.15s ease-in-out;
          transition: all 0.15s ease-in-out;
          position: relative;
          z-index: 1; }
          .left_block .folder_list .root .name i.icon-down-16px {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
          .left_block .folder_list .root .name i:before {
            font-size: 20px; }
        .left_block .folder_list .root .name span {
          padding-left: 10px;
          line-height: 20px;
          font-size: 14px;
          position: relative;
          z-index: 1;
          white-space: nowrap; }
        .left_block .folder_list .root .name.open i.icon-down-16px {
          -webkit-transform: rotate(0);
          -ms-transform: rotate(0);
          transform: rotate(0); }
        .left_block .folder_list .root .name.active {
          opacity: 1 !important; }
          .left_block .folder_list .root .name.active i {
            color: #3c99d3; }
          .left_block .folder_list .root .name.active span {
            color: #3c99d3;
            font-weight: bold; }
        .left_block .folder_list .root .name:hover {
          opacity: .7; }
      .left_block .folder_list .root > .name {
        padding: 0; }
        .left_block .folder_list .root > .name:before {
          display: none; }
        .left_block .folder_list .root > .name i {
          width: 24px;
          height: 24px; }
          .left_block .folder_list .root > .name i:before {
            font-size: 24px; }
        .left_block .folder_list .root > .name span {
          font-size: 16px;
          padding-left: 12px;
          line-height: 24px;
          font-weight: 700; }
      .left_block .folder_list .root .content {
        padding-left: 32px;
        display: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none; }
        .left_block .folder_list .root .content a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          text-decoration: none;
          padding: 6px 0;
          position: relative; }
          .left_block .folder_list .root .content a:hover {
            opacity: 0.7; }
          .left_block .folder_list .root .content a i {
            width: 20px;
            height: 20px;
            position: relative;
            z-index: 1; }
            .left_block .folder_list .root .content a i:before {
              font-size: 20px; }
            .left_block .folder_list .root .content a i + i {
              margin-left: 6px; }
          .left_block .folder_list .root .content a span {
            line-height: 20px;
            display: block;
            padding-left: 10px;
            font-size: 14px;
            color: #000000;
            position: relative;
            z-index: 1;
            white-space: nowrap; }
          .left_block .folder_list .root .content a.active {
            opacity: 1 !important; }
            .left_block .folder_list .root .content a.active i {
              color: #3c99d3; }
            .left_block .folder_list .root .content a.active span {
              color: #3c99d3;
              font-weight: bold; }
      .left_block .folder_list .root > .content {
        padding-top: 8px;
        display: block; }
  .left_block + .page {
    width: calc(100% - 354px);
    margin-left: auto;
    padding: 24px; }
    @media (max-width: 1199px) {
      .left_block + .page {
        width: 100%; } }
    @media (max-width: 575px) {
      .left_block + .page {
        padding: 16px 15px; } }

.page {
  padding: 24px 15px; }
  @media (max-width: 575px) {
    .page {
      padding-top: 16px; } }
  .page .projects_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 12px;
    border-radius: 10px;
    -webkit-box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    margin: 0; }
    @media (max-width: 575px) {
      .page .projects_list {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0; } }
    .page .projects_list .project {
      margin: 12px;
      width: calc(25% - 24px);
      height: 200px;
      border-radius: 10px;
      border: solid 1px #e5e5e5;
      background-color: #ffffff;
      padding: 16px;
      position: relative;
      color: #000000;
      text-decoration: none; }
      @media (max-width: 1199px) {
        .page .projects_list .project {
          width: calc(100% / 3 - 24px); } }
      @media (max-width: 767px) {
        .page .projects_list .project {
          width: calc(100% / 2 - 24px); } }
      @media (max-width: 575px) {
        .page .projects_list .project {
          width: 100%;
          margin: 8px 0; } }
      .page .projects_list .project:hover {
        -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
        box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
        border: solid 1px #ffffff; }
      .page .projects_list .project .descr {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 16px; }

.folder_tabel {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08); }
  @media (max-width: 575px) {
    .folder_tabel {
      -webkit-box-shadow: none;
      box-shadow: none;
      margin: 0 -15px; } }
  @media (max-width: 575px) {
    .folder_tabel .head {
      display: none; } }
  .folder_tabel .head span {
    font-weight: 700;
    color: #808080; }
  .folder_tabel .head i {
    margin-left: 8px; }
  .folder_tabel .head .col_1,
  .folder_tabel .head .col_2,
  .folder_tabel .head .col_3,
  .folder_tabel .head .col_4 {
    cursor: pointer; }
    .folder_tabel .head .col_1 i,
    .folder_tabel .head .col_2 i,
    .folder_tabel .head .col_3 i,
    .folder_tabel .head .col_4 i {
      display: none; }
    .folder_tabel .head .col_1.sorting i,
    .folder_tabel .head .col_2.sorting i,
    .folder_tabel .head .col_3.sorting i,
    .folder_tabel .head .col_4.sorting i {
      display: block; }
    .folder_tabel .head .col_1.sorting.revers i,
    .folder_tabel .head .col_2.sorting.revers i,
    .folder_tabel .head .col_3.sorting.revers i,
    .folder_tabel .head .col_4.sorting.revers i {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  .folder_tabel > div,
  .folder_tabel > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    padding: 12px 0;
    text-decoration: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .folder_tabel > div i,
    .folder_tabel > a i {
      height: 24px;
      display: block;
      margin-right: 12px; }
    .folder_tabel > div span,
    .folder_tabel > a span {
      font-size: 14px;
      color: #000000;
      line-height: 24px;
      display: block;
      white-space: nowrap;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .folder_tabel > div + a,
    .folder_tabel > a + a {
      border-top: 1px solid #e5e5e5; }
    .folder_tabel > div > div,
    .folder_tabel > a > div {
      padding: 0 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .folder_tabel > a:hover {
    background-color: rgba(229, 229, 229, 0.4); }
  .folder_tabel > a.active {
    background-color: rgba(60, 153, 211, 0.2); }
  .folder_tabel .folder.hide {
    display: none; }
  .folder_tabel .show_folders {
    display: none;
    background-color: whitesmoke;
    padding: 0;
    height: auto;
    margin-bottom: -1px;
    position: relative;
    border-top: 1px solid #e5e5e5;
    cursor: pointer; }
    .folder_tabel .show_folders span {
      display: block;
      text-align: center;
      color: #3c99d3;
      font-weight: 600; }
    .folder_tabel .show_folders.show {
      display: block; }
  .folder_tabel .col_1 {
    width: calc((100% - 120px - 170px)/2); }
    @media (max-width: 767px) {
      .folder_tabel .col_1 {
        width: calc(100% - 170px); } }
    @media (max-width: 575px) {
      .folder_tabel .col_1 {
        width: calc(100% - 54px); } }
    .folder_tabel .col_1 .text {
      height: 36px;
      margin-top: -6px; }
      .folder_tabel .col_1 .text span {
        display: block;
        width: 100%;
        line-height: 20px; }
        .folder_tabel .col_1 .text span.root {
          color: #808080;
          font-size: 12px;
          line-height: 16px; }
  .folder_tabel .col_2 {
    width: 120px; }
    @media (max-width: 767px) {
      .folder_tabel .col_2 {
        display: none; } }
  .folder_tabel .col_3 {
    width: calc((100% - 120px - 170px)/2); }
    @media (max-width: 767px) {
      .folder_tabel .col_3 {
        display: none; } }
  .folder_tabel .col_4 {
    width: 170px; }
    @media (max-width: 575px) {
      .folder_tabel .col_4 {
        width: 54px; } }
  .folder_tabel .mobile_more {
    display: none;
    padding-right: 15px; }
    .folder_tabel .mobile_more .icon-more {
      width: 24px;
      margin: 0; }
    @media (max-width: 767px) {
      .folder_tabel .mobile_more {
        display: block; } }
  .folder_tabel > a .col_4 span {
    position: relative;
    font-weight: 700;
    padding-left: 24px; }
    @media (max-width: 575px) {
      .folder_tabel > a .col_4 span {
        font-size: 0;
        height: 24px; } }
    .folder_tabel > a .col_4 span:before {
      content: "";
      position: absolute;
      top: 50%;
      margin-top: -3px;
      left: 0;
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #808080; }
    .folder_tabel > a .col_4 span.blue {
      color: #3c99d3; }
      .folder_tabel > a .col_4 span.blue:before {
        background: #3c99d3; }
    .folder_tabel > a .col_4 span.red {
      color: #e62e49; }
      .folder_tabel > a .col_4 span.red:before {
        background: #e62e49; }
    .folder_tabel > a .col_4 span.green {
      color: #3cd33c; }
      .folder_tabel > a .col_4 span.green:before {
        background: #3cd33c; }
    .folder_tabel > a .col_4 span.gray {
      color: #808080; }
      .folder_tabel > a .col_4 span.gray:before {
        background: #808080; }

.popup_block {
  position: relative !important; }
  .popup_block .popup {
    display: block;
    width: 210px;
    padding: 8px 0;
    border-radius: 10px;
    background-color: #ffffff;
    position: absolute;
    top: 124px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    padding: 8px 0;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
    box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4); }
    .popup_block .popup a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      text-decoration: none;
      color: #000000;
      padding: 8px 16px; }
      .popup_block .popup a:hover {
        background-color: rgba(229, 229, 229, 0.4); }
      .popup_block .popup a i {
        width: 24px;
        height: 24px; }
      .popup_block .popup a span {
        padding-left: 12px;
        display: block;
        line-height: 24px; }
  .popup_block.open .popup {
    top: 34px;
    opacity: 1;
    pointer-events: auto; }

.tooltip {
  z-index: 5; }

.folder_miniatures {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left; }
  .folder_miniatures > a {
    display: block;
    width: calc(100% / 5 - 20px);
    max-width: 200px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none; }
    @media (max-width: 991px) {
      .folder_miniatures > a {
        width: calc(100% / 4 - 20px); } }
    @media (max-width: 767px) {
      .folder_miniatures > a {
        width: calc(100% / 3 - 20px); } }
    @media (max-width: 575px) {
      .folder_miniatures > a {
        width: calc(100% / 2 - 10px);
        margin: 5px; } }
    .folder_miniatures > a .img {
      height: 120px;
      border-radius: 10px;
      background-size: cover;
      background-position: center;
      margin-bottom: 12px; }
    .folder_miniatures > a .line {
      display: block;
      position: relative; }
      .folder_miniatures > a .line .name {
        font-size: 14px;
        color: #000000;
        margin-bottom: 5px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis; }
        @media (max-width: 767px) {
          .folder_miniatures > a .line .name {
            text-align: left;
            margin-right: 24px;
            margin-bottom: 0;
            position: relative;
            line-height: 24px; }
            .folder_miniatures > a .line .name:before {
              content: "";
              display: block;
              position: absolute;
              top: 0;
              bottom: 0;
              right: 0;
              width: 40px;
              background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
              background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
              background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
              background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff); } }
      .folder_miniatures > a .line .mobile_more {
        position: absolute;
        top: 0;
        right: 0;
        display: block; }
        @media (min-width: 768px) {
          .folder_miniatures > a .line .mobile_more {
            display: none; } }
        .folder_miniatures > a .line .mobile_more i {
          display: block; }
          .folder_miniatures > a .line .mobile_more i:before {
            display: block; }
    .folder_miniatures > a .status {
      position: relative;
      font-weight: 700;
      display: block;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      opacity: 0; }
      @media (max-width: 575px) {
        .folder_miniatures > a .status {
          font-size: 0;
          height: 24px; } }
      @media (max-width: 767px) {
        .folder_miniatures > a .status {
          display: none; } }
      .folder_miniatures > a .status .dot {
        font-size: 20px;
        font-style: initial;
        display: block;
        line-height: 20px; }
      .folder_miniatures > a .status span {
        display: block;
        font-size: 14px;
        line-height: 20px;
        padding-left: 5px; }
      .folder_miniatures > a .status.blue {
        color: #3c99d3; }
      .folder_miniatures > a .status.red {
        color: #e62e49; }
      .folder_miniatures > a .status.green {
        color: #3cd33c; }
      .folder_miniatures > a .status.gray {
        color: #808080; }
    @media (min-width: 768px) {
      .folder_miniatures > a:hover {
        background-color: rgba(229, 229, 229, 0.4); }
        .folder_miniatures > a:hover .status {
          opacity: 1; }
      .folder_miniatures > a.active {
        background-color: rgba(60, 153, 211, 0.2); }
        .folder_miniatures > a.active .status {
          opacity: 1; } }
  .folder_miniatures .folder .img i:before {
    font-size: 120px; }
  .folder_miniatures .folder.hide {
    display: none; }

.folder_tabel.hide,
.folder_miniatures.hide {
  display: none; }

.overflow {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  pointer-events: none; }
  .overflow.open {
    opacity: 0.4;
    pointer-events: auto; }

.mobile_popup {
  display: block;
  padding: 8px 0;
  border-radius: 10px 10px 0 0;
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
  left: 15px;
  right: 15px;
  padding: 8px 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  width: calc(100% - 30px);
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%); }
  @media (max-width: 575px) {
    .mobile_popup {
      width: 100%;
      left: 0;
      right: 0; } }
  @media (min-width: 768px) {
    .mobile_popup {
      width: 300px;
      left: 50%;
      right: initial;
      margin-left: -150px; } }
  .mobile_popup a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    color: #000000;
    padding: 8px 16px; }
    .mobile_popup a:hover {
      background-color: rgba(229, 229, 229, 0.4); }
    .mobile_popup a i {
      width: 24px;
      height: 24px; }
    .mobile_popup a span {
      padding-left: 12px;
      display: block;
      line-height: 24px; }
  .mobile_popup.open {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    pointer-events: auto; }

.left_block.doc_page {
  background-color: initial;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 12px 0;
  width: 300px; }
  @media (max-width: 1199px) {
    .left_block.doc_page {
      -webkit-box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.08);
      box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
      padding-right: 24px;
      position: fixed;
      top: 50%;
      left: 50%;
      bottom: initial;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      border-radius: 10px;
      -webkit-box-shadow: 0 16px 50px 0 rgba(60, 153, 211, 0.4);
      box-shadow: 0 16px 50px 0 rgba(60, 153, 211, 0.4);
      background-color: #ffffff;
      height: auto;
      opacity: 0;
      pointer-events: none;
      z-index: 9999; }
      .left_block.doc_page.open {
        opacity: 1;
        pointer-events: auto; } }
  .left_block.doc_page .back {
    width: 64px;
    height: 48px;
    position: relative;
    display: block; }
    .left_block.doc_page .back i {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%; }
      .left_block.doc_page .back i:before {
        display: block;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .left_block.doc_page .menu_list {
    margin: 0;
    padding: 0; }
    .left_block.doc_page .menu_list li {
      list-style: none; }
      .left_block.doc_page .menu_list li a, .left_block.doc_page .menu_list li span {
        display: block;
        font-size: 16px;
        padding: 4px 24px;
        line-height: 24px;
        text-decoration: none;
        border-radius: 0 10px 10px 0;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis; }
      .left_block.doc_page .menu_list li a {
        color: #808080; }
        .left_block.doc_page .menu_list li a:hover {
          color: #000000;
          background-color: rgba(229, 229, 229, 0.6); }
      .left_block.doc_page .menu_list li .active, .left_block.doc_page .menu_list li span {
        background: rgba(60, 153, 211, 0.2) !important;
        font-weight: bold;
        color: #3c99d3 !important; }

.page.doc_page {
  width: calc(100% - 300px - 300px);
  margin-left: auto;
  margin-right: auto;
  padding: 24px; }
  @media (max-width: 1199px) {
    .page.doc_page {
      width: 100%; } }
  @media (max-width: 575px) {
    .page.doc_page {
      padding: 16px 15px; } }

.tabs {
  padding: 24px; }
  .tabs .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px; }
    .tabs .head span {
      display: block;
      width: 120px;
      line-height: 1;
      padding: 12px;
      font-size: 16px;
      font-weight: bold;
      background-color: #e5f0f4;
      color: #3c99d3;
      text-align: center;
      border-radius: 10px;
      cursor: pointer; }
      .tabs .head span:hover {
        background-color: #daeef5; }
      .tabs .head span.active {
        cursor: default;
        background-color: #3c99d3;
        color: #ffffff; }
  .tabs .content > div {
    display: none; }
    .tabs .content > div.active {
      display: block; }
    .tabs .content > div .tabel div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      position: relative; }
      .tabs .content > div .tabel div + div {
        margin-top: 16px; }
      .tabs .content > div .tabel div span {
        font-size: 14px; }
        .tabs .content > div .tabel div span:first-child {
          width: 75px;
          color: #808080; }
        .tabs .content > div .tabel div span:last-child {
          width: calc(100% - 75px - 24px);
          color: #000000; }

.doc_popup {
  max-width: 320px;
  padding: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  margin: 0; }
  .doc_popup.open {
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }
  .doc_popup .buttons {
    border-top: 1px solid #e5e5e5;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .doc_popup .buttons .icon {
      padding: 0;
      margin: 0;
      border: 0;
      background: initial;
      cursor: pointer;
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 10px; }
      .doc_popup .buttons .icon:hover {
        background: rgba(229, 229, 229, 0.4); }
      .doc_popup .buttons .icon i {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -12px;
        margin-left: -12px; }
  .doc_popup .button {
    margin: 0 24px 24px 24px;
    width: calc(100% - 48px); }

.right_sidebar {
  width: 300px;
  height: calc(100vh - 80px);
  -webkit-box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }
  @media (max-width: 1199px) {
    .right_sidebar {
      right: -300px; }
      .right_sidebar.open {
        right: 0; } }
  @media (max-width: 575px) {
    .right_sidebar {
      height: 100vh;
      width: 288px; }
      .right_sidebar.open {
        top: 0;
        left: 0; } }
  .right_sidebar .buttons {
    border-top: 1px solid #e5e5e5;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .right_sidebar .buttons .icon {
      padding: 0;
      margin: 0;
      border: 0;
      background: initial;
      cursor: pointer;
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 10px; }
      .right_sidebar .buttons .icon:hover {
        background: rgba(229, 229, 229, 0.4); }
      .right_sidebar .buttons .icon i {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -12px;
        margin-left: -12px; }
  .right_sidebar .button {
    margin: 0 24px 24px 24px;
    width: calc(100% - 48px); }

.mobile_left_bar {
  display: none;
  position: fixed;
  left: 8px; }
  @media (max-width: 1199px) {
    .mobile_left_bar {
      display: block;
      top: 90px; } }
  @media (max-width: 575px) {
    .mobile_left_bar {
      top: 72px; } }
  .mobile_left_bar i {
    display: block; }

.signed_docs .folder_tabel .col_1 {
  width: calc(100% - 120px - 200px); }

.signed_docs .folder_tabel .col_2 {
  width: 120px; }

.signed_docs .folder_tabel .col_3 {
  width: 200px; }

.ui_kit > div {
  padding: 24px 0; }
  .ui_kit > div + div {
    border-top: 1px solid #ccc; }
  .ui_kit > div .tabs {
    width: 260px;
    padding: 0; }

.modal_window {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
  box-shadow: 0 8px 25px 0 rgba(60, 153, 211, 0.4);
  padding: 16px 16px 24px 16px;
  opacity: 0;
  pointer-events: none; }
  .modal_window.open {
    opacity: 1;
    pointer-events: auto; }
  .modal_window .close {
    position: absolute;
    top: 16px;
    right: 16px; }
    .modal_window .close i {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
  .modal_window .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px; }
    @media (max-width: 575px) {
      .modal_window .buttons {
        display: block; } }
    .modal_window .buttons > * {
      display: block;
      width: 100%; }
      .modal_window .buttons > * + * {
        margin-left: 24px; }
        @media (max-width: 575px) {
          .modal_window .buttons > * + * {
            margin-left: 0;
            margin-top: 16px; } }

.pagination {
  margin-top: 24px; }
  .pagination.center ul {
    margin: 0 auto !important; }
  .pagination.right ul {
    margin: 0 0 0 auto !important; }
  .pagination ul {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .pagination ul li {
      list-style: none;
      display: block;
      width: 32px;
      height: 32px; }
      .pagination ul li + li {
        margin-left: 3px; }
      .pagination ul li a, .pagination ul li span {
        display: block;
        line-height: 32px;
        text-align: center;
        color: #000000;
        font-weight: bold;
        font-size: 14px; }
      .pagination ul li a {
        overflow: hidden; }
      .pagination ul li.link a {
        border-radius: 50%; }
        .pagination ul li.link a:hover {
          background-color: rgba(229, 229, 229, 0.6); }
      .pagination ul li.link.active * {
        color: #ffffff;
        background-color: #3c99d3 !important; }
      .pagination ul li.right, .pagination ul li.left {
        position: relative; }
        .pagination ul li.right a, .pagination ul li.left a {
          display: block;
          height: 32px;
          width: 32px;
          border-radius: 10px; }
          .pagination ul li.right a:hover, .pagination ul li.left a:hover {
            background-color: rgba(229, 229, 229, 0.6); }
          .pagination ul li.right a i, .pagination ul li.left a i {
            display: block;
            position: absolute;
            top: 4px; }
      .pagination ul li.left i {
        left: 4px; }
      .pagination ul li.right i {
        right: 4px; }

.alert_list {
  position: fixed;
  z-index: 999;
  right: 24px;
  bottom: 24px;
  max-width: 600px; }
  @media (max-width: 767px) {
    .alert_list {
      left: 15px;
      right: 15px;
      bottom: 15px;
      max-width: initial; } }
  .alert_list .alert {
    border-radius: 10px;
    background-color: #ffffff;
    padding: 10px 40px 10px 12px;
    margin: 0; }
    .alert_list .alert + .alert {
      margin-top: 15px; }
    .alert_list .alert .close {
      position: absolute;
      top: 8px;
      right: 8px;
      cursor: pointer; }
    .alert_list .alert span {
      font-size: 14px;
      line-height: 20px; }
    .alert_list .alert.gray {
      background-color: #e5e5e5; }
      .alert_list .alert.gray span {
        color: #808080; }
    .alert_list .alert.blue {
      background-color: #e5f0f4; }
      .alert_list .alert.blue span {
        color: #3c99d3; }
    .alert_list .alert.green {
      background-color: #e6f5e6; }
      .alert_list .alert.green span {
        color: #3cd33c; }
    .alert_list .alert.yellow {
      background-color: #f5f2d7; }
      .alert_list .alert.yellow span {
        color: #d9c72b; }
    .alert_list .alert.red {
      background-color: #f5e6e8; }
      .alert_list .alert.red span {
        color: #e62e49; }

@-webkit-keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.donut {
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0);
  border-left-color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  -webkit-animation: donut-spin 1.2s linear infinite;
  animation: donut-spin 1.2s linear infinite; }
