/**
 * defcad project
 */
/* imports */
/**
 * defcad variables
 */
/* color palette */
/* defcad colors */
/* alert colors */
/* modal colors */
/* list colors */
/* project variables */
/* relaunch button */
/**
 * Global
 */
html, body {
  height: 100%; }

body {
  background-color: #fff !important;
  font-family: Segoe;
  line-height: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: bebasneue_regular, sans-serif;
  letter-spacing: 2px; }

input {
  font-family: Segoe, sans-serif; }

a {
  color: rgba(0, 187, 236, 0.87);
  outline: none; }
  a, a:hover, a:focus {
    text-decoration: none; }
  a:hover {
    color: #00bbec; }

p, textarea {
  /*font-family: helveticaneue, segoe;*/
  font-size: 16px;
  line-height: 1.6; }

.fa-download {
  color: #017fa0; }

.divider {
  border-top: 1px solid rgba(34, 36, 38, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.boldtext {
  font-weight: bold; }

.hidden {
  display: none !important; }

.spacer {
  margin: 10px 0; }

#defcad-content {
  background-color: #1d1d1d;
  width: 100%;
  margin: 0px auto;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto; }
  #defcad-content.light {
    background-color: #373737; }

.area-disabled {
  background-color: #1d1d1d;
  opacity: .9;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 88; }

.sidebar {
  min-height: 100%;
  background-color: #0e0e0e;
  padding: 0 40px 30px 40px; }

.footer {
  color: #000;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

/**
 * Buttons
 */
button {
  cursor: pointer; }

.btn {
  background-color: transparent;
  border: solid 1px #00bbec;
  border-radius: 0px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 12px 6px;
  font-family: 'bebasneue_regular';
  cursor: pointer;
  transition: all .3s ease-out; }

.btn.sbmt-btn.selected,
.btn.sbmt-btn:hover {
  color: #fff !important;
  background-color: #017fa0;
  border-color: #017fa0; }

.btn.btn-danger {
  border-color: #ec4700;
  color: #fff; }

.btn.btn-danger:hover {
  background-color: #ec4700;
  border-color: #ec4700; }

.btn.disabled, .btn.disabled:hover {
  background-color: rgba(115, 115, 115, 0.25);
  border-color: #737373;
  box-shadow: none;
  color: #737373;
  cursor: default;
  outline: none; }

a.view-all-btn {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-top: 20px; }

a.view-all-btn button {
  padding-left: 50px;
  padding-right: 50px; }

ul.pagination {
  -ms-flex-pack: center;
      justify-content: center; }

ul.pagination li.page-item {
  margin: 0 5px; }

ul.pagination li.page-item a.page-link {
  background-color: transparent;
  border: solid 1px #00bbec;
  border-radius: 0px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 12px 6px;
  font-family: 'bebasneue_regular';
  cursor: pointer;
  transition: all .3s ease-out; }

ul.pagination li.page-item.disabled a.page-link {
  color: grey;
  border-color: grey; }

ul.pagination li.page-item.active a.page-link,
ul.pagination li.page-item a.page-link:hover {
  color: #fff !important;
  background-color: #017fa0;
  border-color: #017fa0; }

#file-request-modal .modal-dialog,
#checkout-request-modal .modal-dialog {
  -ms-flex-pack: center;
      justify-content: center; }
  #file-request-modal .modal-dialog .modal-content,
  #checkout-request-modal .modal-dialog .modal-content {
    width: auto; }

/**
 * Badges
 */
.badge {
  color: #fff;
  background: none !important;
  font-family: bebasneue_light;
  margin-top: -1px;
  padding: 5px 5px 2px; }

.badge-primary {
  border: 1px solid #00bbec; }

.badge-success {
  border: 1px solid #28a745; }

.badge-warning {
  border: 1px solid #ec4700; }

/**
 * Relaunch Button
 */
.new-btn-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }
  .new-btn-container .new-btn {
    background: none;
    height: 45px;
    padding: 0 22px;
    border: 0;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: -ms-flexbox;
    display: flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    color: #00e5ff;
    text-decoration: none;
    position: relative;
    z-index: 1; }
  .new-btn-container .new-btn:before {
    content: '';
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 229, 255, 0.2);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
    opacity: 0; }
  .new-btn-container .new-btn:after {
    content: '';
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(236, 71, 0, 0.87);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1; }
  .new-btn-container .new-btn:hover,
  .new-btn-container .new-btn:focus {
    outline: none; }
  .new-btn-container .new-btn:hover:after,
  .new-btn-container .new-btn:focus:after {
    background: #ec4700; }
  .new-btn-container .new-btn:focus:before {
    opacity: 1; }
  .new-btn-container .new-btn-text {
    color: #fff;
    font-family: 'bebasneue_regular';
    font-size: 18px;
    font-weight: 900;
    padding-top: 2px;
    /* fixes the font space issue */
    position: relative;
    text-shadow: 1px 1px 0px rgba(134, 40, 0, 0.87); }

/**
 * Checkbox / Radio
 */
.defcad-checkbox {
  position: relative;
  list-style-type: none;
  text-align: left; }
  .defcad-checkbox input[type="radio"] {
    position: absolute;
    opacity: 0;
    left: 1px;
    bottom: -5px;
    margin: 0 0; }
    .defcad-checkbox input[type="radio"]:checked ~ .check {
      border: 2px solid #00bbec; }
      .defcad-checkbox input[type="radio"]:checked ~ .check::before {
        background: #00bbec; }
    .defcad-checkbox input[type="radio"]:checked ~ label {
      color: #adadad; }
  .defcad-checkbox label {
    display: inline-block;
    position: relative;
    font-family: bebasneue_regular, sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 5px 25px 5px 40px;
    margin: 2px auto;
    line-height: 25px;
    z-index: 9;
    cursor: pointer;
    vertical-align: baseline;
    -webkit-transition: all 0.25s linear; }
  .defcad-checkbox label:hover {
    color: #00bbec; }
  .defcad-checkbox .check {
    display: block;
    position: absolute;
    border: 2px solid #aaa;
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 10px;
    left: 10px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear; }
    .defcad-checkbox .check::before {
      display: block;
      position: absolute;
      content: '';
      border-radius: 100%;
      height: 5px;
      width: 5px;
      top: 3px;
      left: 3px;
      margin: auto;
      transition: background 0.25s linear;
      -webkit-transition: background 0.25s linear; }
  .defcad-checkbox:hover label {
    color: #fff; }
  .defcad-checkbox:hover .check {
    border: 2px solid #fff; }

.defcad-checkbox.has-error label {
  color: #ec4700; }

.defcad-checkbox.has-error .check {
  border-color: #ec4700; }

/**
 * Alerts
 *
 * bootstrap alert CSS, translated to the django-standard levels of
 * debug, info, success, warning, error
 */
#defcad-messages {
  top: 0;
  width: 100%;
  z-index: 999; }

#defcad-messages.fixed {
  position: fixed; }

.alert {
  font-family: bebasneue_regular;
  letter-spacing: 1px;
  margin: 16px auto;
  margin: 1rem auto;
  padding: 14px 20px 10px;
  line-height: 20px; }
  .alert ul {
    margin: 0;
    padding: 0 10px; }

.alert-success, .alert-info, .alert-debug {
  color: rgba(2, 171, 215, 0.87);
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(2, 171, 215, 0.87); }

.alert-danger, .alert-error, .alert-warning {
  color: rgba(181, 85, 94, 0.87);
  background-color: rgba(0, 0, 0, 0.87);
  border-color: rgba(181, 85, 94, 0.87); }

.alert.defcad-message {
  position: absolute;
  z-index: 55; }

.alert-warning-invert {
  background-color: rgba(181, 85, 94, 0.87);
  color: #fff; }

form span.required {
  color: rgba(236, 71, 0, 0.87); }

form ul.errorlist {
  padding-left: 0;
  list-style: none;
  padding: 20px;
  margin: 10px 0;
  color: rgba(181, 85, 94, 0.87);
  background-color: rgba(0, 0, 0, 0.87);
  border-color: rgba(181, 85, 94, 0.87);
  border: 1px solid; }

/**
 * Search
 */
#defcad-search #search-form, #defcad-searchbar #search-form {
  width: 100%; }
  #defcad-search #search-form input, #defcad-searchbar #search-form input {
    color: #999; }
  #defcad-search #search-form #search-input, #defcad-searchbar #search-form #search-input {
    background: none;
    border: 0;
    border-bottom: 1px solid #bfbfbf;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    outline: 0;
    padding-bottom: 5px;
    width: 100%;
    -webkit-appearance: none; }
  #defcad-search #search-form #search-buttons, #defcad-searchbar #search-form #search-buttons {
    border-bottom: 1px solid #bfbfbf;
    text-align: right; }
    #defcad-search #search-form #search-buttons button, #defcad-searchbar #search-form #search-buttons button {
      border: none;
      background-color: #000;
      color: #fff;
      cursor: pointer;
      outline: 0;
      font-size: 24px;
      -webkit-appearance: none; }
    #defcad-search #search-form #search-buttons .search-btn, #defcad-search #search-form #search-buttons .close-btn, #defcad-searchbar #search-form #search-buttons .search-btn, #defcad-searchbar #search-form #search-buttons .close-btn {
      line-height: 90px;
      opacity: 0.5;
      transition: all 0.20s ease-in-out;
      -webkit-transition: all 0.20s ease-in-out;
      -moz-transition: all 0.20s ease-in-out;
      -ms-transition: all 0.20s ease-in-out;
      -o-transition: all 0.20s ease-in-out; }
    #defcad-search #search-form #search-buttons .search-btn > img, #defcad-searchbar #search-form #search-buttons .search-btn > img {
      margin-top: -10px;
      width: 25px; }
    #defcad-search #search-form #search-buttons .search-btn:hover, #defcad-searchbar #search-form #search-buttons .search-btn:hover {
      opacity: 1; }
    #defcad-search #search-form #search-buttons .close-btn, #defcad-searchbar #search-form #search-buttons .close-btn {
      display: none; }
  #defcad-search #search-form #search-filters, #defcad-searchbar #search-form #search-filters {
    display: block;
    white-space: nowrap;
    width: 100%; }
    #defcad-search #search-form #search-filters .form-check, #defcad-searchbar #search-form #search-filters .form-check {
      margin-right: 12px;
      margin-right: .75rem; }
      #defcad-search #search-form #search-filters .form-check .form-check-label, #defcad-searchbar #search-form #search-filters .form-check .form-check-label {
        font-family: bebasneue_regular;
        letter-spacing: 2px;
        padding-top: 4px;
        padding-left: 12px;
        padding-left: .75rem;
        vertical-align: text-top; }

#defcad-search {
  background: none;
  padding: 10px 0 20px; }
  #defcad-search #search-form #search-input {
    border-bottom: 3px solid #545456; }
  #defcad-search #search-form #search-buttons {
    border-bottom: 3px solid #545456; }
    #defcad-search #search-form #search-buttons .search-btn {
      background-color: #1d1d1d; }
  #defcad-search #search-form #search-filters {
    background: #2f2f2f;
    padding: 13px 15px 7px; }

#defcad-searchbar {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.75) 60%, transparent);
  display: none;
  height: 90%;
  opacity: 1;
  padding: 5px 0 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 99; }
  #defcad-searchbar .open {
    display: block;
    opacity: 1; }
  #defcad-searchbar #search-form #search-filters {
    margin-top: 15px;
    margin-bottom: 10px; }

