@media screen and (min-width:700px) {
    
    .answer-row,
    #answer_legend {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    margin-top: 4px;
    }
    
    .answer-row > div:not(:last-child) {
    margin-right: 5px;
    }
    
    .smartphoneLegend {
      display:none;
    }
  
  }
  
  @media screen and (max-width:699px) {
    
    .answer-row > div:not(:last-child) {
      margin-bottom: 5px;
    }
    
    .answer-row {
      margin-top: 10px;
    }
    
  }
  
  .smartphoneLegend {
  color: #222;
}
  
  .answer-row > div {
    padding: 1em;
    border-radius: 3px;
  } 
  
  .answer-row {
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 5px #0002;
  }

  
  .incorrect {
    background-color: #ffeeeb;
    color: #4b0b00;
  }
  
  .title {
    font-weight: bold;
  }
  
  .correct {
    background-color: #eef3e0;
    color: #334500;
  }
  
  .hide {
    display:none!important;
  }
  
  .easeInChildren .title {
    animation: easeInCustom 0.5s;
  }
  
  .easeInChildren .population {
    animation: easeInCustom 1s;
  }
  
  .easeInChildren .state {
    animation: easeInCustom 1.5s;
  }
  
  .easeInChildren .zip_code {
    animation: easeInCustom 2s;
  }
  
  .easeInChildren .distance {
    animation: easeInCustom 2.5s;

  }
  

  
  
  @keyframes easeInCustom {
    from {opacity:0}
    to {opacity: 1}
  }

  .smartphoneLegend {
    color: #222 !important;
    padding-bottom: 5px !important;
  }
  
  
  .ts-wrapper {
    max-width: 600px;
    margin: 30px auto;
  }
  
  .ts-wrapper.single .ts-control {
    background-image: unset;
  }
  
  .ts-control, .ts-control input, .ts-dropdown {
    font-size: 1.1em;
  }