input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button {
  display: none;
}

.search-form-container-calendar-input-button{
  display: flex;
}

.search-form-container-calendar-input {
  position: relative;
  
  width: 100%;
}

.search-form-calendar-input-title {
  display: flex;
  align-items: center;
  gap: 19px;

  margin-left: 23px;
}

.search-form-calendar-input-title span {
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  text-decoration-line: underline;
  -webkit-text-decoration-line: underline;
  color: #000;

  cursor: pointer;
}

.search-form-calendar-input-title span:hover {
  text-decoration: none;
}

.search-form-container-calendar-input svg {
  position: absolute;
  top: 54px;
  left: 23px;
}

.search-form-container-calendar-input input {
  width: calc(100% + 1px); 
  margin-left: -1px; 
  padding-left: 40px;
  padding-top: 23px;

  border: 1px solid #b4b4b4;

  cursor: pointer;
}

.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;

  min-width: 172px;
  min-height: 60px;
  max-height: 60px;
  margin-top: auto;
  
  background: #ffc122;
  border-radius: 0 12px 12px 0;
  border: none;
  outline: none;
  
  cursor: pointer;
}

.search-form button:hover {
  background: #f90;
}

.search-form button span {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #1b1918;
}