.redtext {
  color: rgba(236, 71, 0, 0.87); }

.bluetext {
  color: #00bbec !important; }

a.redtext:hover {
  color: #ec4700; }

/**
 * Jumbotron
 */
.defcad-jumbotron-container {
  background: url("../images/page-banner.jpg");
  background-position: bottom center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover; }

.defcad-jumbotron {
  padding: 32px 16px;
  padding: 2rem 1rem; }
  .defcad-jumbotron h1 {
    margin-bottom: 15px; }
    .defcad-jumbotron h1 .question-icon {
      margin-left: 12px;
      font-size: 32px;
      font-size: 2rem;
      vertical-align: text-top;
      color: #979797;
      cursor: pointer; }
    .defcad-jumbotron h1.frontpage-counter {
      font-size: 55px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      margin-bottom: 5px; }
  .defcad-jumbotron h4 {
    margin-bottom: 0; }
  .defcad-jumbotron .jumbotron-col {
    padding-bottom: 32px; }
    .defcad-jumbotron .jumbotron-col h3 {
      font-size: 32px;
      font-size: 2rem; }
    .defcad-jumbotron .jumbotron-col p {
      font-size: 15px;
      line-height: 20px;
      font-weight: 600;
      color: #979797;
      max-width: 350px;
      margin: 0 auto; }
    .defcad-jumbotron .jumbotron-col .icon-container {
      margin: 16px 0;
      margin: 1rem 0; }
      .defcad-jumbotron .jumbotron-col .icon-container img {
        width: 133px;
        height: 133px; }
    @media (max-width: 767px) {
      .defcad-jumbotron .jumbotron-col .jumbotron-col:not(:first-child) {
        margin-top: 2rem; } }

#standard-header {
  background: url("../images/page-banner.jpg");
  background-position: bottom center;
  height: 200px;
  position: relative;
  display: table;
  width: 100%; }
  #standard-header #standard-info {
    display: table-cell;
    vertical-align: middle; }
    #standard-header #standard-info h1 {
      letter-spacing: 5.6px;
      font-size: 36px;
      margin-bottom: 0; }

