
  /* hide checkbox */
  input[type="checkbox"] {
    display: none;
  }

  input[type="checkbox"] + label {
  	font-size: 0.875rem;
    line-height: 1.348rem;
    letter-spacing: 0rem;
    color: #000;
    border: 1px solid transparent;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    border-radius: 3.125rem;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0.6rem 1.25rem 0.65rem 1.25rem;
    background-color: #F3F4EF;
    min-height: 0;
    min-width: 8.125rem;
    white-space: normal;
    position: relative;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    -moz-box-shadow: 0px 0px 0px 0px transparent;
    -webkit-box-shadow: 0px 0px 0px 0px transparent;
    box-shadow: 0px 0px 0px 0px transparent;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }

  /* if checkbox is checked, then do these things */
  input[type="checkbox"]:checked + label {
  	font-size: 0.875rem;
    line-height: 1.348rem;
    letter-spacing: 0rem;
    color: #000;
    border: 1px solid transparent;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    border-radius: 3.125rem;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0.6rem 1.25rem 0.65rem 1.25rem;
    background-color: #F3F4EF;
    min-height: 0;
    min-width: 8.125rem;
    white-space: normal;
    position: relative;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    -moz-box-shadow: 0px 0px 0px 0px transparent;
    -webkit-box-shadow: 0px 0px 0px 0px transparent;
    box-shadow: 0px 0px 0px 0px transparent;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }

  /* styles when hovering over options */
  label:hover {
    border-color: var(--brandeisblue);
    color: var(--brandeisblue); 
    cursor: pointer;
    
    /* transitions and animations */
    -webkit-transition: color .5s ease;
    -moz-transition: color .5s ease;
    -ms-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease;
  }

  input[type="checkbox"]:checked + label::after {
    font-family: 'Material Symbols Outlined';
    content: "\e5cd";
    font-size: clamp(.5rem, 0.4153rem + 1.6368vw, 2rem);
    padding-left: var(--padding);
    vertical-align: bottom;
  }

  input[type="checkbox"] + label::after {
    font-family: 'Material Symbols Outlined';
    content: "\e145";
    font-size: clamp(.5rem, 0.4153rem + 1.6368vw, 2rem);
    padding-left: var(--padding);
    vertical-align: bottom;
  }

.play-red {
  background-color: var(--playred);
}

.play-blue {
 background-color: var(--playblue);
}

.play-yellow {
   background-color: var(--playyellow);
}

.play-green {
  background-color: var(--playgreen);
}

.select-gray {
  background-color: var(--selectgray);
}