.search-form {
    position: relative;
    top: 60px;
    /*direction in arabic*/
    right: 7%;
    /**/
    /*direction in en*/
    /*
     left:50%
     */
    padding-top: 50px;
    width: 550px;
    height: 40px;
    border-radius: 40px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%);
    background: #fff;
    transition: all 0.3s ease;
    border: 2px solid #012970;
  }
  .search-form.focus {
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  }
  .search-input {
    position: absolute;
    top: 14px;
    /* direction in arabic*/
    right: 45px;
    /**/
    /*
     direction in en
    */
    /*left:45px*/
    font-size: 14px;
    background: none;
    color: #5a6674;
    width: 195px;
    height: 20px;
    border: none;
    appearance: none;
    outline: none;
  }
  .search-input::-webkit-search-cancel-button {
    appearance: none;
  }
  .search-button {
    position: absolute;
    top: 10px;
    left: 15px;
    height: 20px;
    width: 20px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    outline: none !important;
    cursor: pointer;
  }
  .search-button svg {
    width: 20px;
    height: 20px;
    fill: #012970;
  }
  .search-option {
    position: absolute;
    text-align: right;
    top: 10px;
    right: 15px;
  }
  .search-option div {
    position: relative;
    display: inline-block;
    margin: 0 1px;
    cursor: pointer;
  }
  .search-option div input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.01;
    cursor: pointer;
  }
  .search-option div span {
    position: absolute;
    display: block;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    background: #929AA3;
    color: #fff;
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
    padding: 4px 7px;
    border-radius: 12px;
    top: -18px;
    transition: all 0.2s ease-in-out;
  }
  .search-option div span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 4px solid #929AA3;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    transition: all 0.2s ease-in-out;
  }
  .search-option div:hover span {
    opacity: 1;
    top: -21px;
  }
  .search-option div label {
    display: block;
    cursor: pointer;
  }
  .search-option div svg {
    height: 20px;
    width: 20px;
    fill: #5a6674;
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
  }
  .search-option div:hover svg {
    opacity: 1;
  }
  .search-option div input:checked + label svg {
    fill: #e24040;
    opacity: 0.9;
  }
  .search-option div input:checked + label span {
    background: #e24040;
  }
  .search-option div input:checked + label span::after {
    border-top-color: #e24040;
  }
  @media  (max-width:390px) {
    .search-form {
      width: 300px;
    }


  }
  @media  (max-width:414px) {
    .search-form {
      width: 300px;
    }
  }
  @media  (max-width:540px) {
    .search-form {
      width: 500px;
    }
  }
  @media (max-width:280px){
     .search-form{
      width: 230px;
     }
  }
  @media  (max-width:412px) {
    .search-form {
      width: 270px;
    }
  }

  @media  (max-width:500px) {
    .search-form {
      width: 370px;
    }
  }
