/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative; 
  width: 95%; 
  max-width: 960px; 
  margin: 0 auto; 
  padding: 0; }
.container .lane,        
.container .lanes { 
  float: left; 
  width: 100%; 
  box-sizing: border-box; }
.row { 
  margin-bottom: 2rem; }
.row .lane:first-child,        
.row .lanes:first-child { 
  margin-left: 0; }

/* For devices larger than 550px */
@media (min-width: 550px) {
  
  .container .lane,
  .container .lanes {
    margin-left: 4%; }
  
  .container .one.lane,
  .container .one.lanes          { width: 4.66666666667%; }
  .container .two.lanes          { width: 13.3333333333%; }
  .container .three.lanes        { width: 22%;            }
  .container .four.lanes         { width: 30.6666666667%; }
  .container .five.lanes         { width: 39.3333333333%; }
  .container .six.lanes          { width: 48%;            }
  .container .seven.lanes        { width: 56.6666666667%; }
  .container .eight.lanes        { width: 65.3333333333%; }
  .container .nine.lanes         { width: 74.0%;          }
  .container .ten.lanes          { width: 82.6666666667%; }
  .container .eleven.lanes       { width: 91.3333333333%; }
  .container .twelve.lanes,
  .container .all.lanes          { width: 100%; margin-left: 0; }

  .container .one-third.lane     { width: 30.6666666667%; }
  .container .two-thirds.lane    { width: 65.3333333333%; }

  .container .one-half.lane      { width: 48%; }

  /* Offsets */
  .container .row .offset-by-one        { margin-left: 8.66666666667%; }
  .container .row .offset-by-two        { margin-left: 17.3333333333%; }
  .container .row .offset-by-three      { margin-left: 26%;            }
  .container .row .offset-by-four       { margin-left: 34.6666666667%; }
  .container .row .offset-by-five       { margin-left: 43.3333333333%; }
  .container .row .offset-by-six        { margin-left: 52%;            }
  .container .row .offset-by-seven      { margin-left: 60.6666666667%; }
  .container .row .offset-by-eight      { margin-left: 69.3333333333%; }
  .container .row .offset-by-nine       { margin-left: 78.0%;          }
  .container .row .offset-by-ten        { margin-left: 86.6666666667%; }
  .container .row .offset-by-eleven     { margin-left: 95.3333333333%; }

  .container .row .offset-by-one-third  { margin-left: 34.6666666667%; }
  .container .row .offset-by-two-thirds { margin-left: 69.3333333333%; }

  .container .row .offset-by-one-half   { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton 
are based on 10px sizing. So basically 1.5rem = 15px :) */
html { 
  font-size: 62.5%; } 
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #222; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf { 
  content: "";
  display: table;
  clear: both; }


/* Buttons 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  background-color: transparent;
  /*border-radius: 4px;*/
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #bbb;
  height: 38px;
  line-height: 38px;
  padding: 0 30px;
  letter-spacing: .1rem;
  /*text-transform: uppercase; */
  white-space: nowrap;
  box-sizing: border-box; 
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover,
.button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  border-color: #888;
  color: #333;
  outline: 0; 
}
.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
  color: #FFF;
  border-color: #33C3F0;
  background-color: #33C3F0; 
}
.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover,
.button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
  background-color: #1EAEDB;
  border-color: #1EAEDB;
  color: #FFF; 
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries 
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons secion and style it 
there. 
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}