/* CSS Document */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,600&display=swap");
/* CSS Document */
label {
  width: 300px;
  height: auto;
  margin: 0px auto;
  padding: 0px 20px;
  display: block;
  font-size: .55em;
  font-weight: 700;
  text-align: left;
  line-height: 1.3em; }

input[type=text], input[type=number] {
  width: 300px;
  height: 40px;
  margin: 0px 5px;
  padding: 0px;
  display: inline-block;
  background-color: #f1f1f1;
  border: 1px solid rgba(174, 174, 174, 0.3);
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  font-size: 1em;
  text-align: center;
  color: #333333;
  transition: .125s ease; }
  input[type=text]:focus, input[type=number]:focus {
    background-color: #fefefe;
    color: #333333;
    box-shadow: 0px -5px 15px 0px rgba(255, 255, 255, 0.9), 0px 5px 15px 0px rgba(174, 174, 174, 0.7); }

input[type=color] {
  width: 50%;
  height: 100px;
  padding: 0px;
  outline: none;
  display: block; }

textarea {
  background-color: transparent;
  width: 100%;
  height: 150px;
  margin: 0px;
  padding: 10px;
  overflow: auto;
  border: 1px solid rgba(174, 174, 174, 0.3);
  border-radius: 5px;
  box-sizing: border-box;
  outline: none;
  resize: none; }

