.location-report-table {
  margin-left: 0;
  margin-right: 0;
}

.location-report-table-order-col{
  display: none;
}

@media screen and (min-width: 450px) {
  .location-report-table-order-col {
    display: table-cell;
  }
}

.location-report-spacing{
  margin-bottom: 1.5rem;
}

.location-report-full-width{
  width: 100%;
}

.location-report-location-error,
.location-report-email-error {
    margin-top: 0.25rem;
    display: block;

    @media screen and (min-width: 450px) {
        margin-top: 0.5rem;
    }
}

.location-report-hidden {
  display: none;
}

.location-report-margin-bottom-mobile {
  margin-bottom: 1rem;
}

@media screen and (min-width: 450px) {
  .location-report-margin-bottom-mobile {
    margin-bottom: 0;
  }
}


.location-report-email-field {
  display: flex;
  flex-direction: column;
  gap: 5%;
  row-gap: 2rem;
}

@media screen and (min-width: 450px) {
  .location-report-email-field {
    flex-direction: row;
  }
}

.location-report-location-button {
  width: 100%;
  height: 44px;
  flex-shrink: 2;
}

.location-report-radio-box-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 7%;
}

@media screen and (min-width: 450px) {
  .location-report-radio-box-wrapper {
    flex-direction: row;
  }
}

.location-report-radio-item {
  position: relative;
  width: 100%;
}

.location-report-radio-input {
  appearance: none;
  margin: 0;
  height: 3rem;
  width: 100%;
  background-color: #ecf0ef;
  border-radius: 0.5rem;
}

.location-report-radio-input:checked {
  appearance: none;
  margin: 0;
  width: 100%;
  height: 3rem;
  background-color: #0a441e;
  border-radius: 0.5rem;
}

.location-report-radio-input ~ label {
  position: absolute;
  pointer-events: none;
  width: 100%;
  color: #0a441e;
  top: 37%;
  transform: translate(-100%, -50%);
  text-align: center;
}

.location-report-radio-input:checked ~ label {
  position: absolute;
  pointer-events: none;
  width: 100%;
  color: white;
  top: 37%;
  transform: translate(-100%, -50%);
  text-align: center;
}

.location-report-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.5rem;
  background: #5E6E62;
  border-radius: 2rem;
  outline: none;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 450px) {
  .location-report-slider {
    margin-bottom: 3rem;
  }
}

.location-report-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 2rem; /* Set a specific slider handle width */
  height: 2rem; /* Slider handle height */
  border-radius: 5rem;
  background: white; /* Green background */
  box-shadow: 0 0 1rem #9d9d9d;
}

.location-report-slider-input-field-wrapper {
  position: relative;
}

.location-report-slider-input-label {
  position: absolute;
  top: 0.83rem;
  left: 0.5rem;
}

.location-report-slider-input-field {
  text-indent: 3.5rem;
}

.location-report-slider-input-wrapper {
  display: flex;
  flex-direction: column;
}

.location-report-slider-wrapper {
  flex-grow: 1;
}

@media screen and (min-width: 450px) {
  .location-report-slider-input-wrapper {
    flex-direction: row;
    gap: 6rem;
    align-items: end;
  }
}

.location-report-slider-result-wrapper {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 450px) {
  .location-report-slider-result-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
