@use 'colours';
@use 'responsive';
@use 'typography';

:host {
  margin-bottom: 0.5rem;
}

input[type='radio'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid colours.$colour-admiralty-blue;
  border-radius: 1rem;
  height: 1.5rem;
  width: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 18px;

  &:disabled {
    border: 2px solid colours.$colour-button-secondary-deselected;
  }

  &:disabled::after,
  input[type='radio']:checked:disabled::after {
    background-color: colours.$colour-button-secondary-deselected;
  }

  &:checked::after {
    border-radius: 100%;
    background-color: colours.$colour-admiralty-blue;
    width: 0.8rem;
    height: 0.8rem;
    content: ' ';
  }

  & + label {
    position: relative;
    top: 2px;
  }
}