.empty-list-state {
  background-color: #2f2f2f;
  font-size: 16px;
  padding: 25px 0;
  text-align: center; }

@media (max-width: 575.98px) {
  #standard-header {
    height: 150px; } }

@media (min-width: 768px) {
  #standard-header {
    height: 200px; } }

div.homepage-divider {
  margin-bottom: 15px; }
  div.homepage-divider hr {
    width: 100%;
    border-color: #666; }

/**
 * Navigation
 */
#top-nav-container {
  font-family: bebasneue_regular;
  width: 100%; }
  #top-nav-container nav {
    padding: 0 0;
    margin: 0 0 2em; }
  #top-nav-container ul {
    display: table;
    margin: 10px 0 0;
    width: 100%; }
  #top-nav-container a {
    color: #979797;
    display: table-cell;
    font-size: 18px;
    letter-spacing: 3.3px;
    text-align: left; }
    #top-nav-container a .nav-item {
      border-bottom: 2px solid #979797;
      padding: 20px;
      transition: all 0.20s ease-in-out;
      white-space: nowrap;
      -webkit-transition: all 0.20s ease-in-out;
      -moz-transition: all 0.20s ease-in-out;
      -ms-transition: all 0.20s ease-in-out;
      -o-transition: all 0.20s ease-in-out; }
    #top-nav-container a .nav-item.selected, #top-nav-container a .nav-item.active {
      color: #00bbec;
      border-bottom: 2px solid #00bbec; }
  #top-nav-container a:hover {
    color: #00bbec; }
    #top-nav-container a:hover .nav-item {
      border-bottom: 2px solid #00bbec; }
  #top-nav-container .nav-item.remainder {
    border-bottom: 2px solid #979797;
    display: table-cell;
    padding: 20px 0;
    width: 100%; }
  @media (max-width: 767px) {
    #top-nav-container a {
      display: block;
      width: 100%; }
    #top-nav-container .nav-item {
      width: 100%;
      text-align: center; }
    #top-nav-container .nav-item.remainder {
      display: none; } }
  @media (min-width: 768px) {
    #top-nav-container a {
      display: table-cell; }
    #top-nav-container .nav-item {
      display: table-cell; } }

