@charset "UTF-8";
*, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5; }

.search_box_container {
  position: relative;
  z-index: 10;
  width: 85%;
  max-width: 900px;
  min-height: 400px;
  margin: 40px auto 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2); }
  @media screen and (max-width: 600px) {
    .search_box_container {
      width: 95%;
      margin: 60px auto 0 auto; } }
.search_box_wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 30px 0; }
  .search_box_wrapper .search_title_wrapper {
    color: #1f2937;
    padding: 0 20px 30px 20px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 32px;
    text-align: center; }
    @media screen and (max-width: 510px) {
      .search_box_wrapper .search_title_wrapper {
        font-size: 24px;
        padding: 0 10px 20px 10px; } }
    .search_box_wrapper .search_title_wrapper h1 {
      font-size: inherit;
      font-weight: inherit;
      margin: 0;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
  .search_box_wrapper .search_content_wrapper {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 30px 0 30px 0; }
    .search_box_wrapper .search_content_wrapper .main_search_row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin: 0 20px 24px 20px; }
      @media screen and (max-width: 600px) {
        .search_box_wrapper .search_content_wrapper .main_search_row {
          margin: 0 15px 24px 15px; } }
      .search_box_wrapper .search_content_wrapper .main_search_row .input_box {
        flex: 1;
        min-width: 250px; }
        @media screen and (max-width: 600px) {
          .search_box_wrapper .search_content_wrapper .main_search_row .input_box {
            width: 100%;
            min-width: 100%; } }
      .search_box_wrapper .search_content_wrapper .main_search_row .main_buttons {
        display: flex;
        align-items: center;
        gap: 12px; }
        @media screen and (max-width: 600px) {
          .search_box_wrapper .search_content_wrapper .main_search_row .main_buttons {
            width: 100%;
            justify-content: center; } }
    .search_box_wrapper .search_content_wrapper .advanced_filters {
      background: #f8fafc;
      padding: 24px 20px 24px 20px;
      border-radius: 12px;
      margin: 20px 20px 0 20px;
      border: 1px solid #e5e7eb; }
      @media screen and (max-width: 600px) {
        .search_box_wrapper .search_content_wrapper .advanced_filters {
          margin: 20px 15px 0 15px;
          padding: 24px 15px 24px 15px; } }
      .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 20px; }
        .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row:last-child {
          margin-bottom: 0; }
        .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .filter_item {
          flex: 1;
          min-width: 200px; }
          @media screen and (max-width: 768px) {
            .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .filter_item {
              flex: 0 0 100%;
              min-width: 100%;
              width: 100%; } }
        .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .filter_select {
          width: 100%;
          padding: 12px 16px;
          border-radius: 8px;
          border: 2px solid #e5e7eb;
          background-color: #ffffff;
          font-size: 14px;
          font-weight: 500;
          transition: all 0.3s ease; }
          .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .filter_select:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
        .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .salary_range {
          display: flex;
          align-items: center;
          flex: 2;
          gap: 12px; }
          @media screen and (max-width: 768px) {
            .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .salary_range {
              width: 100%; } }
          .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .salary_range .salary_input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 8px;
            border: 2px solid #e5e7eb;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease; }
            .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .salary_range .salary_input:focus {
              outline: none;
              border-color: #2563eb;
              box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
          .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .salary_range .salary_separator {
            color: #6b7280;
            font-weight: 600;
            font-size: 16px; }
        .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .checkbox_wrapper {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 8px 0; }
          .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .checkbox_wrapper input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #2563eb; }
          .search_box_wrapper .search_content_wrapper .advanced_filters .filter_row .checkbox_wrapper label {
            color: #1f2937;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer; }
    .search_box_wrapper .search_content_wrapper input[type="text"],
    .search_box_wrapper .search_content_wrapper input[type="number"],
    .search_box_wrapper .search_content_wrapper select {
      border-radius: 8px;
      padding: 12px 16px;
      outline: none;
      border: 2px solid #e5e7eb;
      font-weight: 500;
      font-size: 14px;
      width: 100%;
      box-sizing: border-box;
      background: #ffffff;
      transition: all 0.3s ease; }
      .search_box_wrapper .search_content_wrapper input[type="text"]:focus,
      .search_box_wrapper .search_content_wrapper input[type="number"]:focus,
      .search_box_wrapper .search_content_wrapper select:focus {
        border-color: #2563eb;
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
      .search_box_wrapper .search_content_wrapper input[type="text"]::placeholder,
      .search_box_wrapper .search_content_wrapper input[type="number"]::placeholder,
      .search_box_wrapper .search_content_wrapper select::placeholder {
        color: #6b7280;
        font-weight: 400; }
    .search_box_wrapper .search_content_wrapper .submit_btn {
      padding: 12px 24px;
      border-radius: 10px;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: #ffffff;
      font-weight: 600;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease; }
      .search_box_wrapper .search_content_wrapper .submit_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
      .search_box_wrapper .search_content_wrapper .submit_btn:active {
        transform: translateY(0); }
    .search_box_wrapper .search_content_wrapper .more_option_wrapper {
      cursor: pointer;
      color: #6b7280;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px; }
      .search_box_wrapper .search_content_wrapper .more_option_wrapper::after {
        content: "";
        display: inline-block;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid currentColor;
        transition: transform 0.3s ease; }
      .search_box_wrapper .search_content_wrapper .more_option_wrapper:hover {
        color: #2563eb;
        background: #f8fafc; }
      .search_box_wrapper .search_content_wrapper .more_option_wrapper.expanded::after {
        transform: rotate(180deg); }
  .search_box_wrapper .recent_update_wrapper {
    margin-top: 40px;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden; }
    .search_box_wrapper .recent_update_wrapper::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
      z-index: 0; }
    .search_box_wrapper .recent_update_wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, transparent 100%);
      z-index: 1; }
    @media screen and (max-width: 620px) {
      .search_box_wrapper .recent_update_wrapper {
        display: none !important; } }
    .search_box_wrapper .recent_update_wrapper .title_wrapper {
      font-size: 20px;
      color: #1f2937;
      font-weight: 800;
      margin-bottom: 24px;
      padding-left: 8px;
      position: relative;
      z-index: 2;
      letter-spacing: 0.5px; }
      .search_box_wrapper .recent_update_wrapper .title_wrapper::before {
        content: '🔥';
        margin-right: 8px;
        font-size: 18px;
        animation: pulse 2s infinite; }
    .search_box_wrapper .recent_update_wrapper .content_wrapper {
      position: relative;
      z-index: 2; }
      .search_box_wrapper .recent_update_wrapper .content_wrapper ul {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 0;
        padding: 0; }
        .search_box_wrapper .recent_update_wrapper .content_wrapper ul li {
          list-style: none;
          animation: fadeInUp 0.6s ease forwards;
          opacity: 0;
          transform: translateY(20px); }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(1) {
            animation-delay: 0.1s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(2) {
            animation-delay: 0.2s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(3) {
            animation-delay: 0.3s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(4) {
            animation-delay: 0.4s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(5) {
            animation-delay: 0.5s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(6) {
            animation-delay: 0.6s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(7) {
            animation-delay: 0.7s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(8) {
            animation-delay: 0.8s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(9) {
            animation-delay: 0.9s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(10) {
            animation-delay: 1s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(11) {
            animation-delay: 1.1s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(12) {
            animation-delay: 1.2s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(13) {
            animation-delay: 1.3s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(14) {
            animation-delay: 1.4s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(15) {
            animation-delay: 1.5s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(16) {
            animation-delay: 1.6s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(17) {
            animation-delay: 1.7s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(18) {
            animation-delay: 1.8s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(19) {
            animation-delay: 1.9s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li:nth-child(20) {
            animation-delay: 2s; }
          .search_box_wrapper .recent_update_wrapper .content_wrapper ul li a {
            display: inline-block;
            text-decoration: none;
            color: #1f2937;
            border: 2px solid transparent;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 600;
            background: #ffffff;
            border-radius: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
            .search_box_wrapper .recent_update_wrapper .content_wrapper ul li a::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background: linear-gradient(135deg, #2563eb, #3b82f6, #10b981);
              border-radius: 25px;
              padding: 2px;
              mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
              mask-composite: exclude;
              opacity: 0;
              transition: opacity 0.4s ease;
              z-index: -1; }
            .search_box_wrapper .recent_update_wrapper .content_wrapper ul li a::after {
              content: '';
              position: absolute;
              top: 0;
              left: -100%;
              width: 100%;
              height: 100%;
              background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
              transition: left 0.6s ease; }
            .search_box_wrapper .recent_update_wrapper .content_wrapper ul li a:hover {
              background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
              color: #ffffff;
              border-color: transparent;
              transform: translateY(-3px) scale(1.05);
              box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3); }
              .search_box_wrapper .recent_update_wrapper .content_wrapper ul li a:hover::before {
                opacity: 1; }
              .search_box_wrapper .recent_update_wrapper .content_wrapper ul li a:hover::after {
                left: 100%; }
            .search_box_wrapper .recent_update_wrapper .content_wrapper ul li a:active {
              transform: translateY(-1px) scale(1.02); }

@keyframes pulse {
  0%, 100% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); } }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0); } }

/*# sourceMappingURL=index.css.map */