@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,400italic);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.1/css/font-awesome.css);
:root {
  --primary-color: #e78714;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background: #f1f2f7;
  font-family: 'Open Sans', arial, sans-serif;
  color: darkslategray;
}

body.login {
  background-color: white;
  max-width: 500px;
  margin: 10vh auto;
  padding: 1em;
  height: auto;
}

/* general utility classes */
.warn {
  color: lightsalmon;
}

/* header */
header[role=banner] {
  background: white;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

header[role=banner] h1 {
  margin: 0;
  font-weight: 300;
  padding: 0.7rem;
}

header[role=banner] img {
  width: 5rem;
  height: auto;
  padding: 0.7rem;
}

header[role=banner] .utilities {
  width: 100%;
  background: slategray;
  color: #ddd;
}

header[role=banner] .utilities li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

header[role=banner] .utilities li a {
  padding: .7em;
  display: block;
}

/* header */
.utilities a:before {
  content: "\f248";
  font-family: FontAwesome;
  padding-right: .6em;
}

.logout a:before {
  content: "";
}

.users a:before {
  content: "";
}

nav[role=navigation] {
  background: #e78714;
  color: #ddd;
  /* icons */
}

nav[role=navigation] li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav[role=navigation] li a {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: .7em;
}

nav[role=navigation] li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

nav[role=navigation] li a:before {
  content: "\f248";
  font-family: FontAwesome;
  padding-right: .6em;
}

nav[role=navigation] .dashboard a:before {
  content: "";
}

nav[role=navigation] .write a:before {
  content: "";
}

nav[role=navigation] .edit a:before {
  content: "";
}

nav[role=navigation] .comments a:before {
  content: "";
}

nav[role=navigation] .users a:before {
  content: "";
}

/* current nav item */
.current, .dashboard .dashboard a, .write .write a, .edit .edit a, .comments .comments a, .users .users a {
  background-color: rgba(255, 255, 255, 0.1);
}

footer[role=contentinfo] {
  background: slategray;
  color: #ddd;
  font-size: .8em;
  text-align: center;
  padding: 0.1 0.5em;
}

/* panels */
.panel {
  background-color: white;
  color: darkslategray;
  border-radius: .3rem;
  margin: 1%;
}

.panel > h2, .panel > ul {
  margin: 1rem;
}

/* typography */
a {
  text-decoration: none;
  color: inherit;
}

h2,
h3,
h4 {
  font-weight: 300;
  margin: 0;
}

h2 {
  color: #1eb6a7;
}

b {
  color: lightsalmon;
}

.hint {
  color: lightslategray;
}

/* lists */
ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main li {
  position: relative;
  padding-left: 1.2em;
  margin: .5em  0;
}

main li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: .3em;
  border-left: solid 10px #dde;
  border-top: solid 5px transparent;
  border-bottom: solid 5px transparent;
}

/* forms */
form input, form textarea, form select {
  width: 100%;
  display: block;
  border: solid 1px #dde;
  padding: .5em;
}

form input:after, form textarea:after, form select:after {
  content: "";
  display: table;
  clear: both;
}

form input[type=checkbox], form input[type=radio] {
  display: inline;
  width: auto;
}

form label, form legend {
  display: block;
  margin: 1em 0 .5em;
}

form input[type=submit] {
  background: turquoise;
  border: none;
  border-bottom: solid 4px #21ccbb;
  padding: .7em 3em;
  margin: 1em 0;
  color: white;
  text-shadow: 0 -1px 0 #21ccbb;
  font-size: 1.1em;
  font-weight: bold;
  display: inline-block;
  width: auto;
  border-radius: .5em;
}

form input[type=submit]:hover {
  background: khaki;
  border: none;
  border-bottom: solid 4px #eadc5f;
  padding: .7em 3em;
  margin: 1em 0;
  color: white;
  text-shadow: 0 -1px 0 #eadc5f;
  font-size: 1.1em;
  font-weight: bold;
  display: inline-block;
  width: auto;
  border-radius: .5em;
}

/* feedback */
.error {
  background-color: #ffe9e0;
  border-color: #ffc4ad;
}

label.error {
  padding: .2em .5em;
}

.feedback {
  background: #fcfae6;
  color: #857a11;
  margin: 1em;
  padding: .5em .5em .5em 2em;
  border: solid 1px khaki;
}

.feedback:before {
  content: "";
  font-family: fontawesome;
  color: #e4d232;
  margin-left: -1.5em;
  margin-right: .5em;
}

.feedback li:before {
  border-left-color: #f6f0b9;
}

.feedback.error {
  background: #ffe9e0;
  color: #942a00;
  margin: 1em;
  padding: .5em .5em .5em 2em;
  border: solid 1px lightsalmon;
}

.feedback.error:before {
  content: "";
  font-family: fontawesome;
  color: #ff5714;
  margin-left: -1.5em;
  margin-right: .5em;
}

.feedback.error li:before {
  border-left-color: #ffc4ad;
}

.feedback.success {
  background: #98eee6;
  color: #08322e;
  margin: 1em;
  padding: .5em .5em .5em 2em;
  border: solid 1px turquoise;
}