#page-nav-container #page-nav {
  font-family: bebasneue_regular;
  letter-spacing: 2px;
  background-color: #222222;
  height: auto; }
  #page-nav-container #page-nav .nav-item {
    border-bottom: 2px solid #222222;
    padding: 20px 30px;
    font-size: 18px;
    letter-space: 2.5px;
    transition: all 0.20s ease-in-out;
    white-space: nowrap;
    -webkit-transition: all 0.20s ease-in-out;
    -moz-transition: all 0.20s ease-in-out;
    -ms-transition: all 0.20s ease-in-out;
    -o-transition: all 0.20s ease-in-out; }
  #page-nav-container #page-nav a {
    color: #FFFFFF; }
    #page-nav-container #page-nav a .nav-item:hover, #page-nav-container #page-nav a .nav-item.active {
      color: rgba(0, 187, 236, 0.87); }
  #page-nav-container #page-nav .nav-item.active {
    border-bottom: 2px solid #00bbec; }
  @media (max-width: 420px) {
    #page-nav-container #page-nav .navbar > ul {
      -ms-flex-direction: column !important;
          flex-direction: column !important; } }

/**
 * Gallery
 */
.view-more-link-wrapper {
  text-align: center; }
  .view-more-link-wrapper .view-more-link {
    margin-top: 10px; }
    .view-more-link-wrapper .view-more-link span {
      display: inline-block;
      font-family: bebasneue_regular, sans-serif;
      font-size: 25px;
      padding-bottom: 10px;
      letter-spacing: 2px; }

@media (min-width: 768px) {
  .view-more-link {
    float: right; }
    .view-more-link span {
      font-size: 18px;
      padding-bottom: 0; } }

/**
 * Form
 */
.defcad-form .alert {
  background-color: transparent; }

.defcad-form label {
  color: gray;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 4px; }

.defcad-form input, .defcad-form textarea, .defcad-form select {
  width: 100%;
  background-color: transparent;
  border: solid 1px #979797;
  border-radius: 0px;
  color: #999;
  font-size: 18px;
  text-transform: none;
  margin-bottom: 1.5em; }

.defcad-form input, .defcad-form textarea {
  padding: 9.6px 12.8px;
  padding: .6rem .8rem; }

.defcad-form div.input-group-prepend span.input-group-text {
  padding: 9.6px 12px;
  padding: .6rem .75rem; }

.defcad-form .form-control:disabled,
.defcad-form .form-control[readonly="readonly"] {
  background-color: rgba(75, 75, 75, 0.4); }

.defcad-form input[type="text"] {
  line-height: 0px; }

.defcad-form input[type="checkbox"] {
  width: auto; }

