body {
  background-color: $base-background-color;
}

/*
|------------------------------------------------------------------------------
| Spacing
|------------------------------------------------------------------------------
*/

textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/*
|------------------------------------------------------------------------------
| Lists
|------------------------------------------------------------------------------
*/
ul {
  padding: 0;
  li {
    list-style-type: none;
  }
}

/*
|------------------------------------------------------------------------------
| Tables
|------------------------------------------------------------------------------
*/
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid $light-gray;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/*
|------------------------------------------------------------------------------
| Z-levels
|------------------------------------------------------------------------------
*/
.z-depth-0 {
  box-shadow: none !important;
}
.z-depth-1{
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.z-depth-1-half{
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.z-depth-2{
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.z-depth-3{
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.z-depth-4{
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}
.z-depth-5{
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

/*
|------------------------------------------------------------------------------
| Misc
|------------------------------------------------------------------------------
*/
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid $light-gray;
}

.base-error-message {
  height: 25px;
  margin-top: 2px;
  margin-bottom: 4px;
  font-weight: 500;
  color: $error-color;
}

.base-disabled-message {
  margin-top: 5px;
  color: $disabled-color;
}


/*
|------------------------------------------------------------------------------
| Cleareing
|------------------------------------------------------------------------------
*/
// Self Clearing Goodness
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}
