/*----------------------------
    Info Bar
----------------------------*/

.info-bar-bottom {
  background-color: transparent;

  &.style-01 {
    position: absolute;
    width: 100%;
    z-index: 2;
    padding: 15px 0 60px;
  }

  &.style-02 {
    position: absolute;
    width: 100%;
    z-index: 2;
    padding: 20px 0 60px;
  }
}

.top-right-nav {
  margin: 0;
  padding: 0;
  list-style: none;

  li {
    display: inline-block;
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 50px;

    + li {
      margin-left: 35px;
    }

    a {
      i {
        color: #30bcff;
        margin-right: 5px;
      }
    }
  }
}

.info-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #e9f1ff;

  .left-content-area {
    display: flex;
    width: 100%;
    flex: 1;
  }

  .right-content-area {
    display: flex;
    align-items: center;
  }
}

.info-items {
  margin: 0;
  padding: 0;
  list-style: none;

  &.style-01 {
    li {
      color: var(--paragraph-color);
    }
  }

  li {
    display: inline-block;

    + li {
      margin-left: 20px;
    }

    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    color: $white;
    @include transition($transition);

    &:hover {
      color: var(--secondary-color);
    }

    i {
      margin-right: 3px;
      color: $white;
    }
  }
}

.info-items-02 {
  margin: 0;
  padding: 0;
  list-style: none;

  &.style-01 {
    li {
      .title {
        color: var(--main-color-one);
      }

      .number {
        color: var(--main-color-two);
      }
    }
  }

  li {
    display: flex;
    align-items: center;

    .title {
      color: $white;
      font-size: 12px;
      font-weight: 500;
      margin-top: 15px;
      margin-right: 15px;
    }

    .number {
      color: var(--secondary-color);
      font-size: 24px;
      font-weight: 700;
    }
  }
}

.info-items-03 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin-right: 50px;

  li {
    + li {
      margin-left: 30px;
    }
  }
}

.info-bar-item {
  display: flex;
  align-self: flex-start;
  background-color: var(--bg-color-two);
  align-items: center;

  &.style-01 {
    .icon {
      font-size: 25px;
      line-height: 40px;
      width: 40px;
      height: 40px;
      text-align: center;
      border-radius: 50%;
      color: #fff;
      background-color: var(--main-color-two);
      left: 50%;
      transition: all 500ms;
    }

    .content {
      .title {
        font-weight: 600;
        font-size: 14px;
      }

      .details {
        font-size: 16px;
        font-weight: 600;
        color: var(--paragraph-color);
        margin-bottom: 0;
      }
    }
  }

  .icon {
    line-height: 20px;
    text-align: center;
    margin-right: 10px;
    font-size: 20px;
    color: var(--main-color-one);
    @include transition($transition);
  }

  .content {
    flex: 1;

    .title {
      font-size: 12px;
      font-weight: 500;
      line-height: 20px;
      margin-bottom: 0;
      display: block;
      color: var(--heading-color);
    }

    .details {
      margin-bottom: 0;
      font-size: 16px;
      font-weight: 600;
    }
  }
}

.info-items-icon {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;

  li {
    display: inline-block;

    + li {
      margin-left: 20px;
    }

    font-size: 14px;
    line-height: 24px;
    @include transition($transition);

    &:hover {
      color: var(--secondary-color);
    }
  }
}