#searchForm {
  background: #ffffff;
  padding: 0;
  margin-bottom: 2rem; }
  #searchForm #container-search-form {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch; }
    #searchForm #container-search-form::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.3); }
  #searchForm form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 85%; }
  #searchForm .title-search {
    padding: 1rem;
    background: #ededed;
    min-width: 15rem;
    line-height: 1;
    margin: 0;
    color: inherit;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 2%;
    width: 13%; }
    #searchForm .title-search--prim {
      font-size: 2.2rem;
      font-weight: bold; }
    #searchForm .title-search-second {
      font-size: 1.5rem; }
    @media (max-width: 640px) {
      #searchForm .title-search {
        font-size: 1.5rem; } }
  #searchForm .group-checkbox-container {
    min-width: 15rem; }
    @media (max-width: 1040px) {
      #searchForm .group-checkbox-container {
        min-width: calc( 15rem - 5rem); } }
    @media (max-width: 840px) {
      #searchForm .group-checkbox-container {
        min-width: calc( 15rem + 10rem); } }
    @media (max-width: 740px) {
      #searchForm .group-checkbox-container {
        width: 100%; } }
    #searchForm .group-checkbox-container label {
      display: inline-block; }
  #searchForm input[type="text"],
  #searchForm select,
  #searchForm input[type="submit"] {
    border: 0;
    height: 9rem;
    min-width: 15rem; }
    @media (max-width: 1040px) {
      #searchForm input[type="text"],
      #searchForm select,
      #searchForm input[type="submit"] {
        min-width: calc( 15rem - 5rem); } }
    @media (max-width: 840px) {
      #searchForm input[type="text"],
      #searchForm select,
      #searchForm input[type="submit"] {
        min-width: calc( 15rem + 10rem); } }
    @media (max-width: 740px) {
      #searchForm input[type="text"],
      #searchForm select,
      #searchForm input[type="submit"] {
        width: 100%;
        min-width: 100%; } }
  #searchForm input[type="text"] {
    padding-left: .5rem; }
  #searchForm input[type="submit"] {
    border: 0;
    cursor: pointer;
    transition: .3s ease;
    background: #000000;
    color: #ffffff; }
    #searchForm input[type="submit"]:hover {
      background: #ffffff;
      color: #000000; }