.feedback.success:before {
  content: "";
  font-family: fontawesome;
  color: #1aa093;
  margin-left: -1.5em;
  margin-right: .5em;
}

.feedback.success li:before {
  border-left-color: #6ce7db;
}

/* tables */
table {
  border-collapse: collapse;
  width: 96%;
  margin: 2%;
}

th {
  text-align: left;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 10px;
  padding-bottom: 14px;
}

tr:not(:first-child):hover {
  background: rgba(0, 0, 0, 0.1);
}

td {
  line-height: 40px;
  font-weight: 300;
  padding: 0 10px;
}

@media screen and (min-width: 600px) {
  html, body {
    height: 100%;
  }
  header[role=banner] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    height: 75px;
  }
  header[role=banner] .utilities {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    color: darkslategray;
    width: auto;
  }
  header[role=banner] .utilities li {
    display: inline-block;
  }
  header[role=banner] .utilities li a {
    padding: .5em 1em;
  }
  nav[role=navigation] {
    position: fixed;
    width: 200px;
    top: 75px;
    bottom: 0px;
  }
  main[role=main] {
    margin: 75px 0 40px 200px;
  }
  main[role=main]:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel {
    margin: 2% 0 0 2%;
    float: left;
    width: 96%;
  }
  .panel:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel p {
    text-align: left;
  }
  .box, .onethird, .twothirds {
    padding: 1rem;
  }
  .onethird {
    width: 33.333%;
    float: left;
  }
  .twothirds {
    width: 66%;
    float: left;
  }
  footer[role=contentinfo] {
    clear: both;
    margin-left: 200px;
  }
  footer[role=contentinfo] ul li {
    display: inline-block;
    margin-right: 1em;
    color: #fff;
  }
  footer[role=contentinfo] ul li a {
    text-decoration: underline;
    color: #fff;
  }
  footer[role=contentinfo] ul li a:hover {
    text-decoration: none;
  }
}

.login2 {
  text-align: center;
}

.loginform h1 {
  font-size: 2.5em;
  line-height: 1.3em;
  margin-top: .2em;
}

.loginform p {
  font-size: 1em;
  line-height: 1.2em;
  color: gray;
  margin-top: 1em;
}

.loginform a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.loginform .loginform img {
  display: block;
  text-align: center;
  margin: 20px auto;
}

.loginform .fb-cta {
  background: #367fc0;
  color: white;
  text-decoration: none;
  padding: .6em 1.3em;
  font-size: 1.4em;
  border-radius: 1.2em;
  text-align: center;
  font-weight: bold;
  display: block;
}

.loginform input, .loginform textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.loginform select {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.loginform input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-bottom: 5em;
  border-radius: 5em;
  display: inline-block;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

.loginform input[type=submit]:hover {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-bottom: 5em;
  border-radius: 5em;
  display: inline-block;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

.loginform .bar {
  background-color: black;
  width: 240px;
  margin: 30px auto 0px auto;
  text-align: center;
  height: 8px;
  border-radius: 5px;
}

@media only screen and (min-width: 768px) {
  input {
    width: 50% !important;
  }
  select {
    width: 50% !important;
  }
  .login2 {
    text-align: left;
    padding: 1em;
  }
  .bar {
    text-align: left !important;
    margin: 0px !important;
  }
  .loginform p {
    text-align: left;
  }
  .loginform .bar {
    text-align: left;
  }
  .loginform input[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    border: none;
    margin-bottom: 5em;
    border-radius: 5em;
    display: inline-block;
    padding: .8em 2em;
    width: unset;
    cursor: pointer;
  }
}

@media screen and (min-width: 900px) {
  footer[role=contentinfo] {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0px;
    margin: 0;
  }
  .panel {
    width: 47%;
    clear: none;
  }
  .panel.important {
    width: 96%;
  }
  .panel.secondary {
    width: 23%;
  }
}

.full-width {
  width: 10rem;
  height: auto;
}

/*CSS Grid*/
.section-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px;
  margin-top: 10px;
  margin-bottom: 60px;
}

.mainheading {
  text-align: center;
  margin: 50px auto 0px auto;
}

.grid-prod {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.prod-grid {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  margin: 2%;
  padding: 12px;
  border: 2px solid #ccc;
}

.prod-grid img {
  width: 100%;
}

h3, p {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
}

.btn {
  background: #e78714;
  border: 1px solid #e78714;
  border-radius: 6px;
  color: white;
  font-size: 22px;
  width: 200px;
  height: 40px;
  margin: 10px;
  letter-spacing: 1px;
  display: inline-block;
}

.btn a {
  text-decoration: none;
}

.btn:hover {
  background: darkslategray;
  border: 2px solid darkslategray;
  border-radius: 6px;
  color: white;
  font-size: 22px;
  width: 200px;
  height: 40px;
  position: right;
  margin: 10px;
  letter-spacing: 1px;
  font-weight: bold;
  display: inline-block;
}

button {
  float: right;
}

button {
  float: right;
}
/*# sourceMappingURL=admin.css.map */