html {
  margin: 0px;
  padding: 0px;
  height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  height: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: #00b1ef;
}

a:hover {
  text-decoration: underline;
}

img {
  border: 0px;
}

@media (max-width: 760px) {
  img.responsive {
    width: 100%;
    height: auto;
  }
}

form {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 49% 49%;
      grid-template-columns: 49% 49%;
  justify-items: center;
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 760px) {
  form {
    width: 96%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

form.full_width {
  width: 100%;
}

form.login {
  max-width: 560px;
}

form > p:not(.normal_grid),
form > div:not(.normal_grid),
form > ul:not(.normal_grid),
form > button:not(.normal_grid) {
  grid-column: span 2;
  text-align: center;
}

@media (max-width: 760px) {
  form > p:not(.normal_grid),
  form > div:not(.normal_grid),
  form > ul:not(.normal_grid),
  form > button:not(.normal_grid) {
    grid-column: span 1;
  }
}

label {
  padding: 10px;
  margin: 0px 0px 20px 0px;
  margin-bottom: 0px;
  text-align: right;
  width: 100%;
  font-weight: 700;
}

@media (max-width: 760px) {
  label {
    text-align: left;
  }
}

input:not([type="checkbox"]),
select,
textarea {
  padding: 10px;
  margin: 0px 0px 20px 0px;
  text-align: left;
  width: 100%;
  border: 1px solid #e3016f;
}

button[type="submit"],
.prettybutton,
.prettybutton:visited {
  display: inline-block;
  text-align: center;
  min-width: 300px;
  font-size: 1.6em;
  padding: 10px;
  margin: 20px auto;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background-color: #e3016f;
  text-transform: uppercase;
  -webkit-transition: background-color 250ms;
  transition: background-color 250ms;
}

@media only screen and (max-width: 560px) {
  button[type="submit"],
  .prettybutton,
  .prettybutton:visited {
    min-width: 240px;
  }
}

button[type="submit"]:hover,
.prettybutton:hover {
  display: inline-block;
  text-align: center;
  min-width: 300px;
  font-size: 1.6em;
  padding: 10px;
  margin: 20px auto;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background-color: #e3016f;
  text-transform: uppercase;
  -webkit-transition: background-color 250ms;
  transition: background-color 250ms;
  background-color: #00b1ef;
}

@media only screen and (max-width: 560px) {
  button[type="submit"]:hover,
  .prettybutton:hover {
    min-width: 240px;
  }
}

input[type="image"] {
  min-width: 0;
  width: auto;
  padding: 0px;
}

@media (max-width: 760px) {
  header > div#logo > img {
    width: auto;
    height: 50px;
  }
}

#nav_toggle {
  display: none;
  font-size: 2em;
  margin: 10px;
  text-align: right;
}

@media (max-width: 760px) {
  #nav_toggle {
    display: block;
  }
}

nav {
  background-color: #00b1ef;
  text-align: center;
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 760px) {
  nav:not(.submenu) {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 0;
    opacity: 0;
    -webkit-transition: height 0ms 600ms, opacity 600ms 0ms;
    transition: height 0ms 600ms, opacity 600ms 0ms;
    overflow: hidden;
    background-color: transparent;
  }
}

nav.submenu {
  max-width: 60%;
}

@media (max-width: 760px) {
  nav.toggled {
    height: auto;
    opacity: 1;
    -webkit-transition: height 0ms 0ms, opacity 600ms 0ms;
    transition: height 0ms 0ms, opacity 600ms 0ms;
  }
}

nav a,
nav a:visited,
nav a:hover {
  display: inline-block;
  border: #ffffff solid 1px;
  color: #ffffff;
  background-color: #00b1ef;
  padding: 10px;
  margin: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 250ms;
  transition: background-color 250ms;
}

@media (max-width: 760px) {
  nav a,
  nav a:visited,
  nav a:hover {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

nav a:hover {
  color: #ffffff;
  background-color: #e3016f;
  -webkit-transition: background-color 250ms;
  transition: background-color 250ms;
  text-decoration: none;
}

main {
  padding: 0px 10px;
  margin: 0px auto;
}

.order_list,
.user_list {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 600px;
  margin: 0px auto;
}

.order_list > div,
.user_list > div {
  width: 100%;
  padding: 5px;
}

.order_list {
  -ms-grid-columns: 100px 100px 100px 1fr 160px 0px;
      grid-template-columns: 100px 100px 100px 1fr 160px 0px;
}

@media (max-width: 760px) {
  .order_list {
    -ms-grid-columns: 1fr 160px 100px;
        grid-template-columns: 1fr 160px 100px;
  }
}

.order_list > div:nth-child(12n + 7),
.order_list > div:nth-child(12n + 8),
.order_list > div:nth-child(12n + 9),
.order_list > div:nth-child(12n + 10),
.order_list > div:nth-child(12n + 11),
.order_list > div:nth-child(12n + 12) {
  background: #bbbbbb;
}

.user_list {
  -ms-grid-columns: 100px 1fr 320px 0px;
      grid-template-columns: 100px 1fr 320px 0px;
}

@media (max-width: 760px) {
  .user_list {
    -ms-grid-columns: 320px 1fr;
        grid-template-columns: 320px 1fr;
  }
}

.user_list > div:nth-child(8n + 5),
.user_list > div:nth-child(8n + 6),
.user_list > div:nth-child(8n + 7),
.user_list > div:nth-child(8n + 8) {
  background: #bbbbbb;
}

.error {
  color: #aa0000;
}

.success {
  color: #00aa00;
}
/*# sourceMappingURL=layout.css.map */