.search-form {
  display: flex;
}
@media (max-width: 992px) {
  .search-form {
    flex-direction: column;
  }
}
.search-form .search-element {
  flex: 1;
  margin-right: 10px;
}
.search-form .search-element .label {
  font-size: 13px;
  line-height: 20px;
  font-weight: medium;
  color: #555555;
}
.search-form .search-element .input-el {
  /* Super clear inputs elements */
}
.search-form .search-element .input-el select,
.search-form .search-element .input-el input {
  width: 100%;
  border: none;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: #13243E;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.search-form .search-element .input-el select:focus,
.search-form .search-element .input-el input:focus {
  outline: none;
}
.search-form .search-element .input-el select:disabled,
.search-form .search-element .input-el input:disabled {
  background-color: #f0f0f0;
}
.search-form .search-element .input-el select::placeholder,
.search-form .search-element .input-el input::placeholder {
  color: #13243E;
  font-weight: 500;
}
.search-form .btn {
  background-color: #13243E;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.vc {
  z-index: 9999;
}