/**=====================
   5.5 Search CSS Start
==========================**/
.search-page {
  .theme-form {
    input {
      border: 1px dashed var(--theme-deafult);
      padding-left: 20px;
      border-radius: 10px 0 0 10px;
      flex: 1 1 auto;
      width: 100% !important;

      &::placeholder {
        color: $primary-color;
      }

      &:focus {
        outline: none;
      }
    }

    .input-group {
      .btn {
        line-height: 32px;
        font-size: 16px;
      }

      .form-control-plaintext {
        background: transparent;
      }
    }
  }

  h6 {
    line-height: 1.4;
  }

  .nav-link {
    font-weight: 500;
    text-transform: uppercase;
  }

  .border-tab {
    &.nav-tabs {
      .material-border {
        border-bottom-width: 1px;
      }

      .nav-item {
        .nav-link {
          font-size: 15px;
          padding: 10px 18px;
        }
      }
    }
  }

  .d-flex {
    .flex-grow-1 {
      overflow: hidden;
    }
  }


  .info-block {
    padding: 30px;
    border-radius: 15px;
    border: 1px dashed $light-color;
    border-color: rgba(89, 102, 122, 0.28) !important;

    a {
      color: #656565;
      margin-bottom: 3px;
      display: block;
    }

    h5 {
      color: $primary-color;
    }

    +.info-block {
      margin-top: 20px;
    }
  }

  .border-tab.nav-tabs {
    align-items: left;
    justify-content: flex-end;

    .nav-item {
      width: auto;
    }
  }

  .search-links {
    h5 {
      margin-bottom: 10px;
      font-weight: 600;
    }
  }

  p {
    text-transform: lowercase;
    margin-bottom: 0;
    color: #a5a2a2;
  }

  ul.search-info {
    li {
      display: inline-block;
      font-size: 12px;
      line-height: 1.12;
      color: #586082;
      padding: 0px;
      margin-top: 5px;

      +li {
        border-left: 1px dashed lighten($dark-color, 50%);
        padding-left: 8px;
        margin-left: 8px;
      }

      i {
        color: $warning-color;

        &:not(:last-child) {
          margin-right: 4px;
        }
      }
    }
  }

  #video-links {
    .embed-responsive+.embed-responsive {
      margin-top: 30px;
    }
  }
}

.search-list {
  margin-bottom: 30px;
  width: auto;
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px dashed $primary-color;
  border: none;

  .nav-item {
    background-color: rgba($primary-color, 0.1);

    .nav-link {
      border: none;
      padding: 0.7rem 1.5rem;
      opacity: 0.5;
      cursor: pointer;

      &.active {
        background-color: rgba($primary-color, 0.1);
        color: var(--theme-deafult);
        opacity: 1;
      }
    }

    &.show,
    &.active {
      background-color: rgba($primary-color, 0.1);
    }
  }
}

/**=====================
  5.5 Search CSS Ends
==========================**/