
.custom-header-right {
  // Search Box
  .custom-header-search {
    .search-form {
      position: relative;
      display: flex;
      align-items: center;

      .search-field {
        padding: 6px 12px 6px 40px;
        border-radius: $search-radius;
        border: 1px solid $secondary-color-2;
        width: 240px;
        transition: $transition;
        background: rgba(45, 45, 45, 1);
        color: #fff;
        &::placeholder {
            color: #aaa;
            font-size: 16px;
        }

        &:focus {
          border-color: $primary-color;
          outline: none;
          box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
        }
      }

      .search-submit {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        color: #666;
        padding-left: 0;
        padding-right: 0;

        .dashicons {
          font-size: 18px;
        }
        

        &:hover {
          color: $primary-color;
        }
      }
    }
  }
}
