/* line 1, app/assets/stylesheets/scaffolds.scss */
body {
  background-color: #fff;
  color: #333;
  margin: 5px;
}

/* line 6, app/assets/stylesheets/scaffolds.scss */
body, p, ol, ul, td {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 13px;
  line-height: 18px;
}

/* line 11, app/assets/stylesheets/scaffolds.scss */
pre {
  background-color: #eee;
  padding: 10px;
  font-size: 11px;
}

/* line 16, app/assets/stylesheets/scaffolds.scss */
a {
  color: #000;
}

/* line 19, app/assets/stylesheets/scaffolds.scss */
a:hover, a.active {
  color: #fff;
  background-color: #000;
}

/* line 23, app/assets/stylesheets/scaffolds.scss */
th {
  padding-bottom: 5px;
}

/* line 27, app/assets/stylesheets/scaffolds.scss */
td {
  padding: 0 5px 7px;
}

/* line 31, app/assets/stylesheets/scaffolds.scss */
div.field,
div.actions {
  margin-bottom: 10px;
}

/* line 35, app/assets/stylesheets/scaffolds.scss */
#notice {
  color: green;
}

/* line 38, app/assets/stylesheets/scaffolds.scss */
.field_with_errors {
  padding: 2px;
  background-color: red;
  display: table;
}

/* line 43, app/assets/stylesheets/scaffolds.scss */
#error_explanation {
  width: 450px;
  border: 2px solid red;
  padding: 7px 7px 0;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

/* line 50, app/assets/stylesheets/scaffolds.scss */
#error_explanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 15px;
  font-size: 12px;
  margin: -7px -7px 0;
  background-color: #c00;
  color: #fff;
}

/* line 59, app/assets/stylesheets/scaffolds.scss */
#error_explanation ul li {
  font-size: 12px;
  list-style: square;
}

/* line 63, app/assets/stylesheets/scaffolds.scss */
label {
  display: block;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* line 23, app/assets/stylesheets/application.scss.erb */
#header, #subhead {
  display: flex;
  width: 95%;
  margin: 0 auto;
  align-items: center;
}

/* line 28, app/assets/stylesheets/application.scss.erb */
#header img, #subhead img {
  height: 100px;
  float: left;
}

/* line 34, app/assets/stylesheets/application.scss.erb */
#subhead {
  width: 90%;
  padding: 0 1rem;
}

/* line 39, app/assets/stylesheets/application.scss.erb */
#nav, #subnav {
  display: flex;
  padding: 10px;
  margin: 10px;
  justify-content: space-around;
  flex-grow: 1;
}

/* line 47, app/assets/stylesheets/application.scss.erb */
#buttons {
  display: flex;
  padding: 10px;
  margin: 10px;
  justify-content: flex-end;
}

/* line 54, app/assets/stylesheets/application.scss.erb */
.fullwidth {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  border: 1px solid black;
}

/* line 59, app/assets/stylesheets/application.scss.erb */
.fullwidth td {
  border-top: 1px solid black;
}

/* line 62, app/assets/stylesheets/application.scss.erb */
.fullwidth th {
  background: red;
  color: white;
}

/* line 69, app/assets/stylesheets/application.scss.erb */
.highlight td {
  font-weight: 800;
}

/* line 74, app/assets/stylesheets/application.scss.erb */
.no_border {
  border: none !important;
}

/* line 78, app/assets/stylesheets/application.scss.erb */
.left {
  text-align: left;
}

/* line 82, app/assets/stylesheets/application.scss.erb */
.center {
  text-align: center;
}

/* line 86, app/assets/stylesheets/application.scss.erb */
.centered {
  margin: 0 auto;
}

/* line 90, app/assets/stylesheets/application.scss.erb */
.d-none {
  display: none;
}

/* line 94, app/assets/stylesheets/application.scss.erb */
.v-top {
  vertical-align: top;
}

/* line 98, app/assets/stylesheets/application.scss.erb */
.b_underline {
  text-decoration: underline;
  font-weight: 800;
  cursor: pointer;
}

/**** Error Messaging animations *****/
/* line 105, app/assets/stylesheets/application.scss.erb */
.notice {
  position: fixed;
  top: 4.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #00b300;
  color: #FFFFFF;
  box-shadow: 0 0.33rem 1.33rem rgba(0, 0, 0, 0.2);
  padding: 0.66rem 1.33rem;
  border-radius: 2px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  animation: slideIn 8s forwards;
}

/* line 121, app/assets/stylesheets/application.scss.erb */
.alert {
  position: fixed;
  top: 8rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #ff3333;
  color: #FFFFFF;
  box-shadow: 0 0.33rem 1.33rem rgba(0, 0, 0, 0.2);
  padding: 0.66rem 1.33rem;
  border-radius: 2px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  animation: slideIn2 8s forwards;
}

@keyframes slideIn {
  0% {
    top: -30px;
    opacity: 0;
  }
  10% {
    top: 4.5rem;
    opacity: 1;
  }
  80% {
    top: 4.5rem;
    opacity: 1;
  }
  100% {
    top: 4.5rem;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes slideIn2 {
  0% {
    top: -30px;
    opacity: 0;
  }
  10% {
    top: 8rem;
    opacity: 1;
  }
  80% {
    top: 8rem;
    opacity: 1;
  }
  100% {
    top: 8rem;
    opacity: 0;
    visibility: hidden;
  }
}

/*** End Error messaging styles ***/

/*# sourceMappingURL=application.css-312e303d90a4a8f65d35a93a54cfd93f9c6b83e6562351fdf537debb573f5ae9d3316d.map */