.defcad-form input:focus, .defcad-form textarea:focus {
  color: #999;
  background: transparent !important;
  border: solid 1px #0093b9;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none; }

.defcad-form .form-group.has-error input, .defcad-form .form-group.has-error textarea, .defcad-form .form-group.has-error select,
.defcad-form .input-group.has-error input,
.defcad-form .input-group.has-error textarea,
.defcad-form .input-group.has-error select {
  border: solid thin #ec4700;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out; }

.defcad-form label {
  font-family: bebasneue_regular;
  letter-spacing: 2px;
  font-size: 16px; }

i[data-toggle="tooltip"] {
  color: gray;
  cursor: pointer; }

/**
 * Captcha
 */
#div_id_captcha > div {
  display: inline-block;
  position: relative;
  width: 100%; }
  #div_id_captcha > div img {
    margin-top: 4px;
    margin-left: 10px; }
  #div_id_captcha > div input[type="text"] {
    float: left;
    width: 48%; }

/**
 * Bug Report
 */
.bug-report {
  position: fixed;
  z-index: 99;
  bottom: 205px;
  right: -150px;
  background: #00bbec;
  padding: 10px 20px;
  color: #fff;
  transition: all .5s;
  border-radius: .25rem 0 0 .25rem; }
  .bug-report > i {
    margin-right: 20px;
    transition: all .5s; }
  .bug-report:hover {
    right: 0px;
    color: #fff !important;
    text-decoration: none;
    background: #004253; }
    .bug-report:hover > i {
      margin-right: 5px; }
  @media (max-width: 767px) {
    .bug-report:hover {
      right: -150px; }
      .bug-report:hover > i {
        margin-right: 20px; } }

/**
 * Modal
 */
.modal-backdrop.show {
  opacity: 0.8 !important; }

.defcad-modal .modal-dialog .modal-content {
  text-align: center;
  background-color: #121212;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none; }
  .defcad-modal .modal-dialog .modal-content .modal-body {
    padding-left: 30px;
    padding-right: 30px; }
  .defcad-modal .modal-dialog .modal-content .modal-header, .defcad-modal .modal-dialog .modal-content .modal-body, .defcad-modal .modal-dialog .modal-content .modal-footer {
    border-bottom: none; }
  .defcad-modal .modal-dialog .modal-content .modal-header {
    padding-bottom: 0; }
    .defcad-modal .modal-dialog .modal-content .modal-header h1, .defcad-modal .modal-dialog .modal-content .modal-header h2, .defcad-modal .modal-dialog .modal-content .modal-header h3, .defcad-modal .modal-dialog .modal-content .modal-header h4, .defcad-modal .modal-dialog .modal-content .modal-header h5, .defcad-modal .modal-dialog .modal-content .modal-header h6 {
      color: #fff;
      width: 100%; }
    .defcad-modal .modal-dialog .modal-content .modal-header .close {
      color: #fff; }
  .defcad-modal .modal-dialog .modal-content .modal-footer {
    margin: 0px auto;
    border-top: none; }
    .defcad-modal .modal-dialog .modal-content .modal-footer input[type="submit"] {
      margin: 0; }
    .defcad-modal .modal-dialog .modal-content .modal-footer .close-btn {
      color: #8a8a8a;
      border-color: #8a8a8a; }
      .defcad-modal .modal-dialog .modal-content .modal-footer .close-btn:hover {
        background-color: #8a8a8a;
        color: #fff; }
  .defcad-modal .modal-dialog .modal-content div#verify-legio-membership-wrapper div#verify-legio-membership-description {
    border: 1px solid #979797;
    margin: 20px 30px 30px 30px;
    padding: 20px; }
  .defcad-modal .modal-dialog .modal-content div#verify-legio-membership-wrapper form.defcad-form {
    padding: 40px;
    padding-top: 0;
    margin: 0 70px; }
    .defcad-modal .modal-dialog .modal-content div#verify-legio-membership-wrapper form.defcad-form div.form-group {
      margin-bottom: 5px; }
      .defcad-modal .modal-dialog .modal-content div#verify-legio-membership-wrapper form.defcad-form div.form-group input {
        margin-bottom: 0;
        text-align: center; }

/**
 * Defcad Message
 */
.defcad-modal-message-container {
  position: relative;
  width: 500px; }
  .defcad-modal-message-container .defcad-modal-message {
    border-radius: 4px;
    margin: 0 auto;
    position: absolute;
    box-sizing: border-box;
    background: #121212;
    text-align: center;
    box-shadow: 0 0 4px #191919;
    font-size: 17px;
    top: 0;
    left: 0;
    right: 0;
    width: 500px;
    z-index: 99;
    transition: all .3s ease-out; }
    .defcad-modal-message-container .defcad-modal-message .defcad-modal-message-relative {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
      margin: 0;
      /* this header needs to be added for the padding */ }
      .defcad-modal-message-container .defcad-modal-message .defcad-modal-message-relative h1 {
        padding-top: 40px; }
    .defcad-modal-message-container .defcad-modal-message .defcad-form {
      padding: 40px;
      padding-top: 0; }
    .defcad-modal-message-container .defcad-modal-message .defcad-partner-form {
      padding: 0 0; }
    .defcad-modal-message-container .defcad-modal-message #message-top,
    .defcad-modal-message-container .defcad-modal-message #message-bottom,
    .defcad-modal-message-container .defcad-modal-message #message-right,
    .defcad-modal-message-container .defcad-modal-message #message-left {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1; }
    .defcad-modal-message-container .defcad-modal-message #message-top {
      top: 0;
      left: 0;
      border-top: solid thin #2a2a2a; }
    .defcad-modal-message-container .defcad-modal-message #message-bottom {
      bottom: 0;
      left: 0;
      border-bottom: solid thin #2a2a2a; }
    .defcad-modal-message-container .defcad-modal-message #message-right {
      top: 0;
      right: 0;
      border-right: solid thin #2a2a2a; }
    .defcad-modal-message-container .defcad-modal-message #message-left {
      top: 0;
      left: 0;
      border-left: solid thin #2a2a2a; }
    .defcad-modal-message-container .defcad-modal-message #message-border {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: solid thin transparent;
      z-index: -1;
      opacity: 0;
      transition: all .2s ease-out; }
    .defcad-modal-message-container .defcad-modal-message textarea {
      margin: 0 0; }
  .defcad-modal-message-container .defcad-modal-message.fadeIn #message-top {
    border-top: 1px solid #2a2a2a;
    opacity: 1;
    animation: defcad_modal_message_top_fade_in 0.5s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.fadeIn #message-bottom {
    border-bottom: 1px solid #2a2a2a;
    opacity: 1;
    animation: defcad_modal_message_bottom_fade_in 0.5s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.fadeIn #message-right {
    border-right: 1px solid #2a2a2a;
    opacity: 1;
    animation: defcad_modal_message_right_fade_in 0.5s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.fadeIn #message-left {
    border-left: 1px solid #2a2a2a;
    opacity: 1;
    animation: defcad_modal_message_left_fade_in 0.5s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.valid .defcad-modal-message-relative {
    background-color: rgba(0, 255, 255, 0.05); }
  .defcad-modal-message-container .defcad-modal-message.valid #message-top {
    border-top: 1px solid #00bbec;
    opacity: 1;
    animation: defcad_modal_message_top_valid 1s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.valid #message-bottom {
    border-bottom: 1px solid #00bbec;
    opacity: 1;
    animation: defcad_modal_message_bottom_valid 1s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.valid #message-right {
    border-right: 1px solid #00bbec;
    opacity: 1;
    animation: defcad_modal_message_right_valid 1s cubic-bezier(0, 0.75, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.valid #message-left {
    border-left: 1px solid #00bbec;
    opacity: 1;
    animation: defcad_modal_message_left_valid 1s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.invalid .defcad-modal-message-relative {
    background-color: rgba(255, 0, 0, 0.05); }
  .defcad-modal-message-container .defcad-modal-message.invalid #message-top {
    border-top: 1px solid #ec4700;
    opacity: 1;
    animation: defcad_modal_message_top_invalid 1s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.invalid #message-bottom {
    border-bottom: 1px solid #ec4700;
    opacity: 1;
    animation: defcad_modal_message_bottom_invalid 1s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.invalid #message-right {
    border-right: 1px solid #ec4700;
    opacity: 1;
    animation: defcad_modal_message_right_invalid 1s cubic-bezier(0, 0.5, 1, 0.5); }
  .defcad-modal-message-container .defcad-modal-message.invalid #message-left {
    border-left: 1px solid #ec4700;
    opacity: 1;
    animation: defcad_modal_message_left_invalid 1s cubic-bezier(0, 0.5, 1, 0.5); }

