.radio-group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 1.2em;
  padding: 0.5em;

  .radio-card {
    border-radius: 0.6em;
    border: 1px solid #002950;
    width: 30%;
    padding: 0.5em;

    .radio-img {
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

.hidden {
  display: none;
}

.active {
  background-color: #002950;
  color: white;

  svg {
    fill: white;
  }
}

select.form-control,
input[type="date"].form-control {
  padding: 0.2em 1em !important;
}

.inline {
  display: inline-block !important;
}
