body {
  max-width: 600px;
  margin: 0 auto;
}

#date-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.date {
  font-size: 0.8rem;
  opacity: 0.85;
  letter-spacing: 0.05rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.nav {
  font-family: var(--primary-font);
  color: var(--primary-color);
  text-align: left;
  font-size: 1.3rem;
  padding: 0rem 1rem 0rem 1rem;
  border-radius: 0 0 25% 25%;
  letter-spacing: 0.1rem;
}

.nav > h4 {
  font-weight: 400;
}

.nav > h4 > strong {
  font-weight: 900;
  text-transform: uppercase;
}

.header, h3 {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  margin-left: 1rem;
  margin-top: 2rem;
  font-weight: 500;
}

.icon-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  width: calc(100%);
}


.option {
  position: relative;
  width: calc(50% - 3px - 0.5rem);
}

.option > input:checked + label{
  background-color: var(--primary-color);
  color: white;
}

.option > input {
  display: none;
}

.option > label {
  margin-top: 1rem;
  /* border: 3px solid var(--primary-color); */
  text-align: center;
  border-radius: 0.5rem;
  padding: 1rem 1rem;
  color: var(--primary-color);
  width: calc(100% - 6px - 2rem);
  display: inline-block;
  box-shadow: var(--box-shadow-left-1);
}

.option > label > i {
  font-size: 2rem;
}

.option > label > p {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.4rem;
  margin-top: 1rem;
  font-family: var(--primary-font);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.2rem;
}

.option > label.disabled {
  /* border-color: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  box-shadow: var(--box-shadow-disabled-1); */

  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0.6;
  box-shadow: none;
}

input {
  border: 2px solid var(--primary-color);
  border-radius: 0.25rem;
  display: block;
  width: calc(100% - 4rem);
  padding: 1rem 1rem;
  font-family: Arial, 'Fontawesome';
  margin: 0 1rem;
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

input:focus {
  outline: none;
}
