@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700");
/* line 9, css/main.scss */
* {
  box-sizing: border-box; }

/* line 13, css/main.scss */
html {
  height: 100%; }

/* line 17, css/main.scss */
body {
  background: white;
  height: 100%;
  margin: 0;
  line-height: 1.3;
  color: black;
  font-family: 'Roboto Condensed', sans-serif; }

/* line 27, css/main.scss */
.text-red {
  color: #d63131; }

/* line 30, css/main.scss */
.text-blue {
  color: #0e7be8; }

/* line 33, css/main.scss */
.text-green {
  color: #2bb22b; }

/* line 36, css/main.scss */
.text-yellow {
  color: #ebca12; }

/* line 40, css/main.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; }

/* line 49, css/main.scss */
small {
  display: inline-block;
  color: gray;
  font-weight: 400;
  font-size: 0.5em; }

/* line 57, css/main.scss */
h1 {
  font-size: 2.7em; }

/* line 61, css/main.scss */
h2 {
  font-size: 2em; }

/* line 65, css/main.scss */
h3 {
  font-size: 1.5em; }

/* line 69, css/main.scss */
h4 {
  font-size: 1.2em; }

/* line 73, css/main.scss */
.align-center {
  text-align: center; }

/* line 77, css/main.scss */
.align-right {
  text-align: right; }

/* line 81, css/main.scss */
.align-left {
  text-align: left; }

/* line 85, css/main.scss */
.header {
  height: 100%;
  display: flex;
  align-items: flex-end;
  font-size: 5em;
  font-weight: 700;
  word-wrap: break-word;
  color: black; }
  /* line 95, css/main.scss */
  .header button {
    position: absolute;
    right: 10px;
    bottom: 10px; }
  /* line 100, css/main.scss */
  .header svg {
    vertical-align: 6px; }

/* GRID SYSTEM */
/* line 107, css/main.scss */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }

/* line 114, css/main.scss */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0; }

@media (min-width: 400px) {
  /* line 122, css/main.scss */
  section, footer {
    padding: 20px; }
  /* line 125, css/main.scss */
  .col-1 {
    flex: 0 0 50%; }
  /* line 128, css/main.scss */
  .row .col-5 ~ .col-1 {
    flex: 0 0 100%; } }

@media (min-width: 720px) {
  /* line 134, css/main.scss */
  .header {
    padding: 50px; }
    /* line 137, css/main.scss */
    .header button {
      right: 50px;
      bottom: 56px; }
  /* line 142, css/main.scss */
  .col-1 {
    flex: 0 0 33.33%; }
  /* line 145, css/main.scss */
  .col-2 {
    flex: 0 0 50%; }
  /* line 148, css/main.scss */
  .col-3 {
    flex: 0 0 50%; }
  /* line 151, css/main.scss */
  .row .col-2:last-of-type {
    flex: 0 0 100%; } }

@media (min-width: 1260px) {
  /* line 157, css/main.scss */
  section, footer {
    padding: 50px 50px 50px 50px; }
  /* line 160, css/main.scss */
  .container {
    max-width: 1260px; }
  /* line 163, css/main.scss */
  .col-1 {
    flex: 0 0 16.66%; }
  /* line 166, css/main.scss */
  .col-2 {
    flex: 0 0 33.33%; }
  /* line 169, css/main.scss */
  .col-3 {
    flex: 0 0 50%; }
  /* line 172, css/main.scss */
  .col-4 {
    flex: 0 0 66.66%; }
  /* line 175, css/main.scss */
  .col-5 {
    flex: 0 0 83.33%; }
  /* line 178, css/main.scss */
  .col-6 {
    flex: 0 0 100%; }
  /* line 181, css/main.scss */
  .row .col-5 ~ .colspan1 {
    flex: 0 0 16.66%; }
  /* line 184, css/main.scss */
  .row .col-2:last-of-type {
    flex: 0 0 33.33%; } }

/* line 189, css/main.scss */
div[class^='col-'] {
  padding: 10px;
  justify-content: center; }

/* line 194, css/main.scss */
.btn {
  display: inline-block;
  margin: 5px 5px;
  padding: 15px 32px;
  background: grey;
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  font-family: inherit;
  color: white;
  cursor: pointer;
  transition: box-shadow 0.5s; }
  /* line 213, css/main.scss */
  .btn.black {
    background: black;
    color: white; }
    /* line 216, css/main.scss */
    .btn.black:focus {
      box-shadow: 0 0 0 4px #404040; }
  /* line 220, css/main.scss */
  .btn.red {
    background: #d63131; }
    /* line 222, css/main.scss */
    .btn.red:focus {
      box-shadow: 0 0 0 4px #eb9b9b; }
  /* line 226, css/main.scss */
  .btn.green {
    background: #2bb22b; }
    /* line 228, css/main.scss */
    .btn.green:focus {
      box-shadow: 0 0 0 4px #7de07d; }
  /* line 232, css/main.scss */
  .btn.blue {
    background: #0e7be8; }
    /* line 234, css/main.scss */
    .btn.blue:focus {
      box-shadow: 0 0 0 4px #7ebbf7; }
  /* line 238, css/main.scss */
  .btn.yellow {
    background: #ebca12; }
    /* line 240, css/main.scss */
    .btn.yellow:focus {
      box-shadow: 0 0 0 4px #f6e587; }
  /* line 245, css/main.scss */
  .btn.round {
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 50%; }
    /* line 251, css/main.scss */
    .btn.round.big {
      height: 75px;
      width: 75px;
      font-size: 1em; }
  /* line 259, css/main.scss */
  .btn:hover {
    box-shadow: 0px 5px 15px #b7b7b7; }
  /* line 262, css/main.scss */
  .btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px silver; }
  /* line 266, css/main.scss */
  .btn:disabled {
    cursor: not-allowed; }

/* line 271, css/main.scss */
.btn-outline {
  display: inline-block;
  margin: 5px 5px;
  padding: 13px 30px;
  background-color: transparent;
  border: 2px solid grey;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  font-family: inherit;
  color: grey;
  cursor: pointer;
  transition: background 0.5s, color 0.5s, box-shadow 0.5s; }
  /* line 290, css/main.scss */
  .btn-outline.black {
    border-color: black;
    color: black; }
    /* line 294, css/main.scss */
    .btn-outline.black:hover, .btn-outline.black:focus {
      background: black; }
    /* line 298, css/main.scss */
    .btn-outline.black:focus {
      box-shadow: 0 0 0 4px #404040; }
  /* line 302, css/main.scss */
  .btn-outline.red {
    border-color: #d63131;
    color: #d63131; }
    /* line 306, css/main.scss */
    .btn-outline.red:hover, .btn-outline.red:focus {
      background: #d63131; }
    /* line 310, css/main.scss */
    .btn-outline.red:focus {
      box-shadow: 0 0 0 4px #eb9b9b; }
  /* line 314, css/main.scss */
  .btn-outline.green {
    border-color: #2bb22b;
    color: #2bb22b; }
    /* line 318, css/main.scss */
    .btn-outline.green:hover, .btn-outline.green:focus {
      background: #2bb22b; }
    /* line 322, css/main.scss */
    .btn-outline.green:focus {
      box-shadow: 0 0 0 4px #7de07d; }
  /* line 326, css/main.scss */
  .btn-outline.blue {
    border-color: #0e7be8;
    color: #0e7be8; }
    /* line 330, css/main.scss */
    .btn-outline.blue:hover, .btn-outline.blue:focus {
      background: #0e7be8; }
    /* line 334, css/main.scss */
    .btn-outline.blue:focus {
      box-shadow: 0 0 0 4px #7ebbf7; }
  /* line 338, css/main.scss */
  .btn-outline.yellow {
    border-color: #ebca12;
    color: #ebca12; }
    /* line 342, css/main.scss */
    .btn-outline.yellow:hover, .btn-outline.yellow:focus {
      background: #ebca12; }
    /* line 346, css/main.scss */
    .btn-outline.yellow:focus {
      box-shadow: 0 0 0 4px #f6e587; }
  /* line 351, css/main.scss */
  .btn-outline.round {
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 50%; }
  /* line 358, css/main.scss */
  .btn-outline:hover, .btn-outline:focus {
    box-shadow: 0px 5px 15px #b7b7b7;
    background: grey;
    color: white;
    outline: none; }
  /* line 365, css/main.scss */
  .btn-outline:focus {
    box-shadow: 0 0 0 4px silver; }
  /* line 368, css/main.scss */
  .btn-outline:disabled {
    cursor: not-allowed; }

/* line 374, css/main.scss */
section.grey, footer.grey {
  background-color: #f2f2f2; }

/* line 377, css/main.scss */
section.round, footer.round {
  margin: 0 20px;
  padding: 20px;
  border-radius: 20px; }

/* line 384, css/main.scss */
.form-group {
  margin: 20px 0; }

/* line 388, css/main.scss */
label {
  margin-right: 10px;
  font-size: 1.2em;
  font-weight: 200; }

/* line 395, css/main.scss */
input, textarea {
  padding: 10px;
  box-shadow: 0 0 5px #aaaaaa;
  border: 1px solid #c3c3c3;
  border-radius: 5px;
  font-family: inherit;
  transition: box-shadow 0.5s; }
  /* line 406, css/main.scss */
  input.responsive, textarea.responsive {
    display: inline-block;
    min-width: 150px;
    width: 60%; }
  /* line 412, css/main.scss */
  input#global-find, textarea#global-find {
    text-indent: 45px;
    font-size: 2em;
    font-weight: 200; }
  /* line 418, css/main.scss */
  input:focus, textarea:focus {
    box-shadow: 0 0 20px #aaaaaa;
    outline: none; }

/* line 424, css/main.scss */
.bowl {
  margin: 0 auto;
  margin-bottom: 30px;
  padding-top: 32px;
  height: 100px;
  width: 100px;
  position: relative;
  border-radius: 50%;
  font-size: 1.75em;
  font-weight: 700;
  color: white; }
  /* line 439, css/main.scss */
  .bowl.red {
    background-color: #d63131; }
  /* line 442, css/main.scss */
  .bowl.blue {
    background-color: #0e7be8; }
  /* line 445, css/main.scss */
  .bowl.green {
    background-color: #2bb22b; }

/* line 450, css/main.scss */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: white;
  background-color: rgba(0, 0, 0, 0.4); }
  /* line 463, css/main.scss */
  .modal.light {
    background-color: transparent; }

/* line 468, css/main.scss */
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  width: 60%;
  box-shadow: 0 0 50px 1px grey;
  border-radius: 10px; }
  /* line 477, css/main.scss */
  .modal-content.small {
    margin: 5% auto;
    width: 40%; }

/* line 484, css/main.scss */
.close {
  color: #aaa;
  float: right;
  transition: color 0.5s; }
  /* line 490, css/main.scss */
  .close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer; }

/*# sourceMappingURL=main.css.map */
