/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries

Documentation:

http://getskeleton.com/#examples

*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.column,
.columns {
  width: 100%;
  float: left;
}

/* For devices larger than 400px */
@media (min-width: 1028px) {
    /* what was this for? */
  /*.container {
    padding: 0; }*/
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  /*.container {
    width: 90%; }*/
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .numbers.columns                { width: 20%;            }
  .stats.columns                  { width: 29%;            }
  .summary.columns                { width: 48%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

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

  .one-half.column                { width: 48%; }

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

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}




p {
  margin-top: 0; }


/* Buttons

  Lars has removed the specificity here by one:

  *[type="submit"] used to be input[type="submit"]

–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
*[type="submit"],
*[type="reset"],
*[type="button"] {
  display: inline-block;
/*  height: 38px;*/
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
/*  line-height: 38px;*/
  letter-spacing: .1rem;
  /*text-transform: uppercase;*/
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #f1f1f1;
  cursor: pointer;
}
.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 {
/*  color: #333; */
/*  border-color: #888; */
  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;
  background-color: #33C3F0;
  border-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 {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
*[type="email"],
*[type="number"],
*[type="search"],
*[type="text"],
*[type="tel"],
*[type="url"],
*[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
}
/* Removes awkward default styles on some inputs for iOS */
*[type="email"],
*[type="number"],
*[type="search"],
*[type="text"],
*[type="tel"],
*[type="url"],
*[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

*[type="text"],
*[type="email"],
*[type="password"]{
border:0px;
border-radius: 0px;
border-bottom: solid 1px #c7c7c7;
  height: 42px;
padding: 0px;
  font-size: 1.2rem;
}
select {
border: none;
}
/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul { padding: 0; }
/*ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }*/


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
}
.h-full-width {
  width: 100%;
  max-width: none;
  padding: 14px;
}
.u-max-full-width {
  max-width: 100%;
}
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }
.floatRight {
	float:right;
}
.floatLeft {
	float:left;
}

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

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


/* 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 section 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) {}





/*
    LA EXTENTION WITH BOOTSTRAP STYLE

    xs / sm / md / lg - screen settings

*/

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.md-one.column,
    .md-one.columns                    { width: 4.66666666667%; }
    .md-two.columns                    { width: 13.3333333333%; }
    .md-three.columns                  { width: 22%;            }
    .md-numbers.columns                { width: 20%;            }
    .md-stats.columns                  { width: 29%;            }
    .md-summary.columns                { width: 48%;            }
    .md-four.columns                   { width: 30.6666666667%; }
    .md-five.columns                   { width: 39.3333333333%; }
    .md-six.columns                    { width: 48%;            }
    .md-seven.columns                  { width: 56.6666666667%; }
    .md-eight.columns                  { width: 65.3333333333%; }
    .md-nine.columns                   { width: 74.0%;          }
    .md-ten.columns                    { width: 82.6666666667%; }
    .md-eleven.columns                 { width: 91.3333333333%; }
    .md-twelve.columns                 { width: 100%; margin-left: 0; }

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

    .md-offset-by-one-third.column,
    .md-offset-by-one-third.columns    { margin-left: 34.6666666667%; }
    .md-offset-by-two-thirds.column,
    .md-offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

    .md-offset-by-one-half.column,
    .md-offset-by-one-half.columns     { margin-left: 52%; }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

	.sm-one.column,
    .sm-one.columns                    { width: 4.66666666667%; }
    .sm-two.columns                    { width: 13.3333333333%; }
    .sm-three.columns                  { width: 22%;            }
    .sm-numbers.columns                { width: 20%;            }
    .sm-stats.columns                  { width: 29%;            }
    .sm-summary.columns                { width: 48%;            }
    .sm-four.columns                   { width: 30.6666666667%; }
    .sm-five.columns                   { width: 39.3333333333%; }
    .sm-six.columns                    { width: 48%;            }
    .sm-seven.columns                  { width: 56.6666666667%; }
    .sm-eight.columns                  { width: 65.3333333333%; }
    .sm-nine.columns                   { width: 74.0%;          }
    .sm-ten.columns                    { width: 82.6666666667%; }
    .sm-eleven.columns                 { width: 91.3333333333%; }
    .sm-twelve.columns                 { width: 100%; margin-left: 0; }

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

    .sm-offset-by-one-third.column,
    .sm-offset-by-one-third.columns    { margin-left: 34.6666666667%; }
    .sm-offset-by-two-thirds.column,
    .sm-offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

    .sm-offset-by-one-half.column,
    .sm-offset-by-one-half.columns     { margin-left: 52%; }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

    .xs-one.column,
    .xs-one.columns                    { width: 4.66666666667%; }
    .xs-two.columns                    { width: 13.3333333333%; }
    .xs-three.columns                  { width: 22%;            }
    .xs-numbers.columns                { width: 20%;            }
    .xs-stats.columns                  { width: 29%;            }
    .xs-summary.columns                { width: 48%;            }
    .xs-four.columns                   { width: 30.6666666667%; }
    .xs-five.columns                   { width: 39.3333333333%; }
    .xs-six.columns                    { width: 48%;            }
    .xs-seven.columns                  { width: 56.6666666667%; }
    .xs-eight.columns                  { width: 65.3333333333%; }
    .xs-nine.columns                   { width: 74.0%;          }
    .xs-ten.columns                    { width: 82.6666666667%; }
    .xs-eleven.columns                 { width: 91.3333333333%; }
    .xs-twelve.columns                 { width: 100%; margin-left: 0; }

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

    .xs-offset-by-one-third.column,
    .xs-offset-by-one-third.columns    { margin-left: 34.6666666667%; }
    .xs-offset-by-two-thirds.column,
    .xs-offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

    .xs-offset-by-one-half.column,
    .xs-offset-by-one-half.columns     { margin-left: 52%; }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*
    TNDR
*/

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
