/*-------------------------------------
#. Topbar
---------------------------------------*/
.top-header {
  background-color: #1c1d20;
  padding: 8px 0;
  line-height: 1.3;

  li {
    line-height: 1.5;
  }

  .top-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    @include small-screen() {
      display: block;
      text-align: center;
    }

    .tophead-right {
      @include small-screen() {
        margin-top: 5px;
      }
    }

    .tophead-info {
      list-style-type: none;
      margin: 0;
      padding: 0;

      @include small-screen() {
        text-align: center;
      }

      li {
        display: inline-block;
        margin-right: 20px;

        .fa {
          color: var(--dentix-primary-color);
          padding-right: 10px;
        }

        a,
        span {
          color: #91939d;
        }

        span {
          margin-left: 4px;
        }

        a:hover {
          text-decoration: underline;
        }
      }
    }

    .tophead-right {
      .tophead-social {
        font-size: 0;

        li {
          display: inline;
          vertical-align: middle;
          margin-left: 20px;

          a {
            color: #91939d;
            font-size: 15px;
            line-height: 1.5;

            &:hover {
              color: var(--dentix-primary-color);
            }
          }

          &:first-child {
            margin-left: 0;
          }
        }
      }
    }
  }
}

/* Transparent */
.trheader .top-header {
  background-color: rgba($black, 0.7);
}