/* body {
    background-color: var(--tertiary-bg-color);
    color: var(--primary-text-color);
    font-family: "Rubik", serif;
    font-size: 1.2rem;
    line-height: 1.6;
  } */
  
  .tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem auto;
    width: 100%;
  }
  
  .tabs .tabpanel {
    background: #f5f5f5;
    /* border: 1px solid gray; */
    border-bottom: 2px solid gray;
    cursor: pointer;
    display: block;
    font-weight: 600;
    margin-right: 0.3rem;
    order: initial;
    padding: 1rem 2rem;
    transition: background ease 0.3s;
    width: 100%;
  }
  
  .tabs .tab-content {
    background: var(--secondary-bg-color);
    display: none;
    flex-grow: 1;
    padding: 1rem;
    width: 100%;
  }
  
  .tabs input[type="radio"] {
    display: none;
  }
  
  .tabs input[type="radio"]:checked + .tabpanel {
    background: #fff;
    /* border: 1px solid #e36f1e; */
    border-bottom: 2px solid #e36f1e;
    /* background: var(--secondary-bg-color);
    color: var(--primary-text-color) */
  }
  
  .tabs input[type="radio"]:checked + .tabpanel + .tab-content {
    display: block;
  }
  
  @media (min-width: 10em) {
    .tabs .tab-content {
      order: 99
    }
    
    .tabs .tabpanel {
      order: 1;
    }
    
    .tabs .tabpanel {
      margin-right: 0.3rem;
      margin-top: 0;
      width: auto;
    }
  }
  