* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline-color: #954A00;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 12pt;
  color: #565a5c;
  background-color: #F9F9F9;
}

a {
  text-decoration: none;
}

.is-hidden {
  display: none;
}

.radio-button {
  display: block;
  position: relative;
  line-height: 1;
}
.radio-button input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.radio-button input:checked ~ span {
  background-color: #954A00;
  border: solid 1px #954A00;
}
.radio-button input:checked ~ span::after {
  display: block;
}
.radio-button input:focus:checked ~ span {
  border: solid 1px #FFBF00;
}
.radio-button input:focus ~ span {
  border: solid 1px #954A00;
}
.radio-button span {
  position: absolute;
  top: 0;
  left: 0;
  height: 16pt;
  width: 16pt;
  background-color: #D7D7D7;
  left: auto;
  right: 0;
}
.radio-button span::after {
  content: "";
  position: absolute;
  display: block;
  left: calc(6.4pt - 1px);
  top: calc(3.2pt - 1px);
  width: 3.2pt;
  height: 6.4pt;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radio-button span::after {
  display: none;
}
.radio-button:hover input:not(:checked) ~ span {
  background-color: #AAAAAA;
}

button {
  display: block;
  width: 100%;
  font-size: 16pt;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}
@media (min-width: 769px) {
  button {
    display: inline-block;
    width: auto;
    min-width: 200px;
    padding: 8px 50px;
  }
}
button.primary {
  background-color: #954A00;
  color: #FFFFFF;
  border: none;
}
button.secondary {
  background-color: #FFFFFF;
  color: #954A00;
  border: solid 1px #954A00;
}

@media (min-width: 769px) {
  .form .field {
    display: flex;
  }
}
.form .field:not(:last-child) {
  margin-bottom: 8px;
}
.form .field label {
  display: block;
  width: 100%;
  margin-right: 4px;
}
@media (min-width: 769px) {
  .form .field label {
    display: inline;
    flex-shrink: 2;
  }
}
.form .field label::after {
  content: ":";
}
.form .field input {
  width: 100%;
  font-size: 12pt;
  padding: 4px;
}
.form .field textarea {
  width: 100%;
  height: 150px;
}
@media (min-width: 769px) {
  .form .buttons-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: flex-end;
  }
}
.form .buttons-panel button:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 769px) {
  .form .buttons-panel button:not(:last-child) {
    margin-bottom: 0;
    margin-right: 12px;
  }
}

#msg {
  display: none;
  text-align: center;
  padding: 20px;
  margin: 16px;
  border-radius: 5px;
}
#msg.error {
  display: block;
  border: solid 1px #9b363f;
  background-color: #FF5765;
  color: #9b363f;
}
#msg.info {
  display: block;
  border: solid 1px #4e5e9b;
  background-color: #6FA9FF;
  color: #4e5e9b;
}

#complaints {
  width: calc(100% - 32px);
  margin: 16px auto;
  border: solid 1px #565a5c;
  border-radius: 5px;
  background-color: #FFFFFF;
  padding: 0 16px;
}
#complaints section {
  padding: 16px 0;
}
@media (min-width: 769px) {
  #complaints section:not(.buttons-panel) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#complaints section:not(:last-child) {
  border-bottom: solid 1px #565a5c;
}
#complaints section h2 {
  padding-bottom: 12px;
  font-size: 16pt;
}
@media (min-width: 769px) {
  #complaints section h2 {
    flex-basis: 100%;
  }
}
@media (min-width: 769px) {
  #complaints section .field {
    flex-basis: calc(50% - 12px);
    margin-bottom: 4px;
  }
}
@media (min-width: 1025px) {
  #complaints section .field {
    flex-basis: calc(33% - 12px);
  }
}
@media (min-width: 426px) {
  #complaints section.hired {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
  #complaints section.hired h2 {
    flex-basis: 100%;
  }
  #complaints section.hired .hired-amount {
    flex-grow: 2;
    display: flex;
    align-items: baseline;
  }
  #complaints section.hired .hired-amount > * {
    display: inline;
  }
  #complaints section.hired .hired-amount label {
    text-align: right;
    margin-right: 12px;
  }
  #complaints section.hired .hired-amount input {
    flex-shrink: 2;
  }
}
@media (min-width: 1025px) {
  #complaints section.hired .field.hired-type {
    flex-basis: auto;
  }
}
#complaints section.hired .field.hired-type label, #complaints section.hired .field.hired-type div {
  display: inline;
}
#complaints section.hired .field.hired-type div {
  font-style: italic;
  font-weight: 200;
}
@media (min-width: 426px) {
  #complaints section.detail {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
  }
  #complaints section.detail > * {
    flex-basis: 100%;
  }
  #complaints section.detail .detail-claim,
#complaints section.detail .detail-complain {
    flex-basis: calc(50% - 12px);
  }
}
@media (min-width: 769px) {
  #complaints section.help {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  #complaints section.help .help-item {
    flex-basis: calc(50% - 4px);
  }
}
#complaints section.help .help-item:not(:last-child) {
  margin-bottom: 12px;
}
#complaints section.help .help-item .help-title {
  font-weight: bold;
}
#complaints section.help .help-item .help-title::after {
  content: ":";
}

footer.complaints {
  width: calc(100% - 32px);
  margin: 16px auto;
}
@media (min-width: 769px) {
  footer.complaints {
    display: flex;
    justify-content: space-between;
  }
}
footer.complaints > div {
  font-size: 10pt;
}
@media (min-width: 769px) {
  footer.complaints > div {
    flex-basis: calc(50% - 4px);
  }
}
footer.complaints > div:not(:last-child) {
  margin-bottom: 16px;
}