a {
    text-decoration: none;
}

.page-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.navbar-top, .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;    
    margin-bottom: 1.5rem;
    background-color: var(--surface-0);
    border-radius: 0.25rem;
    border: 1px solid #343434;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
}
.navbar-logo {
    display: flex;
    font-size: 1.4rem;
    font-weight: 400;
    color: #F5C2FA;
    font-family: 'Climate Crisis', sans-serif;
    padding: 1.05rem 1.15rem;
}
.navbar-right {
    display: flex;
    margin-left: auto;
    padding-right: 1.15rem;
    align-items: center;
}
.navbar-right .user, .navbar-right .notifications {
    font-size: 0.8rem;
    color: #F5C2FA;
    margin-right: 0.7rem;
}
.navbar-right .user {
    padding-bottom: 0.25rem;
    border-bottom: 1px dashed #F5C2FA;
}
.navbar-menu {
    display: flex;
    flex: 0 0 100%;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-top: 1px solid #2B2B2B;
}
.navbar-menu a {
    margin-right: 0.7rem;
}
.footer-bottom {
    margin-top: 1.5rem;
    margin-bottom: 0;
}
.footer-bottom .footer-version {
    padding: 1.2rem;
    color: #9f9f9f;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn, .input {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent; 
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
    transition: 0.25s border,color;
}
.btn.btn-mini {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
}
.btn.btn-small {
    padding: 0.3rem 0.6rem;
    border-radius: 0.6rem;
    font-size: 0.8rem;
}
.btn.btn-big {
    padding: 0.45rem 0.9rem;
    border-radius: 0.9rem;
    font-size: 1rem; 
}

.input {
    outline: none;
}
.input.input-flex-max {
    flex: 1;
}
.input.input-default {
    background-color: #1F1F1F;
    border: 1px solid #242424;
    color: #b9b9b9;
}
.input.input-default::placeholder {
    color: #777777;
}
.input.input-default:focus {
    border-color: #F5C2FA;
}
.btn:hover {
    cursor: pointer;
}
.btn.btn-default {
    background-color: transparent;
    border: 1px solid #353535;
    color: #818181;
}
.btn.btn-default:disabled {
    background-color: #242424 !important;
    color: #818181 !important;
    border-color: #242424 !important;
}
.btn.btn-default:disabled:hover {
    cursor: not-allowed;
}
.btn.btn-default.router-link-active {
    background-color: #353535;
    border: 1px solid #F5C2FA;
}
.btn.btn-default.router-link-active, .btn.btn-default:hover {
    color: #F5C2FA;
    border-color: #F5C2FA;
}
.btn.btn-danger {
    color: #5b292a;
    background-color: #d56062;
    border-color: #d56062;
}
.btn.btn-info {
    color: #59465a;
    background-color: #F5C2FA;
    border-color: #F5C2FA;
}
.btn.btn-success {
    color: #363e00;
    background-color: #a5be00;
    border-color: #a5be00;
}
.btn.btn-warn {
    color: #ffffff;
    background-color: #facc15;
    border-color: #facc15;
}
.btn:not(.btn-icon-only) i {
    margin-right: 0.5rem;
}
.btn.btn-small:not(.btn-icon-only) i {
    margin-right: 5px;
}
.btn.btn-big:not(.btn-icon-only) i {
    margin-right: 7px;
}
.badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
}
.badge:hover {
    cursor: pointer;
}
.badge.badge-info {
    color: #F5C2FA;
    border: 1px solid #F5C2FA;
}
.badge.badge-warn {
    color: #c2410c;
    background-color: #ffedd5;
}
.badge.badge-danger {
    color: #5b292a;
    background-color: #d56062;
}
.badge.badge-success {
    color: #4f5b00;
    background-color: #a5be00;
}
.text-success {
    color: #a5be00;
}
.text-danger {
    color: #d56062;
}
.text-warn {
    color: #eec643;
}
.text-success i, .text-danger i, .text-warn i {
    margin-right: 0.35rem;
}
.badge-img {
    top: -1.25px;
    position: relative;
    vertical-align: middle;
    height: 1rem;
    margin-right: 0.8rem;
    border-radius: 0.2rem;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
}
.badge-img.badge-img-transparent {
    box-shadow: none;
}

