#myModal .modal-content {
  border: 0;
  border-radius: 3px; }
  #myModal .modal-content .close {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1; }
  #myModal .modal-content > .modal-header {
    padding: 0 2rem;
    background: #ffffff;
    border: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    #myModal .modal-content > .modal-header > .nav.nav-tabs {
      width: 100%;
      border: 0; }
      #myModal .modal-content > .modal-header > .nav.nav-tabs > .nav-item {
        display: block;
        float: left;
        width: 50%;
        margin: 0; }
        #myModal .modal-content > .modal-header > .nav.nav-tabs > .nav-item > a {
          border: 0;
          color: #72c02c;
          text-align: center;
          font-weight: 600;
          font-size: 15px;
          text-transform: uppercase; }
          #myModal .modal-content > .modal-header > .nav.nav-tabs > .nav-item > a.active {
            border-bottom: 2px solid #72c02c; }
  #myModal .modal-content > .modal-body {
    padding: 1rem 2rem;
    background: #f8f9fa !important;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    #myModal .modal-content > .modal-body .footer-btn {
      display: block;
      text-align: center;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 400;
      margin: 1.5rem -2rem -1rem -2rem;
      line-height: 2.5rem;
      border-top: 1px solid #ddd;
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px; }
      #myModal .modal-content > .modal-body .footer-btn:hover {
        text-decoration: none;
        background: #ffffff; }

.alert-box {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  display: none;
  height: 0;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 8px;
  opacity: 0;
  padding: 8px 18px;
  transition: opacity ease .3s, height ease .3s;
  visibility: hidden; }
  .alert-box.error-box {
    background-color: #ae230c; }
  .alert-box.success-box {
    background-color: #28a745; }
  .alert-box.is-visible {
    display: -ms-flexbox;
    display: flex;
    height: auto;
    opacity: 1;
    visibility: visible; }
  .alert-box > .box-icon {
    fill: #fff;
    -ms-flex: 0 0 13px;
    flex: 0 0 13px;
    height: 13px;
    margin-right: 18px;
    width: 13px; }
  .alert-box > .message-container {
    -ms-flex: 1 0 0;
    flex: 1 0 0; }
    .alert-box > .message-container > .message {
      color: #eee;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5em;
      margin: 0;
      text-align: left; }

.checkbox {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 0;
  padding-left: 27px;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  line-height: 25px;
  color: #687074; }
  .checkbox:hover i {
    border-color: #72c02c; }
  .checkbox input {
    left: -9999px;
    position: absolute; }
    .checkbox input:checked + i {
      border-color: #72c02c; }
      .checkbox input:checked + i:after {
        opacity: 1; }
    .checkbox input:focus + i {
      border-color: #72c02c; }
    .checkbox input + i:after {
      opacity: 0;
      position: absolute;
      top: -3px;
      left: -2px;
      width: 15px;
      height: 15px;
      content: '\f00c';
      text-align: center;
      font: normal 8px/17px FontAwesome;
      color: #72c02c; }
  .checkbox i {
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    outline: none;
    display: block;
    background: #fff;
    position: absolute;
    border: 2px solid #9fdd69;
    transition: border-color .3s; }
  .checkbox small {
    float: right; }
    .checkbox small a {
      color: #72c02c;
      font-size: 12px; }

.box {
  margin-bottom: 15px;
  border-bottom: 2px solid #d2cfcc;
  border-radius: 3px;
  background: #fff; }
  .box.is-open .box-header {
    border-bottom: 1px solid #e4e2df; }
    .box.is-open .box-header:before {
      -webkit-transform: none;
      transform: none; }
  .box.is-open .box-body {
    display: block; }
  .box .box-header {
    position: relative;
    overflow: hidden;
    padding: 17px 15px 17px 40px;
    line-height: 1.25;
    cursor: pointer; }
    .box .box-header::before {
      content: '\f078';
      position: absolute;
      top: 14px;
      left: 15px;
      font-family: 'FontAwesome', sans-serif !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 20px;
      color: #9e9e9e;
      -webkit-transform: rotateZ(-90deg);
      transform: rotateZ(-90deg);
      -webkit-transition: -webkit-transform .2s;
      transition: -webkit-transform .2s;
      transition: transform .2s; }
  .box .box-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2; }
  .box .box-body {
    display: none;
    padding: 30px; }

.dog {
  position: relative; }
  .dog .dog-button {
    text-transform: lowercase; }
  .dog .dog-delete-button {
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 0;
    border: 0;
    background: none;
    font-size: 26px;
    line-height: 1;
    color: #a29d97; }
  .dog .dog-entry {
    display: inline-block;
    float: left;
    margin-left: 5px; }

@media (min-width: 601px) {
  .dog-title {
    float: left;
    margin: 0; } }
.entry-status {
  font-style: italic; }

.entry-button {
  margin: 10px 10px 0 0;
  text-transform: lowercase; }

.entry-reclassification {
  margin: 0;
  font-style: italic; }

.entry-details {
  margin: 0 0 20px;
  overflow: hidden; }

.entry-details__value {
  margin: 0 0 10px;
  font-weight: 600;
  overflow: hidden; }

.entry-form__info {
  margin-bottom: 25px;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.9); }

.entry-form__buttons {
  margin-top: 35px; }

.entry-form__button {
  margin-bottom: 10px; }

@media (min-width: 701px) {
  .entry-title {
    float: left; }

  .entry-status {
    float: right;
    text-align: right; } }
@media (min-width: 581px) {
  .entry-details__label {
    float: left;
    clear: left;
    width: 125px;
    margin: 0 0 10px; } }
@media (min-width: 801px) {
  .entry-form {
    width: 750px;
    padding: 20px 0 0 40px; } }
@media (max-width: 800px) {
  .entry-form {
    padding: 0 10px; } }
#howTo {
  position: fixed;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 90%;
  max-height: 60vh;
  z-index: 102;
  transform: translateX(-100%);
  transition: all .3s ease-in; }
  #howTo.toggled {
    transform: translateX(0);
    transition: all .3s ease-in; }
  #howTo > .toggle {
    position: absolute;
    display: block;
    top: 0;
    right: -32px;
    bottom: 0;
    margin: auto;
    padding: 3rem 10px;
    writing-mode: vertical-rl !important;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px 0 0 5px;
    background-color: #72c02c;
    color: #ffffff;
    transform: rotate(180deg);
    cursor: pointer; }
  #howTo > .wrapper {
    position: relative;
    display: block;
    height: 100%;
    overflow-y: auto;
    background: #ffffff; }
    #howTo > .wrapper .js-pagination {
      background: #ffffff; }

@media (max-width: 600px) {
  #howTo > .toggle {
    color: transparent;
    bottom: initial;
    height: 40px;
    padding: 0 0 0 10px; }
    #howTo > .toggle:after {
      content: '\f128';
      position: relative;
      display: block;
      height: 40px;
      line-height: 30px;
      font-size: 20px;
      transform: rotate(180deg);
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      color: #ffffff;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; } }
.cbp-l-filters-list .cbp-filter-item {
  border-color: #72c02c;
  background: #ffffff; }
  .cbp-l-filters-list .cbp-filter-item.cbp-filter-item-active {
    background: #72c02c; }

.form-control {
  border-radius: 2px;
  border-color: #ddd;
  line-height: 1.75; }

.btn {
  line-height: 2; }

/*# sourceMappingURL=style.css.map */