button {
  width: 30px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  display: inline-block;
  background-color: #f1f1f1;
  background-image: url("../assets/ui/icons/add.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(174, 174, 174, 0.3);
  border-radius: 5px;
  outline: none;
  vertical-align: middle;
  cursor: pointer; }
  button:hover {
    background-color: #4392f3;
    background-image: url("../assets/ui/icons/add-invert.svg"); }

html {
  height: 100%; }

body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f1f1f1;
  font-family: "Montserrat", sans-serif;
  font-size: 14px; }
  body > header {
    width: 100%;
    height: 90px;
    padding: 20px;
    box-sizing: border-box;
    color: #333333; }
  body > main {
    width: 100%;
    height: auto;
    min-height: calc(100% - 130px);
    margin: 0px auto;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    background: #f1f1f1; }
    body > main > nav {
      width: 100%;
      height: 40px;
      margin: 0px;
      padding: 0px; }
      body > main > nav > ul {
        width: 100%;
        margin: 0px auto;
        padding: 0px 20px;
        box-sizing: border-box;
        display: flex;
        justify-content: flex-end; }
        body > main > nav > ul > li {
          width: 220px;
          height: 25px;
          display: flex;
          justify-content: flex-end;
          opacity: 0.5;
          border-radius: 10px;
          cursor: pointer;
          text-align: right;
          line-height: 25px; }
          body > main > nav > ul > li > span {
            display: flex;
            justify-content: flex-end;
            width: 200px;
            height: 25px;
            margin: 0px;
            padding: 0px;
            padding-right: 10px; }
            body > main > nav > ul > li > span > img {
              width: 18px;
              height: 25px; }
          body > main > nav > ul > li > img {
            width: 25px;
            height: 25px; }
          body > main > nav > ul > li:hover {
            opacity: 1; }
    body > main > section {
      height: auto;
      padding: 0px;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      body > main > section > div.color-box, body > main > section > div.intel-box, body > main > section > div.palette-box {
        width: 800px;
        height: auto;
        margin: 0px auto 20px auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between; }
        body > main > section > div.color-box > article, body > main > section > div.intel-box > article, body > main > section > div.palette-box > article {
          width: 30%;
          height: auto;
          margin: 0px;
          padding: 0px;
          display: flex;
          flex-wrap: wrap;
          justify-content: flex-start;
          line-height: 30px; }
          body > main > section > div.color-box > article > label, body > main > section > div.intel-box > article > label, body > main > section > div.palette-box > article > label {
            width: 100%;
            margin: 0px;
            padding: 0px;
            font-size: 10px; }
          body > main > section > div.color-box > article > meter, body > main > section > div.intel-box > article > meter, body > main > section > div.palette-box > article > meter {
            width: 70%;
            height: 30px;
            margin: 5px 0px;
            line-height: 30px; }
          body > main > section > div.color-box > article > input[type=number], body > main > section > div.intel-box > article > input[type=number], body > main > section > div.palette-box > article > input[type=number] {
            width: 20%;
            height: 30px;
            margin: 5px; }
          body > main > section > div.color-box > article > b, body > main > section > div.intel-box > article > b, body > main > section > div.palette-box > article > b {
            height: 30px;
            margin: 5px 0px;
            display: inline-block;
            line-height: 30px; }
        body > main > section > div.color-box > label, body > main > section > div.intel-box > label, body > main > section > div.palette-box > label {
          width: 500px;
          padding: 0px 10px;
          margin: 0px auto; }
        body > main > section > div.color-box > input[type=text], body > main > section > div.intel-box > input[type=text], body > main > section > div.palette-box > input[type=text] {
          width: 500px;
          padding: 0px 20px;
          margin: 0px auto;
          box-sizing: border-box; }
        body > main > section > div.color-box > div.color-select, body > main > section > div.intel-box > div.color-select, body > main > section > div.palette-box > div.color-select {
          width: 50%;
          height: 200px;
          margin: 0px auto;
          padding: 0px;
          text-align: center; }
          body > main > section > div.color-box > div.color-select > input[type=color], body > main > section > div.intel-box > div.color-select > input[type=color], body > main > section > div.palette-box > div.color-select > input[type=color] {
            margin: 20px auto;
            box-shadow: 0px -5px 15px 0px rgba(255, 255, 255, 0.9), 0px 5px 15px 0px rgba(174, 174, 174, 0.7);
            border: none; }
            body > main > section > div.color-box > div.color-select > input[type=color]::-webkit-color-swatch-wrapper, body > main > section > div.intel-box > div.color-select > input[type=color]::-webkit-color-swatch-wrapper, body > main > section > div.palette-box > div.color-select > input[type=color]::-webkit-color-swatch-wrapper {
              padding: 0px; }
        body > main > section > div.color-box > div.palette-select, body > main > section > div.intel-box > div.palette-select, body > main > section > div.palette-box > div.palette-select {
          width: 30%;
          height: 300px;
          margin-bottom: 50px;
          background-color: #f1f1f1;
          border: 1px solid rgba(255, 255, 255, 0.4);
          border-radius: 5px;
          box-shadow: 0px -5px 15px 0px rgba(255, 255, 255, 0.9), 0px 5px 15px 0px rgba(174, 174, 174, 0.7); }
          body > main > section > div.color-box > div.palette-select input[type=text], body > main > section > div.intel-box > div.palette-select input[type=text], body > main > section > div.palette-box > div.palette-select input[type=text] {
            width: 80%;
            height: 25px;
            padding: 0px;
            margin: 10px auto;
            display: block;
            font-weight: bold;
            text-transform: uppercase;
            line-height: 25px;
            border: none;
            border-bottom: 1px solid #b3b3b3;
            border-radius: 0px; }
            body > main > section > div.color-box > div.palette-select input[type=text]:focus, body > main > section > div.intel-box > div.palette-select input[type=text]:focus, body > main > section > div.palette-box > div.palette-select input[type=text]:focus {
              background-color: transparent;
              color: inherit;
              box-shadow: none;
              border-bottom: 1px solid rgba(174, 174, 174, 0.3); }
          body > main > section > div.color-box > div.palette-select > input[type=color], body > main > section > div.intel-box > div.palette-select > input[type=color], body > main > section > div.palette-box > div.palette-select > input[type=color] {
            width: 80%;
            height: 100px;
            margin: 0px auto 10px auto;
            border: none;
            outline: none; }
          body > main > section > div.color-box > div.palette-select > div.value-text, body > main > section > div.intel-box > div.palette-select > div.value-text, body > main > section > div.palette-box > div.palette-select > div.value-text {
            width: 80%;
            height: auto;
            margin: 0px auto; }
            body > main > section > div.color-box > div.palette-select > div.value-text > h5, body > main > section > div.intel-box > div.palette-select > div.value-text > h5, body > main > section > div.palette-box > div.palette-select > div.value-text > h5 {
              margin: 0px;
              padding: 0px; }
        body > main > section > div.color-box > div.palette-blank, body > main > section > div.intel-box > div.palette-blank, body > main > section > div.palette-box > div.palette-blank {
          width: 30%;
          height: 50px;
          margin-bottom: 50px;
          background-color: #e4e4e4;
          border: 5px dashed #d8d8d8;
          border-radius: 5px;
          box-shadow: 0px -5px 15px 0px rgba(255, 255, 255, 0.9), 0px 5px 15px 0px rgba(174, 174, 174, 0.7); }
          body > main > section > div.color-box > div.palette-blank::before, body > main > section > div.intel-box > div.palette-blank::before, body > main > section > div.palette-box > div.palette-blank::before {
            width: 100%;
            display: block;
            content: '+';
            font-size: 24px;
            font-weight: bold;
            line-height: 50px;
            color: #999999;
            text-align: center; }
          body > main > section > div.color-box > div.palette-blank input[type=text], body > main > section > div.intel-box > div.palette-blank input[type=text], body > main > section > div.palette-box > div.palette-blank input[type=text] {
            display: none; }
          body > main > section > div.color-box > div.palette-blank > input[type=color], body > main > section > div.intel-box > div.palette-blank > input[type=color], body > main > section > div.palette-box > div.palette-blank > input[type=color] {
            display: none; }
          body > main > section > div.color-box > div.palette-blank > div.value-text, body > main > section > div.intel-box > div.palette-blank > div.value-text, body > main > section > div.palette-box > div.palette-blank > div.value-text {
            display: none; }
      body > main > section > div.select-box {
        width: 500px;
        height: auto;
        margin: 0px auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between; }
        body > main > section > div.select-box > div {
          height: 46px;
          border: 1px solid rgba(255, 255, 255, 0.4);
          border-radius: 10px;
          box-shadow: 0px -5px 15px 0px rgba(255, 255, 255, 0.9), 0px 5px 15px 0px rgba(174, 174, 174, 0.7);
          cursor: pointer;
          font-size: 14px;
          font-weight: bold;
          text-align: center;
          line-height: 46px;
          color: #333333;
          transition: .125s ease-in; }
          body > main > section > div.select-box > div.term {
            width: 196px; }
            body > main > section > div.select-box > div.term:hover {
              background-color: #ececec; }
          body > main > section > div.select-box > div.student {
            width: 416px; }
            body > main > section > div.select-box > div.student:hover {
              background-color: #ececec; }
          body > main > section > div.select-box > div.topic {
            width: 500px;
            height: auto;
            margin: 20px 0px 0px 0px;
            padding: 20px;
            line-height: 20px;
            text-align: left;
            box-sizing: border-box; }
          body > main > section > div.select-box > div.refresh {
            width: 46px;
            background-image: url(../assets/ui/icons/refresh.svg);
            background-size: 30px 30px;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #f1f1f1; }
            body > main > section > div.select-box > div.refresh:hover {
              background-color: #4392f3;
              background-image: url(../assets/ui/icons/refresh-invert.svg);
              border: 1px solid rgba(174, 174, 174, 0.3); }
          body > main > section > div.select-box > div.next {
            width: 46px;
            background-image: url("../assets/ui/icons/arrow-forward-invert.svg");
            background-size: 30px 30px;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #f1f1f1; }
            body > main > section > div.select-box > div.next:hover {
              background-color: #4392f3;
              background-image: url("../assets/ui/icons/arrow-forward.svg");
              border: 1px solid rgba(174, 174, 174, 0.3); }
      body > main > section > div.info-box {
        width: 800px;
        height: auto;
        margin: 0px auto;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        text-align: justify; }
        body > main > section > div.info-box > img {
          display: block;
          margin: 0px auto; }
        body > main > section > div.info-box > ol, body > main > section > div.info-box ul {
          width: 100%;
          height: auto;
          margin: 0px;
          padding: 20px 0px 0px 0px;
          display: flex;
          justify-content: space-between;
          list-style: none;
          font-size: 14px;
          line-height: 20px; }
          body > main > section > div.info-box > ol > li, body > main > section > div.info-box ul > li {
            width: 170px;
            height: 100px;
            padding: 60px 0px 0px 0px;
            background-repeat: no-repeat;
            background-size: 50px;
            background-position: top;
            display: inline-block;
            font-size: 14px;
            line-height: 20px; }
            body > main > section > div.info-box > ol > li.generate, body > main > section > div.info-box ul > li.generate {
              background-image: url("../assets/ui/icons/refresh.svg"); }
            body > main > section > div.info-box > ol > li.client, body > main > section > div.info-box ul > li.client {
              background-image: url("../assets/ui/icons/client.svg"); }
            body > main > section > div.info-box > ol > li.terms, body > main > section > div.info-box ul > li.terms {
              background-image: url("../assets/ui/icons/terms.svg"); }
            body > main > section > div.info-box > ol > li.game, body > main > section > div.info-box ul > li.game {
              background-image: url("../assets/ui/icons/game.svg"); }
            body > main > section > div.info-box > ol > li.clients, body > main > section > div.info-box ul > li.clients {
              background-image: url("../assets/ui/icons/clients.svg"); }
            body > main > section > div.info-box > ol > li.industry, body > main > section > div.info-box ul > li.industry {
              background-image: url("../assets/ui/icons/industry.svg"); }
            body > main > section > div.info-box > ol > li.create, body > main > section > div.info-box ul > li.create {
              background-image: url("../assets/ui/icons/create.svg"); }
            body > main > section > div.info-box > ol > li::before, body > main > section > div.info-box ul > li::before {
              content: ''; }
    body > main > footer {
      width: 100%;
      height: 30px;
      margin-top: 50px;
      display: block;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      line-height: 30px;
      color: #333333; }
  body > footer {
    width: 100%;
    height: 20px;
    margin: 10px 0px;
    display: block;
    clear: both;
    font-size: 14px;
    text-align: center;
    color: #333333; }

h1 {
  width: 100%;
  height: auto;
  margin: 0px;
  display: block;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase; }
  h1 > span {
    margin-top: 5px;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: .25em;
    font-weight: 400;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 2px; }

h2 {
  width: 100%;
  height: auto;
  margin: 0px;
  padding: 0px;
  display: block;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1em;
  text-align: center; }

h3 {
  margin: 20px 0px 0px 0px;
  padding: 0px;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.5em; }
  h3 > span {
    font-size: .75em; }

h4 {
  width: 100%;
  height: auto;
  margin: 30px 0px 10px 0px;
  padding: 0px;
  display: block;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase; }
  h4 > span {
    margin-top: 5px;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: .5em;
    font-weight: 400;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 2px; }
    h4 > span > a {
      text-decoration: none;
      color: inherit; }

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none; }
  a.button {
    width: 300px;
    height: 50px;
    margin: 30px auto 0px auto;
    display: block;
    background-color: #4392f3;
    border: 1px solid #999999;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    color: #f1f1f1;
    cursor: pointer;
    transition: .125s ease-in; }
    a.button:hover {
      background-color: #1376f0; }
