.information-bar {
  min-height: 70px;
  border-top: 1px solid var(--Stroke);
  border-bottom: 1px solid var(--Stroke);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
  margin-bottom: 24px;
  background: #fff;

  h3,
  p {
    line-height: 16px;
  }

  &.sticky {
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 2;
    align-items: flex-start;

    .information-bar__item_name {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      min-width: 531px;
      max-width: 531px;
    }
  }

  &.import {
    .information-bar__item {
      .d-flex {
        .information-bar__item_name {
          width: 100%;
        }
      }
    }

    .information-bar__item-tabs .block {
      flex-wrap: nowrap;

      @media (max-width: 768px) {
        flex-wrap: wrap;
      }

      div {
        max-width: 100%;
      }
    }

    .bolder {
      font-weight: bold;
    }
  }

  &.float-left {
    .container {
      padding-left: 165px;

      @media screen and (max-width: 1060px) {
        padding-left: 15px;
      }
    }
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media screen and (max-width: 991px) {
      flex-wrap: wrap;
    }
  }

  &__item {
    display: flex;
    align-self: stretch;

    @media screen and (max-width: 991px) {
      flex-wrap: wrap;
      width: 100%;

      &:not(:last-child) {
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--Stroke);
      }
    }

    &:first-child {
      flex-wrap: nowrap;
    }

    &_name {
      max-width: max-content;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;

      h4 {
        font-family: 'PT Sans Caption';
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      h3 {
        font-size: 18px;

        *{
          font-size: 18px;
          font-family: 'PT Sans Caption',sans-serif !important;
        }        
      }

      h3, h4{
        a[href^=tel] {
          color: inherit;
          text-decoration:inherit;
          pointer-events: none;
        }
      }

      p {
        margin: 0;
        width: auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: 'PT Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        padding-right: 16px;

        &.red {
          color: var(--Red);
        }

        &.yellow {
          color: var(--Yellow);
        }

        &.green {
          color: var(--Green);
        }
      }
    }

    &_block {
      padding-right: 12px;
      display: flex;
      flex-direction: column;
      width: 50%;     

      @media screen and (min-width: 992px) {
        padding-left: 12px;
        border-left: 1px solid var(--Stroke);
        width: auto;
      }

      @media screen and (max-width: 991px) {
        &:nth-child(n+3) {
          margin-top: 12px;
        }

        &:nth-child(even) {
          border-left: 1px solid var(--Stroke);
          padding-left: 12px;
        }
      }

      &.status-wrap {
        width: 218px;

        @media (max-width: 1199px) {
          width: 148px;
        }

        @media (max-width: 991px) {
          width: 50%;
        }
      }

      &.direction-wrap {
        width: 275px;

        @media (max-width: 991px) {
          width: 50%;
        }
      }

      &.nowrap {
        p {
          white-space: nowrap;
          line-height: 18px;
        }
      }

      &.line-clamp {

        p {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: 300px;
        }
      }

      .label {
        font-size: 12px;
        line-height: 16px;
        color: var(--Secondary);
        display: block;
        white-space: nowrap;
        min-height: 16px;
      }

      .value {
        font-weight: bold;
        font-size: 14px;
        color: var(--Main2);

        &.red {
          color: var(--Red);
        }

        &.yellow {
          color: var(--Yellow);
        }

        &.green {
          color: var(--Green);
        }
      }

      p {
        margin: 0;
        font-size: 14px;
        word-break: inherit;
        font-family: 'PT Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;

        &.bold {
          font-weight: bold;
        }

        &.red {
          color: var(--Red);
          font-weight: bold;
        }

        &.yellow {
          color: var(--Yellow);
          font-weight: bold;
        }

        &.green {
          color: var(--Green);
          font-weight: bold;
        }
      }

      a {
        font-size: 14px;
        line-height: 16px;
      }
    }

    &-info {
      display: flex;
      align-items: center;
      margin-bottom: 20px;

      @media (max-width: 991px) {
        flex-direction: column;
        align-items: flex-start;
      }

      a {
        text-decoration: none;
        color: #157EFB;
      }

      div {
        display: flex;
        align-items: center;
        margin-right: 8px;

        @media (max-width: 991px) {
          padding-left: 32px;
          align-items: flex-start;
          margin-bottom: 4px;

          &:first-child {
            padding-left: 0;
          }
        }

        &:last-child {
          margin-right: 0;

          @media (max-width: 991px) {
            margin-bottom: 0;
          }
        }

        svg {
          margin-right: 10px;
        }

        span {
          font-size: 14px;
          line-height: 18px;
          color: var(--Main1);

          &:first-child {
            margin-right: 4px;
          }
        }
      }
    }
  }

  .print {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--Main2);
    background-color: var(--Main2);
    border-radius: 4px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    svg {
      path {
        stroke: #fff;
      }
    }
  }
}