.component-date .label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
.component-date .inputs {
  display: flex;
}
@media (max-width: 767px) {
  .component-date .inputs {
    flex-direction: column;
  }
}
.component-date .inputs .input-wrapper {
  position: relative;
  width: 50%;
  flex-grow: 1;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
@media (max-width: 767px) {
  .component-date .inputs .input-wrapper {
    width: 100%;
  }
}
.component-date .inputs .input-wrapper input {
  width: 100%;
  outline: none;
  font-size: 1rem;
  padding: 10px;
  border: none;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
}
.component-date .inputs .input-wrapper input[type=date]::-webkit-inner-spin-button, .component-date .inputs .input-wrapper input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.component-date .inputs .input-wrapper svg {
  position: absolute;
  right: 0;
  top: 0;
  height: calc(1.3rem);
  margin: 10px;
}
.component-date .inputs .dash {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  flex-shrink: 0;
}

.template4 .component-date .inputs .input-wrapper {
  border-bottom: none;
  border-radius: 5px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}
.template4 .component-date .inputs .input-wrapper input {
  border-radius: 5px;
}