.card, .modal {
    background-color: var(--surface-0);
    border-radius: 0.5rem;
    border: 1px solid #242424;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
}
.card.card-big {
    margin-bottom: 1.5rem;
}
.card .card-table {
    display: block;
}
.card table, .card table td, .card table th {
    text-align: left;
    border: none;
    border-spacing: 0;
}
.card table th {
    text-transform: uppercase;
    color: #9f9f9f;
    font-size: 0.65rem;
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
    font-weight: 700;
    padding: 0.4rem 0.6rem;
    background-color: #1F1F1F;
}
.card table td {
    color: #b9b9b9;
    font-weight: 500;
    padding: 0.9rem 0.6rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #242424;
}
.card table .status {
  width: 1%;
  white-space: nowrap;
}
/*.card table tr:nth-child(2n) {
    background-color: #fbfbfb;
}*/
.card table td.action > a {
    margin-left: 0.4rem;
}
.card table td.action > a:nth-child(1) {
    margin-left: 0px;
}
.card table th:first-child, .card table td:first-child {
    padding-left: 1.3rem;
}
.card table th:last-child, .card table td:last-child {
    padding-right: 1.3rem;
}
.card table {
    width: 100%;
    table-layout: auto;
}
.card .card-content {
    padding: 0.9rem 1.2rem;
}
.card .card-title {
    color: #F5C2FA;
    margin: 0;
    font-weight: 700;
    font-size: 1.2rem;
}
.flex .card-title {
    margin-right: 1.5rem;
}
.flex {
    display: flex;
}
.flex.flex-center {
    align-items: center;
}
.flex .flex-right {
    margin-left: auto;
}
.flex > * {
    display: flex;
}
.card .card-action {
    margin-left: 1.5rem;
}
.card .card-pagination {
    padding: 0.9rem 1.2rem;
}
.card .card-pagination span {
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0 0.55rem;
    color: #9f9f9f;
}
.card .card-splash {
    font-weight: 500;
    font-size: 0.9rem;
    color: #757984;
    padding: 26px 16px;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #282828;
}

.modal-overlay {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  display: flex;          /* enables flex centering */
  justify-content: center; /* horizontal centering */
  align-items: center;    /* vertical centering */    
}
.modal {
    min-width: 33rem;
    background-color: #161616;
    position: relative;
    padding: 2.2rem;
}
.modal h2 {
    color: #9f9f9f;
    margin: 0 0 2.2rem;
}
.label {
    display: block;
    margin-bottom: 0.5rem;
    color: #9f9f9f;
    text-transform: uppercase;
    font-size: 0.6rem;
    font-weight: 700;
}
.modal input, .modal select {
    display: block;
    width: 100%;
}
.modal form > div {
    margin: 1.1rem 0;
}
.modal button {
    margin-right: 0.55rem;
}
.text-center {
    text-align: center;
}
.copyfact, .linkfact {
    font-size: 0.85rem;
    font-weight: 500;
    color: #F5C2FA;
    border-bottom: 1px dashed #F5C2FA;
    padding-bottom: 0.2rem;
}
.linkfact {
    border-bottom: 1px solid #F5C2FA;
}
.copyfact:hover, .linkfact:hover {
    cursor: pointer;
}
.loader {
    top: 1px;
    position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #FFF;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border-bottom: 3px solid #eec643;
  border-left: 3px solid transparent;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #F5C2FA;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #F5C2FA, 0 0 5px #F5C2FA;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #F5C2FA;
  border-left-color: #F5C2FA;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/*.pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite ease-out;
  opacity: 0.5;
}*/
.pulse.pulse-yellow {
  background-color: #eec643; /* core dot */
}
.pulse.pulse-yellow::after {
  background-color: #eec643;
}
.pulse.pulse-green {
  background-color: #a5be00; /* core dot */
}
.pulse.pulse-green::after {
  background-color: #a5be00; /* core dot */
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(3); /* expands outward */
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}