/*padding */
body.login #main,
#main {
    padding: .5rem 1rem;
}
ul {
    padding-left: 1.5rem;
}


/* why are links smaller? let's fix that */
p a.inline {
    font-size: inherit !important;
  }


/* onboarding */
p label,
label {
    font-weight: bold;
    display: flex; /*radio buttons alignment */
  }

  form p + ul {
    margin-top: -.675rem !important; /*weird spacing sometimes */
  }
  p > input {
    margin: .5rem 0;
  }

  .survey-question {
    margin: 1rem 0 0;
  }
  input[type="text"], 
  input[type="email"], 
  input[type="password"], 
  input[type="email"], 
  input[type="tel"], 
  input[type="number"] {
    font-size:1.25rem; /*the inputs are really large, let's tone that down a bit */
  }
  body.login input[type="radio"] {
    border-radius: 50%; /* let's have the circle but test out different height/widths */
  }
  body.login input[type="checkbox"], 
  body.login input[type="radio"] {
    width: 20px;
    height: 20px; /* different height/widths you heard tell about */
  }


/* privacy policy */
  .session_list p, 
  #main .content p {
    margin: 0.25em auto;
    padding: .5rem 0;
  }
  .session_list p + h2, 
  #main .content p + h2 {
    margin-top: 2em; /* 3rem is too big on a phone, let's keep it distinctive but sane */
  }

  /*buttons */
  #main .content .button-block a,
  a#next,
  button.back {
    letter-spacing: .05em; /* button text was too bold using the black variant, hard to read at smaller sizes. let's make the font a bit bigger, a bit less bold, and give it some air */
    font-family: "MikadoBold";
    font-size:1rem;
  }
    
/* general links */
.session_list a, 
#main .content a {
    padding:0; /* for links on its own line they were inset, which looks weird on teh contact line. let's see how it looks in general */
}
a#next.primary { /* sometimes what should be a button is just text. so let's make it look more like what we expect */
    display: block;
    background: #3c32f5;
    color: #fff !important;
    line-height: 44px !important;
    height: 44px;
    margin-bottom: 4px;
    padding: 0 0.5rem !important;

    box-sizing: border-box;
    max-width: 640px;
    border-radius: 8px;
    margin: 1rem auto;
    margin-bottom: 1rem;
    text-align: center;

    border: none;
    letter-spacing: .05em; /* button text was too bold using the black variant, hard to read at smaller sizes. let's make the font a bit bigger, a bit less bold, and give it some air */
    font-family: "MikadoBold";
    font-size:1rem;

}


/* general text */
ul { /* looks like ul are getting default browser margins? anyway let's have some control */
    margin: 0 0 1rem;
  }




  /*lets fix some contrast */
  .session_list h3, 
  #main .content h3 {
    color: #545da8;
  }
  .session_list h2, 
  #main .content h2 {
    color: #6a6666;
  }
  .stats.days h1 strong {
    color: #4d6e02;
  }
  h1 {
    color:#5a63ac;
  }
  .session_list h2 span, 
  #main .content h2 span {
    color: #577d03;
  }
  .session_list a, 
  #main .content a {
    color: #d23c01;
  }
  #session_list #inactive_sessions * {
    color: #e8f4cb !important;
  }
  #wheel div.selector {
    color:#fff!important; 
  }
  button#wheelback {
    color:#fff;
  }
#days .stats.clone .count.active {
    background-color: #76a114;
}




  /*let's try to make the quotes fit on screen even on laptop */
  #main .stats.quote .text {
    max-width:320px; /*this may be too thin but gosh darn i want to see the quote */
    margin: 0 auto; 
  }

  #days_visualization.page {
    width:100%;
  }
  #calendar.calendar_viz ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  #calendar.calendar_viz ul li {
    width:inherit;
  }