@keyframes defcad_modal_message_top_fade_in {
  0% {
    top: -10px;
    width: 100%;
    border-top: solid thin #979797;
    opacity: 1; }
  50% {
    top: -10px;
    width: 100%;
    border-top: solid thin #979797; }
  100% {
    top: 0;
    width: 100%;
    border-top: solid thin #8a8a8a;
    opacity: 0; } }

@keyframes defcad_modal_message_right_fade_in {
  0% {
    right: -10px;
    height: 0%;
    border-right: solid thin #979797;
    opacity: 1; }
  50% {
    right: -10px;
    height: 100%;
    border-right: solid thin #979797; }
  100% {
    right: 0;
    height: 100%;
    border-right: solid thin #8a8a8a;
    opacity: 0; } }

@keyframes defcad_modal_message_bottom_fade_in {
  0% {
    bottom: -10px;
    width: 100%;
    border-bottom: solid thin #979797;
    opacity: 1; }
  50% {
    bottom: -10px;
    width: 100%;
    border-bottom: solid thin #979797; }
  100% {
    bottom: 0;
    width: 100%;
    border-bottom: solid thin #8a8a8a;
    opacity: 0; } }

@keyframes defcad_modal_message_left_fade_in {
  0% {
    left: -10px;
    height: 0%;
    border-left: solid thin #979797;
    opacity: 1; }
  50% {
    left: -10px;
    height: 100%;
    border-left: solid thin #979797; }
  100% {
    left: 0;
    height: 100%;
    border-left: solid thin #8a8a8a;
    opacity: 0; } }

@keyframes defcad_modal_message_top_valid {
  0% {
    top: -10px;
    width: 0%;
    opacity: 1; }
  25% {
    top: -10px;
    width: 100%; }
  50% {
    top: -10px;
    width: 100%;
    border-top: solid thin #979797; }
  75% {
    top: -10px;
    width: 100%;
    border-top: solid thin #00bbec;
    opacity: 1; }
  100% {
    top: 0;
    width: 100%;
    border-top: solid thin #00bbec;
    opacity: 0; } }

@keyframes defcad_modal_message_right_valid {
  0% {
    right: -10px;
    height: 0%;
    opacity: 1; }
  25% {
    right: -10px;
    height: 100%; }
  50% {
    right: -10px;
    height: 100%;
    border-right: solid thin #979797; }
  75% {
    right: -10px;
    height: 100%;
    border-right: solid thin #00bbec;
    opacity: 1; }
  100% {
    right: 0;
    height: 100%;
    border-right: solid thin #00bbec;
    opacity: 0; } }

@keyframes defcad_modal_message_bottom_valid {
  0% {
    bottom: -10px;
    width: 0%;
    opacity: 1; }
  25% {
    bottom: -10px;
    width: 100%; }
  50% {
    bottom: -10px;
    width: 100%;
    border-bottom: solid thin #979797; }
  75% {
    bottom: -10px;
    width: 100%;
    border-bottom: solid thin #00bbec;
    opacity: 1; }
  100% {
    bottom: 0;
    width: 100%;
    border-bottom: solid thin #00bbec;
    opacity: 0; } }

@keyframes defcad_modal_message_left_valid {
  0% {
    left: -10px;
    height: 0%;
    opacity: 1; }
  25% {
    left: -10px;
    height: 100%; }
  50% {
    left: -10px;
    height: 100%;
    border-left: solid thin #979797; }
  75% {
    left: -10px;
    height: 100%;
    border-left: solid thin #00bbec;
    opacity: 1; }
  100% {
    left: 0;
    height: 100%;
    border-left: solid thin #00bbec;
    opacity: 0; } }

@keyframes defcad_modal_message_top_invalid {
  0% {
    top: -10px;
    width: 0%;
    opacity: 1; }
  25% {
    top: -10px;
    width: 100%; }
  50% {
    top: -10px;
    width: 100%;
    border-top: solid thin #979797; }
  75% {
    top: -10px;
    width: 100%;
    border-top: solid thin #ec4700;
    opacity: 1; }
  100% {
    top: 0;
    width: 100%;
    border-top: solid thin #ec4700;
    opacity: 0; } }

@keyframes defcad_modal_message_right_invalid {
  0% {
    right: -10px;
    height: 0%;
    opacity: 1; }
  25% {
    right: -10px;
    height: 100%; }
  50% {
    right: -10px;
    height: 100%;
    border-right: solid thin #979797; }
  75% {
    right: -10px;
    height: 100%;
    border-right: solid thin #ec4700;
    opacity: 1; }
  100% {
    right: 0;
    height: 100%;
    border-right: solid thin #ec4700;
    opacity: 0; } }

@keyframes defcad_modal_message_bottom_invalid {
  0% {
    bottom: -10px;
    width: 0%;
    opacity: 1; }
  25% {
    bottom: -10px;
    width: 100%; }
  50% {
    bottom: -10px;
    width: 100%;
    border-bottom: solid thin #979797; }
  75% {
    bottom: -10px;
    width: 100%;
    border-bottom: solid thin #ec4700;
    opacity: 1; }
  100% {
    bottom: 0;
    width: 100%;
    border-bottom: solid thin #ec4700;
    opacity: 0; } }

@keyframes defcad_modal_message_left_invalid {
  0% {
    left: -10px;
    height: 0%;
    opacity: 1; }
  25% {
    left: -10px;
    height: 100%; }
  50% {
    left: -10px;
    height: 100%;
    border-left: solid thin #979797; }
  75% {
    left: -10px;
    height: 100%;
    border-left: solid thin #ec4700;
    opacity: 1; }
  100% {
    left: 0;
    height: 100%;
    border-left: solid thin #ec4700;
    opacity: 0; } }

.spinner-container {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
  width: 100%; }

.spinner {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: spinner-rotate-all 1s linear infinite; }
  .spinner .right-side,
  .spinner .left-side {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    overflow: hidden; }
  .spinner .left-side {
    left: 0; }
  .spinner .right-side {
    right: 0; }
  .spinner .bar {
    width: 100%;
    height: 100%;
    border-radius: 100px 0 0 100px;
    border: 5px solid #00bbec;
    position: relative; }
  .spinner .right-side .bar {
    border-radius: 0 100px 100px 0;
    border-left: none;
    transform: rotate(-10deg);
    transform-origin: left center;
    animation: spinner-rotate-right 0.75s linear infinite alternate; }
  .spinner .right-side .bar:after {
    bottom: -10px;
    left: -5px; }
  .spinner .left-side .bar {
    border-right: none;
    transform: rotate(10deg);
    transform-origin: right center;
    animation: spinner-rotate-left 0.75s linear infinite alternate; }
  .spinner .left-side .bar:after {
    bottom: -10px;
    right: -5px; }

@keyframes spinner-rotate-left {
  to {
    transform: rotate(30deg); }
  from {
    transform: rotate(175deg); } }

@keyframes spinner-rotate-right {
  from {
    transform: rotate(-175deg); }
  to {
    transform: rotate(-30deg); } }

@keyframes spinner-rotate-all {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(-360deg); } }

/**
 * Floating footer bar
 */
#dd-floating-bar {
  visibility: hidden;
  background-color: #000;
  text-align: center;
  border-radius: 2px;
  padding: 20px 16px 7px 16px;
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;
  width: 100%;
  box-shadow: 0 1px 25px rgba(0, 0, 0, 0.2); }

#dd-floating-bar.show {
  visibility: visible;
  animation: fadein 1s; }

#dd-floating-bar .sec-subtitle {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff; }

#dd-floating-bar .sec-subtitle b {
  font-size: 16px; }

#dd-floating-bar form {
  margin-bottom: 10px; }

#dd-floating-bar .mc-field-group {
  margin-bottom: 0;
  width: 100%; }

#dd-floating-bar form input.email {
  margin-bottom: 15px !important;
  display: inline-block;
  text-indent: 0 !important;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 5px;
  margin-bottom: 20px;
  border-radius: 0;
  max-width: 250px; }

#dd-floating-bar form input.button {
  padding: 13px;
  font-size: 10px;
  color: #000 !important;
  background: #069076;
  max-width: 105px;
  line-height: 0;
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 0;
  display: inline-block;
  cursor: pointer; }

#dd-floating-bar form input.button[name="Close"] {
  color: #000 !important;
  background-color: #999; }

@keyframes fadein {
  from {
    bottom: -30px;
    opacity: 0; }
  to {
    bottom: 60px;
    opacity: 1; } }

@keyframes fadeinFullsize {
  from {
    bottom: -30px;
    opacity: 0; }
  to {
    bottom: 0px;
    opacity: 1; } }

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1; }
  to {
    bottom: 0;
    opacity: 0; } }

@media (min-width: 768px) {
  #dd-floating-bar {
    bottom: 0px;
    padding: 20px; }
  #dd-floating-bar p.sec-subtitle {
    margin: 0;
    font-size: 17px;
    min-width: 275px;
    text-align: right; }
  #dd-floating-bar p.sec-subtitle b {
    font-size: 17px; }
  #dd-floating-bar.show {
    animation: fadeinFullsize 1s; }
  #dd-floating-bar div.container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
  #dd-floating-bar div.container form {
    margin: 0; }
  #dd-floating-bar form input.email {
    margin: 0 20px !important;
    width: 280px;
    padding: 10px 15px;
    max-width: none; }
  #dd-floating-bar form input.button {
    font-size: 12px;
    padding: 20px;
    max-width: 110px; }
  #dd-floating-bar form input.button[name="Close"] {
    margin-left: 10px; }
  #dd-floating-bar div.container #mc_embed_signup {
    width: auto !important; }
  #dd-floating-bar div.container #mc_embed_signup_scroll {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
  #dd-floating-bar div.container #mce-responses {
    display: none; } }

/**
 * Django Toolbar
 *
 * display django-debug-toolbar.
 * see https://github.com/django-debug-toolbar/django-debug-toolbar/issues/742
 * and https://github.com/pydanny/cookiecutter-django/issues/317
 */
[hidden][style="display: block;"] {
  display: block !important; }

/**
 * Other
 */
.defcad-error-page {
  text-align: center;
  margin: 40px; }

/**
 * Global media queries
 */
@media (max-width: 575.98px) {
  #search-filter .form-check-inline {
    display: inline-block;
    margin-left: 0;
    width: auto;
    vertical-align: middle; } }
