@charset "UTF-8";
.fa-beat {
  -webkit-animation-name: fa-beat;
          animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  -webkit-animation-name: fa-bounce;
          animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  -webkit-animation-name: fa-fade;
          animation-name: fa-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
          animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  -webkit-animation-name: fa-flip;
          animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  -webkit-animation-name: fa-shake;
          animation-name: fa-shake;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
          animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
          animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    -webkit-animation-delay: -1ms;
            animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
            animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@-webkit-keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(-90deg);
          transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(-90deg);
          transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(90deg);
          transform: perspective(2000px) rotateX(90deg);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(90deg);
          transform: perspective(2000px) rotateY(90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(-90deg);
          transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(-90deg);
          transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(90deg);
          transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(90deg);
          transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
          transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
          transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(90deg);
          transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
          transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(90deg);
          transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: rotate(-0.75turn);
          transform: rotate(-0.75turn);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  -webkit-transform: rotate(0.75turn);
          transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: rotate(0.75turn);
          transform: rotate(0.75turn);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  -webkit-transform: rotate(-0.75turn);
          transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  -webkit-animation-name: shake-7;
          animation-name: shake-7;
}
@-webkit-keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    -webkit-transform: translateX(7%);
            transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    -webkit-transform: translateX(-7%);
            transform: translateX(-7%);
  }
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    -webkit-transform: translateX(7%);
            transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    -webkit-transform: translateX(-7%);
            transform: translateX(-7%);
  }
}

.spin-cw {
  -webkit-animation-name: spin-cw-1turn;
          animation-name: spin-cw-1turn;
}
@-webkit-keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
            transform: rotate(-1turn);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
            transform: rotate(-1turn);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.spin-ccw {
  -webkit-animation-name: spin-ccw-1turn;
          animation-name: spin-ccw-1turn;
}
@-webkit-keyframes spin-ccw-1turn {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-1turn);
            transform: rotate(-1turn);
  }
}
@keyframes spin-ccw-1turn {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-1turn);
            transform: rotate(-1turn);
  }
}

.wiggle {
  -webkit-animation-name: wiggle-7deg;
          animation-name: wiggle-7deg;
}
@-webkit-keyframes wiggle-7deg {
  40%, 50%, 60% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}

.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.slow {
  -webkit-animation-duration: 750ms !important;
          animation-duration: 750ms !important;
}

.fast {
  -webkit-animation-duration: 250ms !important;
          animation-duration: 250ms !important;
}

.linear {
  -webkit-animation-timing-function: linear !important;
          animation-timing-function: linear !important;
}

.ease {
  -webkit-animation-timing-function: ease !important;
          animation-timing-function: ease !important;
}

.ease-in {
  -webkit-animation-timing-function: ease-in !important;
          animation-timing-function: ease-in !important;
}

.ease-out {
  -webkit-animation-timing-function: ease-out !important;
          animation-timing-function: ease-out !important;
}

.ease-in-out {
  -webkit-animation-timing-function: ease-in-out !important;
          animation-timing-function: ease-in-out !important;
}

.bounce-in {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
          animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
          animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  -webkit-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
          animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  -webkit-animation-delay: 300ms !important;
          animation-delay: 300ms !important;
}

.long-delay {
  -webkit-animation-delay: 700ms !important;
          animation-delay: 700ms !important;
}

.budget-phases .tabs-controls .budget-prev-phase,
.budget-phases .tabs-controls .budget-next-phase,
.budget-phases .tabs-controls .budget-prev-phase-disabled,
.budget-phases .tabs-controls .budget-next-phase-disabled, .jumbo-budget .button, .categories a:hover, .categories a.is-active,
.geozone a:hover,
.geozone a.is-active, .pagination .current, .budgets-index > header, .budget-group-show > header, .budget-groups-index > header, .budget-ballot-show > header, .budget-header {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.budget-phases .tabs-controls .budget-prev-phase::selection,
.budget-phases .tabs-controls .budget-next-phase::selection,
.budget-phases .tabs-controls .budget-prev-phase-disabled::selection,
.budget-phases .tabs-controls .budget-next-phase-disabled::selection, .jumbo-budget .button::selection, .categories a:hover::selection, .categories a.is-active::selection,
.geozone a:hover::selection,
.geozone a.is-active::selection, .pagination .current::selection, .budgets-index > header::selection, .budget-group-show > header::selection, .budget-groups-index > header::selection, .budget-ballot-show > header::selection, .budget-header::selection,
.budget-phases .tabs-controls .budget-prev-phase *::selection,
.budget-phases .tabs-controls .budget-next-phase *::selection,
.budget-phases .tabs-controls .budget-prev-phase-disabled *::selection,
.budget-phases .tabs-controls .budget-next-phase-disabled *::selection,
.jumbo-budget .button *::selection,
.categories a:hover *::selection,
.categories a.is-active *::selection,
.geozone a:hover *::selection,
.geozone a.is-active *::selection,
.pagination .current *::selection,
.budgets-index > header *::selection,
.budget-group-show > header *::selection,
.budget-groups-index > header *::selection,
.budget-ballot-show > header *::selection,
.budget-header *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.proposal-featured .supports .button-support:hover, .poll-gallery .zoom-link, .locale .locale-form select option, .account-menu.menu .is-dropdown-submenu, .figure-card figcaption span {
  background-color: #ffffff;
  color: #2e2e2e;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:focus, .button:hover {
  text-decoration: none !important;
}
[disabled].button {
  opacity: 0.25;
  cursor: not-allowed;
}
.button::selection,
.button *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.button:hover, .button:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.button:hover::selection,
.button:hover *::selection, .button:focus::selection,
.button:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.budgets-index > header, .budget-group-show > header, .budget-groups-index > header, .budget-ballot-show > header, .budget-header {
  position: relative;
}
.budgets-index > header::before, .budget-group-show > header::before, .budget-groups-index > header::before, .budget-ballot-show > header::before, .budget-header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .budgets-index > header::before, .budget-group-show > header::before, .budget-groups-index > header::before, .budget-ballot-show > header::before, .budget-header::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.budgets-index > header h1, .budget-group-show > header h1, .budget-groups-index > header h1, .budget-ballot-show > header h1, .budget-header h1 {
  font-size: 3.75rem;
  padding: 1.5rem 0;
}
.budgets-index > header h1, .budget-group-show > header h1, .budget-groups-index > header h1, .budget-ballot-show > header h1, .budget-header h1,
.budgets-index > header h2,
.budget-group-show > header h2,
.budget-groups-index > header h2,
.budget-ballot-show > header h2,
.budget-header h2,
.budgets-index > header p,
.budget-group-show > header p,
.budget-groups-index > header p,
.budget-ballot-show > header p,
.budget-header p,
.budgets-index > header a,
.budget-group-show > header a,
.budget-groups-index > header a,
.budget-ballot-show > header a,
.budget-header a,
.budgets-index > header .back,
.budget-group-show > header .back,
.budget-groups-index > header .back,
.budget-ballot-show > header .back,
.budget-header .back,
.budgets-index > header .icon-angle-left,
.budget-group-show > header .icon-angle-left,
.budget-groups-index > header .icon-angle-left,
.budget-ballot-show > header .icon-angle-left,
.budget-header .icon-angle-left,
.budgets-index > header .description,
.budget-group-show > header .description,
.budget-groups-index > header .description,
.budget-ballot-show > header .description,
.budget-header .description {
  color: inherit;
}
.budgets-index > header a, .budget-group-show > header a, .budget-groups-index > header a, .budget-ballot-show > header a, .budget-header a {
  text-decoration: underline;
}

.budget-phases .tabs-controls .budget-prev-phase,
.budget-phases .tabs-controls .budget-next-phase,
.budget-phases .tabs-controls .budget-prev-phase-disabled,
.budget-phases .tabs-controls .budget-next-phase-disabled, .jumbo-budget .button, .categories a:hover, .categories a.is-active,
.geozone a:hover,
.geozone a.is-active, .pagination .current, .budgets-index > header, .budget-group-show > header, .budget-groups-index > header, .budget-ballot-show > header, .budget-header {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.budget-phases .tabs-controls .budget-prev-phase::selection,
.budget-phases .tabs-controls .budget-next-phase::selection,
.budget-phases .tabs-controls .budget-prev-phase-disabled::selection,
.budget-phases .tabs-controls .budget-next-phase-disabled::selection, .jumbo-budget .button::selection, .categories a:hover::selection, .categories a.is-active::selection,
.geozone a:hover::selection,
.geozone a.is-active::selection, .pagination .current::selection, .budgets-index > header::selection, .budget-group-show > header::selection, .budget-groups-index > header::selection, .budget-ballot-show > header::selection, .budget-header::selection,
.budget-phases .tabs-controls .budget-prev-phase *::selection,
.budget-phases .tabs-controls .budget-next-phase *::selection,
.budget-phases .tabs-controls .budget-prev-phase-disabled *::selection,
.budget-phases .tabs-controls .budget-next-phase-disabled *::selection,
.jumbo-budget .button *::selection,
.categories a:hover *::selection,
.categories a.is-active *::selection,
.geozone a:hover *::selection,
.geozone a.is-active *::selection,
.pagination .current *::selection,
.budgets-index > header *::selection,
.budget-group-show > header *::selection,
.budget-groups-index > header *::selection,
.budget-ballot-show > header *::selection,
.budget-header *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.proposal-featured .supports .button-support:hover, .poll-gallery .zoom-link, .locale .locale-form select option, .account-menu.menu .is-dropdown-submenu, .figure-card figcaption span {
  background-color: #ffffff;
  color: #2e2e2e;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:focus, .button:hover {
  text-decoration: none !important;
}
[disabled].button {
  opacity: 0.25;
  cursor: not-allowed;
}
.button::selection,
.button *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.button:hover, .button:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.button:hover::selection,
.button:hover *::selection, .button:focus::selection,
.button:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.budget-phases .tabs-controls .budget-prev-phase,
.budget-phases .tabs-controls .budget-next-phase,
.budget-phases .tabs-controls .budget-prev-phase-disabled,
.budget-phases .tabs-controls .budget-next-phase-disabled, .jumbo-budget .button, .categories a:hover, .categories a.is-active,
.geozone a:hover,
.geozone a.is-active, .pagination .current, .budgets-index > header, .budget-group-show > header, .budget-groups-index > header, .budget-ballot-show > header, .budget-header {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.budget-phases .tabs-controls .budget-prev-phase::selection,
.budget-phases .tabs-controls .budget-next-phase::selection,
.budget-phases .tabs-controls .budget-prev-phase-disabled::selection,
.budget-phases .tabs-controls .budget-next-phase-disabled::selection, .jumbo-budget .button::selection, .categories a:hover::selection, .categories a.is-active::selection,
.geozone a:hover::selection,
.geozone a.is-active::selection, .pagination .current::selection, .budgets-index > header::selection, .budget-group-show > header::selection, .budget-groups-index > header::selection, .budget-ballot-show > header::selection, .budget-header::selection,
.budget-phases .tabs-controls .budget-prev-phase *::selection,
.budget-phases .tabs-controls .budget-next-phase *::selection,
.budget-phases .tabs-controls .budget-prev-phase-disabled *::selection,
.budget-phases .tabs-controls .budget-next-phase-disabled *::selection,
.jumbo-budget .button *::selection,
.categories a:hover *::selection,
.categories a.is-active *::selection,
.geozone a:hover *::selection,
.geozone a.is-active *::selection,
.pagination .current *::selection,
.budgets-index > header *::selection,
.budget-group-show > header *::selection,
.budget-groups-index > header *::selection,
.budget-ballot-show > header *::selection,
.budget-header *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.proposal-featured .supports .button-support:hover, .poll-gallery .zoom-link, .locale .locale-form select option, .account-menu.menu .is-dropdown-submenu, .figure-card figcaption span {
  background-color: #ffffff;
  color: #2e2e2e;
}

.view-mode [aria-current]::after, .view-mode .view-card::before, .view-mode .view-list::before, .view-mode.minimal button::before, .view-mode button::before, .ssb-whatsapp_app::before, .ssb-telegram::before, .ssb-facebook::before, .ssb-twitter::before, .in-favor-against .against button:not([disabled])[aria-pressed=true]:hover::before, .in-favor-against .against button:not([disabled])[aria-pressed=true]:active::before, .in-favor-against .against button:not([disabled])[aria-pressed=true]::before, .in-favor-against .against button:not([disabled])[aria-pressed=false]:hover::before, .in-favor-against .against button:not([disabled])[aria-pressed=false]:active::before, .in-favor-against .against button::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=true]:hover::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=true]:active::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=true]::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=false]:hover::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=false]:active::before, .in-favor-against .in-favor button::before, .download-csv-link::before, .comment-header .comments-count::before, .comments-count::before, .sdg-content-menu .homepage-link::before, .sdg-content-menu .goals-link::before, .proposal-new header h1::after, .poll-gallery .orbit-next::before,
.poll-gallery .orbit-previous::before, .management-account-edit-password-manually .show-password::before, .machine-learning-info::before, .locale .locale-form::after, footer a[rel~=external]::after,
footer a:active[rel~=external]::after,
footer a:focus[rel~=external]::after, .debate-new h1::after, .comment-votes .against button[aria-pressed=false]:hover::before, .comment-votes .against button[aria-pressed=true]:not(:hover)::before, .comment-votes .against button::before, .comment-votes .in-favor button[aria-pressed=false]:hover::before, .comment-votes .in-favor button[aria-pressed=true]:not(:hover)::before, .comment-votes .in-favor button::before, .comment-body .status-bar .responses-count .collapse-children::before, .comment-body .status-bar .responses-count .show-children::before, .comment-body .delete-comment::before, .budget-info .supports-info .keep-scrolling::after, .budget-phases .budget-phase .main-link::after, .budget-phases .tabs-controls .budget-next-phase::before,
.budget-phases .tabs-controls .budget-next-phase-disabled::before, .budget-phases .tabs-controls .budget-prev-phase::before,
.budget-phases .tabs-controls .budget-prev-phase-disabled::before, .budget-investment-new h1::after, .my-ballot h2 + *::before, .ballot .button-remove-support::before, .investments-list .supports-and-price::after, .ballot-list li .remove-budget-investment::before, .verify-account .already-verified::before, .permissions-list li.permission-denied::before, .permissions-list li.permission-allowed::before, .notifications.no-notifications::before, .notifications.unread-notifications::after, .notifications.unread-notifications::before, .action .unchecked-link::before, .action .checked-link::before, .poll-more-info-options .document-link > :first-child::before, .jumbo-budget.budget-heading .check-ballot::after, .budget-investment-new .document-fields .js-suggest-image.is-loading::before,
.budget-investment-new .image-fields .js-suggest-image.is-loading::before,
.proposal-new .document-fields .js-suggest-image.is-loading::before,
.proposal-new .image-fields .js-suggest-image.is-loading::before,
.proposal-edit .document-fields .js-suggest-image.is-loading::before,
.proposal-edit .image-fields .js-suggest-image.is-loading::before,
.polls-form .document-fields .js-suggest-image.is-loading::before,
.polls-form .image-fields .js-suggest-image.is-loading::before,
.poll-question-form .document-fields .js-suggest-image.is-loading::before,
.poll-question-form .image-fields .js-suggest-image.is-loading::before,
.legislation-process-new .document-fields .js-suggest-image.is-loading::before,
.legislation-process-new .image-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .document-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .image-fields .js-suggest-image.is-loading::before,
.milestone-new .document-fields .js-suggest-image.is-loading::before,
.milestone-new .image-fields .js-suggest-image.is-loading::before,
.milestone-edit .document-fields .js-suggest-image.is-loading::before,
.milestone-edit .image-fields .js-suggest-image.is-loading::before,
.image-form .document-fields .js-suggest-image.is-loading::before,
.image-form .image-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .document-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .image-fields .js-suggest-image.is-loading::before, .recommendations li::before, .button.upload-document::before, .button.upload-image::before, .relate-content-score button.score-negative::before, .relate-content-score button.score-positive::before, .additional-document-link > :first-child::before, .button.button-oidc::before, .button.button-saml::before, .button.button-wordpress::before, .button.button-google::before, .button.button-facebook::before, .button.button-twitter::before, .proposal-new header h1::before, .debate-new header h1::before, .budget-investment-new header h1::before {
  background: currentcolor;
  content: "" !important;
  display: inline-block;
  height: 1em;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  width: 1em;
}

.sdg-content-menu .homepage-link::before, .sdg-content-menu .goals-link::before {
  font-size: 1.25rem;
  margin-right: 0.625rem;
}

.proposal-new h1, .debate-new h1, .budget-investment-new h1 {
  margin-bottom: 0;
}
.proposal-new header, .debate-new header, .budget-investment-new header {
  position: relative;
  background-color: #4b4f58;
  color: #ffffff;
  background-color: var(--brand-secondary, #4b4f58);
  color: var(--brand-secondary-contrast, #ffffff);
  border: 4px solid #4b4f58;
  border: 4px solid var(--brand-secondary, #4b4f58);
  border-bottom-right-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  margin-top: 3rem;
  padding: 3rem 0;
  position: relative;
}
.proposal-new header::before, .debate-new header::before, .budget-investment-new header::before {
  background-color: inherit;
  content: "";
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100vw;
}
.proposal-new header::selection, .debate-new header::selection, .budget-investment-new header::selection,
.proposal-new header *::selection,
.debate-new header *::selection,
.budget-investment-new header *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.proposal-new header::after, .debate-new header::after, .budget-investment-new header::after {
  display: none;
}
@media print, screen and (min-width: 64em) {
  .proposal-new header, .debate-new header, .budget-investment-new header {
    background-image: linear-gradient(to right, #4b4f58 0, #4b4f58 calc(100% - 7.25rem - 1px), #ffffff calc(100% - 7.25rem), #ffffff 100%);
    background-image: linear-gradient(to right, var(--brand-secondary, #4b4f58) 0, var(--brand-secondary, #4b4f58) calc(100% - 7.25rem - 1px), #ffffff calc(100% - 7.25rem), #ffffff 100%);
    padding-right: 7.25rem;
  }
  .proposal-new header::after, .debate-new header::after, .budget-investment-new header::after {
    background: #ffffff;
    -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% calc(100% + 1px), 0 50%);
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% calc(100% + 1px), 0 50%);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: calc(7.25rem - 6px);
    top: 0;
    width: 3rem;
  }
}
.proposal-new header::before, .debate-new header::before, .budget-investment-new header::before {
  height: calc(100% + 8px);
  top: -4px;
}
.proposal-new header h1, .debate-new header h1, .budget-investment-new header h1 {
  font-size: 2.25rem;
}
.proposal-new header h1::before, .debate-new header h1::before, .budget-investment-new header h1::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l80 0 0-64c0-26.5 21.5-48 48-48s48 21.5 48 48l0 64 80 0c8.8 0 16-7.2 16-16l0-384c0-8.8-7.2-16-16-16L64 48zM0 64C0 28.7 28.7 0 64 0L320 0c35.3 0 64 28.7 64 64l0 384c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64zm88 40c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48zM232 88l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48c0-8.8 7.2-16 16-16zM88 232c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48zm144-16l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48c0-8.8 7.2-16 16-16z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l80 0 0-64c0-26.5 21.5-48 48-48s48 21.5 48 48l0 64 80 0c8.8 0 16-7.2 16-16l0-384c0-8.8-7.2-16-16-16L64 48zM0 64C0 28.7 28.7 0 64 0L320 0c35.3 0 64 28.7 64 64l0 384c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64zm88 40c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48zM232 88l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48c0-8.8 7.2-16 16-16zM88 232c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48zm144-16l48 0c8.8 0 16 7.2 16 16l0 48c0 8.8-7.2 16-16 16l-48 0c-8.8 0-16-7.2-16-16l0-48c0-8.8 7.2-16 16-16z'/%3E%3C/svg%3E");
}
.proposal-new header h1::after, .debate-new header h1::after, .budget-investment-new header h1::after, .proposal-new header h1::before, .debate-new header h1::before, .budget-investment-new header h1::before {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media print, screen and (min-width: 40em) {
  .proposal-new header h1, .debate-new header h1, .budget-investment-new header h1 {
    padding-right: 12.75rem;
  }
  .proposal-new header h1::after, .debate-new header h1::after, .budget-investment-new header h1::after {
    display: block;
    font-size: 5.1rem;
    right: 5.1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .proposal-new header h1, .debate-new header h1, .budget-investment-new header h1 {
    font-size: 2.75rem;
  }
  .proposal-new header h1::after, .debate-new header h1::after, .budget-investment-new header h1::after {
    right: 12.8rem;
  }
  .proposal-new header h1::before, .debate-new header h1::before, .budget-investment-new header h1::before {
    color: #4b4f58;
    color: var(--brand-secondary, #4b4f58);
    display: block;
    font-size: 6rem;
    right: 1.25rem;
  }
}
.proposal-new header h1 span, .debate-new header h1 span, .budget-investment-new header h1 span {
  display: block;
  font-size: 0.75em;
  margin-top: 0.75rem;
}
.proposal-new header a, .debate-new header a, .budget-investment-new header a {
  color: inherit;
  text-decoration: underline;
}

.proposal-form .required-fields, .debate-form .required-fields, .budget-investment-form .required-fields {
  position: relative;
  background: #f5f7fa;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.proposal-form .required-fields::before, .debate-form .required-fields::before, .budget-investment-form .required-fields::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .proposal-form .required-fields::before, .debate-form .required-fields::before, .budget-investment-form .required-fields::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .proposal-form .required-fields::before, .debate-form .required-fields::before, .budget-investment-form .required-fields::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.proposal-form > fieldset > legend, .debate-form > fieldset > legend, .budget-investment-form > fieldset > legend {
  float: left;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.proposal-form > fieldset > legend + *, .debate-form > fieldset > legend + *, .budget-investment-form > fieldset > legend + * {
  clear: left;
}
.proposal-form select, .debate-form select, .budget-investment-form select {
  min-height: 3rem;
}
@media print, screen and (min-width: 40em) {
  .proposal-form select:not(.js-add-language):not(.js-select-language), .debate-form select:not(.js-add-language):not(.js-select-language), .budget-investment-form select:not(.js-add-language):not(.js-select-language) {
    width: 50%;
  }
}
.proposal-form .globalize-languages, .debate-form .globalize-languages, .budget-investment-form .globalize-languages,
.proposal-form .translatable-fields,
.debate-form .translatable-fields,
.budget-investment-form .translatable-fields {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .proposal-form .globalize-languages, .debate-form .globalize-languages, .budget-investment-form .globalize-languages,
  .proposal-form .translatable-fields,
  .debate-form .translatable-fields,
  .budget-investment-form .translatable-fields {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .proposal-form .globalize-languages, .debate-form .globalize-languages, .budget-investment-form .globalize-languages,
  .proposal-form .translatable-fields,
  .debate-form .translatable-fields,
  .budget-investment-form .translatable-fields {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 40em) {
  .proposal-form .globalize-languages, .debate-form .globalize-languages, .budget-investment-form .globalize-languages,
  .proposal-form .translatable-fields,
  .debate-form .translatable-fields,
  .budget-investment-form .translatable-fields {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.proposal-form [type=submit], .debate-form [type=submit], .budget-investment-form [type=submit] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
[data-whatinput=mouse] .proposal-form [type=submit], [data-whatinput=mouse] .debate-form [type=submit], [data-whatinput=mouse] .budget-investment-form [type=submit] {
  outline: 0;
}
.proposal-form [type=submit]:focus, .debate-form [type=submit]:focus, .budget-investment-form [type=submit]:focus, .proposal-form [type=submit]:hover, .debate-form [type=submit]:hover, .budget-investment-form [type=submit]:hover {
  text-decoration: none !important;
}
.proposal-form [type=submit][disabled], .debate-form [type=submit][disabled], .budget-investment-form [type=submit][disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.proposal-form [type=submit]::selection, .debate-form [type=submit]::selection, .budget-investment-form [type=submit]::selection,
.proposal-form [type=submit] *::selection,
.debate-form [type=submit] *::selection,
.budget-investment-form [type=submit] *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.proposal-form [type=submit]:hover, .debate-form [type=submit]:hover, .budget-investment-form [type=submit]:hover, .proposal-form [type=submit]:focus, .debate-form [type=submit]:focus, .budget-investment-form [type=submit]:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.proposal-form [type=submit]:hover::selection, .debate-form [type=submit]:hover::selection, .budget-investment-form [type=submit]:hover::selection,
.proposal-form [type=submit]:hover *::selection,
.debate-form [type=submit]:hover *::selection,
.budget-investment-form [type=submit]:hover *::selection, .proposal-form [type=submit]:focus::selection, .debate-form [type=submit]:focus::selection, .budget-investment-form [type=submit]:focus::selection,
.proposal-form [type=submit]:focus *::selection,
.debate-form [type=submit]:focus *::selection,
.budget-investment-form [type=submit]:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.proposal-form .actions, .debate-form .actions, .budget-investment-form .actions {
  border: 6px solid #dee0e3;
  border-radius: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .proposal-form .actions, .debate-form .actions, .budget-investment-form .actions {
    width: 75%;
  }
}
.proposal-form .actions label, .debate-form .actions label, .budget-investment-form .actions label {
  margin-left: auto;
  margin-right: auto;
}

.view-mode [aria-current]::after, .view-mode .view-card::before, .view-mode .view-list::before, .view-mode.minimal button::before, .view-mode button::before, .ssb-whatsapp_app::before, .ssb-telegram::before, .ssb-facebook::before, .ssb-twitter::before, .in-favor-against .against button:not([disabled])[aria-pressed=true]:hover::before, .in-favor-against .against button:not([disabled])[aria-pressed=true]:active::before, .in-favor-against .against button:not([disabled])[aria-pressed=true]::before, .in-favor-against .against button:not([disabled])[aria-pressed=false]:hover::before, .in-favor-against .against button:not([disabled])[aria-pressed=false]:active::before, .in-favor-against .against button::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=true]:hover::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=true]:active::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=true]::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=false]:hover::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=false]:active::before, .in-favor-against .in-favor button::before, .download-csv-link::before, .comment-header .comments-count::before, .comments-count::before, .sdg-content-menu .homepage-link::before, .sdg-content-menu .goals-link::before, .proposal-new header h1::after, .poll-gallery .orbit-next::before,
.poll-gallery .orbit-previous::before, .management-account-edit-password-manually .show-password::before, .machine-learning-info::before, .locale .locale-form::after, footer a[rel~=external]::after,
footer a:active[rel~=external]::after,
footer a:focus[rel~=external]::after, .debate-new h1::after, .comment-votes .against button[aria-pressed=false]:hover::before, .comment-votes .against button[aria-pressed=true]:not(:hover)::before, .comment-votes .against button::before, .comment-votes .in-favor button[aria-pressed=false]:hover::before, .comment-votes .in-favor button[aria-pressed=true]:not(:hover)::before, .comment-votes .in-favor button::before, .comment-body .status-bar .responses-count .collapse-children::before, .comment-body .status-bar .responses-count .show-children::before, .comment-body .delete-comment::before, .budget-info .supports-info .keep-scrolling::after, .budget-phases .budget-phase .main-link::after, .budget-phases .tabs-controls .budget-next-phase::before,
.budget-phases .tabs-controls .budget-next-phase-disabled::before, .budget-phases .tabs-controls .budget-prev-phase::before,
.budget-phases .tabs-controls .budget-prev-phase-disabled::before, .budget-investment-new h1::after, .my-ballot h2 + *::before, .ballot .button-remove-support::before, .investments-list .supports-and-price::after, .ballot-list li .remove-budget-investment::before, .verify-account .already-verified::before, .permissions-list li.permission-denied::before, .permissions-list li.permission-allowed::before, .notifications.no-notifications::before, .notifications.unread-notifications::after, .notifications.unread-notifications::before, .action .unchecked-link::before, .action .checked-link::before, .poll-more-info-options .document-link > :first-child::before, .jumbo-budget.budget-heading .check-ballot::after, .budget-investment-new .document-fields .js-suggest-image.is-loading::before,
.budget-investment-new .image-fields .js-suggest-image.is-loading::before,
.proposal-new .document-fields .js-suggest-image.is-loading::before,
.proposal-new .image-fields .js-suggest-image.is-loading::before,
.proposal-edit .document-fields .js-suggest-image.is-loading::before,
.proposal-edit .image-fields .js-suggest-image.is-loading::before,
.polls-form .document-fields .js-suggest-image.is-loading::before,
.polls-form .image-fields .js-suggest-image.is-loading::before,
.poll-question-form .document-fields .js-suggest-image.is-loading::before,
.poll-question-form .image-fields .js-suggest-image.is-loading::before,
.legislation-process-new .document-fields .js-suggest-image.is-loading::before,
.legislation-process-new .image-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .document-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .image-fields .js-suggest-image.is-loading::before,
.milestone-new .document-fields .js-suggest-image.is-loading::before,
.milestone-new .image-fields .js-suggest-image.is-loading::before,
.milestone-edit .document-fields .js-suggest-image.is-loading::before,
.milestone-edit .image-fields .js-suggest-image.is-loading::before,
.image-form .document-fields .js-suggest-image.is-loading::before,
.image-form .image-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .document-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .image-fields .js-suggest-image.is-loading::before, .recommendations li::before, .button.upload-document::before, .button.upload-image::before, .relate-content-score button.score-negative::before, .relate-content-score button.score-positive::before, .additional-document-link > :first-child::before, .button.button-oidc::before, .button.button-saml::before, .button.button-wordpress::before, .button.button-google::before, .button.button-facebook::before, .button.button-twitter::before, .proposal-new header h1::before, .debate-new header h1::before, .budget-investment-new header h1::before {
  background: currentcolor;
  content: "" !important;
  display: inline-block;
  height: 1em;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  width: 1em;
}

.sdg-content-menu .homepage-link::before, .sdg-content-menu .goals-link::before {
  font-size: 1.25rem;
  margin-right: 0.625rem;
}

.sdg-tag-list .sdg-goal-tag-list, .sdg-goal-tag-cloud .sdg-goal-tag-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: -1ch 0 0.5rem -1ch;
  margin-left: calc(-1 * Max(4.5px, 1ch));
  margin-top: calc(-1 * Max(4.5px, 1ch));
  width: calc(100% + 1ch);
  width: calc(100% + Max(4.5px, 1ch));
}
.sdg-tag-list .sdg-goal-tag-list > *, .sdg-goal-tag-cloud .sdg-goal-tag-list > * {
  margin-bottom: 0;
  margin-left: 1ch;
  margin-left: Max(4.5px, 1ch);
  margin-right: 0;
  margin-top: 1ch;
  margin-top: Max(4.5px, 1ch);
}
.sdg-tag-list .sdg-goal-tag-list a:hover .sdg-goal-icon, .sdg-goal-tag-cloud .sdg-goal-tag-list a:hover .sdg-goal-icon {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.sdg-tag-list .sdg-goal-tag-list a:focus, .sdg-goal-tag-cloud .sdg-goal-tag-list a:focus {
  box-shadow: none;
  outline: none;
}
.sdg-tag-list .sdg-goal-tag-list a:focus img, .sdg-goal-tag-cloud .sdg-goal-tag-list a:focus img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-tag-list .sdg-goal-tag-list a:focus-visible, .sdg-goal-tag-cloud .sdg-goal-tag-list a:focus-visible {
  box-shadow: none;
  outline: none;
}
.sdg-tag-list .sdg-goal-tag-list a:focus-visible img, .sdg-goal-tag-cloud .sdg-goal-tag-list a:focus-visible img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-tag-list .sdg-goal-tag-list a:focus:not(:focus-visible) img, .sdg-goal-tag-cloud .sdg-goal-tag-list a:focus:not(:focus-visible) img {
  box-shadow: none;
  outline: none;
}
.sdg-tag-list .sdg-goal-tag-list a:active, .sdg-goal-tag-cloud .sdg-goal-tag-list a:active {
  box-shadow: none;
  outline: none;
}
.sdg-tag-list .sdg-goal-tag-list a:active img, .sdg-goal-tag-cloud .sdg-goal-tag-list a:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-tag-list .sdg-goal-tag-list a:focus:active, .sdg-goal-tag-cloud .sdg-goal-tag-list a:focus:active {
  box-shadow: none;
  outline: none;
}
.sdg-tag-list .sdg-goal-tag-list a:focus:active img, .sdg-goal-tag-cloud .sdg-goal-tag-list a:focus:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}

.sdg-related-list-selector .goal-list, .sdg-help-content > .tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: -0.5% 0 0.5rem -0.5%;
  margin-left: calc(-1 * Max(4.5px, 0.5%));
  margin-top: calc(-1 * Max(4.5px, 0.5%));
  width: 100.5%;
  width: calc(100% + Max(4.5px, 0.5%));
}
.sdg-related-list-selector .goal-list > *, .sdg-help-content > .tabs > * {
  margin-bottom: 0;
  margin-left: 0.5%;
  margin-left: Max(4.5px, 0.5%);
  margin-right: 0;
  margin-top: 0.5%;
  margin-top: Max(4.5px, 0.5%);
}
.sdg-related-list-selector .goal-list a:hover .sdg-goal-icon, .sdg-help-content > .tabs a:hover .sdg-goal-icon {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.sdg-related-list-selector .goal-list a:focus, .sdg-help-content > .tabs a:focus {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list a:focus img, .sdg-help-content > .tabs a:focus img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list a:focus-visible, .sdg-help-content > .tabs a:focus-visible {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list a:focus-visible img, .sdg-help-content > .tabs a:focus-visible img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list a:focus:not(:focus-visible) img, .sdg-help-content > .tabs a:focus:not(:focus-visible) img {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list a:active, .sdg-help-content > .tabs a:active {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list a:active img, .sdg-help-content > .tabs a:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list a:focus:active, .sdg-help-content > .tabs a:focus:active {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list a:focus:active img, .sdg-help-content > .tabs a:focus:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list label, .sdg-help-content > .tabs label,
.sdg-related-list-selector .goal-list li,
.sdg-help-content > .tabs li {
  min-width: 45px;
  width: 5.3823529412%;
}
.sdg-related-list-selector .goal-list label:hover, .sdg-help-content > .tabs label:hover,
.sdg-related-list-selector .goal-list li:hover,
.sdg-help-content > .tabs li:hover {
  cursor: pointer;
}
.sdg-related-list-selector .goal-list label .sdg-goal-icon, .sdg-help-content > .tabs label .sdg-goal-icon,
.sdg-related-list-selector .goal-list li .sdg-goal-icon,
.sdg-help-content > .tabs li .sdg-goal-icon {
  width: 100%;
}
.sdg-related-list-selector .goal-list label a:focus, .sdg-help-content > .tabs label a:focus,
.sdg-related-list-selector .goal-list li a:focus,
.sdg-help-content > .tabs li a:focus {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list label a:focus img, .sdg-help-content > .tabs label a:focus img,
.sdg-related-list-selector .goal-list li a:focus img,
.sdg-help-content > .tabs li a:focus img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list label a:focus-visible, .sdg-help-content > .tabs label a:focus-visible,
.sdg-related-list-selector .goal-list li a:focus-visible,
.sdg-help-content > .tabs li a:focus-visible {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list label a:focus-visible img, .sdg-help-content > .tabs label a:focus-visible img,
.sdg-related-list-selector .goal-list li a:focus-visible img,
.sdg-help-content > .tabs li a:focus-visible img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list label a:focus:not(:focus-visible) img, .sdg-help-content > .tabs label a:focus:not(:focus-visible) img,
.sdg-related-list-selector .goal-list li a:focus:not(:focus-visible) img,
.sdg-help-content > .tabs li a:focus:not(:focus-visible) img {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list label a:active, .sdg-help-content > .tabs label a:active,
.sdg-related-list-selector .goal-list li a:active,
.sdg-help-content > .tabs li a:active {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list label a:active img, .sdg-help-content > .tabs label a:active img,
.sdg-related-list-selector .goal-list li a:active img,
.sdg-help-content > .tabs li a:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list label a:focus:active, .sdg-help-content > .tabs label a:focus:active,
.sdg-related-list-selector .goal-list li a:focus:active,
.sdg-help-content > .tabs li a:focus:active {
  box-shadow: none;
  outline: none;
}
.sdg-related-list-selector .goal-list label a:focus:active img, .sdg-help-content > .tabs label a:focus:active img,
.sdg-related-list-selector .goal-list li a:focus:active img,
.sdg-help-content > .tabs li a:focus:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}

.sdg-tag-list .sdg-target-tag-list, .tags, .debate .tags,
.proposal .tags,
.budget-investment .tags,
.legislation .tags, .debate-show .tags,
.proposal-show .tags,
.budget-investment-show .tags,
.polls-show .tags,
.draft-panels .tags,
.debate-questions .tags,
.communities-show .tags,
.topic-show .tags,
.milestone-content .tags {
  margin-bottom: 0;
  margin-left: 0;
}
.sdg-tag-list .sdg-target-tag-list li, .tags li, .debate .tags li,
.proposal .tags li,
.budget-investment .tags li,
.legislation .tags li, .debate-show .tags li,
.proposal-show .tags li,
.budget-investment-show .tags li,
.polls-show .tags li,
.draft-panels .tags li,
.debate-questions .tags li,
.communities-show .tags li,
.topic-show .tags li,
.milestone-content .tags li {
  display: inline-block;
  margin-bottom: 0;
}
.sdg-tag-list .sdg-goal-tag-list .more-goals, .tag-cloud a,
.categories a,
.geozone a,
.sidebar-links a, .sdg-tag-list .sdg-target-tag-list a, .tags a, .debate .tags a,
.proposal .tags a,
.budget-investment .tags a,
.legislation .tags a, .debate-show .tags a,
.proposal-show .tags a,
.budget-investment-show .tags a,
.polls-show .tags a,
.draft-panels .tags a,
.debate-questions .tags a,
.communities-show .tags a,
.topic-show .tags a,
.milestone-content .tags a,
.sdg-tag-list .sdg-target-tag-list span,
.tags span,
.debate .tags span,
.proposal .tags span,
.budget-investment .tags span,
.legislation .tags span,
.debate-show .tags span,
.proposal-show .tags span,
.budget-investment-show .tags span,
.polls-show .tags span,
.draft-panels .tags span,
.debate-questions .tags span,
.communities-show .tags span,
.topic-show .tags span,
.milestone-content .tags span {
  background: #ececec;
  border-radius: 0.375rem;
  color: #2e2e2e;
  display: inline-block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  padding: 0.375rem 0.5rem;
  text-decoration: none;
}
.sdg-tag-list .sdg-goal-tag-list .more-goals:hover, .tag-cloud a:hover,
.categories a:hover,
.geozone a:hover,
.sidebar-links a:hover, .sdg-tag-list .sdg-target-tag-list a:hover, .tags a:hover,
.sdg-tag-list .sdg-target-tag-list span:hover,
.tags span:hover {
  background: #e0e0e0;
  text-decoration: none;
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  src: url(/assets/sourcesanspro-light-webfont-82090c4b514375c9ee9dc4db4c0357d7666658954243f07d9fdb3f7bb4158320.eot);
  src: url(/assets/sourcesanspro-light-webfont-82090c4b514375c9ee9dc4db4c0357d7666658954243f07d9fdb3f7bb4158320.eot?#iefix) format("embedded-opentype"), url(/assets/sourcesanspro-light-webfont-97bd84b905541a212a0d6fe938041567264191e88df808af193fc1f9b8edf9d2.woff2) format("woff2"), url(/assets/sourcesanspro-light-webfont-9e9f6c40ff9c2d019fd59424b3ced52a251554edbd04a1c192ee96a80dbc571c.woff) format("woff"), url(/assets/sourcesanspro-light-webfont-c85721436d762f5e0a2d93d4022892308ed2c4b05b1f1729cf50643a26a6b351.ttf) format("truetype"), url(/assets/sourcesanspro-light-webfont-b85afb65b60493bea169de061f3164592cd37d88fd9ed3cfbb77bf34dfd523dd.svg#source_sans_prolight) format("svg");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/sourcesanspro-regular-webfont-05e83f50250fbe0f899965254ac1cf9cf6700ee8abf9e3fb63241ff9acaf29da.eot);
  src: url(/assets/sourcesanspro-regular-webfont-05e83f50250fbe0f899965254ac1cf9cf6700ee8abf9e3fb63241ff9acaf29da.eot?#iefix) format("embedded-opentype"), url(/assets/sourcesanspro-regular-webfont-01328b4fe2249643463876d4b9b5479765d02de0fc033d7a5940b25df72e0b61.woff2) format("woff2"), url(/assets/sourcesanspro-regular-webfont-d42061b5f917600c071fcbf2df2a01cf3f6e4c0eefd212bf330c8a211048bdcf.woff) format("woff"), url(/assets/sourcesanspro-regular-webfont-329b3bd3e614c1d0c73fd032c555f816d92cbf4c6c7da4734262af455c0b79f8.ttf) format("truetype"), url(/assets/sourcesanspro-regular-webfont-47bc9583d462fcab3303905ab006504639a9fff17114dc59a6182d14d8c1f016.svg#source_sans_proregular) format("svg");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(/assets/sourcesanspro-italic-webfont-ae5693c85102e20e751ef4aaa23e633e6a282d5c6a7bf26767d90a999c1dc064.eot);
  src: url(/assets/sourcesanspro-italic-webfont-ae5693c85102e20e751ef4aaa23e633e6a282d5c6a7bf26767d90a999c1dc064.eot?#iefix) format("embedded-opentype"), url(/assets/sourcesanspro-italic-webfont-74b45e6b7fd3aa1a668ba629768431879a71bf9da2294cf7a358fcba26bb9098.woff2) format("woff2"), url(/assets/sourcesanspro-italic-webfont-bc066045e4983a54f077a17b36e84fb393d9a8d9ca006146518326baed20dcb4.woff) format("woff"), url(/assets/sourcesanspro-italic-webfont-3744619ebe1124c18b4a3dc1758b009ee4e23f421e2e7371aa8a726166353226.ttf) format("truetype"), url(/assets/sourcesanspro-italic-webfont-403048090748d7ab8b04a988d9fb67103990905ae05ff08ee22d2860b9cf1072.svg#source_sans_proitalic) format("svg");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/sourcesanspro-bold-webfont-5355d25306728160c6fa6edfc962f3a9788cc1df76a2e2fecb21b00f4b64bc22.eot);
  src: url(/assets/sourcesanspro-bold-webfont-5355d25306728160c6fa6edfc962f3a9788cc1df76a2e2fecb21b00f4b64bc22.eot?#iefix) format("embedded-opentype"), url(/assets/sourcesanspro-bold-webfont-3cdecde5444d8e314cf5c64ca74e94987dd6b9d27f5a6dedd9d5dd90eb920bbf.woff2) format("woff2"), url(/assets/sourcesanspro-bold-webfont-7972b1132d61dd69254e74a514586d975ecf7d4d878bb59d9dfdd189718fe9f9.woff) format("woff"), url(/assets/sourcesanspro-bold-webfont-df4fa506ad370dba5c7dce2cc1754560abe9e4561daee0fd085b76a15ab78e16.ttf) format("truetype"), url(/assets/sourcesanspro-bold-webfont-c0aeeb8df447243c73d236cb7211f3f0d049d2d889aeb8f4b84e97febbcfcdd6.svg#source_sans_probold) format("svg");
}
@font-face {
  font-family: "Lato";
  src: url(/assets/lato-light-fa6709c6e0f190bc71daa5d1a684b3f0b91599da2f70990d4dfcd9a68a7b9afe.eot);
  src: url(/assets/lato-light-fa6709c6e0f190bc71daa5d1a684b3f0b91599da2f70990d4dfcd9a68a7b9afe.eot?#iefix) format("embedded-opentype"), url(/assets/lato-light-f1ce28abc3910e75914f098fdb9ec36a3ec581553e9904284d88aa2842fd3f56.woff2) format("woff2"), url(/assets/lato-light-99cf30604784bbd8f063b87db9f3ba0c7d3782428728a42500d9feacd8dd2bab.woff) format("woff"), url(/assets/lato-light-0c740d9799b6598cb94bcd2a099143f796d265528617c0395a3a0871f6d8150e.ttf) format("truetype"), url(/assets/lato-light-c75a4d73351a556d48a980d7f8a0f026ca4d8ee8796c84599adc480f5875cd63.svg#latolight) format("svg");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url(/assets/lato-regular-35c7c3193667719e2d7dff77a296ddb31a5637e9b26e801daf4523e7557962ac.eot);
  src: url(/assets/lato-regular-35c7c3193667719e2d7dff77a296ddb31a5637e9b26e801daf4523e7557962ac.eot?#iefix) format("embedded-opentype"), url(/assets/lato-regular-aeb61614043ac46d92463c5c15ad7cb79c4cad91c7b2506d34089327667a7137.woff2) format("woff2"), url(/assets/lato-regular-f40835dedc7a7c1c7af916c47fa670f9df990a297237cf8784866ba1ea3e60fc.woff) format("woff"), url(/assets/lato-regular-731295877278fd1a9e47fb042bf1fa6d78d8b620416589bec92db06903c79507.ttf) format("truetype"), url(/assets/lato-regular-a88c9a894b10ccde963725e8b2bbf9821d469bcf8622358d5766bf2cb72f30cb.svg#latoregular) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url(/assets/lato-bold-9d352cd02bb48d81237ae6c15c5361a17b727848ec7697ce3670851d8fde9dc7.eot);
  src: url(/assets/lato-bold-9d352cd02bb48d81237ae6c15c5361a17b727848ec7697ce3670851d8fde9dc7.eot?#iefix) format("embedded-opentype"), url(/assets/lato-bold-9505014e602aac31b05dc1f5429b6329d02d947a995b49e3f5f284916960c5a4.woff2) format("woff2"), url(/assets/lato-bold-eb953793559d9f3eb1706f8fe720de994571146bcc58245c015ee854414afc2e.woff) format("woff"), url(/assets/lato-bold-75b9528462352e976033eb2c332b89a037d55544f2919326fecd13c179848748.ttf) format("truetype"), url(/assets/lato-bold-4d8fcb4ede754e38f38a0990e9d935f256b1e74474a081c96ca6a84f189db847.svg#latobold) format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url(/assets/oswald/oswald-light-5daf1ade0625e60c21dc340e600c8b68c7a15c55b696fec005fd7774120ad3b9.ttf) format("truetype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url(/assets/oswald/oswald-regular-264639732f5adf80fac1e4a9ef3f0eb58e58b5aead07850087662dedeba11b12.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url(/assets/oswald/oswald-bold-adecc04bd3ae99a835a7bae9de0f261fdd5a6da1630daf000602034fb142052b.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url(/assets/oswald/oswald-medium-b0012c21f87120d46a70f61fd79206f486e929a8b08db7d486ff56822a8e7b77.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  src: url(/assets/icons-b37be84cad32d4fea92a3fc3d202db05dbca4eeb12b0286504c919e07b948d55.eot);
  src: url(/assets/icons-b37be84cad32d4fea92a3fc3d202db05dbca4eeb12b0286504c919e07b948d55.eot?#iefix) format("embedded-opentype"), url(/assets/icons-277e2a4b89cbd29bffbb87fb9e2425ead1a7e37d1a27b69d828ea3b831e2247c.woff) format("woff"), url(/assets/icons-57d9a71beb43a0c0f33d2bcf8ffeb5a25bf99946410c002db48e39c968cbdfa5.ttf) format("truetype"), url(/assets/icons-4c12c8c9d553367dcb909f884ef0553c367ec3e6926f3a975b455641bae94ec9.svg#icons) format("svg");
}
@font-face {
  font-display: block;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  src: url(/assets/fontawesome-free/webfonts/fa-solid-900-aa75998623a391e61c6901794ace832e3ecdd288b56d608f21bea0411acc0b8e.woff2) format("woff2"), url(/assets/fontawesome-free/webfonts/fa-solid-900-d2f0593540b0e33ba6de255a54f272d466e31144806956bea8cfdbf7edffc9bd.ttf) format("truetype");
}
@font-face {
  font-display: block;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fontawesome-free/webfonts/fa-regular-400-e3456d1283b9d75337a773dfd147bf908fd02c01b4bf48576d8603a69b13cbe5.woff2) format("woff2"), url(/assets/fontawesome-free/webfonts/fa-regular-400-54cf6086f7bb21f9d072ad494a19b4681fa516dd0a14cee52da01d3651a913a3.ttf) format("truetype");
}
@font-face {
  font-display: block;
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fontawesome-free/webfonts/fa-brands-400-d7236a19bf23cbb2027280e8f51dc99d6c45976a2ed60de73382b034b18a2b68.woff2) format("woff2"), url(/assets/fontawesome-free/webfonts/fa-brands-400-808443ae6c8204395add8543da8a90a60b9376fb0f87ed8e8ea37d109596d805.ttf) format("truetype");
}
[data-icon]::before,
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}

.icon-angle-down::before {
  content: "\f107";
}

.icon-angle-left::before {
  content: "\f104";
}

.icon-angle-right::before {
  content: "\f105";
}

.icon-angle-up::before {
  content: "\f106";
}

.icon-comments::before {
  content: "\f086";
  font-weight: normal;
}

.icon-twitter::before {
  content: "\f099";
}

.icon-calendar::before {
  content: "\f133";
  font-weight: normal;
}

.icon-debates::before {
  content: "\f27a";
}

.icon-unlike::before {
  content: "\f165";
}

.icon-like::before {
  content: "\f164";
}

.icon-check::before {
  content: "\f00c";
}

.icon-edit::before {
  content: "\f303";
}

.icon-user::before {
  content: "\f007";
}

.icon-settings::before {
  content: "\f013";
}

.icon-stats::before {
  content: "\f201";
}

.icon-proposals::before {
  content: "\f0eb";
}

.icon-organizations::before {
  content: "\f0c0";
}

.icon-deleted::before {
  content: "\f05e";
}

.icon-tag::before {
  content: "\f02b";
}

.icon-eye::before {
  content: "\f06e";
  font-weight: normal;
}

.icon-x::before {
  content: "\f00d";
}

.icon-flag::before {
  content: "\f024";
  font-weight: normal;
}

.icon-comment::before {
  content: "\f075";
}

.icon-reply::before {
  content: "\f122";
}

.icon-facebook::before {
  content: "\f39e";
}

.icon-search::before {
  content: "\f002";
}

.icon-external::before {
  content: "\f35d";
}

.icon-video::before {
  content: "\f144";
}

.icon-document::before {
  content: "\f15b";
  font-weight: normal;
}

.icon-print::before {
  content: "\f02f";
}

.icon-box::before {
  content: "\f187";
}

.icon-youtube::before {
  content: "\f167";
}

.icon-letter::before {
  content: "\f0e0";
  font-weight: normal;
}

.icon-circle::before {
  content: "\f111";
}

.icon-circle-o::before {
  content: "\f111";
  font-weight: normal;
}

.icon-help::before {
  content: "\f059";
}

.icon-budget::before {
  content: "\f200";
}

.icon-notification::before {
  content: "\f0f3";
}

.icon-no-notification::before {
  content: "\f0f3";
  font-weight: normal;
}

.icon-zip::before {
  content: "\f1c6";
  font-weight: normal;
}

.icon-banner::before {
  content: "\f00b";
}

.icon-arrow-left::before {
  content: "\f0d9";
}

.icon-arrow-right::before {
  content: "\f0da";
}

.icon-check-circle::before {
  content: "\f058";
}

.icon-arrow-top::before {
  content: "\f0de";
}

.icon-checkmark-circle::before {
  content: "\f058";
  font-weight: normal;
}

.icon-minus-square::before {
  content: "\f146";
  font-weight: normal;
}

.icon-plus-square::before {
  content: "\f0fe";
  font-weight: normal;
}

.icon-expand::before {
  content: "\f31e";
}

.icon-telegram::before {
  content: "\f3fe";
}

.icon-instagram::before {
  content: "\f16d";
}

.icon-image::before {
  content: "\f03e";
  font-weight: normal;
}

.icon-search-plus::before {
  content: "\f00e";
}

.icon-search-minus::before {
  content: "\f010";
}

.icon-calculator::before {
  content: "\f1ec";
}

.icon-map-marker::before {
  content: "\f3c5";
}

.icon-user-plus::before {
  content: "\f234";
}

.icon-file-text-o::before {
  content: "\f15c";
  font-weight: normal;
}

.icon-file-text::before {
  content: "\f15c";
}

.icon-bars::before {
  content: "\f0c9";
}

.icon-facebook::before,
.icon-instagram::before,
.icon-telegram::before,
.icon-twitter::before,
.icon-youtube::before {
  font-family: "Font Awesome 6 Brands";
}

.icon-quote-before::before {
  background-image: url("quote_before_blue.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 60px;
  width: 60px;
}

.icon-quote-after::before {
  background-image: url("quote_after_blue.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 60px;
  width: 60px;
}

.icon-finger::before {
  background-image: url("finger.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 50px;
  width: 50px;
}

.annotator-adder {
  background-image: url(/assets/annotator_adder-a929ec27498ec7744a77f8163bbafb1ac111c0fa8488340f90d5e1da42c3a0d9.png);
  margin-top: -52px;
}

.annotator-hl {
  background: rgba(255, 249, 218, 0.75);
  cursor: pointer;
}
.annotator-hl.weight-1 {
  background: hsla(50, 100%, 93%, 0.5);
}
.annotator-hl.weight-1 .weight-1 {
  background: hsla(50, 100%, 93%, 0.75);
}
.annotator-hl.weight-2 {
  background: hsla(63, 78%, 86%, 0.5);
}
.annotator-hl.weight-2 .weight-2 {
  background: hsla(63, 78%, 86%, 0.75);
}
.annotator-hl.weight-3 {
  background: hsla(52, 100%, 85%, 0.5);
}
.annotator-hl.weight-3 .weight-3 {
  background: hsla(52, 100%, 85%, 0.75);
}
.annotator-hl.weight-4 {
  background: hsla(51, 91%, 75%, 0.5);
}
.annotator-hl.weight-4 .weight-4 {
  background: hsla(51, 91%, 75%, 0.75);
}
.annotator-hl.weight-5 {
  background: hsla(46, 83%, 60%, 0.5);
}
.annotator-hl.weight-5 .weight-5 {
  background: hsla(46, 83%, 60%, 0.5);
}

.current-annotation {
  text-decoration: underline;
}

/* Autocomplete
----------------------------------*/
.ui-autocomplete {
  cursor: default;
  position: absolute;
}

/* Menu
----------------------------------*/
.ui-menu {
  background: #ffffff;
  border: 1px solid #dee0e3;
  display: block;
  font-size: 0.875rem;
  list-style: none;
  padding: 0.375rem 0.5rem;
}
.ui-menu .ui-menu-item .ui-menu-item-wrapper {
  padding: 0.375rem 0.5rem;
  position: relative;
}
.ui-menu .ui-menu-item .ui-state-hover,
.ui-menu .ui-menu-item .ui-state-active {
  background: #ececec;
  border-radius: 0.375rem;
}

*::selection,
* *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}

html {
  font-size: calc(0.25em + max(0.75em, 0.75vw));
}
html.is-reveal-open.zf-has-scroll, html.is-reveal-open {
  overflow: unset;
}

html,
body {
  margin: 0;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1.0625rem;
  min-height: 100%;
}
@media screen and (min-width: 75em) {
  body.public {
    margin-left: calc(50vw - 37.5rem);
    margin-right: calc(50vw - 37.5rem);
  }
}
body > .wrapper {
  flex-grow: 1;
}

main {
  display: block;
}
main.budget-groups-index, main.budget-investment-new, main.debate-new, main.proposal-new, main.sdg-goals-index, main.sdg-goal-show, main.topic-edit, main.topic-new, main.subscriptions-edit {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  main.budget-groups-index, main.budget-investment-new, main.debate-new, main.proposal-new, main.sdg-goals-index, main.sdg-goal-show, main.topic-edit, main.topic-new, main.subscriptions-edit {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: 700;
}

p {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.625rem;
}

a {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
a:hover, a:active, a:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
a:hover, a:active {
  text-decoration: underline;
}

a:focus,
button:focus,
[type=button]:focus,
[type=submit]:focus {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
a:focus-visible,
button:focus-visible,
[type=button]:focus-visible,
[type=submit]:focus-visible {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[type=button]:focus:not(:focus-visible),
[type=submit]:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}
a:active, a:focus:active,
button:active,
button:focus:active,
[type=button]:active,
[type=button]:focus:active,
[type=submit]:active,
[type=submit]:focus:active {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}

.button.medium {
  font-size: 0.875rem;
}

.button.hollow {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  border: 1px solid;
}
.button.hollow::selection,
.button.hollow *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.button.hollow:hover, .button.hollow:focus {
  color: #171717;
  color: var(--anchor-color-hover, #171717);
}

.button.hollow.error {
  border-color: #ebccd1;
  color: #a94442;
}

.clear {
  clear: both;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block;
}

.sidebar-divider {
  border-top: 1px solid #dee0e3;
  margin-top: 1.5rem;
}
.sidebar-divider:first-child {
  margin-top: 0;
}

.margin {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.margin-top {
  margin-top: 1.5rem;
}

.margin-bottom {
  margin-bottom: 1.5rem;
}

.margin-left {
  margin-left: 1.5rem;
}

.margin-right {
  margin-right: 1.5rem;
}

@media print, screen and (min-width: 40em) {
  .float-right-medium {
    float: right !important;
  }
}

.no-margin-top {
  margin-top: -1.5rem;
}

.padding {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.padding-top {
  padding-top: 1.5rem;
}

.light {
  background: #f5f7fa;
}

.highlight {
  background: #e7f2fc;
}

.icon-check {
  color: #46db91;
}

.menu.simple {
  border-bottom: 1px solid #dee0e3;
  clear: both;
  margin-bottom: 0.75rem;
}
.menu.simple li {
  font-size: 1.0625rem;
  margin-bottom: 0;
  margin-right: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .menu.simple li {
    margin-right: 2.25rem;
  }
}
.menu.simple li a {
  color: inherit;
  display: inline-block;
  font-weight: bold;
  position: relative;
  text-align: left;
}
.menu.simple li a:hover {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
}
.menu.simple li + li {
  margin-left: 0;
}
.menu.simple li.is-active {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  border-bottom: 2px solid;
  padding-bottom: 0.0625rem;
}
.menu.simple li.is-active::selection,
.menu.simple li.is-active *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.menu.simple li:not(.is-active) {
  margin-bottom: 0.5rem;
}
.menu.simple h2 {
  font-size: 1.0625rem;
}

.menu.vertical {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}
.menu.vertical li {
  margin-bottom: 1.5rem;
}
.menu.vertical li a {
  color: #4b4f58;
  padding: 0;
}
.menu.vertical li a.is-active {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  font-weight: bold;
}
.menu.vertical li a.is-active::selection,
.menu.vertical li a.is-active *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.menu.vertical li h2 {
  font-size: 1.0625rem;
}
.menu.vertical li.is-active {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  border-bottom: 2px solid;
}
.menu.vertical li.is-active::selection,
.menu.vertical li.is-active *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.menu.vertical.no-margin-top {
  margin-top: 0;
}
.menu.vertical.no-padding-top {
  padding-top: 0;
}

.small {
  font-size: 0.875rem;
}

.relative {
  position: relative;
}

.logo {
  color: #fff;
  display: inline-block;
  font-family: "Lato" !important;
  font-size: 1.5rem;
  font-weight: lighter;
}
@media print, screen and (min-width: 40em) {
  .logo {
    line-height: 3rem;
    margin-top: 0;
  }
}

.close-button {
  top: 0.75rem;
}

.back,
.icon-angle-left {
  clear: both;
  color: #4b4f58;
  display: inline-block;
  padding-right: 0.75rem;
}

.back:not([class^=icon-]) {
  text-decoration: underline;
}

.tabs-content {
  border: 0;
}

.tabs {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin-bottom: 1.5rem;
}
.tabs .tabs-title {
  font-size: 1.0625rem;
  margin-right: 1.5rem;
}
.tabs .tabs-title > a {
  color: #4b4f58;
  position: relative;
}
.tabs .tabs-title > a:hover {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  background: none;
  text-decoration: none;
}
.tabs .tabs-title > a:hover::selection,
.tabs .tabs-title > a:hover *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.tabs .tabs-title > a[aria-selected=true], .tabs .tabs-title > a.is-active {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  border-bottom: 0;
  font-weight: bold;
}
.tabs .tabs-title > a[aria-selected=true]::selection,
.tabs .tabs-title > a[aria-selected=true] *::selection, .tabs .tabs-title > a.is-active::selection,
.tabs .tabs-title > a.is-active *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.tabs .tabs-title > a[aria-selected=true]::after, .tabs .tabs-title > a.is-active::after {
  border-bottom: 2px solid;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}
.tabs h2,
.tabs h3 {
  font-size: 1.0625rem;
}

.button.float-right ~ .button.float-right {
  margin: 0 0.75rem;
}

.pagination li {
  display: inline-block;
}

.truncate-horizontal-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.align-top {
  vertical-align: top;
}

.table {
  display: table;
}

.uppercase {
  text-transform: uppercase;
}

.help-text {
  line-height: 1.25rem;
  margin-top: 0;
}
.help-text strong {
  font-style: normal;
}

@media print, screen and (min-width: 40em) {
  .menu-and-content {
    display: flex;
  }
  .menu-and-content > nav {
    flex: 20%;
    max-width: -webkit-max-content;
    max-width: max-content;
    min-width: 15rem;
  }
  .menu-and-content > nav + * {
    flex: 80%;
    padding: 1.5rem;
  }
  .menu-and-content [for=show_menu] {
    display: none;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .menu-and-content > nav {
    height: 100%;
    left: -15rem;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: left 0.5s ease;
    width: 15rem;
    z-index: 12;
  }
  .menu-and-content > nav + * {
    padding: 1.5rem;
  }
  .menu-and-content [name=show_menu]:checked + nav,
  .menu-and-content > nav:focus-within {
    left: 0;
  }
  .menu-and-content [name=show_menu]:checked + nav + *,
  .menu-and-content > nav:focus-within + * {
    overflow-x: hidden;
  }
  .menu-and-content [name=show_menu]:checked + nav + * [for=show_menu]::after,
  .menu-and-content > nav:focus-within + * [for=show_menu]::after {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1005;
    display: none;
    background-color: rgba(46, 46, 46, 0.45);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    content: "";
    cursor: pointer;
    display: block;
    z-index: 11;
  }
}
.menu-and-content [name=show_menu] {
  display: none;
}

.delete {
  border-bottom: 1px dotted;
  color: #db2e0f;
  font-size: 0.875rem;
}
.delete:hover, .delete:active, .delete:focus {
  border-bottom-color: transparent;
  color: #ab240c;
}

[class^=icon-].delete {
  border: 0;
  font-size: 1.0625rem;
}

body > header,
.wrapper > header {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  body > header,
  .wrapper > header {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  body > header,
  .wrapper > header {
    position: relative;
    z-index: 10;
  }
}
body > header .selected,
.wrapper > header .selected {
  border-bottom: 1px solid #fff;
}
body > header .external-links,
.wrapper > header .external-links {
  padding: 0.375rem 0;
  text-align: center;
}
body > header h1 a,
.wrapper > header h1 a {
  color: inherit;
}

.public > .wrapper > header,
.proposal-dashboard > header {
  position: relative;
}
.public > .wrapper > header::after,
.proposal-dashboard > header::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 1px solid #dee0e3;
}
@media screen and (min-width: 75em) {
  .public > .wrapper > header::after,
  .proposal-dashboard > header::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.public > .wrapper > header > *,
.proposal-dashboard > header > * {
  position: relative;
}
.public > .wrapper > header > *::before,
.proposal-dashboard > header > *::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .public > .wrapper > header > *::before,
  .proposal-dashboard > header > *::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .public > .wrapper > header > *::before,
  .proposal-dashboard > header > *::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.public > .wrapper > header .top-bar,
.proposal-dashboard > header .top-bar {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--main-header, var(--brand, #2e2e2e));
  color: var(--main-header-contrast, var(--brand-contrast, #ffffff));
}
.public > .wrapper > header .top-bar::selection,
.public > .wrapper > header .top-bar *::selection,
.proposal-dashboard > header .top-bar::selection,
.proposal-dashboard > header .top-bar *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

@media screen and (min-width: 75em) {
  .proposal-dashboard > header {
    margin-left: calc(50vw - 37.5rem);
    margin-right: calc(50vw - 37.5rem);
  }
}

.top-bar {
  align-items: center;
  display: flex;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
@media print, screen and (max-width: 39.99875em) {
  .top-bar {
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
  .top-bar .responsive-menu {
    width: 100%;
  }
  .top-bar .responsive-menu a {
    display: inline-block;
  }
  .top-bar [data-responsive-toggle] {
    flex-grow: 1000;
  }
}
.top-bar h1 {
  flex-grow: 1;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.top-bar h1 a img {
  height: 3rem;
  margin: 0;
  width: auto;
}
@media print, screen and (min-width: 40em) {
  .top-bar h1 a img {
    height: auto;
  }
}

.dropdown.menu > li a {
  background: none;
}
.dropdown.menu > li.is-active > a {
  color: inherit;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  border-top-color: currentcolor;
}

.top-links {
  background-color: #4b4f58;
  color: #ffffff;
  background-color: var(--top-links, var(--brand-secondary, #4b4f58));
  color: var(--top-links-contrast, var(--brand-secondary-contrast, #ffffff));
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.top-links::selection,
.top-links *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.top-links > :first-child {
  flex-grow: 1;
}
.top-links a {
  color: inherit;
  margin: 0 0.375rem;
}
.top-links a:hover {
  text-decoration: underline;
}
.top-links ul {
  margin-bottom: 0;
}
.top-links li {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .top-links li {
    display: inline-block;
  }
  .top-links li::after {
    content: "|";
  }
  .top-links li:last-child::after {
    content: none;
  }
}

.submenu {
  border-bottom: 1px solid #dee0e3;
  clear: both;
  margin-bottom: 0.75rem;
}
.submenu a {
  color: inherit;
  display: inline-block;
  font-weight: bold;
  margin-right: 0.75rem;
  position: relative;
  text-align: left;
}
.submenu a:hover {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
}
@media print, screen and (min-width: 40em) {
  .submenu a {
    margin-right: 1.5rem;
  }
}
.submenu .is-active {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  border-bottom: 2px solid;
}
.submenu .is-active::selection,
.submenu .is-active *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.submenu .is-active:hover {
  text-decoration: none;
}
.submenu h2 {
  font-size: 1.0625rem;
}

.search-form-header [type=text] {
  max-width: none;
}

.footer {
  background-color: #ffffff;
  color: #2e2e2e;
  background-color: var(--footer, #ffffff);
  color: var(--footer-contrast, #2e2e2e);
  clear: both;
  margin-top: 3rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.public .footer {
  position: relative;
}
.public .footer::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .public .footer::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}

.categories a,
.geozone a {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  background: #e7f2fc;
}
.sidebar-title {
  border-top: 2px solid #2e2e2e;
  border-top: 2px solid var(--brand, #2e2e2e);
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  margin: -1px 0 0.75rem;
  padding-top: 0.375rem;
  text-transform: uppercase;
}

.auth-page .cancel-button {
  cursor: pointer;
}
.auth-page .cancel-button:hover, .auth-page .cancel-button:active, .auth-page .cancel-button:focus {
  text-decoration: underline;
}
.auth-page .footer {
  margin-top: 0;
}

.auth-image {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  background-repeat: no-repeat;
  background-size: cover;
}
.auth-image::selection,
.auth-image *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
@media print, screen and (min-width: 40em) {
  .auth-image {
    min-height: 63rem;
  }
}
.auth-image h1 {
  margin-top: 1.5rem;
}
.auth-image h1 a {
  color: inherit;
  display: block;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .auth-image h1 a {
    display: inline-block;
    text-align: left;
  }
}

@media print, screen and (min-width: 40em) {
  .auth-form {
    padding-top: 6rem;
  }
}
.auth-form p,
.auth-form a,
.auth-form .checkbox {
  font-size: 0.875rem;
}

.auth-divider {
  border-top: 1px solid #dee0e3;
  margin-top: 2.25rem;
  text-align: center;
}
.auth-divider span {
  background: #ffffff;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  font-weight: bold;
  padding: 0 0.75rem;
  position: relative;
  top: -0.75rem;
}

form label {
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.5rem;
}
form .checkbox-label {
  display: table;
}
form fieldset legend {
  font-weight: bold;
}
form [type=radio] {
  vertical-align: top;
}
form [type=radio] + label {
  font-weight: normal;
}
form [type=radio]:checked + label {
  font-weight: bold;
}
form [type]:not([type=button], [type=checkbox], [type=file], [type=radio], [type=submit]) {
  background: #f8f8f8;
  height: 3rem;
  margin-bottom: 1rem;
}
form [type]:not([type=button], [type=checkbox], [type=file], [type=radio], [type=submit]).error {
  margin-bottom: 0.0625rem;
}
form [type]:not([type=button], [type=checkbox], [type=file], [type=radio], [type=submit]):disabled {
  background-color: #e6e6e6;
}
form [type=checkbox] + label,
form [type=radio] + label {
  margin-right: 0;
}
form [type=file] {
  margin: 0.75rem 0 0.75rem 0.375rem;
}
form .cke {
  margin-bottom: 1.5rem;
}
form .html-area:not(.form-error) {
  height: 272px;
  margin-bottom: 1.5rem;
}
form .html-area:not(.form-error).admin {
  height: 572px;
}
form .checkbox,
form .radio {
  font-weight: normal;
  line-height: 1.5rem;
  vertical-align: middle;
}

.input-group .input-group-button {
  padding-bottom: 1rem;
  vertical-align: top;
}

.disabled {
  color: #4b4f58;
}

.button.small.success {
  margin-left: 0.75rem;
}
.button.small.success.no-margin {
  margin-left: 0;
}

.field {
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 40em) {
  .field {
    margin-bottom: 0;
  }
}
.field a {
  color: #db2e0f;
  line-height: 3rem;
}
.field a span {
  text-decoration: underline;
}
.field a .icon-x {
  line-height: 0;
  text-decoration: none;
  vertical-align: sub;
}
.field a:active, .field a:focus, .field a:hover {
  text-decoration: none;
}

.translatable-fields.highlight {
  display: inline-block;
  padding-top: 1.5rem;
  width: 100%;
}

.callout-slide {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: slide;
          animation-name: slide;
}

@-webkit-keyframes slide {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slide {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.notice-container {
  min-width: 18rem;
  right: 24px;
  top: 24px;
}
@media print, screen and (min-width: 40em) {
  .notice-container {
    position: absolute;
  }
}
.notice-container .notice {
  height: 6rem;
}
.notice-container .notice .notice-text {
  width: 95%;
}

.callout {
  font-size: 0.875rem;
  overflow: hidden;
}
.callout a:not(.button) {
  font-weight: bold;
  text-decoration: underline;
}
.callout.success, .callout.notice {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.callout.primary {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.callout.warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.callout.alert, .callout.error {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.callout .close {
  text-decoration: none !important;
}
.callout .button {
  margin-bottom: 0;
}

.no-error {
  background: #dff0d8;
  color: #3c763d;
}

.error {
  background: #f2dede;
  color: #a94442;
  display: inline-block;
  margin: 0 0.375rem;
}
.error a {
  color: #a94442;
}

.callout.highlight, .callout.light {
  border: 0;
}

.account select {
  height: 3rem;
  margin-right: 0.75rem;
}
.account .final-votes-info {
  background: #fcf8e3;
  border: 1px solid #faebcc;
  color: #8a6d3b;
  margin-top: 1.5rem;
  padding: 0.75rem;
}
.account .final-votes-info ul li {
  margin: 0.75rem 0;
}
.account .final-votes-info .icon-box {
  color: #d4a26d;
  font-size: 7.5rem;
  line-height: 7.5rem;
  vertical-align: top;
}
.account .final-votes-info button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.account .final-votes-info button:hover, .account .final-votes-info button:active, .account .final-votes-info button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.account .final-votes-info button:hover, .account .final-votes-info button:active {
  text-decoration: underline;
}

.avatar,
.admin-avatar,
.moderator-avatar,
.initialjs-avatar {
  border-radius: 62.5rem;
  position: relative;
}

.author-deleted,
.user-deleted {
  color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  font-size: 2rem;
  height: 2rem;
  line-height: 2rem;
  vertical-align: top;
}

.notifications-list {
  position: relative;
}
.notifications-list::before {
  background: #dee0e3;
  content: "";
  height: 100%;
  left: 7px;
  position: absolute;
  top: 2px;
  width: 2px;
}

.notification {
  border: 1px solid #dee0e3;
  display: block;
  margin-bottom: 0.375rem;
  margin-left: 1.5rem;
  padding: 0.75rem 1.5rem;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .notification .mark-notification {
    color: #2e2e2e;
    color: var(--anchor-color, var(--brand, #2e2e2e));
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 12px;
  }
  .notification .mark-notification:hover, .notification .mark-notification:active, .notification .mark-notification:focus {
    color: black;
    color: var(--anchor-color-hover, black);
  }
}
.notification.unread {
  background: #f3f8fd;
  border: 1px solid #e7f2fc;
}
.notification.unread:hover {
  background: #e7f2fc;
}
.notification .notification-link {
  color: inherit;
  display: inline-block;
}
.notification .notification-link:hover {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
}
.notification:hover a {
  text-decoration: none;
}
.notification:hover::before {
  content: "C";
}
.notification::before {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  background: #ffffff;
  content: "M";
  font-family: "icons" !important;
  font-size: 0.875rem;
  height: 1.25rem;
  left: -24px;
  line-height: 1.25rem;
  position: absolute;
  text-align: center;
  width: 1.25rem;
}
.notification::before::selection,
.notification::before *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.notification p {
  margin-bottom: 0;
  max-width: 80%;
}
.notification .time {
  color: #4b4f58;
  font-size: 0.875rem;
}

.map {
  height: 350px;
  width: 100%;
}
.map .map-marker {
  left: 50%;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  visibility: visible;
}
.map .map-marker .map-icon {
  background: #00cae9;
  border-radius: 50% 50% 50% 0;
  height: 30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 30px;
}
.map .map-marker .map-icon::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 14px;
  margin: 8px 0 0 8px;
  position: absolute;
  width: 14px;
}

.map-marker {
  visibility: hidden;
}

.level-1,
.level-2,
.level-3,
.level-4,
.level-5,
.is-author,
.is-association {
  color: #000;
}

.is-author {
  background: #00a5f1;
}

.is-association {
  background: #e38d83;
}

.level-1 {
  background: #1abc9c;
}

.level-2,
.level-3,
.level-4 {
  background: #43ac6a;
}

.level-5 {
  background: #f08a24;
}

table {
  border: #dee0e3;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
table th {
  background: #f8f9fb;
}
table tr td {
  line-height: 1.5rem;
  padding: 0.75rem 0.375rem;
}
table tr:nth-child(odd) {
  background: #ffffff;
}
table tr:nth-child(even) {
  background: #fcfefd;
}
table .button {
  margin-bottom: 0;
}

@media print, screen and (max-width: 63.99875em) {
  .table-for-mobile th,
  .table-for-mobile td {
    display: block;
    text-align: left;
  }
}

.button.button-twitter,
.button.button-facebook,
.button.button-google,
.button.button-wordpress,
.button.button-saml,
.button.button-oidc {
  color: inherit;
  font-weight: bold;
}
.button.button-twitter::before,
.button.button-facebook::before,
.button.button-google::before,
.button.button-wordpress::before,
.button.button-saml::before,
.button.button-oidc::before {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}

.button.button-twitter {
  background: #ecf7fc;
  border-left: 3px solid #45b0e3;
}
.button.button-twitter::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
}
.button.button-twitter::before {
  color: #45b0e3;
}

.button.button-facebook {
  background: #ebeef4;
  border-left: 3px solid #3b5998;
}
.button.button-facebook::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z'/%3E%3C/svg%3E");
}
.button.button-facebook::before {
  color: #3b5998;
}

.button.button-google {
  background: #fcedea;
  border-left: 3px solid #de4c34;
}
.button.button-google::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 488 512'%3E%3Cpath d='M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 488 512'%3E%3Cpath d='M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z'/%3E%3C/svg%3E");
}
.button.button-google::before {
  color: #de4c34;
}

.button.button-wordpress {
  background: #dcdde3;
  border-left: 3px solid #2f2f33;
}
.button.button-wordpress::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z'/%3E%3C/svg%3E");
}
.button.button-wordpress::before {
  color: #2f2f33;
}

.button.button-saml {
  background: #eafee9;
  border-left: 3px solid #3b9857;
}
.button.button-saml::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M144 144l0 48 160 0 0-48c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192l0-48C80 64.5 144.5 0 224 0s144 64.5 144 144l0 48 16 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 256c0-35.3 28.7-64 64-64l16 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M144 144l0 48 160 0 0-48c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192l0-48C80 64.5 144.5 0 224 0s144 64.5 144 144l0 48 16 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 256c0-35.3 28.7-64 64-64l16 0z'/%3E%3C/svg%3E");
}
.button.button-saml::before {
  color: #3b9857;
}

.button.button-oidc {
  background: #fdf9f1;
  border-left: 3px solid #f7931e;
}
.button.button-oidc::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z'/%3E%3C/svg%3E");
}
.button.button-oidc::before {
  color: #f7931e;
}

@media print, screen and (min-width: 40em) {
  .verification .left + .left {
    margin-left: 0.75rem;
  }
}
.verification .date-of-birth select {
  float: left;
  width: 30%;
}
@media print, screen and (min-width: 40em) {
  .verification .date-of-birth select {
    width: 25%;
  }
}
.verification .progress {
  height: 4.5rem;
}
@media print, screen and (min-width: 40em) {
  .verification .progress {
    height: 3rem;
  }
}
.verification .progress.success .meter {
  float: none;
}
.verification .verification-step {
  background: #f6f6f6;
  font-weight: bold;
  line-height: 1.25rem;
  padding-top: 0.375rem;
  text-transform: uppercase;
  vertical-align: top;
}
@media print, screen and (min-width: 40em) {
  .verification .verification-step {
    line-height: 3rem;
    padding: 0;
  }
}
.verification .verification-step .number {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .verification .verification-step .number {
    background-color: #fff;
    border-radius: 1.875rem;
    color: #43ac6a;
    display: inline-block;
    height: 1.875rem;
    line-height: 1.875rem;
    vertical-align: middle;
    width: 1.875rem;
  }
}
.verification .verification-step.is-active {
  background: #43ac6a;
  color: #fff;
}
.verification .button + form {
  display: inline-block;
  margin-left: 0.75rem;
}
.verification .verification-list {
  font-size: 0.8125rem;
  list-style-type: none;
  margin-left: 0;
}
.verification .verification-list span {
  display: inline-block;
  min-width: 18rem;
}

.verification-step .completed {
  background: #43ac6a;
  color: rgba(255, 255, 255, 0.5);
}
.verification-step .completed .number {
  opacity: 0.5;
}

.verify {
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}
.verify h1 {
  color: #46db91;
}
.verify h1 .icon-check {
  line-height: 1.875rem;
  vertical-align: middle;
}
.verify .letter-divider {
  border-top: 1px solid #ddd;
  clear: both;
  height: 0;
  margin: 1.5rem 0;
  position: relative;
}
.verify .letter-divider .icon-letter {
  background: #ffffff;
  color: #31708f;
  font-size: 1.5rem;
  margin-left: -27px;
  padding: 0 0.75rem;
  position: absolute;
  top: -12px;
}

.comments {
  padding-bottom: 6rem;
}
.comments h2 {
  font-weight: bold;
  margin: 0;
}
.comments h2 span {
  font-size: 1.125rem;
  font-weight: normal;
  opacity: 0.8;
}
.comments .order-links {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.comments .comment {
  line-height: 1.6;
  margin: 0.375rem 0;
  position: relative;
}
.comments .comment p {
  margin-bottom: 0;
}
.comments .comment [class^=icon-] {
  font-size: 1.0625rem;
  text-decoration: none;
  vertical-align: sub;
}

.comment-body img,
.comment-body svg,
.notification-body img,
.notification-body svg {
  margin-right: 0.75rem;
}
.comment-body .status-bar,
.notification-body .status-bar {
  border: 1px solid #dee0e3;
  border-left: 0;
  border-right: 0;
  font-size: 0.875rem;
  margin: 0.375rem 0;
  padding: 0.375rem;
  position: relative;
}
.comment-body .status-bar:empty,
.notification-body .status-bar:empty {
  display: none;
}
.comment-body .comment-user,
.notification-body .comment-user {
  margin-top: 0.375rem;
  overflow: hidden;
  padding: 0.375rem 0;
}
.comment-body .comment-user.level-1, .comment-body .comment-user.level-2, .comment-body .comment-user.level-3, .comment-body .comment-user.level-4, .comment-body .comment-user.level-5, .comment-body .comment-user.is-author, .comment-body .comment-user.is-admin, .comment-body .comment-user.is-moderator,
.notification-body .comment-user.level-1,
.notification-body .comment-user.level-2,
.notification-body .comment-user.level-3,
.notification-body .comment-user.level-4,
.notification-body .comment-user.level-5,
.notification-body .comment-user.is-author,
.notification-body .comment-user.is-admin,
.notification-body .comment-user.is-moderator {
  background: rgba(70, 219, 145, 0.3);
  padding: 0.375rem 0.75rem;
}
.comment-body .comment-user.level-1,
.notification-body .comment-user.level-1 {
  background: none;
}
.comment-body .comment-user.level-5,
.notification-body .comment-user.level-5 {
  background: rgb(255, 241, 204);
}
.comment-body .comment-user.is-author, .comment-body .comment-user.is-admin, .comment-body .comment-user.is-moderator,
.notification-body .comment-user.is-author,
.notification-body .comment-user.is-admin,
.notification-body .comment-user.is-moderator {
  background: rgba(45, 144, 248, 0.15);
}

.comment-list {
  margin: 0.375rem 0;
}
.comment-list .comment-list {
  border-left: 1px dashed #dee0e3;
  display: inline-block;
  padding-left: 0.5rem;
  width: 100%;
}
.comment-list .comment-form {
  display: none;
}
.comment-list:empty {
  display: none;
}

.comment-info {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 2rem;
}
.comment-info .user-name {
  font-weight: bold;
}

.faded {
  opacity: 0.4;
}

.comment-form {
  display: inline-block;
  width: 100%;
}

.dropdown-pane a,
.dropdown-pane button {
  color: #4b4f58;
}

.activity .retired {
  text-decoration: line-through;
}

.public-interests li {
  margin-right: 0.375rem;
}
.public-interests li span {
  background: none;
  border: 1px solid #ececec;
}

.section-recommended {
  background: #fafafa;
  border-top: 1px solid #dee0e3;
  margin-bottom: -3rem;
  padding: 1.5rem 0;
}
.section-recommended h2 {
  margin-bottom: 0;
}
.section-recommended p {
  margin-bottom: 3rem;
}
.section-recommended .debates,
.section-recommended .proposals,
.section-recommended .budget-investments {
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .section-recommended .debates,
  .section-recommended .proposals,
  .section-recommended .budget-investments {
    margin-bottom: 0;
  }
}
.section-recommended .debates .button.hollow,
.section-recommended .proposals .button.hollow,
.section-recommended .budget-investments .button.hollow {
  margin-top: 0.9375rem;
}
.section-recommended .card {
  padding: 0.75rem;
}
.section-recommended .card .card {
  border: 0;
}
.section-recommended .card .card-section {
  margin: 0 auto;
  max-width: none;
  padding: 0;
}
.section-recommended .card .card-section p {
  font-size: 1.0625rem;
  text-align: left;
}
.section-recommended .card .orbit {
  height: 18.75rem;
}
.section-recommended .card .orbit .orbit-wrapper {
  max-height: 15.625rem;
  overflow: hidden;
  position: relative;
}
.section-recommended .card .orbit .orbit-bullets {
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
  position: relative;
  text-align: center;
  width: 100%;
}
[data-whatinput=mouse] .section-recommended .card .orbit .orbit-bullets {
  outline: 0;
}
.section-recommended .card .orbit .orbit-bullets button {
  background-color: #cacaca;
  border-radius: 50%;
  height: 0.8rem;
  margin: 0.1rem;
  width: 0.8rem;
}
.section-recommended .card .orbit .orbit-bullets button:hover {
  background-color: #8a8a8a;
}
.section-recommended .card .orbit .orbit-bullets button.is-active {
  background-color: #8a8a8a;
}
.section-recommended .card .orbit .orbit-wrapper .truncate {
  background: url(/assets/truncate-7128021588d380a152ce460fe9f5a54492f666e5bf085a08ccfb85cb300188a0.png);
  background-repeat: repeat-x;
  bottom: 0;
  height: 1.25rem;
  position: absolute;
  width: 100%;
}
.section-recommended .debates-inner,
.section-recommended .proposals-inner {
  max-height: 21.875rem;
  max-height: 25rem;
}
.section-recommended .debates-inner h4,
.section-recommended .proposals-inner h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
  min-height: 0;
}
.section-recommended .debates-inner h5,
.section-recommended .proposals-inner h5 {
  font-size: 0.875rem;
  text-align: left;
}
.section-recommended .carousel-image .card .orbit {
  height: 30rem;
}
.section-recommended .carousel-image .card .orbit .orbit-wrapper {
  max-height: 28.125rem;
}
.section-recommended .carousel-image .debates a,
.section-recommended .carousel-image .proposals a {
  display: block;
  margin-top: 1.5rem;
}
.section-recommended .carousel-image .debates-inner,
.section-recommended .carousel-image .proposals-inner {
  border: 1px solid #dee0e3;
  margin-right: 1.5rem;
  max-height: 31.25rem;
  padding: 1.5rem;
  max-height: 37.5rem;
}
.section-recommended .carousel-image .orbit-wrapper img {
  display: block;
  height: 7.5rem;
  margin: 0 auto;
}

.additional-document-link {
  background: #f3f8fd;
  border: 1px solid #e7f2fc;
  display: block;
  margin: 0.75rem 0;
  padding: 0.75rem;
  position: relative;
}
.additional-document-link a {
  overflow-wrap: break-word;
}
.additional-document-link > :first-child::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M320 464c8.8 0 16-7.2 16-16l0-288-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l256 0zM0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 448c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M320 464c8.8 0 16-7.2 16-16l0-288-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l256 0zM0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 448c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64z'/%3E%3C/svg%3E");
}

.document-divider {
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.related-content {
  border-top: 1px solid #dee0e3;
}
.related-content h2 {
  font-size: 1.5rem;
}
.related-content h2 span {
  color: #4f4f4f;
  font-weight: normal;
}

.add-related-content {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
  display: block;
  margin-bottom: 1.5rem;
}
.add-related-content:hover, .add-related-content:active, .add-related-content:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.add-related-content:hover, .add-related-content:active {
  text-decoration: underline;
}
@media print, screen and (min-width: 40em) {
  .add-related-content {
    float: right;
  }
}
.add-related-content[aria-expanded=false] + form {
  display: none;
}

.relate-content-score {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .relate-content-score {
    text-align: center;
  }
}
.relate-content-score button {
  font-weight: bold;
  margin-right: 1.5rem;
  text-decoration: none;
}
.relate-content-score button.score-positive {
  color: #3c763d;
}
.relate-content-score button.score-positive::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}
.relate-content-score button.score-negative {
  color: #a94442;
}
.relate-content-score button.score-negative::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
}
.relate-content-score button::before {
  margin-right: 0.25rem;
}
.relate-content-score button:hover {
  cursor: pointer;
}
.relate-content-score form {
  display: inline;
}

.button.upload-image::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6l96 0 32 0 208 0c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6l96 0 32 0 208 0c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z'/%3E%3C/svg%3E");
}
.button.upload-document::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 288c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 288c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128z'/%3E%3C/svg%3E");
}
.button.upload-image, .button.upload-document {
  font-weight: bold;
  margin-bottom: 2.25rem;
}
.button.upload-image::before, .button.upload-document::before {
  margin-left: -0.5em;
  margin-right: 0.5em;
}

.home-page a p.description,
.custom-page a p.description,
.sdg-goal-show a p.description,
.sdg-goals-index a p.description {
  color: #2e2e2e;
  overflow-wrap: break-word;
}
.home-page .background-header,
.custom-page .background-header,
.sdg-goal-show .background-header,
.sdg-goals-index .background-header {
  background: #e7f2fc;
  -webkit-clip-path: ellipse(60% 80% at 50% 0%);
          clip-path: ellipse(60% 80% at 50% 0%);
  height: 3rem;
  margin-top: -3rem;
}
@media screen and (min-width: 75em) {
  .home-page .background-header,
  .custom-page .background-header,
  .sdg-goal-show .background-header,
  .sdg-goals-index .background-header {
    margin-left: calc(37.5rem - 50vw);
    margin-right: calc(37.5rem - 50vw);
  }
}
.home-page .cards-container,
.custom-page .cards-container,
.sdg-goal-show .cards-container,
.sdg-goals-index .cards-container {
  display: flex;
  flex-wrap: wrap;
}
.home-page .cards-container .card a,
.custom-page .cards-container .card a,
.sdg-goal-show .cards-container .card a,
.sdg-goals-index .cards-container .card a {
  height: 100%;
}
.home-page .card,
.custom-page .card,
.sdg-goal-show .card,
.sdg-goals-index .card {
  border: 0;
  flex-grow: 0;
  overflow: visible;
}
.home-page .card a .figure-card img,
.custom-page .card a .figure-card img,
.sdg-goal-show .card a .figure-card img,
.sdg-goals-index .card a .figure-card img {
  transition-duration: 0.3s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.home-page .card a:hover:not(:focus),
.custom-page .card a:hover:not(:focus),
.sdg-goal-show .card a:hover:not(:focus),
.sdg-goals-index .card a:hover:not(:focus) {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.home-page .card a:hover:not(:focus) .figure-card img,
.custom-page .card a:hover:not(:focus) .figure-card img,
.sdg-goal-show .card a:hover:not(:focus) .figure-card img,
.sdg-goals-index .card a:hover:not(:focus) .figure-card img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.home-page .card p,
.home-page .card .sdg-tag-list,
.custom-page .card p,
.custom-page .card .sdg-tag-list,
.sdg-goal-show .card p,
.sdg-goal-show .card .sdg-tag-list,
.sdg-goals-index .card p,
.sdg-goals-index .card .sdg-tag-list {
  padding: 0 0.375rem;
}
.home-page h2.title,
.custom-page h2.title,
.sdg-goal-show h2.title,
.sdg-goals-index h2.title {
  font-size: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  .home-page h2.title,
  .custom-page h2.title,
  .sdg-goal-show h2.title,
  .sdg-goals-index h2.title {
    font-size: 1.5rem;
  }
}
.home-page h2.title,
.home-page h3.title,
.custom-page h2.title,
.custom-page h3.title,
.sdg-goal-show h2.title,
.sdg-goal-show h3.title,
.sdg-goals-index h2.title,
.sdg-goals-index h3.title {
  border-top: 4px solid #2e2e2e;
  border-top: 4px solid var(--brand, #2e2e2e);
  display: inline-block;
  margin-bottom: 0;
  padding: 0.75rem 0;
}
.home-page figure img,
.custom-page figure img,
.sdg-goal-show figure img,
.sdg-goals-index figure img {
  height: 100%;
  width: 100%;
}

.home-page .feeds-participation {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .home-page .feeds-participation {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.feeds-list a.see-all {
  border-bottom: 1px solid #dee0e3;
  display: block;
  font-size: 0.875rem;
  margin: 1.5rem 0 0.75rem;
  text-align: right;
  width: 100%;
}

.figure-card {
  display: flex;
  margin: 0 0 1.5rem;
  overflow: hidden;
  position: relative;
}
@media print, screen and (max-width: 63.99875em) {
  .figure-card {
    min-height: 6rem;
  }
}
@media print, screen and (min-width: 40em) {
  .figure-card {
    max-height: 11.5625rem;
  }
}
@media print, screen and (min-width: 64em) {
  .figure-card {
    min-height: 11.5625rem;
  }
}
.figure-card .gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgb(0, 0, 0) 100%);
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.figure-card img {
  height: 100%;
  width: 100%;
}
.figure-card figcaption {
  bottom: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5rem;
  padding: 0.375rem 0.75rem;
  position: absolute;
  text-transform: uppercase;
  width: 100%;
  z-index: 3;
}
.figure-card figcaption h3 {
  font-size: 1.0625rem;
}
@media print, screen and (min-width: 40em) {
  .figure-card figcaption h3 {
    font-size: 1.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .figure-card figcaption h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.figure-card figcaption span {
  border-radius: 0.25rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.375rem;
  padding: 0.25rem 0.5rem;
}

.local-census-record-new .date-of-birth select,
.local-census-record-edit .date-of-birth select {
  float: left;
  margin-right: 0.375rem;
  width: 30%;
}

.participation-not-allowed {
  background: #fcf8e3;
  color: #8a6d3b;
  display: none;
  line-height: 1.5rem;
  padding: 0.75rem;
  text-align: center;
  width: 100%;
}
.participation-not-allowed,
.participation-not-allowed p {
  font-size: 0.875rem;
}
.participation-not-allowed p {
  color: inherit !important;
  margin: 0 0.75rem;
  text-align: left;
}
.participation-not-allowed a {
  color: inherit !important;
  font-weight: bold;
  text-decoration: underline;
}

.recommendations {
  list-style-type: none;
  margin-left: 0;
  margin-top: 1.5rem;
}
.recommendations li {
  margin: 0.75rem 0;
}
.recommendations li::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}
.recommendations li::before {
  margin-right: 0.375rem;
}

.budget-investment-new .cached-image,
.proposal-new .cached-image,
.proposal-edit .cached-image,
.polls-form .cached-image,
.poll-question-form .cached-image,
.legislation-process-new .cached-image,
.legislation-process-edit .cached-image,
.milestone-new .cached-image,
.milestone-edit .cached-image,
.image-form .cached-image,
.dashboard-action-form .cached-image {
  max-height: 9.375rem;
  max-width: 9.375rem;
}
.budget-investment-new .progress-bar-placeholder,
.proposal-new .progress-bar-placeholder,
.proposal-edit .progress-bar-placeholder,
.polls-form .progress-bar-placeholder,
.poll-question-form .progress-bar-placeholder,
.legislation-process-new .progress-bar-placeholder,
.legislation-process-edit .progress-bar-placeholder,
.milestone-new .progress-bar-placeholder,
.milestone-edit .progress-bar-placeholder,
.image-form .progress-bar-placeholder,
.dashboard-action-form .progress-bar-placeholder {
  display: none;
  margin-bottom: 1.5rem;
}
.budget-investment-new .document-fields .document-attachment,
.budget-investment-new .document-fields .image-attachment,
.budget-investment-new .image-fields .document-attachment,
.budget-investment-new .image-fields .image-attachment,
.proposal-new .document-fields .document-attachment,
.proposal-new .document-fields .image-attachment,
.proposal-new .image-fields .document-attachment,
.proposal-new .image-fields .image-attachment,
.proposal-edit .document-fields .document-attachment,
.proposal-edit .document-fields .image-attachment,
.proposal-edit .image-fields .document-attachment,
.proposal-edit .image-fields .image-attachment,
.polls-form .document-fields .document-attachment,
.polls-form .document-fields .image-attachment,
.polls-form .image-fields .document-attachment,
.polls-form .image-fields .image-attachment,
.poll-question-form .document-fields .document-attachment,
.poll-question-form .document-fields .image-attachment,
.poll-question-form .image-fields .document-attachment,
.poll-question-form .image-fields .image-attachment,
.legislation-process-new .document-fields .document-attachment,
.legislation-process-new .document-fields .image-attachment,
.legislation-process-new .image-fields .document-attachment,
.legislation-process-new .image-fields .image-attachment,
.legislation-process-edit .document-fields .document-attachment,
.legislation-process-edit .document-fields .image-attachment,
.legislation-process-edit .image-fields .document-attachment,
.legislation-process-edit .image-fields .image-attachment,
.milestone-new .document-fields .document-attachment,
.milestone-new .document-fields .image-attachment,
.milestone-new .image-fields .document-attachment,
.milestone-new .image-fields .image-attachment,
.milestone-edit .document-fields .document-attachment,
.milestone-edit .document-fields .image-attachment,
.milestone-edit .image-fields .document-attachment,
.milestone-edit .image-fields .image-attachment,
.image-form .document-fields .document-attachment,
.image-form .document-fields .image-attachment,
.image-form .image-fields .document-attachment,
.image-form .image-fields .image-attachment,
.dashboard-action-form .document-fields .document-attachment,
.dashboard-action-form .document-fields .image-attachment,
.dashboard-action-form .image-fields .document-attachment,
.dashboard-action-form .image-fields .image-attachment {
  padding-left: 0;
}
.budget-investment-new .document-fields .document-attachment p,
.budget-investment-new .document-fields .image-attachment p,
.budget-investment-new .image-fields .document-attachment p,
.budget-investment-new .image-fields .image-attachment p,
.proposal-new .document-fields .document-attachment p,
.proposal-new .document-fields .image-attachment p,
.proposal-new .image-fields .document-attachment p,
.proposal-new .image-fields .image-attachment p,
.proposal-edit .document-fields .document-attachment p,
.proposal-edit .document-fields .image-attachment p,
.proposal-edit .image-fields .document-attachment p,
.proposal-edit .image-fields .image-attachment p,
.polls-form .document-fields .document-attachment p,
.polls-form .document-fields .image-attachment p,
.polls-form .image-fields .document-attachment p,
.polls-form .image-fields .image-attachment p,
.poll-question-form .document-fields .document-attachment p,
.poll-question-form .document-fields .image-attachment p,
.poll-question-form .image-fields .document-attachment p,
.poll-question-form .image-fields .image-attachment p,
.legislation-process-new .document-fields .document-attachment p,
.legislation-process-new .document-fields .image-attachment p,
.legislation-process-new .image-fields .document-attachment p,
.legislation-process-new .image-fields .image-attachment p,
.legislation-process-edit .document-fields .document-attachment p,
.legislation-process-edit .document-fields .image-attachment p,
.legislation-process-edit .image-fields .document-attachment p,
.legislation-process-edit .image-fields .image-attachment p,
.milestone-new .document-fields .document-attachment p,
.milestone-new .document-fields .image-attachment p,
.milestone-new .image-fields .document-attachment p,
.milestone-new .image-fields .image-attachment p,
.milestone-edit .document-fields .document-attachment p,
.milestone-edit .document-fields .image-attachment p,
.milestone-edit .image-fields .document-attachment p,
.milestone-edit .image-fields .image-attachment p,
.image-form .document-fields .document-attachment p,
.image-form .document-fields .image-attachment p,
.image-form .image-fields .document-attachment p,
.image-form .image-fields .image-attachment p,
.dashboard-action-form .document-fields .document-attachment p,
.dashboard-action-form .document-fields .image-attachment p,
.dashboard-action-form .image-fields .document-attachment p,
.dashboard-action-form .image-fields .image-attachment p {
  margin-bottom: 0;
}
.budget-investment-new .document-fields .document-attachment:focus-within label,
.budget-investment-new .document-fields .image-attachment:focus-within label,
.budget-investment-new .image-fields .document-attachment:focus-within label,
.budget-investment-new .image-fields .image-attachment:focus-within label,
.proposal-new .document-fields .document-attachment:focus-within label,
.proposal-new .document-fields .image-attachment:focus-within label,
.proposal-new .image-fields .document-attachment:focus-within label,
.proposal-new .image-fields .image-attachment:focus-within label,
.proposal-edit .document-fields .document-attachment:focus-within label,
.proposal-edit .document-fields .image-attachment:focus-within label,
.proposal-edit .image-fields .document-attachment:focus-within label,
.proposal-edit .image-fields .image-attachment:focus-within label,
.polls-form .document-fields .document-attachment:focus-within label,
.polls-form .document-fields .image-attachment:focus-within label,
.polls-form .image-fields .document-attachment:focus-within label,
.polls-form .image-fields .image-attachment:focus-within label,
.poll-question-form .document-fields .document-attachment:focus-within label,
.poll-question-form .document-fields .image-attachment:focus-within label,
.poll-question-form .image-fields .document-attachment:focus-within label,
.poll-question-form .image-fields .image-attachment:focus-within label,
.legislation-process-new .document-fields .document-attachment:focus-within label,
.legislation-process-new .document-fields .image-attachment:focus-within label,
.legislation-process-new .image-fields .document-attachment:focus-within label,
.legislation-process-new .image-fields .image-attachment:focus-within label,
.legislation-process-edit .document-fields .document-attachment:focus-within label,
.legislation-process-edit .document-fields .image-attachment:focus-within label,
.legislation-process-edit .image-fields .document-attachment:focus-within label,
.legislation-process-edit .image-fields .image-attachment:focus-within label,
.milestone-new .document-fields .document-attachment:focus-within label,
.milestone-new .document-fields .image-attachment:focus-within label,
.milestone-new .image-fields .document-attachment:focus-within label,
.milestone-new .image-fields .image-attachment:focus-within label,
.milestone-edit .document-fields .document-attachment:focus-within label,
.milestone-edit .document-fields .image-attachment:focus-within label,
.milestone-edit .image-fields .document-attachment:focus-within label,
.milestone-edit .image-fields .image-attachment:focus-within label,
.image-form .document-fields .document-attachment:focus-within label,
.image-form .document-fields .image-attachment:focus-within label,
.image-form .image-fields .document-attachment:focus-within label,
.image-form .image-fields .image-attachment:focus-within label,
.dashboard-action-form .document-fields .document-attachment:focus-within label,
.dashboard-action-form .document-fields .image-attachment:focus-within label,
.dashboard-action-form .image-fields .document-attachment:focus-within label,
.dashboard-action-form .image-fields .image-attachment:focus-within label {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.budget-investment-new .document-fields .attachment-errors > [type=file],
.budget-investment-new .image-fields .attachment-errors > [type=file],
.proposal-new .document-fields .attachment-errors > [type=file],
.proposal-new .image-fields .attachment-errors > [type=file],
.proposal-edit .document-fields .attachment-errors > [type=file],
.proposal-edit .image-fields .attachment-errors > [type=file],
.polls-form .document-fields .attachment-errors > [type=file],
.polls-form .image-fields .attachment-errors > [type=file],
.poll-question-form .document-fields .attachment-errors > [type=file],
.poll-question-form .image-fields .attachment-errors > [type=file],
.legislation-process-new .document-fields .attachment-errors > [type=file],
.legislation-process-new .image-fields .attachment-errors > [type=file],
.legislation-process-edit .document-fields .attachment-errors > [type=file],
.legislation-process-edit .image-fields .attachment-errors > [type=file],
.milestone-new .document-fields .attachment-errors > [type=file],
.milestone-new .image-fields .attachment-errors > [type=file],
.milestone-edit .document-fields .attachment-errors > [type=file],
.milestone-edit .image-fields .attachment-errors > [type=file],
.image-form .document-fields .attachment-errors > [type=file],
.image-form .image-fields .attachment-errors > [type=file],
.dashboard-action-form .document-fields .attachment-errors > [type=file],
.dashboard-action-form .image-fields .attachment-errors > [type=file] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.budget-investment-new .document-fields .attachment-errors > [type=file] ~ .error,
.budget-investment-new .image-fields .attachment-errors > [type=file] ~ .error,
.proposal-new .document-fields .attachment-errors > [type=file] ~ .error,
.proposal-new .image-fields .attachment-errors > [type=file] ~ .error,
.proposal-edit .document-fields .attachment-errors > [type=file] ~ .error,
.proposal-edit .image-fields .attachment-errors > [type=file] ~ .error,
.polls-form .document-fields .attachment-errors > [type=file] ~ .error,
.polls-form .image-fields .attachment-errors > [type=file] ~ .error,
.poll-question-form .document-fields .attachment-errors > [type=file] ~ .error,
.poll-question-form .image-fields .attachment-errors > [type=file] ~ .error,
.legislation-process-new .document-fields .attachment-errors > [type=file] ~ .error,
.legislation-process-new .image-fields .attachment-errors > [type=file] ~ .error,
.legislation-process-edit .document-fields .attachment-errors > [type=file] ~ .error,
.legislation-process-edit .image-fields .attachment-errors > [type=file] ~ .error,
.milestone-new .document-fields .attachment-errors > [type=file] ~ .error,
.milestone-new .image-fields .attachment-errors > [type=file] ~ .error,
.milestone-edit .document-fields .attachment-errors > [type=file] ~ .error,
.milestone-edit .image-fields .attachment-errors > [type=file] ~ .error,
.image-form .document-fields .attachment-errors > [type=file] ~ .error,
.image-form .image-fields .attachment-errors > [type=file] ~ .error,
.dashboard-action-form .document-fields .attachment-errors > [type=file] ~ .error,
.dashboard-action-form .image-fields .attachment-errors > [type=file] ~ .error {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.budget-investment-new .document-fields .suggested-images-container,
.budget-investment-new .document-fields .suggested-images-wrapper,
.budget-investment-new .image-fields .suggested-images-container,
.budget-investment-new .image-fields .suggested-images-wrapper,
.proposal-new .document-fields .suggested-images-container,
.proposal-new .document-fields .suggested-images-wrapper,
.proposal-new .image-fields .suggested-images-container,
.proposal-new .image-fields .suggested-images-wrapper,
.proposal-edit .document-fields .suggested-images-container,
.proposal-edit .document-fields .suggested-images-wrapper,
.proposal-edit .image-fields .suggested-images-container,
.proposal-edit .image-fields .suggested-images-wrapper,
.polls-form .document-fields .suggested-images-container,
.polls-form .document-fields .suggested-images-wrapper,
.polls-form .image-fields .suggested-images-container,
.polls-form .image-fields .suggested-images-wrapper,
.poll-question-form .document-fields .suggested-images-container,
.poll-question-form .document-fields .suggested-images-wrapper,
.poll-question-form .image-fields .suggested-images-container,
.poll-question-form .image-fields .suggested-images-wrapper,
.legislation-process-new .document-fields .suggested-images-container,
.legislation-process-new .document-fields .suggested-images-wrapper,
.legislation-process-new .image-fields .suggested-images-container,
.legislation-process-new .image-fields .suggested-images-wrapper,
.legislation-process-edit .document-fields .suggested-images-container,
.legislation-process-edit .document-fields .suggested-images-wrapper,
.legislation-process-edit .image-fields .suggested-images-container,
.legislation-process-edit .image-fields .suggested-images-wrapper,
.milestone-new .document-fields .suggested-images-container,
.milestone-new .document-fields .suggested-images-wrapper,
.milestone-new .image-fields .suggested-images-container,
.milestone-new .image-fields .suggested-images-wrapper,
.milestone-edit .document-fields .suggested-images-container,
.milestone-edit .document-fields .suggested-images-wrapper,
.milestone-edit .image-fields .suggested-images-container,
.milestone-edit .image-fields .suggested-images-wrapper,
.image-form .document-fields .suggested-images-container,
.image-form .document-fields .suggested-images-wrapper,
.image-form .image-fields .suggested-images-container,
.image-form .image-fields .suggested-images-wrapper,
.dashboard-action-form .document-fields .suggested-images-container,
.dashboard-action-form .document-fields .suggested-images-wrapper,
.dashboard-action-form .image-fields .suggested-images-container,
.dashboard-action-form .image-fields .suggested-images-wrapper {
  display: inline;
}
.budget-investment-new .document-fields .suggested-images-container .help-text,
.budget-investment-new .document-fields .suggested-images-wrapper .help-text,
.budget-investment-new .image-fields .suggested-images-container .help-text,
.budget-investment-new .image-fields .suggested-images-wrapper .help-text,
.proposal-new .document-fields .suggested-images-container .help-text,
.proposal-new .document-fields .suggested-images-wrapper .help-text,
.proposal-new .image-fields .suggested-images-container .help-text,
.proposal-new .image-fields .suggested-images-wrapper .help-text,
.proposal-edit .document-fields .suggested-images-container .help-text,
.proposal-edit .document-fields .suggested-images-wrapper .help-text,
.proposal-edit .image-fields .suggested-images-container .help-text,
.proposal-edit .image-fields .suggested-images-wrapper .help-text,
.polls-form .document-fields .suggested-images-container .help-text,
.polls-form .document-fields .suggested-images-wrapper .help-text,
.polls-form .image-fields .suggested-images-container .help-text,
.polls-form .image-fields .suggested-images-wrapper .help-text,
.poll-question-form .document-fields .suggested-images-container .help-text,
.poll-question-form .document-fields .suggested-images-wrapper .help-text,
.poll-question-form .image-fields .suggested-images-container .help-text,
.poll-question-form .image-fields .suggested-images-wrapper .help-text,
.legislation-process-new .document-fields .suggested-images-container .help-text,
.legislation-process-new .document-fields .suggested-images-wrapper .help-text,
.legislation-process-new .image-fields .suggested-images-container .help-text,
.legislation-process-new .image-fields .suggested-images-wrapper .help-text,
.legislation-process-edit .document-fields .suggested-images-container .help-text,
.legislation-process-edit .document-fields .suggested-images-wrapper .help-text,
.legislation-process-edit .image-fields .suggested-images-container .help-text,
.legislation-process-edit .image-fields .suggested-images-wrapper .help-text,
.milestone-new .document-fields .suggested-images-container .help-text,
.milestone-new .document-fields .suggested-images-wrapper .help-text,
.milestone-new .image-fields .suggested-images-container .help-text,
.milestone-new .image-fields .suggested-images-wrapper .help-text,
.milestone-edit .document-fields .suggested-images-container .help-text,
.milestone-edit .document-fields .suggested-images-wrapper .help-text,
.milestone-edit .image-fields .suggested-images-container .help-text,
.milestone-edit .image-fields .suggested-images-wrapper .help-text,
.image-form .document-fields .suggested-images-container .help-text,
.image-form .document-fields .suggested-images-wrapper .help-text,
.image-form .image-fields .suggested-images-container .help-text,
.image-form .image-fields .suggested-images-wrapper .help-text,
.dashboard-action-form .document-fields .suggested-images-container .help-text,
.dashboard-action-form .document-fields .suggested-images-wrapper .help-text,
.dashboard-action-form .image-fields .suggested-images-container .help-text,
.dashboard-action-form .image-fields .suggested-images-wrapper .help-text {
  margin-bottom: 1rem;
}
.budget-investment-new .document-fields .suggested-image-button,
.budget-investment-new .image-fields .suggested-image-button,
.proposal-new .document-fields .suggested-image-button,
.proposal-new .image-fields .suggested-image-button,
.proposal-edit .document-fields .suggested-image-button,
.proposal-edit .image-fields .suggested-image-button,
.polls-form .document-fields .suggested-image-button,
.polls-form .image-fields .suggested-image-button,
.poll-question-form .document-fields .suggested-image-button,
.poll-question-form .image-fields .suggested-image-button,
.legislation-process-new .document-fields .suggested-image-button,
.legislation-process-new .image-fields .suggested-image-button,
.legislation-process-edit .document-fields .suggested-image-button,
.legislation-process-edit .image-fields .suggested-image-button,
.milestone-new .document-fields .suggested-image-button,
.milestone-new .image-fields .suggested-image-button,
.milestone-edit .document-fields .suggested-image-button,
.milestone-edit .image-fields .suggested-image-button,
.image-form .document-fields .suggested-image-button,
.image-form .image-fields .suggested-image-button,
.dashboard-action-form .document-fields .suggested-image-button,
.dashboard-action-form .image-fields .suggested-image-button {
  cursor: pointer;
}
.budget-investment-new .document-fields .js-suggest-image.is-loading::before,
.budget-investment-new .image-fields .js-suggest-image.is-loading::before,
.proposal-new .document-fields .js-suggest-image.is-loading::before,
.proposal-new .image-fields .js-suggest-image.is-loading::before,
.proposal-edit .document-fields .js-suggest-image.is-loading::before,
.proposal-edit .image-fields .js-suggest-image.is-loading::before,
.polls-form .document-fields .js-suggest-image.is-loading::before,
.polls-form .image-fields .js-suggest-image.is-loading::before,
.poll-question-form .document-fields .js-suggest-image.is-loading::before,
.poll-question-form .image-fields .js-suggest-image.is-loading::before,
.legislation-process-new .document-fields .js-suggest-image.is-loading::before,
.legislation-process-new .image-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .document-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .image-fields .js-suggest-image.is-loading::before,
.milestone-new .document-fields .js-suggest-image.is-loading::before,
.milestone-new .image-fields .js-suggest-image.is-loading::before,
.milestone-edit .document-fields .js-suggest-image.is-loading::before,
.milestone-edit .image-fields .js-suggest-image.is-loading::before,
.image-form .document-fields .js-suggest-image.is-loading::before,
.image-form .image-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .document-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .image-fields .js-suggest-image.is-loading::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z'/%3E%3C/svg%3E");
}
.budget-investment-new .document-fields .js-suggest-image.is-loading::before,
.budget-investment-new .image-fields .js-suggest-image.is-loading::before,
.proposal-new .document-fields .js-suggest-image.is-loading::before,
.proposal-new .image-fields .js-suggest-image.is-loading::before,
.proposal-edit .document-fields .js-suggest-image.is-loading::before,
.proposal-edit .image-fields .js-suggest-image.is-loading::before,
.polls-form .document-fields .js-suggest-image.is-loading::before,
.polls-form .image-fields .js-suggest-image.is-loading::before,
.poll-question-form .document-fields .js-suggest-image.is-loading::before,
.poll-question-form .image-fields .js-suggest-image.is-loading::before,
.legislation-process-new .document-fields .js-suggest-image.is-loading::before,
.legislation-process-new .image-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .document-fields .js-suggest-image.is-loading::before,
.legislation-process-edit .image-fields .js-suggest-image.is-loading::before,
.milestone-new .document-fields .js-suggest-image.is-loading::before,
.milestone-new .image-fields .js-suggest-image.is-loading::before,
.milestone-edit .document-fields .js-suggest-image.is-loading::before,
.milestone-edit .image-fields .js-suggest-image.is-loading::before,
.image-form .document-fields .js-suggest-image.is-loading::before,
.image-form .image-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .document-fields .js-suggest-image.is-loading::before,
.dashboard-action-form .image-fields .js-suggest-image.is-loading::before {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear;
}
.budget-investment-new .document-fields .suggested-images,
.budget-investment-new .image-fields .suggested-images,
.proposal-new .document-fields .suggested-images,
.proposal-new .image-fields .suggested-images,
.proposal-edit .document-fields .suggested-images,
.proposal-edit .image-fields .suggested-images,
.polls-form .document-fields .suggested-images,
.polls-form .image-fields .suggested-images,
.poll-question-form .document-fields .suggested-images,
.poll-question-form .image-fields .suggested-images,
.legislation-process-new .document-fields .suggested-images,
.legislation-process-new .image-fields .suggested-images,
.legislation-process-edit .document-fields .suggested-images,
.legislation-process-edit .image-fields .suggested-images,
.milestone-new .document-fields .suggested-images,
.milestone-new .image-fields .suggested-images,
.milestone-edit .document-fields .suggested-images,
.milestone-edit .image-fields .suggested-images,
.image-form .document-fields .suggested-images,
.image-form .image-fields .suggested-images,
.dashboard-action-form .document-fields .suggested-images,
.dashboard-action-form .image-fields .suggested-images {
  display: grid;
  gap: 1.5rem 1.875rem;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(clamp(3rem, 40%, 10rem), 1fr));
  list-style: none;
}
.budget-investment-new .document-fields .suggested-images button,
.budget-investment-new .image-fields .suggested-images button,
.proposal-new .document-fields .suggested-images button,
.proposal-new .image-fields .suggested-images button,
.proposal-edit .document-fields .suggested-images button,
.proposal-edit .image-fields .suggested-images button,
.polls-form .document-fields .suggested-images button,
.polls-form .image-fields .suggested-images button,
.poll-question-form .document-fields .suggested-images button,
.poll-question-form .image-fields .suggested-images button,
.legislation-process-new .document-fields .suggested-images button,
.legislation-process-new .image-fields .suggested-images button,
.legislation-process-edit .document-fields .suggested-images button,
.legislation-process-edit .image-fields .suggested-images button,
.milestone-new .document-fields .suggested-images button,
.milestone-new .image-fields .suggested-images button,
.milestone-edit .document-fields .suggested-images button,
.milestone-edit .image-fields .suggested-images button,
.image-form .document-fields .suggested-images button,
.image-form .image-fields .suggested-images button,
.dashboard-action-form .document-fields .suggested-images button,
.dashboard-action-form .image-fields .suggested-images button {
  min-width: 1rem;
}
.budget-investment-new .document-fields .suggested-images img,
.budget-investment-new .image-fields .suggested-images img,
.proposal-new .document-fields .suggested-images img,
.proposal-new .image-fields .suggested-images img,
.proposal-edit .document-fields .suggested-images img,
.proposal-edit .image-fields .suggested-images img,
.polls-form .document-fields .suggested-images img,
.polls-form .image-fields .suggested-images img,
.poll-question-form .document-fields .suggested-images img,
.poll-question-form .image-fields .suggested-images img,
.legislation-process-new .document-fields .suggested-images img,
.legislation-process-new .image-fields .suggested-images img,
.legislation-process-edit .document-fields .suggested-images img,
.legislation-process-edit .image-fields .suggested-images img,
.milestone-new .document-fields .suggested-images img,
.milestone-new .image-fields .suggested-images img,
.milestone-edit .document-fields .suggested-images img,
.milestone-edit .image-fields .suggested-images img,
.image-form .document-fields .suggested-images img,
.image-form .image-fields .suggested-images img,
.dashboard-action-form .document-fields .suggested-images img,
.dashboard-action-form .image-fields .suggested-images img {
  min-height: 7.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.budget-investment-new .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.budget-investment-new .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.proposal-new .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.proposal-new .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.proposal-edit .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.proposal-edit .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.polls-form .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.polls-form .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.poll-question-form .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.poll-question-form .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.legislation-process-new .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.legislation-process-new .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.legislation-process-edit .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.legislation-process-edit .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.milestone-new .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.milestone-new .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.milestone-edit .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.milestone-edit .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.image-form .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.image-form .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.dashboard-action-form .document-fields .image-attachment:has(label.button.error) .suggested-images-wrapper,
.dashboard-action-form .image-fields .image-attachment:has(label.button.error) .suggested-images-wrapper {
  display: none;
}
.budget-investment-new .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.budget-investment-new .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.proposal-new .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.proposal-new .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.proposal-edit .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.proposal-edit .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.polls-form .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.polls-form .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.poll-question-form .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.poll-question-form .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.legislation-process-new .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.legislation-process-new .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.legislation-process-edit .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.legislation-process-edit .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.milestone-new .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.milestone-new .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.milestone-edit .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.milestone-edit .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.image-form .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.image-form .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.dashboard-action-form .document-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error,
.dashboard-action-form .image-fields .image-attachment:has(label.button:not(.error)) .js-suggest-image.error {
  margin: 0 0 1rem;
}
.budget-investment-new .progress-bar,
.proposal-new .progress-bar,
.proposal-edit .progress-bar,
.polls-form .progress-bar,
.poll-question-form .progress-bar,
.legislation-process-new .progress-bar,
.legislation-process-edit .progress-bar,
.milestone-new .progress-bar,
.milestone-edit .progress-bar,
.image-form .progress-bar,
.dashboard-action-form .progress-bar {
  background-color: #e6e6e6;
  width: 100%;
}
.budget-investment-new .file-name,
.proposal-new .file-name,
.proposal-edit .file-name,
.polls-form .file-name,
.poll-question-form .file-name,
.legislation-process-new .file-name,
.legislation-process-edit .file-name,
.milestone-new .file-name,
.milestone-edit .file-name,
.image-form .file-name,
.dashboard-action-form .file-name {
  margin-top: 0;
  padding-left: 0;
}
.budget-investment-new .file-name:empty,
.proposal-new .file-name:empty,
.proposal-edit .file-name:empty,
.polls-form .file-name:empty,
.poll-question-form .file-name:empty,
.legislation-process-new .file-name:empty,
.legislation-process-edit .file-name:empty,
.milestone-new .file-name:empty,
.milestone-edit .file-name:empty,
.image-form .file-name:empty,
.dashboard-action-form .file-name:empty {
  display: none;
}
.budget-investment-new .file-name:not(:empty) + .document-attachment, .budget-investment-new .file-name:not(:empty) + .image-attachment,
.proposal-new .file-name:not(:empty) + .document-attachment,
.proposal-new .file-name:not(:empty) + .image-attachment,
.proposal-edit .file-name:not(:empty) + .document-attachment,
.proposal-edit .file-name:not(:empty) + .image-attachment,
.polls-form .file-name:not(:empty) + .document-attachment,
.polls-form .file-name:not(:empty) + .image-attachment,
.poll-question-form .file-name:not(:empty) + .document-attachment,
.poll-question-form .file-name:not(:empty) + .image-attachment,
.legislation-process-new .file-name:not(:empty) + .document-attachment,
.legislation-process-new .file-name:not(:empty) + .image-attachment,
.legislation-process-edit .file-name:not(:empty) + .document-attachment,
.legislation-process-edit .file-name:not(:empty) + .image-attachment,
.milestone-new .file-name:not(:empty) + .document-attachment,
.milestone-new .file-name:not(:empty) + .image-attachment,
.milestone-edit .file-name:not(:empty) + .document-attachment,
.milestone-edit .file-name:not(:empty) + .image-attachment,
.image-form .file-name:not(:empty) + .document-attachment,
.image-form .file-name:not(:empty) + .image-attachment,
.dashboard-action-form .file-name:not(:empty) + .document-attachment,
.dashboard-action-form .file-name:not(:empty) + .image-attachment {
  display: none;
}
.budget-investment-new .loading-bar,
.proposal-new .loading-bar,
.proposal-edit .loading-bar,
.polls-form .loading-bar,
.poll-question-form .loading-bar,
.legislation-process-new .loading-bar,
.legislation-process-edit .loading-bar,
.milestone-new .loading-bar,
.milestone-edit .loading-bar,
.image-form .loading-bar,
.dashboard-action-form .loading-bar {
  height: 5px;
  transition: width 500ms ease-out;
  width: 0;
}
.budget-investment-new .loading-bar.uploading,
.proposal-new .loading-bar.uploading,
.proposal-edit .loading-bar.uploading,
.polls-form .loading-bar.uploading,
.poll-question-form .loading-bar.uploading,
.legislation-process-new .loading-bar.uploading,
.legislation-process-edit .loading-bar.uploading,
.milestone-new .loading-bar.uploading,
.milestone-edit .loading-bar.uploading,
.image-form .loading-bar.uploading,
.dashboard-action-form .loading-bar.uploading {
  background-color: #8a8a8a;
}
.budget-investment-new .loading-bar.complete,
.proposal-new .loading-bar.complete,
.proposal-edit .loading-bar.complete,
.polls-form .loading-bar.complete,
.poll-question-form .loading-bar.complete,
.legislation-process-new .loading-bar.complete,
.legislation-process-edit .loading-bar.complete,
.milestone-new .loading-bar.complete,
.milestone-edit .loading-bar.complete,
.image-form .loading-bar.complete,
.dashboard-action-form .loading-bar.complete {
  background-color: #3adb76;
}
.budget-investment-new .loading-bar.errors,
.proposal-new .loading-bar.errors,
.proposal-edit .loading-bar.errors,
.polls-form .loading-bar.errors,
.poll-question-form .loading-bar.errors,
.legislation-process-new .loading-bar.errors,
.legislation-process-edit .loading-bar.errors,
.milestone-new .loading-bar.errors,
.milestone-edit .loading-bar.errors,
.image-form .loading-bar.errors,
.dashboard-action-form .loading-bar.errors {
  background-color: #cc4b37;
  margin-top: 0.75rem;
}
.budget-investment-new .loading-bar.no-transition,
.proposal-new .loading-bar.no-transition,
.proposal-edit .loading-bar.no-transition,
.polls-form .loading-bar.no-transition,
.poll-question-form .loading-bar.no-transition,
.legislation-process-new .loading-bar.no-transition,
.legislation-process-edit .loading-bar.no-transition,
.milestone-new .loading-bar.no-transition,
.milestone-edit .loading-bar.no-transition,
.image-form .loading-bar.no-transition,
.dashboard-action-form .loading-bar.no-transition {
  transition: none;
}

.debate-show h1,
.debate-show p,
.proposal-show h1,
.proposal-show p,
.budget-investment-show h1,
.budget-investment-show p,
.polls-show h1,
.polls-show p,
.draft-panels h1,
.draft-panels p,
.debate-questions h1,
.debate-questions p,
.communities-show h1,
.communities-show p,
.topic-show h1,
.topic-show p,
.milestone-content h1,
.milestone-content p {
  overflow-wrap: break-word;
}
.debate-show .callout.proposal-retired,
.proposal-show .callout.proposal-retired,
.budget-investment-show .callout.proposal-retired,
.polls-show .callout.proposal-retired,
.draft-panels .callout.proposal-retired,
.debate-questions .callout.proposal-retired,
.communities-show .callout.proposal-retired,
.topic-show .callout.proposal-retired,
.milestone-content .callout.proposal-retired {
  font-size: 1.0625rem;
}
.debate-show .social-share-full .social-share-button,
.proposal-show .social-share-full .social-share-button,
.budget-investment-show .social-share-full .social-share-button,
.polls-show .social-share-full .social-share-button,
.draft-panels .social-share-full .social-share-button,
.debate-questions .social-share-full .social-share-button,
.communities-show .social-share-full .social-share-button,
.topic-show .social-share-full .social-share-button,
.milestone-content .social-share-full .social-share-button {
  display: inline;
}
.debate-show ul li,
.debate-show ol li,
.proposal-show ul li,
.proposal-show ol li,
.budget-investment-show ul li,
.budget-investment-show ol li,
.polls-show ul li,
.polls-show ol li,
.draft-panels ul li,
.draft-panels ol li,
.debate-questions ul li,
.debate-questions ol li,
.communities-show ul li,
.communities-show ol li,
.topic-show ul li,
.topic-show ol li,
.milestone-content ul li,
.milestone-content ol li {
  font-size: 0.9375rem;
  margin-bottom: 0.9375rem;
}
.debate-show ul .order-links > li,
.debate-show ol .order-links > li,
.proposal-show ul .order-links > li,
.proposal-show ol .order-links > li,
.budget-investment-show ul .order-links > li,
.budget-investment-show ol .order-links > li,
.polls-show ul .order-links > li,
.polls-show ol .order-links > li,
.draft-panels ul .order-links > li,
.draft-panels ol .order-links > li,
.debate-questions ul .order-links > li,
.debate-questions ol .order-links > li,
.communities-show ul .order-links > li,
.communities-show ol .order-links > li,
.topic-show ul .order-links > li,
.topic-show ol .order-links > li,
.milestone-content ul .order-links > li,
.milestone-content ol .order-links > li {
  font-size: inherit;
  margin-bottom: 0;
}
.debate-show .geozone li,
.proposal-show .geozone li,
.budget-investment-show .geozone li,
.polls-show .geozone li,
.draft-panels .geozone li,
.debate-questions .geozone li,
.communities-show .geozone li,
.topic-show .geozone li,
.milestone-content .geozone li {
  display: inline-block;
  margin-bottom: 0;
}
.debate-show .author-photo,
.proposal-show .author-photo,
.budget-investment-show .author-photo,
.polls-show .author-photo,
.draft-panels .author-photo,
.debate-questions .author-photo,
.communities-show .author-photo,
.topic-show .author-photo,
.milestone-content .author-photo {
  line-height: 2rem;
  margin-right: 0.375rem;
  vertical-align: top;
  width: 32px;
}
.debate-show .author,
.proposal-show .author,
.budget-investment-show .author,
.polls-show .author,
.draft-panels .author,
.debate-questions .author,
.communities-show .author,
.topic-show .author,
.milestone-content .author {
  font-weight: bold;
}
.debate-show .author a,
.proposal-show .author a,
.budget-investment-show .author a,
.polls-show .author a,
.draft-panels .author a,
.debate-questions .author a,
.communities-show .author a,
.topic-show .author a,
.milestone-content .author a {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.debate-show .author a:hover, .debate-show .author a:active, .debate-show .author a:focus,
.proposal-show .author a:hover,
.proposal-show .author a:active,
.proposal-show .author a:focus,
.budget-investment-show .author a:hover,
.budget-investment-show .author a:active,
.budget-investment-show .author a:focus,
.polls-show .author a:hover,
.polls-show .author a:active,
.polls-show .author a:focus,
.draft-panels .author a:hover,
.draft-panels .author a:active,
.draft-panels .author a:focus,
.debate-questions .author a:hover,
.debate-questions .author a:active,
.debate-questions .author a:focus,
.communities-show .author a:hover,
.communities-show .author a:active,
.communities-show .author a:focus,
.topic-show .author a:hover,
.topic-show .author a:active,
.topic-show .author a:focus,
.milestone-content .author a:hover,
.milestone-content .author a:active,
.milestone-content .author a:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.debate-show .author a:hover, .debate-show .author a:active,
.proposal-show .author a:hover,
.proposal-show .author a:active,
.budget-investment-show .author a:hover,
.budget-investment-show .author a:active,
.polls-show .author a:hover,
.polls-show .author a:active,
.draft-panels .author a:hover,
.draft-panels .author a:active,
.debate-questions .author a:hover,
.debate-questions .author a:active,
.communities-show .author a:hover,
.communities-show .author a:active,
.topic-show .author a:hover,
.topic-show .author a:active,
.milestone-content .author a:hover,
.milestone-content .author a:active {
  text-decoration: underline;
}
.debate-show aside h2,
.proposal-show aside h2,
.budget-investment-show aside h2,
.polls-show aside h2,
.draft-panels aside h2,
.debate-questions aside h2,
.communities-show aside h2,
.topic-show aside h2,
.milestone-content aside h2 {
  border-top: 2px solid #2e2e2e;
  border-top: 2px solid var(--brand, #2e2e2e);
  display: inline-block;
  font-size: 1rem;
  margin: -1px 0 0.75rem;
  padding-top: 0.375rem;
  text-transform: uppercase;
}
.debate-show blockquote,
.proposal-show blockquote,
.budget-investment-show blockquote,
.polls-show blockquote,
.draft-panels blockquote,
.debate-questions blockquote,
.communities-show blockquote,
.topic-show blockquote,
.milestone-content blockquote {
  clear: both;
  color: #4c4c4c;
  font-size: 0.9375rem;
  line-height: 1.875rem;
  margin-top: 0.75rem;
  padding-top: 0;
}
.debate-show .video-link,
.proposal-show .video-link,
.budget-investment-show .video-link,
.polls-show .video-link,
.draft-panels .video-link,
.debate-questions .video-link,
.communities-show .video-link,
.topic-show .video-link,
.milestone-content .video-link {
  background: #f3f8fd;
  border: 1px solid #e7f2fc;
  display: block;
  margin: 0.75rem 0;
  padding: 0.75rem;
  position: relative;
}
.debate-show .video-link a,
.proposal-show .video-link a,
.budget-investment-show .video-link a,
.polls-show .video-link a,
.draft-panels .video-link a,
.debate-questions .video-link a,
.communities-show .video-link a,
.topic-show .video-link a,
.milestone-content .video-link a {
  overflow-wrap: break-word;
}
.debate-show .video-link .icon-video,
.proposal-show .video-link .icon-video,
.budget-investment-show .video-link .icon-video,
.polls-show .video-link .icon-video,
.draft-panels .video-link .icon-video,
.debate-questions .video-link .icon-video,
.communities-show .video-link .icon-video,
.topic-show .video-link .icon-video,
.milestone-content .video-link .icon-video {
  color: #cc181e;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5rem;
  vertical-align: middle;
}
.debate-show .video-link p,
.proposal-show .video-link p,
.budget-investment-show .video-link p,
.polls-show .video-link p,
.draft-panels .video-link p,
.debate-questions .video-link p,
.communities-show .video-link p,
.topic-show .video-link p,
.milestone-content .video-link p {
  margin-bottom: 0;
}
.debate-show .supports,
.proposal-show .supports,
.budget-investment-show .supports,
.polls-show .supports,
.draft-panels .supports,
.debate-questions .supports,
.communities-show .supports,
.topic-show .supports,
.milestone-content .supports {
  padding: 1.5rem 0;
  position: relative;
}
.debate-show .supports .progress,
.proposal-show .supports .progress,
.budget-investment-show .supports .progress,
.polls-show .supports .progress,
.draft-panels .supports .progress,
.debate-questions .supports .progress,
.communities-show .supports .progress,
.topic-show .supports .progress,
.milestone-content .supports .progress {
  background: #ddf4b3;
  border: 1px solid #ddf4b3;
  height: 0.875rem;
  position: relative;
}
.debate-show .supports .progress .meter,
.proposal-show .supports .progress .meter,
.budget-investment-show .supports .progress .meter,
.polls-show .supports .progress .meter,
.draft-panels .supports .progress .meter,
.debate-questions .supports .progress .meter,
.communities-show .supports .progress .meter,
.topic-show .supports .progress .meter,
.milestone-content .supports .progress .meter {
  background: #94d420;
  border-radius: 0;
  border-bottom-right-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
  display: block;
  height: 0.75rem;
}
.debate-show .supports .percentage,
.proposal-show .supports .percentage,
.budget-investment-show .supports .percentage,
.polls-show .supports .percentage,
.draft-panels .supports .percentage,
.debate-questions .supports .percentage,
.communities-show .supports .percentage,
.topic-show .supports .percentage,
.milestone-content .supports .percentage {
  font-size: 0.75rem;
  position: absolute;
  right: 6px;
  top: -2px;
  vertical-align: top;
}
.debate-show .supports abbr,
.proposal-show .supports abbr,
.budget-investment-show .supports abbr,
.polls-show .supports abbr,
.draft-panels .supports abbr,
.debate-questions .supports abbr,
.communities-show .supports abbr,
.topic-show .supports abbr,
.milestone-content .supports abbr {
  color: #4b4f58;
}
.debate-show .supports abbr[title],
.proposal-show .supports abbr[title],
.budget-investment-show .supports abbr[title],
.polls-show .supports abbr[title],
.draft-panels .supports abbr[title],
.debate-questions .supports abbr[title],
.communities-show .supports abbr[title],
.topic-show .supports abbr[title],
.milestone-content .supports abbr[title] {
  border-bottom: 0;
}
.debate-show .supports .button-support,
.proposal-show .supports .button-support,
.budget-investment-show .supports .button-support,
.polls-show .supports .button-support,
.draft-panels .supports .button-support,
.debate-questions .supports .button-support,
.communities-show .supports .button-support,
.topic-show .supports .button-support,
.milestone-content .supports .button-support {
  background: #94d420;
  color: inherit;
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.debate-show .supports .button-support:hover, .debate-show .supports .button-support:active,
.proposal-show .supports .button-support:hover,
.proposal-show .supports .button-support:active,
.budget-investment-show .supports .button-support:hover,
.budget-investment-show .supports .button-support:active,
.polls-show .supports .button-support:hover,
.polls-show .supports .button-support:active,
.draft-panels .supports .button-support:hover,
.draft-panels .supports .button-support:active,
.debate-questions .supports .button-support:hover,
.debate-questions .supports .button-support:active,
.communities-show .supports .button-support:hover,
.communities-show .supports .button-support:active,
.topic-show .supports .button-support:hover,
.topic-show .supports .button-support:active,
.milestone-content .supports .button-support:hover,
.milestone-content .supports .button-support:active {
  background: #c9ed87;
  cursor: pointer;
}
.debate-show .supports .total-supports,
.proposal-show .supports .total-supports,
.budget-investment-show .supports .total-supports,
.polls-show .supports .total-supports,
.draft-panels .supports .total-supports,
.debate-questions .supports .total-supports,
.communities-show .supports .total-supports,
.topic-show .supports .total-supports,
.milestone-content .supports .total-supports {
  display: block;
  font-weight: bold;
  text-align: center;
}
.debate-show .supports .total-supports span,
.proposal-show .supports .total-supports span,
.budget-investment-show .supports .total-supports span,
.polls-show .supports .total-supports span,
.draft-panels .supports .total-supports span,
.debate-questions .supports .total-supports span,
.communities-show .supports .total-supports span,
.topic-show .supports .total-supports span,
.milestone-content .supports .total-supports span {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
}
.debate-show .supports .supported,
.proposal-show .supports .supported,
.budget-investment-show .supports .supported,
.polls-show .supports .supported,
.draft-panels .supports .supported,
.debate-questions .supports .supported,
.communities-show .supports .supported,
.topic-show .supports .supported,
.milestone-content .supports .supported {
  color: inherit;
  margin-top: 0.75rem;
}
.debate-show .tags a,
.debate-show .sdg-target-tag-list a,
.proposal-show .tags a,
.proposal-show .sdg-target-tag-list a,
.budget-investment-show .tags a,
.budget-investment-show .sdg-target-tag-list a,
.polls-show .tags a,
.polls-show .sdg-target-tag-list a,
.draft-panels .tags a,
.draft-panels .sdg-target-tag-list a,
.debate-questions .tags a,
.debate-questions .sdg-target-tag-list a,
.communities-show .tags a,
.communities-show .sdg-target-tag-list a,
.topic-show .tags a,
.topic-show .sdg-target-tag-list a,
.milestone-content .tags a,
.milestone-content .sdg-target-tag-list a {
  margin-right: 0.375rem;
}

.debate-questions .debate-questions .participation-not-allowed {
  display: block;
}

.budget-investment-show p {
  overflow-wrap: anywhere;
}

.proposal-show .supports,
.budget-investment-show .supports {
  padding: 0.75rem 0 0;
}
.proposal-show .share-supported,
.budget-investment-show .share-supported {
  display: none;
}

.show-actions-menu [class^=icon-] {
  display: inline-block;
  vertical-align: middle;
}

.additional-content .tabs {
  background: none;
  border: 0;
  margin-bottom: 0;
}
.additional-content .tabs a {
  background: none;
}
.additional-content .filter-subnav {
  position: relative;
  background: #e7f2fc;
  margin-bottom: 1.5rem;
  padding-top: 0.375rem;
}
.additional-content .filter-subnav::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .additional-content .filter-subnav::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}

@media print, screen and (max-width: 63.99875em) {
  .fixed-mobile-content {
    background: #ffffff;
    margin-bottom: -0.0625rem !important;
    padding-top: 0.75rem;
  }
}

@media print, screen and (min-width: 40em) {
  .debates-list,
  .proposals-list,
  .budget-investments-list {
    margin-bottom: 3rem;
  }
}

@media print, screen and (min-width: 40em) {
  .proposals-list,
  .budget-investments-list {
    min-height: 22.5rem;
  }
}

.debates-list .panel,
.proposals-list .panel,
.budget-investments-list .panel,
.legislation-proposals .panel {
  -webkit-column-gap: 1.40625rem;
     -moz-column-gap: 1.40625rem;
          column-gap: 1.40625rem;
  display: flex;
  flex-wrap: wrap;
}
.debates-list .panel > *,
.proposals-list .panel > *,
.budget-investments-list .panel > *,
.legislation-proposals .panel > * {
  flex-grow: 1;
}
.debates-list .panel.with-image,
.proposals-list .panel.with-image,
.budget-investments-list .panel.with-image,
.legislation-proposals .panel.with-image {
  padding-bottom: 0;
  padding-top: 0;
}
.debates-list .panel.with-image .panel-image,
.proposals-list .panel.with-image .panel-image,
.budget-investments-list .panel.with-image .panel-image,
.legislation-proposals .panel.with-image .panel-image {
  margin-left: -0.75rem;
  text-align: center;
}
.debates-list .panel.with-image .panel-image ~ *,
.proposals-list .panel.with-image .panel-image ~ *,
.budget-investments-list .panel.with-image .panel-image ~ *,
.legislation-proposals .panel.with-image .panel-image ~ * {
  padding-top: 0.75rem;
}
.debates-list .panel.with-image img,
.proposals-list .panel.with-image img,
.budget-investments-list .panel.with-image img,
.legislation-proposals .panel.with-image img {
  height: 100%;
}
.debates-list .panel .basic-content,
.proposals-list .panel .basic-content,
.budget-investments-list .panel .basic-content,
.legislation-proposals .panel .basic-content {
  flex-basis: calc((35rem - 100%) * 999);
  flex-grow: 1000;
  max-width: 50rem;
}
.debates-list .panel .basic-content + *,
.proposals-list .panel .basic-content + *,
.budget-investments-list .panel .basic-content + *,
.legislation-proposals .panel .basic-content + * {
  flex-basis: 22.5%;
  flex-shrink: 0;
  text-align: center;
}

.investments-list .investments-list-item, .process-summary .debate-summary,
.process-summary .proposal-summary,
.process-summary .annotation-summary, .debate.minimal .minimal-content,
.proposal.minimal .minimal-content,
.budget-investment.minimal .minimal-content, .debate .panel,
.proposal .panel,
.budget-investment .panel,
.legislation .panel,
.communities-show .panel {
  border: 1px solid;
  border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 #dee0e3;
  margin-bottom: 0.75rem;
  min-height: 12rem;
  padding: 0.75rem 0.75rem 0;
}
@media print, screen and (min-width: 40em) {
  .investments-list .investments-list-item, .process-summary .debate-summary,
  .process-summary .proposal-summary,
  .process-summary .annotation-summary, .debate.minimal .minimal-content,
  .proposal.minimal .minimal-content,
  .budget-investment.minimal .minimal-content, .debate .panel,
  .proposal .panel,
  .budget-investment .panel,
  .legislation .panel,
  .communities-show .panel {
    margin-bottom: -0.0625rem;
    padding-bottom: 0.75rem;
  }
}
.investments-list .investments-list-item h3, .process-summary .debate-summary h3,
.process-summary .proposal-summary h3,
.process-summary .annotation-summary h3, .debate.minimal .minimal-content h3,
.proposal.minimal .minimal-content h3,
.budget-investment.minimal .minimal-content h3, .debate .panel h3,
.proposal .panel h3,
.budget-investment .panel h3,
.legislation .panel h3,
.communities-show .panel h3 {
  font-weight: bold;
  margin-top: 0.75rem;
}
.investments-list .investments-list-item h3 a, .process-summary .debate-summary h3 a,
.process-summary .proposal-summary h3 a,
.process-summary .annotation-summary h3 a, .debate.minimal .minimal-content h3 a,
.proposal.minimal .minimal-content h3 a,
.budget-investment.minimal .minimal-content h3 a, .debate .panel h3 a,
.proposal .panel h3 a,
.budget-investment .panel h3 a,
.legislation .panel h3 a,
.communities-show .panel h3 a {
  color: inherit;
  display: inline-block;
}
.investments-list .past-budgets.investments-list-item, .process-summary .past-budgets.debate-summary,
.process-summary .past-budgets.proposal-summary,
.process-summary .past-budgets.annotation-summary, .debate.minimal .past-budgets.minimal-content,
.proposal.minimal .past-budgets.minimal-content,
.budget-investment.minimal .past-budgets.minimal-content, .debate .past-budgets.panel,
.proposal .past-budgets.panel,
.budget-investment .past-budgets.panel,
.legislation .past-budgets.panel,
.communities-show .past-budgets.panel {
  display: flex;
  flex-wrap: wrap;
  min-height: 0;
}
.investments-list .past-budgets.investments-list-item > :not(:first-child), .process-summary .past-budgets.debate-summary > :not(:first-child),
.process-summary .past-budgets.proposal-summary > :not(:first-child),
.process-summary .past-budgets.annotation-summary > :not(:first-child), .debate.minimal .past-budgets.minimal-content > :not(:first-child),
.proposal.minimal .past-budgets.minimal-content > :not(:first-child),
.budget-investment.minimal .past-budgets.minimal-content > :not(:first-child), .debate .past-budgets.panel > :not(:first-child),
.proposal .past-budgets.panel > :not(:first-child),
.budget-investment .past-budgets.panel > :not(:first-child),
.legislation .past-budgets.panel > :not(:first-child),
.communities-show .past-budgets.panel > :not(:first-child) {
  margin-left: auto;
}
.investments-list .past-budgets.investments-list-item .button, .process-summary .past-budgets.debate-summary .button,
.process-summary .past-budgets.proposal-summary .button,
.process-summary .past-budgets.annotation-summary .button, .debate.minimal .past-budgets.minimal-content .button,
.proposal.minimal .past-budgets.minimal-content .button,
.budget-investment.minimal .past-budgets.minimal-content .button, .debate .past-budgets.panel .button,
.proposal .past-budgets.panel .button,
.budget-investment .past-budgets.panel .button,
.legislation .past-budgets.panel .button,
.communities-show .past-budgets.panel .button {
  margin-left: 1.5rem;
}

.debate,
.proposal,
.budget-investment,
.legislation,
.communities-show {
  margin: 0.375rem 0;
}
.debate .tags a,
.debate .sdg-target-tag-list a,
.proposal .tags a,
.proposal .sdg-target-tag-list a,
.budget-investment .tags a,
.budget-investment .sdg-target-tag-list a,
.legislation .tags a,
.legislation .sdg-target-tag-list a,
.communities-show .tags a,
.communities-show .sdg-target-tag-list a {
  font-size: 0.75rem;
}

.more-info {
  clear: both;
  color: #4b4f58;
  font-size: 0.875rem;
}
.more-info a {
  color: #4b4f58;
}

.debate .votes,
.debate-show .votes,
.proposal-show .votes,
.legislation-proposals .votes {
  margin-top: 1.5rem;
  padding: 0.75rem 0;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .debate .votes,
  .debate-show .votes,
  .proposal-show .votes,
  .legislation-proposals .votes {
    margin-top: 0;
    text-align: center;
  }
}
.debate .votes .total-votes,
.debate-show .votes .total-votes,
.proposal-show .votes .total-votes,
.legislation-proposals .votes .total-votes {
  display: block;
  font-weight: bold;
  line-height: 3rem;
}

.legislation-proposals .votes {
  min-height: 12rem;
}

.proposal .supports,
.budget-investment .supports {
  padding: 1.5rem 0;
  position: relative;
}
.proposal .supports .progress,
.budget-investment .supports .progress {
  background: #ddf4b3;
  border: 1px solid #ddf4b3;
  height: 0.875rem;
  position: relative;
}
.proposal .supports .progress .meter,
.budget-investment .supports .progress .meter {
  background: #94d420;
  border-radius: 0;
  border-bottom-right-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
  display: block;
  height: 0.75rem;
}
.proposal .supports .percentage,
.budget-investment .supports .percentage {
  font-size: 0.75rem;
  position: absolute;
  right: 6px;
  top: -2px;
  vertical-align: top;
}
.proposal .supports abbr,
.budget-investment .supports abbr {
  color: #4b4f58;
}
.proposal .supports abbr[title],
.budget-investment .supports abbr[title] {
  border-bottom: 0;
}
.proposal .supports .button-support,
.budget-investment .supports .button-support {
  background: #94d420;
  color: inherit;
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.proposal .supports .button-support:hover, .proposal .supports .button-support:active,
.budget-investment .supports .button-support:hover,
.budget-investment .supports .button-support:active {
  background: #c9ed87;
  cursor: pointer;
}
.proposal .supports .total-supports,
.budget-investment .supports .total-supports {
  display: block;
  font-weight: bold;
  text-align: center;
}
.proposal .supports .total-supports span,
.budget-investment .supports .total-supports span {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
}
.proposal .supports .supported,
.budget-investment .supports .supported {
  color: inherit;
  margin-top: 0.75rem;
}

.budget-investment .supports .investment-project-amount,
.budget-investment-show .supports .investment-project-amount {
  color: #7e328a;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0;
}
.budget-investment .supports .button-support,
.budget-investment-show .supports .button-support {
  background-color: #7e328a;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: bold;
}
.budget-investment .supports .button-support::selection,
.budget-investment .supports .button-support *::selection,
.budget-investment-show .supports .button-support::selection,
.budget-investment-show .supports .button-support *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.budget-investment .supports .button-support:hover,
.budget-investment-show .supports .button-support:hover {
  background: #7571bf;
  cursor: pointer;
}
.budget-investment .supports .button-support:active,
.budget-investment-show .supports .button-support:active {
  opacity: 0.75;
}
.budget-investment .supports .total-supports,
.budget-investment-show .supports .total-supports {
  color: #7e328a;
  font-size: 1.0625rem;
  font-weight: bold;
}
.budget-investment .supports .remove .icon-check-circle,
.budget-investment-show .supports .remove .icon-check-circle {
  color: #7e328a;
  display: block;
  font-size: 4.375rem;
  line-height: 4.375rem;
}

.budget-investment-show figure {
  display: inline-block;
  margin: 0.625rem 0 0;
}
.budget-investment-show figure figcaption {
  font-size: 0.875rem;
  margin-top: 0.625rem;
}
.budget-investment-show .investment-external-link a {
  overflow-wrap: break-word;
}

.budget-investment-show .supports {
  border: 0;
}

.budget-investment .no-button,
.budget-investment-show .no-button {
  display: block;
  margin-top: 2.25rem;
}

.budget-investment-show .label-budget-investment {
  background: none;
  clear: both;
  color: #7e328a;
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-top: 0;
  text-transform: uppercase;
}
.budget-investment-show .icon-budget {
  color: #7e328a;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-left: 0.375rem;
  top: 0;
}

.help-header,
.section-header {
  position: relative;
  position: relative;
  background: #fafafa;
  margin-bottom: 1.5rem;
  margin-top: -1.5rem;
  padding-bottom: 0.75rem;
  padding-top: 1.5rem;
}
.help-header::before,
.section-header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .help-header::before,
  .section-header::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.help-header::after,
.section-header::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 75em) {
  .help-header::after,
  .section-header::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.help-header h1,
.section-header h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.debate.minimal .minimal-content,
.proposal.minimal .minimal-content,
.budget-investment.minimal .minimal-content {
  min-height: 0;
}
.debate.minimal .minimal-content h3,
.proposal.minimal .minimal-content h3,
.budget-investment.minimal .minimal-content h3 {
  margin: 0 0 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .debate.minimal .minimal-content h3,
  .proposal.minimal .minimal-content h3,
  .budget-investment.minimal .minimal-content h3 {
    margin: 0;
  }
}

.featured-debates,
.featured-proposals {
  padding: 0.75rem 0;
}
@media print, screen and (min-width: 40em) {
  .featured-debates,
  .featured-proposals {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.featured-debates h2,
.featured-proposals h2 {
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}
.featured-debates h3,
.featured-proposals h3 {
  margin-bottom: 0;
}
.featured-debates h3 a,
.featured-proposals h3 a {
  color: inherit;
  font-size: 1.5rem;
}
.featured-debates a,
.featured-debates .info,
.featured-proposals a,
.featured-proposals .info {
  color: #545454;
  font-size: 0.875rem;
}

.featured-debates {
  background: #e7f2fc;
}

.budget-header {
  margin-top: -1.5rem;
  min-height: 37.5rem;
  padding-bottom: 1.5rem;
  padding-top: 6rem;
}
.budget-header.with-background-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.budget-header h1 {
  padding-top: 3rem;
}
.budget-header .budget-title {
  font-weight: bold;
  text-transform: uppercase;
}
.budget-header .budget-title::after {
  border-bottom: 2px solid #fff;
  content: "";
  display: block;
  margin: 0 auto;
  padding-top: 0.75rem;
  width: 20%;
}
.budget-header .confirmed {
  font-size: 1.5rem;
  font-weight: bold;
}
.budget-header .info {
  background: #6a2a72;
}
.budget-header .info p {
  margin-bottom: 0;
  text-transform: uppercase;
}
.budget-header .main-link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  min-width: 30%;
  text-decoration: none;
}
[data-whatinput=mouse] .budget-header .main-link {
  outline: 0;
}
.budget-header .main-link:focus, .budget-header .main-link:hover {
  text-decoration: none !important;
}
.budget-header .main-link[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.budget-header .main-link::selection,
.budget-header .main-link *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.budget-header .main-link:hover, .budget-header .main-link:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.budget-header .main-link:hover::selection,
.budget-header .main-link:hover *::selection, .budget-header .main-link:focus::selection,
.budget-header .main-link:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.jumbo-budget {
  position: relative;
}
.jumbo-budget::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 2px solid #dee0e3;
}
@media screen and (min-width: 75em) {
  .jumbo-budget::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.jumbo-budget.budget-heading {
  min-height: 15rem;
}
.jumbo-budget.budget-heading .check-ballot {
  float: right;
  min-width: 15rem;
}
.jumbo-budget.budget-heading .check-ballot::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
}
.jumbo-budget.budget-heading .check-ballot::after {
  margin-left: 0.375rem;
}
.jumbo-budget h2 {
  margin-bottom: 0;
}
.jumbo-budget .tagline {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
}
.jumbo-budget .callout.warning {
  font-size: 1.0625rem;
}
.jumbo-budget .callout.warning a {
  color: inherit;
}
.jumbo-budget a {
  text-decoration: underline;
}
.jumbo-budget .button {
  margin-bottom: 0.1875rem;
  text-decoration: none;
}

.current-phase {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.current-phase::selection,
.current-phase *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}

.progress-votes {
  position: relative;
}
.progress-votes .progress {
  background: #bbcdd9;
  border-radius: 0.75rem;
  clear: both;
  margin-bottom: 0;
  overflow: hidden;
}
.progress-votes .progress-meter {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  border-radius: 0.75rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  transition: width 2s;
}
.progress-votes .progress-meter::selection,
.progress-votes .progress-meter *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.progress-votes .total-amount,
.progress-votes .amount-available {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}
.progress-votes .total-amount {
  font-size: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .progress-votes .total-amount {
    text-align: right;
  }
}
.progress-votes .total-amount span {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  font-size: 1.0625rem;
}
.progress-votes .total-amount span::selection,
.progress-votes .total-amount span *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.progress-votes .amount-available {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.1875rem;
  position: relative;
  text-align: right;
  white-space: nowrap;
}
.progress-votes .amount-available::before {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  content: "W";
  font-family: "icons";
  font-size: 0.875rem;
  line-height: 0;
  position: absolute;
  right: -0.5em;
  top: -0.1875rem;
}
.progress-votes .amount-available::before::selection,
.progress-votes .amount-available::before *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.progress-votes .amount-available span {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  font-size: 1.5rem;
}
.progress-votes .amount-available span::selection,
.progress-votes .amount-available span *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}

.ballot h2,
.ballot h3 {
  font-weight: normal;
}
.ballot h2 span,
.ballot h3 span {
  color: #7e328a;
  font-weight: bold;
}
.ballot .ballot-content {
  border: 2px solid #f9f9f9;
  border-radius: 0.375rem;
  padding: 0.75rem;
}
.ballot .subtitle {
  border-left: 2px solid #2e2e2e;
  border-left: 2px solid var(--brand, #2e2e2e);
  margin: 0.75rem 0;
  padding-left: 0.75rem;
}
.ballot .amount-spent {
  background: #dff0d8;
  font-weight: normal;
  padding: 0.75rem;
}
.ballot .amount-spent span {
  font-size: 1.5rem;
  font-weight: bold;
}

.ballot-list {
  list-style: none;
  margin-left: 0;
}

.select-district a {
  display: inline-block;
  margin: 0.375rem 0;
  padding: 0.375rem;
}

.select-district .is-active a {
  background: #f9f9f9;
  border-radius: 0.1875rem;
  color: #7e328a;
  font-weight: bold;
  padding: 0.375rem;
}
.select-district .is-active a::after {
  content: "V";
  font-family: "icons";
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5rem;
  padding-left: 0.1875rem;
  vertical-align: baseline;
}
.select-district .is-active a::after:hover {
  text-decoration: none;
}

.progress-bar-nav {
  position: relative;
  z-index: 3;
}
@media print, screen and (min-width: 40em) {
  .progress-bar-nav {
    transition: height 0.3s;
  }
  .progress-bar-nav.is-fixed {
    background: #ffffff;
    border-bottom: 2px solid #dee0e3;
    height: auto;
    left: 0;
    padding: 1.5rem;
    padding-bottom: 0.75rem;
    position: fixed;
    top: 0;
    width: 100%;
  }
  .progress-bar-nav.is-fixed h2 {
    font-size: 1.5rem;
    transition: font-size 0.3s;
  }
}
.progress-bar-nav h2 {
  transition: font-size 0.3s;
}
@media print, screen and (max-width: 39.99875em) {
  .progress-bar-nav h2 {
    margin: 1.5rem 0;
  }
}

.budgets-stats .header {
  position: relative;
  background: #e7f2fc;
}
.budgets-stats .header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .budgets-stats .header::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}

.successful .panel .icon-successful {
  border-bottom: 60px solid transparent;
  border-right: 60px solid #ffd200;
  border-top: 0;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}
.successful .panel .icon-successful::after {
  color: #1b254c;
  content: "Y";
  font-family: "icons" !important;
  left: 34px;
  position: absolute;
  top: 5px;
}

.successful .panel {
  position: relative;
}
.successful .truncate {
  display: none;
}
.successful .message {
  padding: 1.5rem 0;
  position: relative;
  background: none;
  border-top: 0;
}
.successful .message .progress {
  background: #ddf4b3;
  border: 1px solid #ddf4b3;
  height: 0.875rem;
  position: relative;
}
.successful .message .progress .meter {
  background: #94d420;
  border-radius: 0;
  border-bottom-right-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
  display: block;
  height: 0.75rem;
}
.successful .message .percentage {
  font-size: 0.75rem;
  position: absolute;
  right: 6px;
  top: -2px;
  vertical-align: top;
}
.successful .message abbr {
  color: #4b4f58;
}
.successful .message abbr[title] {
  border-bottom: 0;
}
.successful .message .button-support {
  background: #94d420;
  color: inherit;
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.successful .message .button-support:hover, .successful .message .button-support:active {
  background: #c9ed87;
  cursor: pointer;
}
.successful .message .total-supports {
  display: block;
  font-weight: bold;
  text-align: center;
}
.successful .message .total-supports span {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
}
.successful .message .supported {
  color: inherit;
  margin-top: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .successful .message {
    border-left: 1px solid #dee0e3;
    margin: 1.5rem -1.5625rem 0 0.75rem;
  }
}

.polls-show-header {
  position: relative;
  background: #fafafa;
}
.polls-show-header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .polls-show-header::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}

.poll-more-info .read-more,
.poll-more-info-options .read-more {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.poll-more-info .read-more button,
.poll-more-info-options .read-more button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.poll-more-info .read-more button:hover, .poll-more-info .read-more button:active, .poll-more-info .read-more button:focus,
.poll-more-info-options .read-more button:hover,
.poll-more-info-options .read-more button:active,
.poll-more-info-options .read-more button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.poll-more-info .read-more button:hover, .poll-more-info .read-more button:active,
.poll-more-info-options .read-more button:hover,
.poll-more-info-options .read-more button:active {
  text-decoration: underline;
}

.poll-more-info {
  border-top: 1px solid #eee;
}

.poll-more-info-options {
  position: relative;
  position: relative;
  position: relative;
  background: #fafafa;
}
.poll-more-info-options::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .poll-more-info-options::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.poll-more-info-options::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-top: 1px solid #eee;
}
@media screen and (min-width: 75em) {
  .poll-more-info-options::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.poll-more-info-options::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 75em) {
  .poll-more-info-options::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.poll-more-info-options .column:nth-child(odd) {
  border-right: 2px solid;
}
.poll-more-info-options .option-divider {
  border-bottom: 2px solid;
  border-right: 0 !important;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.poll-more-info-options .option-description {
  height: 100%;
}
.poll-more-info-options .option-description.short {
  height: 18.75rem;
  overflow: hidden;
}
.poll-more-info-options .document-link > :first-child::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M320 464c8.8 0 16-7.2 16-16l0-288-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l256 0zM0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 448c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M320 464c8.8 0 16-7.2 16-16l0-288-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l256 0zM0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 448c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64z'/%3E%3C/svg%3E");
}
.poll-more-info-options .document-link > :first-child::before {
  position: relative;
  top: -0.1rem;
}
.poll-more-info-options .document-link a {
  overflow-wrap: break-word;
}

.orbit-bullets button {
  background-color: #ccc;
  height: 0.75rem;
  width: 0.75rem;
}
.orbit-bullets button.is-active {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.orbit-bullets button.is-active::selection,
.orbit-bullets button.is-active *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.orbit-container {
  height: 100% !important;
  max-height: none !important;
}
.orbit-container li {
  margin-bottom: 0 !important;
}

.orbit-slide {
  max-height: none !important;
  position: relative;
}

.public .poll {
  border: 1px solid #dee0e3;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  position: relative;
}

.section-title-divider {
  border-bottom: 1px solid #eee;
  margin: 1.5rem 0;
}
.section-title-divider span {
  border-bottom: 1px solid;
}

.polls-results table,
.polls-stats table {
  table-layout: fixed;
}
.polls-results table caption,
.polls-stats table caption {
  padding: 0.75rem 0;
  text-align: left;
}
.polls-results table th,
.polls-stats table th {
  text-align: left;
}
.polls-results table th.win,
.polls-stats table th.win {
  background: #009fde;
}
.polls-results table td.win,
.polls-stats table td.win {
  background: #ccedf8;
  font-weight: bold;
}

.tab-milestones .timeline li {
  margin: 0 auto;
  position: relative;
  width: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .tab-milestones .timeline li {
    width: 100%;
  }
}
.tab-milestones .timeline li::before {
  background: #7e328a;
  border-radius: 1.25rem;
  content: "";
  height: 1.25rem;
  position: absolute;
  top: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.25rem;
  z-index: 2;
}
.tab-milestones .timeline li::after {
  background: #e6e6e6;
  bottom: 100%;
  content: "";
  height: 100%;
  position: absolute;
  top: 25px;
  width: 1px;
  z-index: 1;
}
.tab-milestones .timeline li .milestone-content {
  padding: 0.25rem 0.75rem;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .tab-milestones .timeline li .milestone-content {
    width: 18.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .tab-milestones .timeline li .milestone-content {
    width: 28.125rem;
  }
}
.tab-milestones .timeline li .milestone-content h3 {
  margin-bottom: 0;
}
.tab-milestones .timeline li .milestone-content .milestone-date {
  color: #4b4f58;
  font-size: 0.875rem;
}
.tab-milestones .timeline li:nth-child(odd) .milestone-content {
  text-align: right;
}
@media print, screen and (min-width: 40em) {
  .tab-milestones .timeline li:nth-child(odd) .milestone-content {
    margin-left: -19.6875rem;
  }
}
@media print, screen and (min-width: 64em) {
  .tab-milestones .timeline li:nth-child(odd) .milestone-content {
    margin-left: -29.0625rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .tab-milestones .timeline li:nth-child(odd) .milestone-content {
    left: 15px;
    text-align: left;
  }
}
.tab-milestones .timeline li:nth-child(even) .milestone-content {
  left: 15px;
}

.milestone-status {
  background-color: #7e328a;
  color: #ffffff;
  border-radius: 0.25rem;
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.375rem 0.75rem;
}
.milestone-status::selection,
.milestone-status *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.jumbo {
  background: #e7f2fc;
  margin-bottom: 1.5rem;
  margin-top: -1.5rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .jumbo {
    padding: 1.5rem 0;
  }
}
.jumbo.light {
  position: relative;
  background: #ecf0f1;
}
.jumbo.light::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .jumbo.light::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.jumbo.header-card {
  position: relative;
}
.jumbo.header-card::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .jumbo.header-card::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}

.lead {
  font-size: 1.5rem;
}

.menu-pages {
  list-style-type: none;
  margin: 0;
}
.menu-pages li {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .menu-pages li {
    display: inline-block;
    margin-right: 0.75rem;
  }
}

.more-info-content h3 {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.more-info-content h3::selection,
.more-info-content h3 *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.more-info-content a:not(.button) {
  text-decoration: underline;
}
.more-info-content figure {
  margin: 0;
  text-align: center;
}
.more-info-content figure figcaption {
  font-size: 0.875rem;
  font-style: italic;
}
.more-info-content .features {
  list-style-type: circle;
  margin-left: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .more-info-content .features {
    margin: 1.5rem 0 1.5rem 3.75rem;
  }
}
.more-info-content .features li {
  margin-bottom: 1.5rem;
}
.more-info-content .section-content {
  border-top: 1px solid #cacaca;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.more-info-content .section-content:first-child {
  border-top: 0;
  padding-top: 0;
}

.more-info-sidebar .sidebar-card {
  border: 1px solid #dee0e3;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
}
.more-info-sidebar .sidebar-card.light {
  background: #ecf0f1;
  border: 0;
}

.proposal-dashboard {
  height: 100%;
}
.proposal-dashboard > header {
  margin-bottom: 0;
}
.proposal-dashboard > .menu-and-content {
  flex-grow: 1;
}

.proposal-title {
  display: inline-block;
}
.proposal-title .label {
  display: inline-block;
  margin-left: 0.75rem;
  vertical-align: top;
}

.dashboard-proposals-stats {
  border: 2px solid #e7f2fc;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  text-align: center;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .dashboard-proposals-stats .change-behaviour {
    float: left;
    margin-top: 0.75rem;
    padding: 1.5rem;
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .dashboard-proposals-stats .counter-divider {
    border-left: 2px solid #e7f2fc;
  }
}
@media print, screen and (min-width: 64em) {
  .dashboard-proposals-stats .counter-divider {
    border-right: 2px solid #e7f2fc;
  }
}
.dashboard-proposals-stats .counter-value {
  font-size: 1.25rem;
  font-weight: bold;
}
.dashboard-proposals-stats .counter-label {
  color: #4b4f58;
  font-weight: bold;
}
.dashboard-proposals-stats .progress {
  background: #f0efea;
  border-radius: 0.375rem;
  height: 0.75rem;
}
.dashboard-proposals-stats .progress-meter {
  background: #ffad33;
  border-bottom-right-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
}
.dashboard-proposals-stats .next-goal-progress {
  font-size: 0.875rem;
  font-weight: bold;
  text-align: right;
}

.title {
  border-bottom: 1px solid #dee0e3;
  margin: 1.5rem 0;
}

.dashboard-related-content .related-content {
  border-top: 0;
}
.dashboard-related-content .related-content .margin-bottom {
  margin-bottom: 0;
}

.action {
  margin-top: 1.5rem;
}
.action .action-content {
  display: inline-block;
  margin-left: 0.375rem;
  max-width: 90%;
  word-break: break-all;
}
.action .action-content h4 {
  display: inline-block;
}
.action .action-content .label {
  margin-left: 0.75rem;
}
.action .action-content a {
  display: block;
}
.action .action-content h4,
.action .action-content p {
  margin-bottom: 0;
}
.action .action-content p {
  font-size: 0.875rem;
}
.action .action-content button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.action .action-content button:hover, .action .action-content button:active, .action .action-content button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.action .action-content button:hover, .action .action-content button:active {
  text-decoration: underline;
}
.action form {
  display: inline;
  vertical-align: top;
}
.action form button {
  font-size: 1.5em;
}
.action .checked-link {
  color: #3c763d;
}
.action .checked-link::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}
.action .unchecked-link {
  color: #8a8a8a;
}
.action .unchecked-link::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M384 80c8.8 0 16 7.2 16 16l0 320c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16L48 96c0-8.8 7.2-16 16-16l320 0zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M384 80c8.8 0 16 7.2 16 16l0 320c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16L48 96c0-8.8 7.2-16 16-16l320 0zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32z'/%3E%3C/svg%3E");
}

.proposed-actions button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.proposed-actions button:hover, .proposed-actions button:active, .proposed-actions button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.proposed-actions button:hover, .proposed-actions button:active {
  text-decoration: underline;
}

.next-goal {
  border-left: 2px solid #dee0e3;
  margin-left: 1.5rem;
  margin-top: -1.5rem;
  padding-left: 1.5rem;
  padding-top: 1.5rem;
  position: relative;
}
.next-goal::before {
  background: #ffffff;
  border: 1px solid #dee0e3;
  border-radius: 2.25rem;
  content: "w";
  font-family: "icons";
  font-size: 1.5rem;
  height: 2.25rem;
  left: -18px;
  padding: 0 0.375rem 0.375rem;
  position: absolute;
  top: 18px;
  width: 2.25rem;
}
.next-goal .help-text {
  color: #4b4f58;
  display: block;
  padding-top: 0.375rem;
}

.goal-supports,
.goal-resource,
.goal-days {
  margin-bottom: 1.5rem;
  padding-left: 2.25rem;
  position: relative;
}
.goal-supports::before,
.goal-resource::before,
.goal-days::before {
  font-family: "icons";
  font-size: 1.5rem;
  left: 6px;
  position: absolute;
  top: -6px;
}

.goal-supports::before {
  content: "w";
}

.goal-resource::before {
  content: "t";
}

.goal-days::before {
  content: "g";
}

.goals-section button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.goals-section button:hover, .goals-section button:active, .goals-section button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.goals-section button:hover, .goals-section button:active {
  text-decoration: underline;
}

.dashboard-sidebar {
  background: #fbfbfb;
  border-right: 1px solid #dee0e3;
}
.dashboard-sidebar [class^=icon-] {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5rem;
  padding: 0.75rem 0.375rem;
  padding-left: 0;
  vertical-align: middle;
}
.dashboard-sidebar ul li {
  line-height: 3rem;
  padding-left: 1.5rem;
}
.dashboard-sidebar ul.resources {
  border-left: 1px solid #dee0e3;
  margin-left: 0.75rem;
}
.dashboard-sidebar a {
  color: inherit;
}
.dashboard-sidebar .is-active {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  position: relative;
}
.dashboard-sidebar .is-active::selection,
.dashboard-sidebar .is-active *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.dashboard-sidebar .is-active::before {
  background: linear-gradient(to right, rgb(231, 236, 240) 0%, rgb(251, 251, 251) 90%);
  border-left: 4px solid;
  content: "";
  height: 3rem;
  left: 0;
  padding-left: 1.25rem;
  position: absolute;
  width: 1.5rem;
}
.dashboard-sidebar .is-active a {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.dashboard-sidebar .is-active a::selection,
.dashboard-sidebar .is-active a *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.dashboard-sidebar .is-active [class^=icon-] {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.dashboard-sidebar .is-active [class^=icon-]::selection,
.dashboard-sidebar .is-active [class^=icon-] *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.dashboard-sidebar .has-tip {
  border-bottom: 0;
  cursor: auto;
  font-weight: normal;
}
.dashboard-sidebar .submenu-active {
  border-bottom: 2px solid;
}
.dashboard-sidebar .submenu-active .has-tip {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  font-weight: bold;
}
.dashboard-sidebar .submenu-active .has-tip::selection,
.dashboard-sidebar .submenu-active .has-tip *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}

.dashboard-community .community-number {
  font-size: 1.5rem;
  font-weight: bold;
}
.dashboard-community [class^=icon-] {
  color: #4b4f58;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5rem;
  vertical-align: middle;
}
.dashboard-community .community-info {
  color: #4b4f58;
}
.dashboard-community .community-info {
  font-size: 0.875rem;
}

.proposal-graph .bb-ygrid-lines line {
  stroke: #005c92;
}
.proposal-graph .bb-ygrid-lines text {
  fill: #005c92;
}

.question-fields {
  border-bottom: 1px solid #dee0e3;
  margin-bottom: 1.5rem;
}

.option-fields {
  background: #fbfbfb;
  border: 1px solid #dee0e3;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.community-poll {
  border-bottom: 1px solid #dee0e3;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}

.dashboard-mail-preview {
  max-width: 37.5rem;
}
.dashboard-mail-preview .mail-header {
  background-color: #0300ff;
  color: #ffffff;
  padding: 3rem;
}
.dashboard-mail-preview .mail-header::selection,
.dashboard-mail-preview .mail-header *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.dashboard-mail-preview .mail-header img {
  max-width: 2.5rem;
  vertical-align: top;
}
.dashboard-mail-preview .mail-header h1 {
  font-size: 3.75rem;
}
.dashboard-mail-preview .mail-header h2 {
  margin-top: 1.5rem;
}
.dashboard-mail-preview .margin-bottom img {
  box-shadow: -16px 61px 49px -19px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.dashboard-mail-preview .mail-body {
  color: #4b4f58;
  padding: 3rem;
  text-align: left;
}
.dashboard-mail-preview .mail-body .button {
  background: #064c86;
  box-shadow: -4px 18px 45px -19px rgba(0, 0, 0, 0.75);
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}
.dashboard-mail-preview .mail-body img {
  margin-top: 1.5rem;
  max-width: 7.5rem;
}
.dashboard-mail-preview .mail-body p {
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.dashboard-poster-preview .poster-header,
.dashboard-poster-pdf .poster-header {
  background-color: #0300ff;
  color: #ffffff;
}
.dashboard-poster-preview .poster-header::selection,
.dashboard-poster-preview .poster-header *::selection,
.dashboard-poster-pdf .poster-header::selection,
.dashboard-poster-pdf .poster-header *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.dashboard-poster-preview .poster-header h1,
.dashboard-poster-pdf .poster-header h1 {
  text-align: left;
}
.dashboard-poster-preview .proposal-image,
.dashboard-poster-pdf .proposal-image {
  margin: 0 auto;
  position: relative;
}
.dashboard-poster-preview .proposal-image::before,
.dashboard-poster-pdf .proposal-image::before {
  background: #ff9e00;
  content: "";
  position: absolute;
}
.dashboard-poster-preview .proposal-image .overflow-image,
.dashboard-poster-pdf .proposal-image .overflow-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.dashboard-poster-preview .proposal-code,
.dashboard-poster-pdf .proposal-code {
  text-align: center;
}
.dashboard-poster-preview .poster-content,
.dashboard-poster-pdf .poster-content {
  margin: 0 auto;
  max-width: 90%;
}
.dashboard-poster-preview .poster-content h2,
.dashboard-poster-pdf .poster-content h2 {
  color: #4b4f58;
  text-align: left;
}
.dashboard-poster-preview .poster-content h3,
.dashboard-poster-pdf .poster-content h3 {
  color: #0300ff;
  display: inline;
}
.dashboard-poster-preview .poster-content .poster-footer,
.dashboard-poster-pdf .poster-content .poster-footer {
  border-left: 2px solid #dee0e3;
  color: #4b4f58;
}

.dashboard-poster-preview .preview-width {
  width: 41.3125rem;
}
.dashboard-poster-preview .poster-header {
  height: 37.5rem;
  padding: 3rem 1.5rem;
}
.dashboard-poster-preview .poster-header h1 {
  font-size: 3.75rem;
  line-height: 5rem;
}
.dashboard-poster-preview .poster-header h1 img {
  max-width: 3.125rem;
}
.dashboard-poster-preview .poster-header p {
  font-size: 1.125rem;
  margin: 0 auto;
}
.dashboard-poster-preview .poster-header .intro {
  margin: 3rem auto;
  max-width: 60%;
  text-align: justify;
}
.dashboard-poster-preview .proposal-image {
  margin: 0 auto;
  max-width: 90%;
  position: relative;
}
.dashboard-poster-preview .proposal-image .overflow-image {
  height: 400px;
}
.dashboard-poster-preview .proposal-image::before {
  height: 7.5rem;
  left: -30px;
  top: -20px;
  width: 7.5rem;
}
.dashboard-poster-preview .proposal-image img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  margin-top: 0.625rem;
  position: relative;
  width: 100%;
}
.dashboard-poster-preview .proposal-image h2 {
  margin: 1.5rem 0;
}
.dashboard-poster-preview .poster-content img {
  max-width: 2.5rem;
  vertical-align: top;
}
.dashboard-poster-preview .poster-content h2 {
  font-size: 1.75rem;
  margin: 1.5rem 0;
}
.dashboard-poster-preview .poster-content h3 {
  font-size: 2.8125rem;
  margin-bottom: 3rem;
}
.dashboard-poster-preview .poster-footer {
  font-size: 1.1875rem;
  margin-top: 3.125rem;
  padding-left: 2.5rem;
  width: 75%;
}

.dashboard-poster-pdf .poster-header {
  font-weight: normal;
  height: 60cm;
  padding: 5cm;
}
.dashboard-poster-pdf .poster-header h1 {
  font-size: 6cm;
  font-weight: bold;
  line-height: 15.625rem;
}
.dashboard-poster-pdf .poster-header h1 img {
  max-width: 9.375rem;
}
.dashboard-poster-pdf .poster-header p {
  font-size: 5rem;
  line-height: 6.25rem;
}
.dashboard-poster-pdf .poster-header p.intro {
  margin: 10rem auto;
  max-width: 70%;
  text-align: justify;
}
.dashboard-poster-pdf .poster-header p.proposal-code {
  font-size: 1.7cm;
}
.dashboard-poster-pdf .proposal-image {
  margin: 0 auto;
  max-width: 90%;
  position: relative;
}
.dashboard-poster-pdf .proposal-image::before {
  height: 26.25rem;
  left: -8.125rem;
  top: -8.125rem;
  width: 26.25rem;
}
.dashboard-poster-pdf .proposal-image .overflow-image {
  height: 37cm;
}
.dashboard-poster-pdf .proposal-image h2 {
  margin: 1.5rem 0;
}
.dashboard-poster-pdf .poster-content img {
  height: 3cm;
  vertical-align: top;
  width: 3cm;
}
.dashboard-poster-pdf .poster-content h2 {
  font-size: 3cm;
  margin: 1.5rem 0;
}
.dashboard-poster-pdf .poster-content h3 {
  font-size: 4.7cm;
  line-height: 5.5cm;
  margin-top: 1.5rem;
  max-width: 80%;
}
.dashboard-poster-pdf .poster-footer {
  display: block;
  margin-left: 10cm;
  margin-top: 2cm;
  max-width: 75%;
  padding-left: 4cm;
}

.legislation {
  border: 1px solid;
  border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 #dee0e3;
  margin: 0 0 1.5rem;
  min-height: 12rem;
  padding: 2rem 0 0;
}

.legislation-text {
  margin-bottom: 1rem;
}
.legislation-text > * {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .legislation-text > * {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.legislation-text h3 a {
  color: inherit;
  display: inline-block;
  margin-bottom: 1rem;
}

.legislation-calendar-info p {
  color: #4b4f58;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.legislation-calendar {
  background: #e7f2fc;
  padding-top: 1rem;
}
.legislation-calendar h4 {
  color: #61686e;
  font-size: 1rem;
  margin-bottom: 0;
  margin-left: 0.25rem;
}
@media print, screen and (min-width: 40em) {
  .legislation-calendar h4 {
    margin-left: 0;
  }
}
.legislation-calendar p {
  font-size: 0.875rem;
  margin-left: 0.25rem;
}
@media print, screen and (min-width: 40em) {
  .legislation-calendar p {
    margin-left: 0;
  }
}

.legislation-hero {
  position: relative;
}
.legislation-hero::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .legislation-hero::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.legislation-hero .title {
  font-weight: bold;
  text-transform: uppercase;
}
.legislation-hero .description li p {
  display: inline;
}

.legislation-process-list {
  position: relative;
}
.legislation-process-list::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 1px solid #dee0e3;
}
@media screen and (min-width: 75em) {
  .legislation-process-list::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}

.key-dates {
  list-style-type: none;
  margin: 0 -0.625rem;
}
@media print, screen and (min-width: 64em) {
  .key-dates {
    margin: 0;
  }
}
.key-dates li {
  border: 1px solid #dee0e3;
  display: block;
  margin: -0.0625rem 0;
  min-height: 4.5rem;
  position: relative;
  vertical-align: top;
}
@media print, screen and (max-width: 74.99875em) {
  .key-dates li::after {
    content: "c";
    font-family: "icons" !important;
    font-size: 1.5rem;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 12px;
  }
}
@media print, screen and (min-width: 64em) {
  .key-dates li {
    background: #fafafa;
    border-bottom: 0;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 0.375rem;
    margin-top: 0;
  }
  .key-dates li:hover:not(.is-active) {
    background: #e7f2fc;
  }
  .key-dates li::after {
    content: "";
  }
}
.key-dates li a {
  display: block;
  padding: 0.375rem 0.75rem;
}
@media print, screen and (min-width: 64em) {
  .key-dates li a {
    display: inline-block;
  }
}
.key-dates li a:hover {
  text-decoration: none;
}
.key-dates li a h4 {
  margin-bottom: 0;
}
.key-dates span {
  color: #4b4f58;
  font-size: 0.875rem;
}
.key-dates .is-active {
  background: #e7f2fc;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .key-dates .is-active {
    background: none;
    border: 1px solid #dee0e3;
    border-bottom-color: #ffffff;
    z-index: 1;
  }
}

.debate-chooser {
  padding: 2rem 1rem;
}
@media print, screen and (min-width: 40em) {
  .debate-chooser .debate-chooser {
    padding: 2rem 3rem;
  }
}
.debate-chooser .debate-block {
  margin-bottom: 2.5rem;
}
.debate-chooser .debate-block .debate-type {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.debate-chooser .debate-block .debate-type::selection,
.debate-chooser .debate-block .debate-type *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.debate-chooser .debate-block .debate-type .icon-debates {
  margin-left: 0.1875rem;
}
.debate-chooser .debate-block .debate-title a {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.debate-chooser .debate-block .debate-title a::selection,
.debate-chooser .debate-block .debate-title a *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.debate-chooser .debate-meta,
.debate-chooser .debate-meta a {
  color: #6d6d6d;
  font-size: 0.875rem;
}

.debate-questions .comments {
  margin-top: 3.75rem;
}
.debate-questions .quiz-header {
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .debate-questions .quiz-header {
    display: flex;
  }
  .debate-questions .quiz-header > * {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .debate-questions .quiz-header > * {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 40em) {
  .debate-questions .quiz-header .quiz-title {
    flex-basis: 75%;
  }
  .debate-questions .quiz-header .quiz-next {
    flex-basis: 25%;
  }
}
.debate-questions .quiz-header .quiz-title,
.debate-questions .quiz-header .quiz-next {
  padding: 1.5rem;
}
.debate-questions .quiz-header .quiz-title {
  background: #e7f2fc;
}
.debate-questions .quiz-header .quiz-title .quiz-header-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
.debate-questions .quiz-header .quiz-title a {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  font-size: 1.125rem;
  text-decoration: none;
}
.debate-questions .quiz-header .quiz-title a::selection,
.debate-questions .quiz-header .quiz-title a *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
@media print, screen and (min-width: 40em) {
  .debate-questions .quiz-header .quiz-title a {
    font-size: 1.1875rem;
  }
}
.debate-questions .quiz-header .quiz-next-link {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
}
.debate-questions .quiz-header .quiz-next-link:hover, .debate-questions .quiz-header .quiz-next-link:active {
  color: black;
  color: var(--anchor-color-hover, black);
}
.debate-questions .quiz-header .quiz-next {
  background: #ccdbe5;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: right;
  text-transform: uppercase;
  transition: background 0.25s ease-out, background 0.25s ease-out;
}
.debate-questions .quiz-header .quiz-next .icon-angle-right {
  vertical-align: middle;
}
.debate-questions .quiz-question {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .debate-questions .quiz-question {
    font-size: 2.125rem;
  }
}
.debate-questions .debate-questions {
  list-style: none;
  position: relative;
}
.debate-questions .debate-questions .control {
  background: #fff;
  border: 1px solid #dee0e3;
  border-radius: 0.25rem;
  color: #555;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0.75rem;
  margin-right: 1.5rem;
  padding: 0.75rem 3rem;
  position: relative;
}
.debate-questions .debate-questions .is-active {
  background: #ccdbe6;
  border: 0;
}
.debate-questions .debate-questions .control input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.debate-questions .debate-questions .control input:checked ~ .control-indicator {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  border: 0;
}
.debate-questions .debate-questions .control input:checked ~ .control-indicator::selection,
.debate-questions .debate-questions .control input:checked ~ .control-indicator *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.debate-questions .debate-questions .radio .control-indicator {
  border-radius: 50%;
}
.debate-questions .debate-questions .control-indicator {
  border: 2px solid #9c9c9c;
  display: block;
  font-size: 65%;
  height: 1rem;
  left: 15px;
  line-height: 1rem;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 15px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1rem;
}

.draft-panels {
  padding: 2rem 0;
  position: relative;
}
.draft-panels .draft-chooser h3 {
  display: inline-block;
  font-weight: 400;
  margin-right: 0.5rem;
  vertical-align: top;
}
.draft-panels .draft-chooser span {
  color: #4b4f58;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 2.3125rem;
  margin-left: 0.25rem;
  vertical-align: top;
}
.draft-panels .draft-chooser .select-box {
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-chooser .select-box {
    display: inline-block;
  }
}
.draft-panels .draft-chooser .select-box select {
  display: block;
  margin-bottom: 0;
}
.draft-panels .draft-chooser .select-box span {
  font-style: normal;
  vertical-align: inherit;
}
.draft-panels .draft-chooser .select-box .see-changes {
  color: #4b4f58;
  text-decoration: underline;
}
.draft-panels .draft-chooser .button {
  margin-top: 1rem;
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-chooser .button {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-allegation {
    display: flex;
  }
  .draft-panels .draft-allegation .calc-index {
    max-width: calc(35% - 25px);
  }
  @supports (position: sticky) {
    .draft-panels .draft-allegation .calc-index .draft-index {
      max-height: 100vh;
      overflow-y: auto;
      position: sticky;
      top: 1.5rem;
    }
  }
  .draft-panels .draft-allegation .calc-index > * {
    padding-right: 1.25rem;
  }
  .draft-panels .draft-allegation .calc-text {
    flex: 1;
  }
  .draft-panels .draft-allegation .calc-comments {
    min-width: 15rem;
    width: calc(35% - 25px);
  }
  .draft-panels .draft-allegation .calc-comments > * {
    padding-left: 1.25rem;
  }
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-allegation .border-right {
    border-right: 1px solid #dee0e3;
  }
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-allegation .border-left {
    border-left: 1px solid #dee0e3;
  }
}
.draft-panels .draft-allegation .draft-panel {
  background: #f2f2f2;
  color: #696969;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}
.draft-panels .draft-allegation .draft-panel .icon-comments {
  margin-right: 0.25rem;
}
.draft-panels .draft-allegation .draft-panel .icon-banner {
  color: #4b4f58;
  line-height: 0;
  vertical-align: sub;
}
.draft-panels .draft-allegation .draft-index ul:first-child {
  font-size: 1rem;
  margin-left: 2.25rem;
  margin-top: 1.5rem;
  text-decoration: underline;
}
.draft-panels .draft-allegation .draft-index ul {
  list-style: none;
}
.draft-panels .draft-allegation .draft-index ul li {
  margin-bottom: 1rem;
}
.draft-panels .draft-allegation .draft-index ul .open::before {
  content: "X";
  cursor: pointer;
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: -1.25rem;
  position: absolute;
}
.draft-panels .draft-allegation .draft-index ul .closed::before {
  content: "Z";
  cursor: pointer;
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: -1.25rem;
  position: absolute;
}
.draft-panels .draft-allegation .draft-text {
  padding: 1rem;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-allegation .draft-text {
    margin: 0 auto;
    max-width: 56.25rem;
    padding: 2rem 2rem 2rem 3rem;
  }
}
.draft-panels .draft-allegation .draft-text table {
  display: block;
  width: 100%;
  overflow-x: auto;
}
.draft-panels .draft-allegation .draft-text h2 {
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.draft-panels .draft-allegation .draft-text h3 {
  font-weight: 400;
  margin-bottom: 1rem;
}
.draft-panels .draft-allegation .draft-text .anchor::before {
  color: #4b4f58;
  content: "#";
  display: none;
  left: 0;
  position: absolute;
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-allegation .draft-text .anchor::before {
    left: 24px;
  }
}
.draft-panels .draft-allegation .draft-text a {
  color: inherit;
}
.draft-panels .draft-allegation .draft-text a:hover, .draft-panels .draft-allegation .draft-text a:active, .draft-panels .draft-allegation .draft-text a:focus {
  text-decoration: none;
}
.draft-panels .draft-allegation .draft-text a:hover h3, .draft-panels .draft-allegation .draft-text a:active h3, .draft-panels .draft-allegation .draft-text a:focus h3 {
  color: inherit;
}
.draft-panels .draft-allegation .draft-text a:hover .anchor::before, .draft-panels .draft-allegation .draft-text a:active .anchor::before, .draft-panels .draft-allegation .draft-text a:focus .anchor::before {
  display: block;
}
.draft-panels .draft-allegation .calc-comments {
  position: relative;
}
.draft-panels .draft-allegation summary {
  cursor: pointer;
  list-style: none;
}
.draft-panels .draft-allegation summary::-webkit-details-marker {
  display: none;
}
.draft-panels .draft-allegation details:not([open]) {
  background: #f2f2f2;
}
@media print, screen and (max-width: 39.99875em) {
  .draft-panels .draft-allegation details:not([open]) {
    border-bottom: 1px solid #d4d4d4;
  }
}
@media print, screen and (min-width: 40em) {
  .draft-panels .draft-allegation details:not([open]) {
    min-width: auto;
    width: 3.125rem;
  }
  .draft-panels .draft-allegation details:not([open]) .draft-panel {
    color: #696969;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
  }
  .draft-panels .draft-allegation details:not([open]) .draft-panel .icon-banner::before,
  .draft-panels .draft-allegation details:not([open]) .draft-panel .icon-comments::before {
    display: block;
    margin: 1.5rem auto 2.25rem;
  }
  .draft-panels .draft-allegation details:not([open]) .draft-panel .panel-title {
    display: block;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
.draft-panels .draft-allegation .calc-text {
  border-right: 0;
}
.draft-panels .draft-allegation .calc-comments {
  cursor: auto;
}
@media print, screen and (max-width: 39.99875em) {
  .draft-panels .draft-allegation .calc-comments summary {
    display: none;
  }
}
.draft-panels .draft-allegation .calc-comments:not([open]) {
  border-left: 1px solid #d4d4d4;
}
.draft-panels .draft-allegation .calc-comments .comments-box-container {
  position: relative;
  top: 11.25rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box {
  background: #f9f9f9;
  border: 1px solid #dee0e3;
  display: block;
  margin-bottom: 2rem;
  padding: 0.25rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box .button {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box .publish-comment {
  float: right;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment-header {
  border-bottom: 1px solid #dee0e3;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comments-wrapper {
  position: relative;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment-input {
  border-bottom: 1px solid #dee0e3;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-bottom: 4rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment-input textarea {
  border-bottom: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0;
  border-right: 1px solid #d0d0d0;
  box-shadow: none;
  height: 12.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment-input .comment-actions .cancel-comment {
  color: #87a3b9;
  display: inline-block;
  font-size: 0.875rem;
  text-decoration: underline;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment {
  border-bottom: 1px solid #dee0e3;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-text {
  margin-bottom: 0.5rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-text p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-text p:last-child {
  margin-bottom: 0.5rem;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-meta .comment-more-info {
  display: inline-block;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-meta .comment-more-info .comment-expand {
  display: inline-block;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-meta .comment-more-info .comment-expand::after {
  color: #838383;
  content: "|";
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-meta .comment-more-info .comment-replies {
  display: inline-block;
}
.draft-panels .draft-allegation .calc-comments .comment-box .comment .comment-meta .comment-votes {
  color: #838383;
  display: inline-block;
  float: right;
}

.legislation-changes ul {
  list-style: none;
  margin-left: 0;
}
.legislation-changes ul li {
  margin-bottom: 1rem;
}
.legislation-changes ul li::before {
  content: "—";
  margin-right: 0.25rem;
}

.legislation-comments .comment-section {
  background: #fafafa;
  border: 1px solid #dee0e3;
  margin-bottom: 1rem;
  margin-top: 0.25rem;
  padding: 1rem;
}
.legislation-comments .comment {
  margin-bottom: 3rem;
}
.legislation-comments .comment .expand-context a span {
  text-decoration: underline;
}
.legislation-comments .comment .expand-context a .icon-expand {
  color: #999;
  line-height: 0;
  text-decoration: none;
}
.legislation-comments .comment .expand-context a .icon-expand {
  margin-left: 0.25rem;
}
.legislation-comments .comment .expand-context a:active, .legislation-comments .comment .expand-context a:focus, .legislation-comments .comment .expand-context a:hover {
  text-decoration: none;
}

.legislation-comment .annotation-share-comment {
  margin-bottom: 2rem;
}
.legislation-comment .comment-section {
  background: #fafafa;
  border: 1px solid #dee0e3;
  margin-bottom: 1rem;
  margin-top: 0.25rem;
  padding: 1rem;
}
.legislation-comment .comment a span {
  text-decoration: underline;
}
.legislation-comment .comment a .icon-expand,
.legislation-comment .comment a .icon-comments {
  color: #999;
  line-height: 0;
  text-decoration: none;
}
.legislation-comment .comment a .icon-expand {
  margin-left: 0.25rem;
}
.legislation-comment .comment a .icon-comments {
  margin-right: 0.25rem;
}
.legislation-comment .comment a:active, .legislation-comment .comment a:focus, .legislation-comment .comment a:hover {
  text-decoration: none;
}

.proposal-show.legislation-proposal-show h1 {
  font-size: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .proposal-show.legislation-proposal-show h1 {
    font-size: 2.25rem;
  }
}

.legislation-proposals {
  margin-top: -0.375rem;
}
.legislation-proposals .proposal h3 {
  font-size: 1.25rem;
}

.process-proposal {
  margin-bottom: 1.5rem;
}
.process-proposal .header {
  background: #e7f2fc;
  padding: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .process-proposal .header {
    height: 6rem;
  }
}
.process-proposal .process-title {
  font-size: 0.875rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
.process-proposal .process-link {
  font-size: 1.1875rem;
  font-weight: bold;
}

.process-summary > section {
  margin-top: 2.25rem;
  padding: 0 1rem;
}
.process-summary h4,
.process-summary p {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .process-summary > section > header,
  .process-summary .question-title,
  .process-summary .annotation-title,
  .process-summary .comment-summary,
  .process-summary .proposal-summary {
    align-items: center;
    display: flex;
  }
  .process-summary > section > header > :first-child,
  .process-summary .question-title > :first-child,
  .process-summary .annotation-title > :first-child,
  .process-summary .comment-summary > :first-child,
  .process-summary .proposal-summary > :first-child {
    margin-right: 1.875rem;
    width: calc(75% - 1.875rem);
  }
}
.process-summary .debate-summary,
.process-summary .proposal-summary,
.process-summary .annotation-summary {
  min-height: auto;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.process-summary .debate-summary:not(:last-child),
.process-summary .proposal-summary:not(:last-child),
.process-summary .annotation-summary:not(:last-child) {
  margin-bottom: 0.75rem;
}
.process-summary .question-title:not(:only-child) {
  margin-bottom: 0.75rem;
}
.process-summary .annotation-title {
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}
.process-summary .annotation-quote {
  border: 1px solid #2e2e2e;
  padding: 0.625rem;
}
.process-summary .comment-summary {
  margin-bottom: 0.75rem;
}
.process-summary .comment-summary > :first-child {
  background-color: rgba(217, 216, 243, 0.2);
  border-radius: 0.625rem;
  padding: 0.75rem;
}
.process-summary .download-button {
  margin-bottom: 0;
  margin-left: 50%;
  margin-top: 1.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.legislation-process-form fieldset {
  margin: 1.25rem 0;
  padding-bottom: 1.25rem;
  position: relative;
}
.legislation-process-form fieldset::after {
  border-bottom: 1px solid #cacaca;
  bottom: 0;
  content: "";
  display: block;
  margin-left: 1rem;
  position: absolute;
  width: calc(100% - 2rem);
}
@media print, screen and (max-width: 39.99875em) {
  .legislation-process-form fieldset::after {
    margin-left: 0.625rem;
    width: calc(100% - 1.25rem);
  }
}
.legislation-process-form fieldset > :last-child {
  float: left !important;
}
.legislation-process-form fieldset legend {
  margin-bottom: 0;
}
.legislation-process-form fieldset legend > * {
  display: block;
  font-weight: normal;
}

.notifications {
  position: relative;
}
.notifications.unread-notifications::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416l384 0c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8l0-18.8c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416l384 0c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8l0-18.8c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z'/%3E%3C/svg%3E");
}
.notifications.unread-notifications::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z'/%3E%3C/svg%3E");
}
@media print, screen and (max-width: 39.99875em) {
  .notifications.unread-notifications::before {
    margin-right: 0.25rem;
  }
}
.notifications.unread-notifications::after {
  color: #ecf00b;
  font-size: 0.625rem;
  left: 0.875rem;
  position: absolute;
  top: 0.375rem;
}
@media print, screen and (min-width: 40em) {
  .notifications.unread-notifications::after {
    left: 2.1875rem;
  }
}
.notifications.no-notifications::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416l400 0c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4l0-25.4c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm0 96c61.9 0 112 50.1 112 112l0 25.4c0 47.9 13.9 94.6 39.7 134.6L72.3 368C98.1 328 112 281.3 112 233.4l0-25.4c0-61.9 50.1-112 112-112zm64 352l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 0c-17.7 0-32 14.3-32 32l0 19.2C119 66 64 130.6 64 208l0 25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416l400 0c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4l0-25.4c0-77.4-55-142-128-156.8L256 32c0-17.7-14.3-32-32-32zm0 96c61.9 0 112 50.1 112 112l0 25.4c0 47.9 13.9 94.6 39.7 134.6L72.3 368C98.1 328 112 281.3 112 233.4l0-25.4c0-61.9 50.1-112 112-112zm64 352l-64 0-64 0c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z'/%3E%3C/svg%3E");
}
.notifications::before {
  font-size: 1.1875rem;
}
.notifications:hover {
  text-decoration: none;
}

.communities-show .button.disabled,
.communities-show .button[disabled] {
  pointer-events: none;
}
.communities-show .panel {
  margin: 0.375rem 0;
  min-height: auto;
}
.communities-show .panel .button {
  margin-top: 1.5rem;
}

.communities-participant .comment-body {
  display: inline-block;
  float: left;
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
}

.topic-show p,
.topic-show ul li {
  margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
  .participation-stats .stats-content {
    border-left: 1px solid #dee0e3;
  }
}
.participation-stats .sidebar {
  border-bottom: 1px solid #dee0e3;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .participation-stats .sidebar {
    border-bottom: 0;
  }
}
.participation-stats .sidebar ul {
  margin-left: 0.75rem;
  margin-top: 0;
  padding: 0;
}
.participation-stats .section-title {
  border-bottom: 1px solid #dee0e3;
  font-size: 1.5rem;
}
.participation-stats .stats-group {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.participation-stats .number-with-info {
  display: inline-block;
}
.participation-stats .number-with-info::before {
  display: inline-block;
  margin-right: 0.75rem;
  vertical-align: top;
}
.participation-stats .number-with-info.total-participants::before {
  content: url(/assets/stats_users-10e20ee0354f7dfdb0f4acfa7061449c59f72ecfa7b14817991efd369f16e35e.png);
}
.participation-stats .number-with-info.male::before {
  content: url(/assets/stats_man-f3512000dc5aae8be3c195d102d6e108a50b1c3306fb4092c06811f61b8e3665.png);
}
.participation-stats .number-with-info.female::before {
  content: url(/assets/stats_woman-bb1c701cce2f6d5a15133dc2293eb3e9a6998ee1457637687ae5275f46651dc5.png);
}
.participation-stats .number-with-info.total-investments::before {
  content: url(/assets/stats_investments-fb6727d9cbe1e5f2522ad74f54686f2a93a0d7940614fdab18062b6784ae3c06.png);
}
.participation-stats .number-with-info.web::before {
  content: url(/assets/stats_web-875e02cbecd62fffb550e553db22d00597eec25e98817771d3f99719f5628759.png);
}
.participation-stats .number-with-info.booth::before {
  content: url(/assets/stats_booth-5b7a059ab6a64d7a02ae8d36b7a4978a72995698cecdb3a9ef4bded307ba7498.png);
}
.participation-stats .number-with-info.mail::before {
  content: url(/assets/stats_mail-2c10ce4894a0be5f3e9588b892716c44c00fc5a748283d1f9604269acd468c25.png);
}
.participation-stats .number-with-info .content {
  display: inline-block;
  margin-right: 3rem;
}
.participation-stats .number-with-info .number {
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 2.25rem;
}
.participation-stats .number-with-info .info {
  color: #4b4f58;
  font-size: 0.875rem;
  font-style: italic;
}
.participation-stats .number-with-info.total-participants .number {
  font-size: 3.75rem;
  line-height: 3.75rem;
}
.participation-stats .progress {
  background: #ebf0f4;
  border-radius: 1.25rem;
  height: 0.75rem;
}
.participation-stats .progress-meter {
  background: #52a4ee;
  border-bottom-left-radius: 1.25rem;
  border-top-left-radius: 1.25rem;
}

.stats-numbers p {
  color: #4b4f58;
  font-size: 0.8125rem;
  padding: 0.375rem;
  text-transform: uppercase;
}
.stats-numbers p.featured {
  background: #d9edf7;
  border: 1px solid #bce8f1;
  font-weight: bold;
}
.stats-numbers p .number {
  color: #2e2e2e;
  font-size: 1.875rem;
  font-weight: bold;
}

@media print, screen and (max-width: 63.99875em) {
  table.survey-districts thead {
    font-size: 0.75rem;
  }
  table.survey-districts thead th {
    width: 25%;
    word-break: break-all;
  }
}
table.survey-districts tr th {
  border: 1px solid #dee0e3;
  text-align: center;
}
table.survey-districts .phase-subheader {
  font-size: 0.6875rem;
  font-weight: normal;
}
table.survey-districts .success {
  background: #c1fdd2;
}

.proposal-show .sticky.is-anchored {
  top: 0 !important;
}

.permissions-list {
  list-style-type: none;
  margin-bottom: 0;
  margin-left: 0;
}
.permissions-list li {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.permissions-list li::before {
  font-size: 0.9em;
  margin-right: 0.2em;
}
.permissions-list li.permission-allowed::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}
.permissions-list li.permission-allowed::before {
  color: #46db91;
}
.permissions-list li.permission-denied::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
}
.permissions-list li.permission-denied::before {
  color: #db2e0f;
}

.verify-account {
  padding-right: 0.75rem;
}
.verify-account .already-verified {
  color: #3c763d;
  margin-top: 1.5rem;
}
.verify-account .already-verified::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}
.verify-account .already-verified::before {
  color: #46db91;
  font-size: 1.4em;
}

.ballot-list li {
  background: #f1f1f1;
  border-radius: 0.75rem;
  line-height: 1.5rem;
  margin-bottom: 0.375rem;
  padding: 1.5rem 0.75rem;
  position: relative;
}
.ballot-list li a {
  color: inherit;
}
.ballot-list li .ballot-list-title {
  display: block;
  padding-right: 0.875rem;
}
.ballot-list li .ballot-list-price {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  display: block;
  font-weight: bold;
  margin-top: 0.75rem;
  text-align: right;
}
.ballot-list li .ballot-list-price::selection,
.ballot-list li .ballot-list-price *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.ballot-list li .remove-budget-investment {
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  right: 0.375rem;
  top: 0.375rem;
}
.ballot-list li .remove-budget-investment::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
}
.ballot-list li:hover {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.ballot-list li:hover::selection,
.ballot-list li:hover *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.ballot-list li:hover span {
  color: inherit;
}

.budget-ballot-show > header {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  padding-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .budget-ballot-show > header {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.budget-executions-filters {
  margin-bottom: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .budget-executions-filters {
    display: flex;
    margin-left: -1em;
    align-items: flex-end;
  }
  .budget-executions-filters > * {
    margin-left: 1em;
  }
}
.budget-executions-filters select {
  height: 3rem;
}
.budget-executions-filters [type=submit] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .budget-executions-filters [type=submit] {
  outline: 0;
}
.budget-executions-filters [type=submit]:focus, .budget-executions-filters [type=submit]:hover {
  text-decoration: none !important;
}
.budget-executions-filters [type=submit][disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.budget-executions-filters [type=submit]::selection,
.budget-executions-filters [type=submit] *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.budget-executions-filters [type=submit]:hover, .budget-executions-filters [type=submit]:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.budget-executions-filters [type=submit]:hover::selection,
.budget-executions-filters [type=submit]:hover *::selection, .budget-executions-filters [type=submit]:focus::selection,
.budget-executions-filters [type=submit]:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.budgets-executions-heading .budgets-executions-heading-investments {
  display: flex;
  margin-left: -1.875rem;
  flex-wrap: wrap;
}
.budgets-executions-heading .budgets-executions-heading-investments > * {
  margin-left: 1.875rem;
}
.budgets-executions-heading .budgets-executions-heading-investments > * {
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .budgets-executions-heading .budgets-executions-heading-investments > * {
    width: calc(50% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .budgets-executions-heading .budgets-executions-heading-investments > * {
    width: calc(33.3333333333% - 1.875rem);
  }
}

.budget-executions-investment {
  position: relative;
  border: 1px solid #dee0e3;
  overflow: hidden;
  position: relative;
}
.budget-executions-investment:focus-within {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.budget-executions-investment:focus-within a:focus {
  box-shadow: none;
  outline: none;
}
.budget-executions-investment a::after, .budget-executions-investment a::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.budget-executions-investment a:hover {
  text-decoration: none;
}
.budget-executions-investment a {
  color: inherit;
  display: block;
}
.budget-executions-investment a img {
  height: 13.5rem;
  max-width: none;
  min-width: 100%;
  transition-duration: 0.3s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.budget-executions-investment a:hover {
  text-decoration: none;
}
.budget-executions-investment a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.budget-executions-investment h5 {
  font-size: 1.0625rem;
  margin-bottom: 0;
}
.budget-executions-investment .budget-execution-info {
  padding: 0.75rem;
}
.budget-executions-investment .author {
  color: #4b4f58;
  font-size: 0.875rem;
}
.budget-executions-investment .budget-execution-content {
  min-height: 4.5rem;
}
.budget-executions-investment .price {
  color: #7e328a;
  font-size: 1.5rem;
}
.budget-executions-investment:hover:not(:focus-within) {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

.budget-groups-index > header {
  position: relative;
}
.budget-groups-index > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .budget-groups-index > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .budget-groups-index > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}

.budget-group-show > header {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .budget-group-show > header {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.public .groups-and-headings .headings-list {
  display: flex;
  margin-left: -0.75rem;
  flex-wrap: wrap;
  list-style: none;
}
.public .groups-and-headings .headings-list > * {
  margin-left: 0.75rem;
}
.public .groups-and-headings .heading {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  position: relative;
  border: 2px solid #dee0e3;
  border-radius: 0.375rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
  margin-top: 0.375rem;
  padding: 0.75rem;
  width: 100%;
}
.public .groups-and-headings .heading::selection,
.public .groups-and-headings .heading *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.public .groups-and-headings .heading:focus-within {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.public .groups-and-headings .heading:focus-within a:focus {
  box-shadow: none;
  outline: none;
}
.public .groups-and-headings .heading a::after, .public .groups-and-headings .heading a::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.public .groups-and-headings .heading a:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 40em) {
  .public .groups-and-headings .heading {
    width: calc(33.3333333333% - 0.75rem);
  }
}
@media print, screen and (min-width: 64em) {
  .public .groups-and-headings .heading {
    width: calc(16.6666666667% - 0.75rem);
  }
}
.public .groups-and-headings .heading a {
  font-weight: bold;
}
.public .groups-and-headings .heading a:hover::before {
  background: #f5f7fa;
  z-index: -1;
}
.public .groups-and-headings .heading span {
  display: block;
  font-size: 0.875rem;
  padding-top: 0.75rem;
}

.budgets-index > header {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .budgets-index > header {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.investments-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.investments-list > header {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .investments-list > header {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.investments-list .investments-list-item {
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
  padding: 0;
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .investments-list .investments-list-item {
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 40em) {
  .investments-list .investments-list-item {
    width: calc(33.33% - 1.875rem);
  }
}
.investments-list .investments-list-item img {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .investments-list .investments-list-item img {
    height: 15rem;
  }
}
.investments-list .investments-list-item .budget-investment-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 12rem;
  padding: 0 0.75rem 0.375rem;
}
.investments-list .investments-list-item .budget-investment-content .basic-info {
  flex: 1;
  margin-bottom: 3rem;
}
.investments-list .investments-list-item .read-more {
  align-self: flex-end;
}
.investments-list .supports-and-price {
  background: #f5f7fa;
  display: flex;
  flex-wrap: wrap;
  padding: 0.375rem 0.75rem;
}
.investments-list .supports-and-price::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7L344.5 83c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7L301 344.5c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2 .8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1 .4 14.2-1.5 20.1-5.4L173.8 5.5zM272 192a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM1.3 441.8L44.4 339.3c.2 .1 .3 .2 .4 .4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7 .2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2L74.4 455.5l-56.1 8.3c-5.7 .8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1 .4-.2 .7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2 .2-.3 .4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7L344.5 83c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7L301 344.5c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2 .8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1 .4 14.2-1.5 20.1-5.4L173.8 5.5zM272 192a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM1.3 441.8L44.4 339.3c.2 .1 .3 .2 .4 .4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7 .2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2L74.4 455.5l-56.1 8.3c-5.7 .8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1 .4-.2 .7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2 .2-.3 .4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7z'/%3E%3C/svg%3E");
}
.investments-list .supports-and-price .price-title,
.investments-list .supports-and-price .supports-title {
  color: #696969;
  font-size: 0.875rem;
  text-transform: uppercase;
  width: 100%;
}
.investments-list .supports-and-price::after {
  font-size: 2em;
  margin-left: auto;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.ballot .button-remove-support {
  color: #4b4f58;
  color: var(--brand-secondary, #4b4f58);
  background: #e7eaec;
  font-weight: bold;
  margin-top: 1.5rem;
}
.ballot .button-remove-support::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
}
.ballot .button-remove-support::before {
  margin-right: 0.25rem;
}

.investments-filters {
  border-top: 1px solid #dee0e3;
}
.investments-filters ul {
  font-size: 0.875rem;
  list-style: none;
  margin-left: 0;
}
.investments-filters ul a {
  display: inline-block;
  padding-bottom: 0.375rem;
  padding-top: 0.375rem;
}
.investments-filters ul [aria-current] {
  font-weight: bold;
}

.my-ballot {
  border-top: 1px solid #dee0e3;
}
.my-ballot h2 + *::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M96 80c0-26.5 21.5-48 48-48l288 0c26.5 0 48 21.5 48 48l0 304L96 384 96 80zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48l16 0 0 128 448 0 0-128 16 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48L48 480c-26.5 0-48-21.5-48-48l0-96z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M96 80c0-26.5 21.5-48 48-48l288 0c26.5 0 48 21.5 48 48l0 304L96 384 96 80zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48l16 0 0 128 448 0 0-128 16 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48L48 480c-26.5 0-48-21.5-48-48l0-96z'/%3E%3C/svg%3E");
}
.my-ballot h2 + *::before {
  float: left;
  font-size: 3.125rem;
  margin-right: 0.625rem;
}
.my-ballot h2 + * + * {
  clear: both;
}

.budget-investment-new h1::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M304 240l0-223.4c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16L304 240zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4L256 288 412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288l238.4 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M304 240l0-223.4c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16L304 240zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4L256 288 412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288l238.4 0z'/%3E%3C/svg%3E");
}

.budget-phases {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: relative;
  position: relative;
  background: #f5f7fa;
  padding-bottom: 3rem;
}
@media print, screen and (min-width: 40em) {
  .budget-phases {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.budget-phases::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .budget-phases::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.budget-phases::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-top: 2px solid #dee0e3;
}
@media screen and (min-width: 75em) {
  .budget-phases::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.budget-phases h2 {
  font-size: 1.0625rem;
  text-align: center;
}
.budget-phases .phases-list {
  counter-reset: phases;
  display: flex;
  flex-wrap: wrap;
}
.budget-phases .phases-list .phase-name::before {
  content: counter(phases);
  counter-increment: phases;
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.budget-phases .phase-title {
  float: left;
  margin: 0.25rem;
  margin-left: 0;
  position: relative;
  text-align: center;
}
.budget-phases .phase-title > a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.0625rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput=mouse] .budget-phases .phase-title > a {
  outline: 0;
}
.budget-phases .phase-title > a:hover {
  background: #ffffff;
  color: #1468a0;
}
.budget-phases .phase-title > a:focus, .budget-phases .phase-title > a[aria-selected=true] {
  background: #ffffff;
  color: #1779ba;
}
@supports ((-webkit-clip-path: polygon(0 0, 50% 50%, 0% 100%)) or (clip-path: polygon(0 0, 50% 50%, 0% 100%))) {
  .budget-phases .phase-title {
    margin-left: calc(-1 * (1em - 0.1875rem));
    margin-right: 0;
    -webkit-transform: translateX(calc(1em - 0.1875rem));
            transform: translateX(calc(1em - 0.1875rem));
  }
  .budget-phases .phase-title,
  .budget-phases .phase-title a {
    -webkit-clip-path: polygon(calc(100% - 1em) 0, 100% 50%, calc(100% - 1em) 100%, 0 100%, 1em 50%, 0 0);
            clip-path: polygon(calc(100% - 1em) 0, 100% 50%, calc(100% - 1em) 100%, 0 100%, 1em 50%, 0 0);
  }
  .budget-phases .phase-title:first-child,
  .budget-phases .phase-title:first-child a {
    -webkit-clip-path: polygon(calc(100% - 1em) 0, 100% 50%, calc(100% - 1em) 100%, 0 100%, 0 0);
            clip-path: polygon(calc(100% - 1em) 0, 100% 50%, calc(100% - 1em) 100%, 0 100%, 0 0);
  }
  .budget-phases .phase-title:first-child a {
    border-bottom-left-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
  }
  .budget-phases .phase-title:last-child,
  .budget-phases .phase-title:last-child a {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 1em 50%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 1em 50%, 0 0);
  }
  .budget-phases .phase-title:last-child a {
    border-bottom-right-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }
}
.budget-phases .phase-title a {
  background: #ffffff;
  color: inherit;
  height: 100%;
  padding: 1.5rem 2.25rem;
}
.budget-phases .phase-title a:hover {
  background: #e6e6e6;
  color: inherit;
}
.budget-phases .phase-title a:focus {
  box-shadow: none;
  outline: none;
}
.budget-phases .phase-title a[aria-selected=true], .budget-phases .phase-title a.is-active {
  background-color: #4b4f58;
  color: #ffffff;
  background-color: var(--brand-secondary, #4b4f58);
  color: var(--brand-secondary-contrast, #ffffff);
  font-weight: normal;
}
.budget-phases .phase-title a[aria-selected=true]::selection,
.budget-phases .phase-title a[aria-selected=true] *::selection, .budget-phases .phase-title a.is-active::selection,
.budget-phases .phase-title a.is-active *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.budget-phases .phase-title a[aria-selected=true]::after, .budget-phases .phase-title a.is-active::after {
  content: none;
}
.budget-phases .phase-title.current-phase-tab a {
  background-color: #4b4f58;
  color: #ffffff;
  background-color: var(--brand-secondary, #4b4f58);
  color: var(--brand-secondary-contrast, #ffffff);
  padding-top: 0.75rem;
}
.budget-phases .phase-title.current-phase-tab a::selection,
.budget-phases .phase-title.current-phase-tab a *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.budget-phases .current-phase-timeline {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.budget-phases .tabs,
.budget-phases .tabs-content {
  background: none;
  border: 0;
}
.budget-phases .tabs-panel {
  padding: 0;
}
.budget-phases .tabs-panel h3 {
  font-size: 2.25rem;
}
.budget-phases .tabs-controls {
  display: flex;
}
.budget-phases .tabs-controls .budget-prev-phase,
.budget-phases .tabs-controls .budget-next-phase,
.budget-phases .tabs-controls .budget-prev-phase-disabled,
.budget-phases .tabs-controls .budget-next-phase-disabled {
  border-radius: 0.1875rem;
  display: flex;
  font-size: 2.25rem;
  height: 1.3333333333em;
  width: 1.3333333333em;
}
.budget-phases .tabs-controls .budget-prev-phase::before,
.budget-phases .tabs-controls .budget-next-phase::before,
.budget-phases .tabs-controls .budget-prev-phase-disabled::before,
.budget-phases .tabs-controls .budget-next-phase-disabled::before {
  margin: auto;
}
.budget-phases .tabs-controls .budget-prev-phase span,
.budget-phases .tabs-controls .budget-next-phase span,
.budget-phases .tabs-controls .budget-prev-phase-disabled span,
.budget-phases .tabs-controls .budget-next-phase-disabled span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.budget-phases .tabs-controls > :first-child {
  margin-right: 0.2em;
}
.budget-phases .tabs-controls .budget-prev-phase-disabled,
.budget-phases .tabs-controls .budget-next-phase-disabled {
  background: none;
  color: #acb6b6;
}
.budget-phases .tabs-controls .budget-prev-phase::before,
.budget-phases .tabs-controls .budget-prev-phase-disabled::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
}
.budget-phases .tabs-controls .budget-next-phase::before,
.budget-phases .tabs-controls .budget-next-phase-disabled::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
}
.budget-phases .budget-phase {
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .budget-phases .budget-phase {
    display: flex;
    margin-left: -1.875rem;
  }
  .budget-phases .budget-phase > * {
    margin-left: 1.875rem;
  }
  .budget-phases .budget-phase > * {
    width: 50%;
  }
  .budget-phases .budget-phase .budget-phase-image {
    text-align: center;
  }
}
.budget-phases .budget-phase .main-link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  padding-right: 0.5em;
}
.budget-phases .budget-phase .main-link::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
}
[data-whatinput=mouse] .budget-phases .budget-phase .main-link {
  outline: 0;
}
.budget-phases .budget-phase .main-link:focus, .budget-phases .budget-phase .main-link:hover {
  text-decoration: none !important;
}
.budget-phases .budget-phase .main-link[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.budget-phases .budget-phase .main-link::selection,
.budget-phases .budget-phase .main-link *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.budget-phases .budget-phase .main-link:hover, .budget-phases .budget-phase .main-link:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.budget-phases .budget-phase .main-link:hover::selection,
.budget-phases .budget-phase .main-link:hover *::selection, .budget-phases .budget-phase .main-link:focus::selection,
.budget-phases .budget-phase .main-link:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.budget-phases .budget-phase .main-link::after {
  font-weight: bold;
  margin-left: 0.5em;
}

.single-heading {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.single-heading::after {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  bottom: 0;
  content: "";
  height: 0.375rem;
  position: absolute;
  width: 20%;
}
.single-heading::after::selection,
.single-heading::after *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.single-heading h2 {
  font-size: 3.75rem;
  font-weight: normal;
}
.single-heading p {
  font-size: 3rem;
}

.budget-subheader {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  overflow: hidden;
}
.budget-subheader .current-phase {
  text-transform: uppercase;
}
.budget-subheader .button {
  margin-top: 0.75rem;
}
.budget-subheader .callout {
  margin-bottom: 0;
}

.budget-info .supports-info {
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .budget-info .supports-info h2 {
    font-size: 3rem;
  }
  .budget-info .supports-info h3 {
    font-size: 2.25rem;
  }
}
.budget-info .supports-info h2,
.budget-info .supports-info h3 {
  font-weight: normal;
}
.budget-info .supports-info section {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  border: 6px solid #f4f4f4;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .budget-info .supports-info section {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 40em) {
  .budget-info .supports-info section {
    padding-top: 3rem;
  }
}
.budget-info .supports-info > section:first-child h2::after {
  content: url(/assets/budgets/budgets_support-b33f41e7b94bee21ed7b72f8a5f21670a7ef4b4e5c729838cd93830fd02c56d7.png);
  display: block;
  margin-top: 1.5rem;
}
.budget-info .supports-info section + section p {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .budget-info .supports-info section + section p {
    width: 50%;
  }
}
.budget-info .supports-info .keep-scrolling {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.budget-info .supports-info .keep-scrolling::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M246.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 402.7 361.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M246.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 402.7 361.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z'/%3E%3C/svg%3E");
}
.budget-info .supports-info .keep-scrolling::selection,
.budget-info .supports-info .keep-scrolling *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
.budget-info .supports-info .keep-scrolling::after {
  font-size: 1.3em;
}

.comment-body .delete-comment-form {
  display: inline;
}
.comment-body .delete-comment-form::before,
.comment-body .moderation-actions form::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: #bfbfbf;
  border-radius: 100%;
  height: 0.25em;
  opacity: 1;
  width: 0.25em;
}
.comment-body .delete-comment {
  cursor: pointer;
}
.comment-body .delete-comment::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M170.5 51.6L151.5 80l145 0-19-28.4c-1.5-2.2-4-3.6-6.7-3.6l-93.7 0c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80 368 80l48 0 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-8 0 0 304c0 44.2-35.8 80-80 80l-224 0c-44.2 0-80-35.8-80-80l0-304-8 0c-13.3 0-24-10.7-24-24S10.7 80 24 80l8 0 48 0 13.8 0 36.7-55.1C140.9 9.4 158.4 0 177.1 0l93.7 0c18.7 0 36.2 9.4 46.6 24.9zM80 128l0 304c0 17.7 14.3 32 32 32l224 0c17.7 0 32-14.3 32-32l0-304L80 128zm80 64l0 208c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-208c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0l0 208c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-208c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0l0 208c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-208c0-8.8 7.2-16 16-16s16 7.2 16 16z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M170.5 51.6L151.5 80l145 0-19-28.4c-1.5-2.2-4-3.6-6.7-3.6l-93.7 0c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80 368 80l48 0 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-8 0 0 304c0 44.2-35.8 80-80 80l-224 0c-44.2 0-80-35.8-80-80l0-304-8 0c-13.3 0-24-10.7-24-24S10.7 80 24 80l8 0 48 0 13.8 0 36.7-55.1C140.9 9.4 158.4 0 177.1 0l93.7 0c18.7 0 36.2 9.4 46.6 24.9zM80 128l0 304c0 17.7 14.3 32 32 32l224 0c17.7 0 32-14.3 32-32l0-304L80 128zm80 64l0 208c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-208c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0l0 208c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-208c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0l0 208c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-208c0-8.8 7.2-16 16-16s16 7.2 16 16z'/%3E%3C/svg%3E");
}
.comment-body .delete-comment:not(:hover):not(:active) {
  color: #db2e0f;
}
.comment-body .delete-comment::before {
  margin-right: 0.25rem;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.comment-avatar img,
.comment-avatar svg {
  float: left;
}

.comment-info > :not(svg) + * {
  margin-left: 1em;
  position: relative;
}
.comment-info > :not(svg) + *::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  border-radius: 100%;
  height: 0.25em;
  opacity: 1;
  width: 0.25em;
  left: -1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comment-body .status-bar .responses-count .show-children::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM200 344l0-64-64 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l64 0 0-64c0-13.3 10.7-24 24-24s24 10.7 24 24l0 64 64 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-64 0 0 64c0 13.3-10.7 24-24 24s-24-10.7-24-24z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM200 344l0-64-64 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l64 0 0-64c0-13.3 10.7-24 24-24s24 10.7 24 24l0 64 64 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-64 0 0 64c0 13.3-10.7 24-24 24s-24-10.7-24-24z'/%3E%3C/svg%3E");
}
.comment-body .status-bar .responses-count .collapse-children::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM152 232l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM152 232l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z'/%3E%3C/svg%3E");
}
.comment-body .status-bar .responses-count .show-children::before,
.comment-body .status-bar .responses-count .collapse-children::before {
  margin-right: 0.25rem;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.comment-body .status-bar .responses-count.collapsed .collapse-children {
  display: none;
}
.comment-body .status-bar .responses-count:not(.collapsed) .show-children {
  display: none;
}
.comment-body .status-bar .comment-form form {
  margin-top: 0.75rem;
}
.comment-body .status-bar .flag-actions::before,
.comment-body .status-bar .js-add-comment-link::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: #bfbfbf;
  height: 1em;
  opacity: 0.5;
  width: 1px;
  opacity: 1;
}

.comment-votes .votes-count::after {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  height: 1em;
  opacity: 0.5;
  width: 1px;
  opacity: 1;
}
.comment-votes button,
.comment-votes form {
  color: #8a8a8a;
  display: inline-block;
}
.comment-votes button {
  font-size: 1.0625rem;
}
.comment-votes button:hover {
  cursor: pointer;
}
.comment-votes .in-favor,
.comment-votes .against {
  display: inline;
}
.comment-votes .in-favor button::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16l-97.5 0c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8l97.5 0c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32L0 448c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32l-64 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16l-97.5 0c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8l97.5 0c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32L0 448c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32l-64 0z'/%3E%3C/svg%3E");
}
.comment-votes .in-favor button[aria-pressed=false]:hover::before, .comment-votes .in-favor button[aria-pressed=true]:not(:hover)::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2l144 0c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48l-97.5 0c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3l0-38.3 0-48 0-24.9c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32L0 224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2l144 0c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48l-97.5 0c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3l0-38.3 0-48 0-24.9c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32L0 224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E");
}
.comment-votes .in-favor button[aria-pressed=true] {
  color: #38a36f;
}
.comment-votes .against button::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16l-97.5 0c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8L384 32c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32L0 128c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16l-97.5 0c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8L384 32c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32L0 128c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0z'/%3E%3C/svg%3E");
}
.comment-votes .against button[aria-pressed=false]:hover::before, .comment-votes .against button[aria-pressed=true]:not(:hover)::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2l144 0c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48l-97.5 0c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7l0 38.3 0 48 0 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32L32 96C14.3 96 0 110.3 0 128L0 352c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2l144 0c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48l-97.5 0c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7l0 38.3 0 48 0 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32L32 96C14.3 96 0 110.3 0 128L0 352c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E");
}
.comment-votes .against button[aria-pressed=true] {
  color: #ea6666;
}

.dashboard-poll {
  background: #e7f3fd;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  min-height: 13.5rem;
  padding: 1.5rem;
  position: relative;
  text-align: center;
}
.dashboard-poll .button {
  font-weight: bold;
}
.dashboard-poll button {
  cursor: pointer;
}
.dashboard-poll button:hover {
  text-decoration: underline;
}

.dashboard-polls {
  display: grid;
  gap: 1.5rem 1.875rem;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: 1.5rem;
}

.dashboard-resources .resources {
  display: grid;
  gap: 1.5rem 1.875rem;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.dashboard-resources .resources .resource-card {
  background: #d1f5eb;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
  text-align: center;
}
.dashboard-resources .resources .resource-card.alert {
  background: #feeaeb;
}
.dashboard-resources .resources .resource-card.alert::before {
  color: #fb9497;
  content: "t";
}
.dashboard-resources .resources .resource-card::before {
  border: 2px solid;
  border-radius: 2.5rem;
  color: #00cb96;
  content: "l";
  font-family: "icons";
  font-size: 1.25rem;
  height: 2.25rem;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 2.25rem;
}
.dashboard-resources .resources .resource-card .label {
  left: 0;
  position: absolute;
  top: 20px;
}
.dashboard-resources .resources .resource-card h4 {
  margin-top: 1.5rem;
}
.dashboard-resources .resources .resource-card .button {
  background: #00cb96;
  color: #000;
  font-weight: bold;
}

.debate-show .mark-featured-action {
  display: inline;
}
.debate-show .mark-featured-action::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  height: 1em;
  opacity: 0.5;
  width: 1px;
}
.debate-show .mark-featured-action form {
  display: inline;
}
.debate-show .mark-featured-action button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.debate-show .mark-featured-action button:hover, .debate-show .mark-featured-action button:active, .debate-show .mark-featured-action button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.debate-show .mark-featured-action button:hover, .debate-show .mark-featured-action button:active {
  text-decoration: underline;
}

.debate-new h1::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M160 368c26.5 0 48 21.5 48 48l0 16 72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6L448 368c8.8 0 16-7.2 16-16l0-288c0-8.8-7.2-16-16-16L64 48c-8.8 0-16 7.2-16 16l0 288c0 8.8 7.2 16 16 16l96 0zm48 124l-.2 .2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3l0-21.3 0-6.4 0-.3 0-4 0-48-48 0-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L448 0c35.3 0 64 28.7 64 64l0 288c0 35.3-28.7 64-64 64l-138.7 0L208 492z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M160 368c26.5 0 48 21.5 48 48l0 16 72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6L448 368c8.8 0 16-7.2 16-16l0-288c0-8.8-7.2-16-16-16L64 48c-8.8 0-16 7.2-16 16l0 288c0 8.8 7.2 16 16 16l96 0zm48 124l-.2 .2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3l0-21.3 0-6.4 0-.3 0-4 0-48-48 0-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L448 0c35.3 0 64 28.7 64 64l0 288c0 35.3-28.7 64-64 64l-138.7 0L208 492z'/%3E%3C/svg%3E");
}
.debate-new aside {
  margin-top: 1.5rem;
}
.debate-new .recommendations li::before {
  color: #fec603;
}

.devise-omniauth-form .oauth-logins {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 40em) {
  .devise-omniauth-form .oauth-logins {
    flex-direction: row;
  }
}
.devise-omniauth-form .oauth-logins .oauth-login {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  flex-grow: 1;
}
@media print, screen and (min-width: 40em) {
  .devise-omniauth-form .oauth-logins .oauth-login {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.document + .document {
  margin-top: 0.5rem;
}
.document a {
  overflow-wrap: break-word;
}
.document a .document-metadata::before, .document a .document-metadata::after {
  content: "";
  display: block;
}
.document a .document-metadata * + *::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  height: 1em;
  opacity: 0.5;
  width: 1px;
}
.document button {
  cursor: pointer;
}

.documents h2 {
  font-size: 1.5rem;
}
.documents h2 span {
  color: #4f4f4f;
  font-weight: normal;
}
.documents ul li {
  padding-top: 0.75rem;
}
.documents ul li:not(:first-child) {
  border-top: 1px solid #e7f2fc;
}
.documents .document-link {
  background: #f3f8fd;
  border: 2px solid #e7f2fc;
  border-radius: 0.3125rem;
  display: block;
  margin: 0.75rem 0;
  padding: 0.75rem;
  position: relative;
}
.documents .document-link p {
  margin-bottom: 0;
}

@media print, screen and (max-width: 39.99875em) {
  .account-menu.menu {
    margin-top: 0.75rem;
  }
  .account-menu.menu,
  .account-menu.menu .menu {
    border-bottom: 1px solid #dee0e3;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.account-menu.menu .is-dropdown-submenu {
  margin: 0;
  margin-top: -0.75rem;
  padding: 0;
  z-index: 9;
}
.account-menu.menu .is-submenu-item {
  display: block;
  margin-bottom: 0;
}
.account-menu.menu li {
  display: block;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .account-menu.menu li {
    width: auto;
  }
}
.account-menu.menu li a,
.account-menu.menu li button {
  color: inherit;
  cursor: pointer;
  line-height: inherit;
  padding-left: 0;
}
@media print, screen and (min-width: 40em) {
  .account-menu.menu li a,
  .account-menu.menu li button {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}
.account-menu.menu li a:hover,
.account-menu.menu li button:hover {
  text-decoration: underline;
}
.account-menu.menu li .button {
  background: none;
  text-align: left;
}
@media print, screen and (min-width: 40em) {
  .account-menu.menu li .button {
    color: #2e2e2e;
    color: var(--brand, #2e2e2e);
    background: #ffffff;
    text-align: center;
  }
  .account-menu.menu li .button::selection,
  .account-menu.menu li .button *::selection {
    background-color: #2e2e2e;
    color: #ffffff;
    background-color: var(--brand, #2e2e2e);
    color: var(--brand-contrast, #ffffff);
  }
}
.account-menu.menu .has-submenu.is-active a {
  font-weight: bold;
}

.admin > header {
  border-bottom: 1px solid #eee;
}
.admin > header > * {
  position: relative;
}
.admin > header > *::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .admin > header > *::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
.admin .top-links a {
  line-height: 2.25rem;
}
@media print, screen and (max-width: 39.99875em) {
  .admin .top-bar .account-menu {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .admin .top-bar .account-menu a {
    font-weight: normal;
  }
  .admin .top-bar .account-menu .is-active {
    font-weight: bold;
    text-decoration: underline;
  }
  .admin .top-bar [class^=icon-] {
    display: none;
  }
}
@media print, screen and (min-width: 40em) {
  .admin .top-bar {
    padding-bottom: 0.8rem;
    padding-top: 0.8rem;
  }
}
.admin .top-bar [class^=icon-] {
  font-size: 1.0625rem;
}
.admin .top-bar h1 small {
  color: inherit;
  text-transform: uppercase;
}
.admin .top-bar h1 a {
  display: inline-block;
  font-family: "Lato" !important;
  font-size: 1.5rem;
  font-weight: lighter;
}

.cookies-consent-banner {
  border: 1px solid #2e2e2e;
  border: 1px solid var(--brand, #2e2e2e);
  background: inherit;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 2rem;
  position: fixed;
  right: 0.5rem;
  z-index: 20;
}
@media print, screen and (max-width: 39.99875em) {
  .cookies-consent-banner button {
    display: block;
    width: 100%;
  }
}
.cookies-consent-banner button.accept-all-cookies, .cookies-consent-banner button.accept-essential-cookies {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  margin-bottom: 0;
}
[data-whatinput=mouse] .cookies-consent-banner button.accept-all-cookies, [data-whatinput=mouse] .cookies-consent-banner button.accept-essential-cookies {
  outline: 0;
}
.cookies-consent-banner button.accept-all-cookies:focus, .cookies-consent-banner button.accept-all-cookies:hover, .cookies-consent-banner button.accept-essential-cookies:focus, .cookies-consent-banner button.accept-essential-cookies:hover {
  text-decoration: none !important;
}
.cookies-consent-banner button.accept-all-cookies[disabled], .cookies-consent-banner button.accept-essential-cookies[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.cookies-consent-banner button.accept-all-cookies::selection,
.cookies-consent-banner button.accept-all-cookies *::selection, .cookies-consent-banner button.accept-essential-cookies::selection,
.cookies-consent-banner button.accept-essential-cookies *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.cookies-consent-banner button.accept-all-cookies:hover, .cookies-consent-banner button.accept-all-cookies:focus, .cookies-consent-banner button.accept-essential-cookies:hover, .cookies-consent-banner button.accept-essential-cookies:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.cookies-consent-banner button.accept-all-cookies:hover::selection,
.cookies-consent-banner button.accept-all-cookies:hover *::selection, .cookies-consent-banner button.accept-all-cookies:focus::selection,
.cookies-consent-banner button.accept-all-cookies:focus *::selection, .cookies-consent-banner button.accept-essential-cookies:hover::selection,
.cookies-consent-banner button.accept-essential-cookies:hover *::selection, .cookies-consent-banner button.accept-essential-cookies:focus::selection,
.cookies-consent-banner button.accept-essential-cookies:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
@media print, screen and (max-width: 39.99875em) {
  .cookies-consent-banner button.accept-all-cookies, .cookies-consent-banner button.accept-essential-cookies {
    margin-bottom: 0.5rem;
  }
}
.cookies-consent-banner button.manage-cookies {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  border-color: currentcolor;
  color: #2e2e2e;
  margin-bottom: 0;
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
}
.cookies-consent-banner button.manage-cookies::selection,
.cookies-consent-banner button.manage-cookies *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .cookies-consent-banner button.manage-cookies {
  outline: 0;
}
.cookies-consent-banner button.manage-cookies:focus, .cookies-consent-banner button.manage-cookies:hover {
  text-decoration: none !important;
}
.cookies-consent-banner button.manage-cookies[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.cookies-consent-banner button.manage-cookies:hover, .cookies-consent-banner button.manage-cookies:focus {
  color: #171717;
  color: var(--anchor-color-hover, #171717);
}

.cookies-consent-management {
  border-radius: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .cookies-consent-management {
    width: 50%;
  }
}
.cookies-consent-management header {
  display: flex;
  justify-content: space-between;
}
.cookies-consent-management .close-button {
  border: 3px solid currentcolor;
  border-radius: 50%;
  color: currentcolor;
  font-size: 1.4375rem;
  font-weight: bold;
  height: 1.875rem;
  width: 1.875rem;
}
.cookies-consent-management .buttons {
  border-top: 1px solid #cacaca;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
@media print, screen and (max-width: 39.99875em) {
  .cookies-consent-management button {
    display: block;
    width: 100%;
  }
}
.cookies-consent-management button.accept-all-cookies, .cookies-consent-management button.accept-essential-cookies {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  margin-bottom: 0;
}
[data-whatinput=mouse] .cookies-consent-management button.accept-all-cookies, [data-whatinput=mouse] .cookies-consent-management button.accept-essential-cookies {
  outline: 0;
}
.cookies-consent-management button.accept-all-cookies:focus, .cookies-consent-management button.accept-all-cookies:hover, .cookies-consent-management button.accept-essential-cookies:focus, .cookies-consent-management button.accept-essential-cookies:hover {
  text-decoration: none !important;
}
.cookies-consent-management button.accept-all-cookies[disabled], .cookies-consent-management button.accept-essential-cookies[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.cookies-consent-management button.accept-all-cookies::selection,
.cookies-consent-management button.accept-all-cookies *::selection, .cookies-consent-management button.accept-essential-cookies::selection,
.cookies-consent-management button.accept-essential-cookies *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.cookies-consent-management button.accept-all-cookies:hover, .cookies-consent-management button.accept-all-cookies:focus, .cookies-consent-management button.accept-essential-cookies:hover, .cookies-consent-management button.accept-essential-cookies:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.cookies-consent-management button.accept-all-cookies:hover::selection,
.cookies-consent-management button.accept-all-cookies:hover *::selection, .cookies-consent-management button.accept-all-cookies:focus::selection,
.cookies-consent-management button.accept-all-cookies:focus *::selection, .cookies-consent-management button.accept-essential-cookies:hover::selection,
.cookies-consent-management button.accept-essential-cookies:hover *::selection, .cookies-consent-management button.accept-essential-cookies:focus::selection,
.cookies-consent-management button.accept-essential-cookies:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
@media print, screen and (max-width: 39.99875em) {
  .cookies-consent-management button.accept-all-cookies {
    margin-bottom: 0.5rem;
  }
}
.cookies-consent-management button.save-cookies-preferences {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  border-color: currentcolor;
  color: #2e2e2e;
  margin-bottom: 0;
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
}
.cookies-consent-management button.save-cookies-preferences::selection,
.cookies-consent-management button.save-cookies-preferences *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .cookies-consent-management button.save-cookies-preferences {
  outline: 0;
}
.cookies-consent-management button.save-cookies-preferences:focus, .cookies-consent-management button.save-cookies-preferences:hover {
  text-decoration: none !important;
}
.cookies-consent-management button.save-cookies-preferences[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.cookies-consent-management button.save-cookies-preferences:hover, .cookies-consent-management button.save-cookies-preferences:focus {
  color: #171717;
  color: var(--anchor-color-hover, #171717);
}
.cookies-consent-management .save-preferences {
  text-align: right;
}
.cookies-consent-management .cookies-essentials ul,
.cookies-consent-management .cookies-vendors ul {
  list-style: none;
  margin-left: 0;
}
.cookies-consent-management .cookies-essentials ul li,
.cookies-consent-management .cookies-vendors ul li {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 0.5rem;
}
.cookies-consent-management .cookies-essentials ul li:nth-child(odd),
.cookies-consent-management .cookies-vendors ul li:nth-child(odd) {
  background: #efefef;
}
.cookies-consent-management .cookies-essentials .switch,
.cookies-consent-management .cookies-vendors .switch {
  margin-top: 0.5rem;
}
.cookies-consent-management .cookies-essentials .switch:focus-within,
.cookies-consent-management .cookies-vendors .switch:focus-within {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.cookies-consent-management .cookies-essentials p,
.cookies-consent-management .cookies-vendors p {
  margin-bottom: 0;
}

footer .logo {
  color: inherit;
}
footer .logo a {
  font-family: "Lato" !important;
  text-decoration: none;
}
footer .logo a:hover {
  text-decoration: underline;
}
footer p {
  font-size: 0.875rem;
}
footer p.info a {
  text-decoration: underline;
}
footer a,
footer a:active,
footer a:focus {
  color: inherit;
  text-decoration: underline;
}
footer a:hover,
footer a:active:hover,
footer a:focus:hover {
  color: #4b4f58;
}
footer a[rel~=external]::after,
footer a:active[rel~=external]::after,
footer a:focus[rel~=external]::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-128c0-17.7-14.3-32-32-32L352 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-128c0-17.7-14.3-32-32-32L352 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z'/%3E%3C/svg%3E");
}
footer a[rel~=external]::after,
footer a:active[rel~=external]::after,
footer a:focus[rel~=external]::after {
  font-size: 0.8em;
  margin-left: 0.2em;
}
footer .footer-sections {
  padding-left: 0;
}
footer .title {
  font-weight: bold;
  text-decoration: none;
}
footer .subfooter {
  border-top: 1px solid #bfbfbf;
  font-size: 0.875rem;
  padding-top: 0.75rem;
}

.subfooter .legal {
  display: inline-block;
  margin-left: 0;
}
.subfooter .legal::before {
  content: "|";
}
.subfooter .legal li {
  display: inline-block;
}
.subfooter .legal li::after {
  content: "|";
  margin-left: 4px;
}
.subfooter .legal li:last-child::after {
  content: none;
}

.locale {
  margin-bottom: 0.375rem;
  margin-top: 0.375rem;
  position: relative;
}
.locale .locale-form {
  display: inline-block;
  position: relative;
}
.locale .locale-form::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
}
.locale .locale-form::after {
  color: #e6e6e6;
  font-size: 0.875rem;
  margin-right: 0;
  pointer-events: none;
  position: absolute;
  right: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.locale .locale-form label {
  color: inherit;
  font-size: 0.75rem;
  font-weight: normal;
}
.locale .locale-form select {
  background: #001d33;
  border: 0;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  height: 1.5rem;
  margin-bottom: 0;
  outline: none;
  padding-left: 0.375rem;
  padding-right: calc(0.375rem + 1em);
  transition: none;
  width: auto;
}
.locale .locale-form select:focus {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
  border: 0;
  transition: none;
}
.locale .locale-form select option {
  border: 0;
  outline: none;
}
.locale p {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.locale ul {
  display: flex;
  margin-left: -0.75em;
  flex-wrap: wrap;
}
.locale ul > * {
  margin-left: 0.75em;
}
.locale ul li::after {
  content: none;
}
.locale ul a {
  margin-left: 0;
}
.locale ul [aria-current] {
  font-weight: bold;
}

.remote-translations-button {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
  padding: 0.375rem;
  text-align: center;
}
.remote-translations-button [type=submit] {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
  background: none;
  border: 0;
  font-weight: bold;
}
.remote-translations-button [type=submit]:hover, .remote-translations-button [type=submit]:active, .remote-translations-button [type=submit]:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.remote-translations-button [type=submit]:hover, .remote-translations-button [type=submit]:active {
  text-decoration: underline;
}

@media print, screen and (min-width: 40em) {
  [data-responsive-toggle=responsive_menu] {
    display: none;
  }
}
[data-responsive-toggle=responsive_menu] .menu-button {
  border: 1px solid;
  border-radius: 0.1875rem;
  color: inherit;
  padding: 0.6em;
}
[data-responsive-toggle=responsive_menu] .menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
  cursor: inherit;
}
[data-responsive-toggle=responsive_menu] .menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: currentcolor;
  box-shadow: 0 7px 0 currentcolor, 0 14px 0 currentcolor;
  content: "";
}
[data-responsive-toggle=responsive_menu] .menu-icon:hover::after {
  background: currentcolor;
  box-shadow: 0 7px 0 currentcolor, 0 14px 0 currentcolor;
}

.skip-to-main-content {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .skip-to-main-content {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.skip-to-main-content a:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 0 !important;
}
.skip-to-main-content a:focus {
  background-color: #ffffff;
  color: #2e2e2e;
  padding: 0.4rem;
  position: absolute;
  top: 6px;
  z-index: 1000;
}

.social {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  width: 100%;
  float: left;
  text-align: right;
}
@media print, screen and (min-width: 40em) {
  .social {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.social, .social:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.social:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  .social {
    width: 33.3333333333%;
  }
}
.social ul {
  margin: 0;
}
.social li {
  display: inline-block;
}
.social a {
  font-size: 1.5rem;
  margin: 0 0.75rem;
  text-decoration: none;
}
.social a:hover {
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.social a:hover::selection,
.social a:hover *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}

.subnavigation {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 40em) {
  .subnavigation {
    background-color: #ffffff;
    color: #2e2e2e;
    background-color: var(--subnavigation, #ffffff);
    color: var(--subnavigation-contrast, #2e2e2e);
    flex-direction: row;
    padding-bottom: 0;
  }
  .subnavigation > :first-child {
    flex-grow: 1;
  }
}
.subnavigation ul {
  list-style-type: none;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .subnavigation ul li {
    display: inline-block;
    margin-right: 1.25rem;
  }
}
.subnavigation a {
  color: inherit;
  display: inline-block;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
  position: relative;
  text-align: left;
}
@media print, screen and (min-width: 40em) {
  .subnavigation a {
    display: block;
    font-weight: bold;
  }
  .subnavigation a:hover {
    color: #2e2e2e;
    color: var(--anchor-color, var(--brand, #2e2e2e));
  }
  .subnavigation a.is-active {
    color: #2e2e2e;
    color: var(--brand, #2e2e2e);
    border-bottom: 2px solid;
    margin-bottom: 1px;
  }
  .subnavigation a.is-active::selection,
  .subnavigation a.is-active *::selection {
    background-color: #2e2e2e;
    color: #ffffff;
    background-color: var(--brand, #2e2e2e);
    color: var(--brand-contrast, #ffffff);
  }
}
.subnavigation a:focus {
  z-index: 1;
}
.subnavigation .input-group {
  padding-top: 0.375rem;
}
@media print, screen and (min-width: 40em) {
  .subnavigation .input-group {
    margin-bottom: 0;
  }
}
.subnavigation .input-group-field {
  margin-bottom: 0 !important;
}
.subnavigation .input-group-button {
  line-height: 2.25rem;
  padding-bottom: 0;
}
.subnavigation .input-group-button button {
  background-color: #dee0e3;
  color: #2e2e2e;
  border: 1px solid #ccc;
  border-left: 0;
  height: 2.25rem;
  line-height: 2.25rem;
  padding-top: 0;
}
.subnavigation input {
  height: 2.25rem !important;
  margin-bottom: 0;
  margin-right: 0;
  width: 100%;
}

.machine-learning-comments-summary {
  border-bottom: 1px solid #cacaca;
}
.machine-learning-comments-summary + * {
  margin-top: 2.25rem;
}

.machine-learning-info {
  float: left;
  margin-right: 0.25rem;
}
.machine-learning-info::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E");
}

.management-account-edit-password-manually [type=password],
.management-account-edit-password-manually [type=text] {
  margin-bottom: 0 !important;
}
.management-account-edit-password-manually .show-password {
  cursor: pointer;
}
.management-account-edit-password-manually .show-password::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256c13.6 30 40.2 72.5 78.6 108.3C169.2 402.4 222.8 432 288 432s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80zM95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1c3.3 7.9 3.3 16.7 0 24.6c-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6zM288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80c-.7 0-1.3 0-2 0c1.3 5.1 2 10.5 2 16c0 35.3-28.7 64-64 64c-5.5 0-10.9-.7-16-2c0 .7 0 1.3 0 2c0 44.2 35.8 80 80 80zm0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256c13.6 30 40.2 72.5 78.6 108.3C169.2 402.4 222.8 432 288 432s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80zM95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1c3.3 7.9 3.3 16.7 0 24.6c-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6zM288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80c-.7 0-1.3 0-2 0c1.3 5.1 2 10.5 2 16c0 35.3-28.7 64-64 64c-5.5 0-10.9-.7-16-2c0 .7 0 1.3 0 2c0 44.2 35.8 80 80 80zm0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256z'/%3E%3C/svg%3E");
}

.management-investments-search .checkbox-label {
  font-weight: normal;
}

.tab-milestones .progress-bars {
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}
.tab-milestones .progress-bars h5 {
  font-size: 1.5rem;
}
.tab-milestones .progress-bars .progress {
  background: #fef0e2;
  border-radius: 0.375rem;
  position: relative;
}
.tab-milestones .progress-bars .progress-meter {
  background: #fea230;
  border-radius: 0.375rem;
}
.tab-milestones .progress-bars .progress-meter-text {
  color: #2e2e2e;
  right: 12px;
  text-align: right;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.tab-milestones .progress-bars .milestone-progress .row {
  margin-bottom: 0.75rem;
}

.moderation-table .moderation-info > :not(svg) + * {
  margin-left: 1em;
  position: relative;
}
.moderation-table .moderation-info > :not(svg) + *::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  border-radius: 100%;
  height: 0.25em;
  opacity: 1;
  width: 0.25em;
  left: -1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.moderation-users-index th:last-child,
.moderation-users-index td:last-child {
  text-align: right;
}
.moderation-users-index .table-actions {
  justify-content: flex-end;
}
.moderation-users-index .hide-link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  border-color: currentcolor;
  color: #8a6d3b;
  margin-bottom: 0;
}
.moderation-users-index .hide-link::selection,
.moderation-users-index .hide-link *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .moderation-users-index .hide-link {
  outline: 0;
}
.moderation-users-index .hide-link:focus, .moderation-users-index .hide-link:hover {
  text-decoration: none !important;
}
.moderation-users-index .hide-link[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.moderation-users-index .hide-link:hover, .moderation-users-index .hide-link:focus {
  color: #45371e;
}
.moderation-users-index .block-link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  border-color: currentcolor;
  color: #cc4b37;
  margin-bottom: 0;
}
.moderation-users-index .block-link::selection,
.moderation-users-index .block-link *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .moderation-users-index .block-link {
  outline: 0;
}
.moderation-users-index .block-link:focus, .moderation-users-index .block-link:hover {
  text-decoration: none !important;
}
.moderation-users-index .block-link[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.moderation-users-index .block-link:hover, .moderation-users-index .block-link:focus {
  color: #67251a;
}

.officing-ballot-sheets-show dl {
  line-height: 1.5;
}
.officing-ballot-sheets-show dl dd,
.officing-ballot-sheets-show dl dt {
  display: inline-block;
}
.officing-ballot-sheets-show dl dt {
  font-weight: normal;
  margin-bottom: 0;
}
.officing-ballot-sheets-show dl dd {
  font-weight: bold;
}
.officing-ballot-sheets-show dl dd + dt::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  border-radius: 100%;
  height: 0.25em;
  opacity: 1;
  width: 0.25em;
}

.officing-results-form legend {
  font-size: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  .officing-results-form legend {
    font-size: 1.5rem;
  }
}

.poll .access-status {
  border-bottom: 60px solid transparent;
  border-top: 0;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}
.poll .access-status.cant-answer::after, .poll .access-status.not-logged-in::after, .poll .access-status.already-answer::after, .poll .access-status.unverified::after {
  font-family: "icons" !important;
  left: 34px;
  position: absolute;
  top: 5px;
}
.poll .access-status.cant-answer {
  border-right: 60px solid #f2dede;
}
.poll .access-status.cant-answer::after {
  color: #a94442;
  content: "t";
}
.poll .access-status.not-logged-in {
  border-right: 60px solid #d9edf7;
}
.poll .access-status.not-logged-in::after {
  color: #31708f;
  content: "o";
}
.poll .access-status.unverified {
  border-right: 60px solid #fcf8e3;
}
.poll .access-status.unverified::after {
  color: #8a6d3b;
  content: "o";
}
.poll .access-status.already-answer {
  border-right: 60px solid #dff0d8;
}
.poll .access-status.already-answer::after {
  color: #3c763d;
  content: "Y";
}

.poll-form fieldset,
.poll-form .poll-question-open-ended {
  border: 1px solid #dee0e3;
  border-radius: 0.1875rem;
  padding: 1.5rem;
}
.poll-form fieldset + *,
.poll-form .poll-question-open-ended + * {
  margin-top: 0.75rem;
}
.poll-form fieldset legend {
  font-size: 1.25rem;
  float: left;
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .poll-form fieldset legend {
    font-size: 1.5rem;
  }
}
.poll-form fieldset legend + * {
  clear: left;
}
.poll-form fieldset label {
  align-items: baseline;
  display: flex;
  max-width: -webkit-max-content;
  max-width: max-content;
  font-weight: normal;
}
.poll-form fieldset label:first-of-type::before {
  content: "\a";
  margin-top: 0.75rem;
  white-space: pre;
}
.poll-form .poll-question-open-ended label {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 40em) {
  .poll-form .poll-question-open-ended label {
    font-size: 1.5rem;
  }
}
.poll-form .help-text {
  display: block;
  font-size: 1em;
  font-style: normal;
  font-weight: bold;
}
.poll-form .read-more-links {
  margin-top: 0.75rem;
}
.poll-form .read-more-links * {
  margin-bottom: 0;
}
.poll-form .read-more-links * + * {
  margin-top: 0.375rem;
}
.poll-form [type=submit] {
  margin-top: 1.125rem;
}

.poll-gallery .orbit-next,
.poll-gallery .orbit-previous {
  background: rgba(34, 34, 34, 0.25);
}
.poll-gallery .orbit-next::before,
.poll-gallery .orbit-previous::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80L0 432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80L0 432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z'/%3E%3C/svg%3E");
}
.poll-gallery .orbit-previous::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.poll-gallery .zoom-link {
  border-radius: 3rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  height: 3rem;
  line-height: 3rem;
  padding-top: 0.25rem;
  position: absolute;
  right: 12px;
  text-align: center;
  top: 24px;
  width: 3rem;
  z-index: 9;
}
.poll-gallery .zoom-link:hover {
  background-color: #4b4f58;
  color: #ffffff;
  background-color: var(--brand-secondary, #4b4f58);
  color: var(--brand-secondary-contrast, #ffffff);
  text-decoration: none;
}
.poll-gallery .zoom-link:hover::selection,
.poll-gallery .zoom-link:hover *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

@media print, screen and (min-width: 40em) {
  .public .poll.with-image {
    display: flex;
    padding: 0 0.75rem 0 0;
  }
  .public .poll.with-image > * {
    flex-basis: 25%;
  }
  .public .poll.with-image .poll-info {
    flex-basis: 50%;
  }
  .public .poll.with-image > a {
    align-self: center;
  }
  .public .poll.with-image > .poll-info,
  .public .poll.with-image > a {
    margin-left: 1.875rem;
  }
}
.public .poll .image-container {
  background: #fafafa;
  overflow: hidden;
  position: relative;
}
.public .poll .image-container img {
  height: 100%;
  max-width: none;
  position: absolute;
}
.public .poll .dates {
  color: #4b4f58;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.public .poll h4 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.public .poll h4 a {
  color: inherit;
  display: inline-block;
}

.polls-results .polls-results-content {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .polls-results .polls-results-content {
    display: flex;
  }
  .polls-results .polls-results-content > :first-child {
    flex-basis: 25%;
  }
  .polls-results .polls-results-content > :last-child {
    flex-basis: 75%;
  }
}
.polls-results .polls-results-content > * {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .polls-results .polls-results-content > * {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.proposal-featured {
  min-height: 5.25rem;
}
.proposal-featured .info > :last-child::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  border-radius: 100%;
  height: 0.25em;
  opacity: 1;
  width: 0.25em;
}
.proposal-featured .supports {
  padding: 1.5rem 0;
  position: relative;
  background: none;
  border: 0;
  padding-bottom: 0;
  padding-top: 0;
}
.proposal-featured .supports .progress {
  background: #ddf4b3;
  border: 1px solid #ddf4b3;
  height: 0.875rem;
  position: relative;
}
.proposal-featured .supports .progress .meter {
  background: #94d420;
  border-radius: 0;
  border-bottom-right-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
  display: block;
  height: 0.75rem;
}
.proposal-featured .supports .percentage {
  font-size: 0.75rem;
  position: absolute;
  right: 6px;
  top: -2px;
  vertical-align: top;
}
.proposal-featured .supports abbr {
  color: #4b4f58;
}
.proposal-featured .supports abbr[title] {
  border-bottom: 0;
}
.proposal-featured .supports .button-support {
  background: #94d420;
  color: inherit;
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.proposal-featured .supports .button-support:hover, .proposal-featured .supports .button-support:active {
  background: #c9ed87;
  cursor: pointer;
}
.proposal-featured .supports .total-supports {
  display: block;
  font-weight: bold;
  text-align: center;
}
.proposal-featured .supports .total-supports span {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
}
.proposal-featured .supports .supported {
  color: inherit;
  margin-top: 0.75rem;
}
.proposal-featured .supports::after {
  content: none;
}
.proposal-featured .supports .progress,
.proposal-featured .supports .total-supports {
  display: none;
}
.proposal-featured .supports .button-support {
  background: #2e2e2e;
  color: #ffdc5c;
  margin-top: 0;
}
.proposal-featured .supports .participation-not-allowed {
  background: #ffdc5c;
  padding-top: 0;
}
.proposal-featured .supports .participation-not-allowed a {
  color: inherit;
}
.proposal-featured .supports .participation-not-allowed p {
  color: #8a6d3b;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.proposal-featured .supports .supported {
  background: none;
  border: 0;
  font-size: 0.875rem;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.proposal-featured .share-supported .social-share-button .ssb-icon {
  background: none;
  color: inherit;
  height: 2.0625rem;
}
.proposal-featured .share-supported .social-share-button .ssb-icon::before {
  font-size: 1.125rem;
  line-height: 2.0625rem;
}

.featured-proposals {
  background: #ffdc5c;
}

.proposals-geozones a:focus {
  box-shadow: none;
  outline: none;
}
.proposals-geozones a:focus img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.proposals-geozones a:focus-visible {
  box-shadow: none;
  outline: none;
}
.proposals-geozones a:focus-visible img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.proposals-geozones a:focus:not(:focus-visible) img {
  box-shadow: none;
  outline: none;
}
.proposals-geozones a:active {
  box-shadow: none;
  outline: none;
}
.proposals-geozones a:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.proposals-geozones a:focus:active {
  box-shadow: none;
  outline: none;
}
.proposals-geozones a:focus:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}

.proposal-new header h1::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M297.2 248.9C311.6 228.3 320 203.2 320 176c0-70.7-57.3-128-128-128S64 105.3 64 176c0 27.2 8.4 52.3 22.8 72.9c3.7 5.3 8.1 11.3 12.8 17.7c0 0 0 0 0 0c12.9 17.7 28.3 38.9 39.8 59.8c10.4 19 15.7 38.8 18.3 57.5L109 384c-2.2-12-5.9-23.7-11.8-34.5c-9.9-18-22.2-34.9-34.5-51.8c0 0 0 0 0 0s0 0 0 0c-5.2-7.1-10.4-14.2-15.4-21.4C27.6 247.9 16 213.3 16 176C16 78.8 94.8 0 192 0s176 78.8 176 176c0 37.3-11.6 71.9-31.4 100.3c-5 7.2-10.2 14.3-15.4 21.4c0 0 0 0 0 0s0 0 0 0c-12.3 16.8-24.6 33.7-34.5 51.8c-5.9 10.8-9.6 22.5-11.8 34.5l-48.6 0c2.6-18.7 7.9-38.6 18.3-57.5c11.5-20.9 26.9-42.1 39.8-59.8c0 0 0 0 0 0s0 0 0 0s0 0 0 0c4.7-6.4 9-12.4 12.7-17.7zM192 128c-26.5 0-48 21.5-48 48c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16s-7.2 16-16 16zm0 384c-44.2 0-80-35.8-80-80l0-16 160 0 0 16c0 44.2-35.8 80-80 80z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M297.2 248.9C311.6 228.3 320 203.2 320 176c0-70.7-57.3-128-128-128S64 105.3 64 176c0 27.2 8.4 52.3 22.8 72.9c3.7 5.3 8.1 11.3 12.8 17.7c0 0 0 0 0 0c12.9 17.7 28.3 38.9 39.8 59.8c10.4 19 15.7 38.8 18.3 57.5L109 384c-2.2-12-5.9-23.7-11.8-34.5c-9.9-18-22.2-34.9-34.5-51.8c0 0 0 0 0 0s0 0 0 0c-5.2-7.1-10.4-14.2-15.4-21.4C27.6 247.9 16 213.3 16 176C16 78.8 94.8 0 192 0s176 78.8 176 176c0 37.3-11.6 71.9-31.4 100.3c-5 7.2-10.2 14.3-15.4 21.4c0 0 0 0 0 0s0 0 0 0c-12.3 16.8-24.6 33.7-34.5 51.8c-5.9 10.8-9.6 22.5-11.8 34.5l-48.6 0c2.6-18.7 7.9-38.6 18.3-57.5c11.5-20.9 26.9-42.1 39.8-59.8c0 0 0 0 0 0s0 0 0 0s0 0 0 0c4.7-6.4 9-12.4 12.7-17.7zM192 128c-26.5 0-48 21.5-48 48c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16s-7.2 16-16 16zm0 384c-44.2 0-80-35.8-80-80l0-16 160 0 0 16c0 44.2-35.8 80-80 80z'/%3E%3C/svg%3E");
}
.proposal-new aside {
  margin-top: 1.5rem;
}
.proposal-new .recommendations li::before {
  color: #94d420;
}

.proposals-summary .panel,
.proposals-summary .basic-content {
  min-height: 0;
}

.related-content-list {
  list-style-type: none;
  margin-left: 0;
}
.related-content-list li {
  border-bottom: 1px solid #dee0e3;
  margin-bottom: 0 !important;
  padding: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .related-content-list li {
    display: flex;
    justify-content: space-between;
  }
  .related-content-list li > :first-child {
    flex: 1;
    margin-right: 1em;
  }
}
.related-content-list li:first-child {
  border-top: 1px solid #dee0e3;
}
.related-content-list h3 {
  font-size: 1.0625rem;
  font-weight: normal;
}
.related-content-list .related-content-title {
  color: #4f4f4f;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.related-content-list .flag {
  margin-top: 0.75rem;
}

.sdg-goal-icon {
  min-width: 45px;
  width: 3rem;
}

.sdg-goals-index .banner,
.sdg-goals-index .header-card,
.sdg-goals-index .section-header {
  position: relative;
}
.sdg-goals-index .banner::before,
.sdg-goals-index .header-card::before,
.sdg-goals-index .section-header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goals-index .banner::before,
  .sdg-goals-index .header-card::before,
  .sdg-goals-index .section-header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goals-index .banner::before,
  .sdg-goals-index .header-card::before,
  .sdg-goals-index .section-header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goals-index .section-header {
  position: relative;
}
.sdg-goals-index .section-header::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  border-bottom: 1px solid #eee;
}
@media print, screen and (min-width: 40em) {
  .sdg-goals-index .section-header::after {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goals-index .section-header::after {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goals-index .section-header h1::before {
  background: url(/assets/sdg-07ec536921f7dc69933952a654d138329b713166f0e54ed0baf0a93d5f76f7f2.svg);
  content: "";
  display: inline-block;
  height: 1.5em;
  vertical-align: middle;
  width: 1.5em;
}
.sdg-goals-index .sdg-goal-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: -1.5% 0 0.5rem -1.5%;
  margin-left: calc(-1 * Max(4.5px, 1.5%));
  margin-top: calc(-1 * Max(4.5px, 1.5%));
  width: 101.5%;
  width: calc(100% + Max(4.5px, 1.5%));
  margin-left: auto;
  margin-right: auto;
  max-width: 60rem;
  width: 100%;
}
.sdg-goals-index .sdg-goal-list > *,
.sdg-goals-index .sdg-goal-list > .tabs-title {
  margin-bottom: 0;
  margin-left: 1.5%;
  margin-left: Max(4.5px, 1.5%);
  margin-right: 0;
  margin-top: 1.5%;
  margin-top: Max(4.5px, 1.5%);
}
.sdg-goals-index .sdg-goal-list a:hover .sdg-goal-icon {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.sdg-goals-index .sdg-goal-list a:focus {
  box-shadow: none;
  outline: none;
}
.sdg-goals-index .sdg-goal-list a:focus img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-goals-index .sdg-goal-list a:focus-visible {
  box-shadow: none;
  outline: none;
}
.sdg-goals-index .sdg-goal-list a:focus-visible img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-goals-index .sdg-goal-list a:focus:not(:focus-visible) img {
  box-shadow: none;
  outline: none;
}
.sdg-goals-index .sdg-goal-list a:active {
  box-shadow: none;
  outline: none;
}
.sdg-goals-index .sdg-goal-list a:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-goals-index .sdg-goal-list a:focus:active {
  box-shadow: none;
  outline: none;
}
.sdg-goals-index .sdg-goal-list a:focus:active img {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-goals-index .sdg-goal-list li {
  line-height: 0;
  margin-left: 0.75%;
  margin-right: 0.75%;
  width: 15.1666666667%;
}
.sdg-goals-index .sdg-goal-list li .sdg-goal-icon {
  width: 100%;
}
.sdg-goals-index .sdg-phase .cards-container {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .sdg-goals-index .sdg-phase .cards-container {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .sdg-goals-index .sdg-phase .cards-container {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.sdg-goals-index .background-header {
  margin-bottom: 1.5rem;
}

.sdg-goal-show .sdg-goal > header {
  align-items: center;
  color: #fff;
  display: flex;
  margin: 0.75rem 0;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  text-shadow: 0 0 1px #2e2e2e;
}
.sdg-goal-show .sdg-goal > header::after {
  align-self: stretch;
  background: transparent no-repeat center right;
  background-size: contain;
  content: "";
  flex: 1;
  min-width: 100px;
}
@media print, screen and (max-width: 39.99875em) {
  .sdg-goal-show .sdg-goal > header::after {
    min-width: 75px;
  }
}
.sdg-goal-show .sdg-goal h1 {
  align-items: center;
  display: flex;
  font-family: "Oswald", "Source Sans Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
}
@media print, screen and (max-width: 39.99875em) {
  .sdg-goal-show .sdg-goal h1 {
    font-size: 1.5rem;
  }
}
.sdg-goal-show .sdg-goal h1 .goal-code {
  font-size: 2.2em;
  letter-spacing: -0.1em;
  margin-right: 0.2em;
}
.sdg-goal-show .sdg-goal h1 .goal-title > * {
  display: block;
}
.sdg-goal-show .sdg-goal.sdg-goal-1 > header {
  position: relative;
  background-color: #e5243b;
}
.sdg-goal-show .sdg-goal.sdg-goal-1 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-1 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-1 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-1 > header::after {
  background-image: url(/assets/sdg/goal_1_icon_only-d68fde3dd00700eb03b39ff83be124781c674ae20bdd5f760edd9eaec41d34a8.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-2 > header {
  position: relative;
  background-color: #dda63a;
}
.sdg-goal-show .sdg-goal.sdg-goal-2 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-2 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-2 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-2 > header::after {
  background-image: url(/assets/sdg/goal_2_icon_only-aa98f31ef3d8681e72f84d4a569ab9569a7dd8b69eede3b47a31be10650567d7.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-3 > header {
  position: relative;
  background-color: #4c9f38;
}
.sdg-goal-show .sdg-goal.sdg-goal-3 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-3 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-3 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-3 > header::after {
  background-image: url(/assets/sdg/goal_3_icon_only-07b2a03cd7151ed18b9207bc70a9dc17e9e1372d6a2693f3d9475a101b952243.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-4 > header {
  position: relative;
  background-color: #c5192d;
}
.sdg-goal-show .sdg-goal.sdg-goal-4 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-4 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-4 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-4 > header::after {
  background-image: url(/assets/sdg/goal_4_icon_only-a36d3fd16b55a811c22f474c304c87e6e6e08327c04815c554b8363d7d15aa3c.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-5 > header {
  position: relative;
  background-color: #ff3a21;
}
.sdg-goal-show .sdg-goal.sdg-goal-5 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-5 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-5 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-5 > header::after {
  background-image: url(/assets/sdg/goal_5_icon_only-654173f713c6765e119c9b06f98658471bbc23172f86e6c501f9e5b9a48ad924.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-6 > header {
  position: relative;
  background-color: #26bde2;
}
.sdg-goal-show .sdg-goal.sdg-goal-6 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-6 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-6 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-6 > header::after {
  background-image: url(/assets/sdg/goal_6_icon_only-6cf9f153ed65cc09697b236dbf5470992c395d1fe9106e6b0f9af7f4077802e7.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-7 > header {
  position: relative;
  background-color: #fcc30b;
}
.sdg-goal-show .sdg-goal.sdg-goal-7 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-7 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-7 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-7 > header::after {
  background-image: url(/assets/sdg/goal_7_icon_only-e9605e2a304d13aaeb8d123367bdf18a289c399d32fc67448f50df27d0eb4181.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-8 > header {
  position: relative;
  background-color: #a21942;
}
.sdg-goal-show .sdg-goal.sdg-goal-8 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-8 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-8 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-8 > header::after {
  background-image: url(/assets/sdg/goal_8_icon_only-3952c38b371c6a35bad35878f60f256ce16e1a41506fdd51248315c92d4de172.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-9 > header {
  position: relative;
  background-color: #fd6925;
}
.sdg-goal-show .sdg-goal.sdg-goal-9 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-9 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-9 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-9 > header::after {
  background-image: url(/assets/sdg/goal_9_icon_only-7bcdd757c7d93da04f59d17ff5faaae1b92d54907bf35564a74ff0b3381ee7e8.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-10 > header {
  position: relative;
  background-color: #dd1367;
}
.sdg-goal-show .sdg-goal.sdg-goal-10 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-10 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-10 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-10 > header::after {
  background-image: url(/assets/sdg/goal_10_icon_only-02030da495181c0652dfe71d6f149129648c5026be579b5c117c65605bc3f3c8.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-11 > header {
  position: relative;
  background-color: #fd9d24;
}
.sdg-goal-show .sdg-goal.sdg-goal-11 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-11 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-11 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-11 > header::after {
  background-image: url(/assets/sdg/goal_11_icon_only-9d96401aa41e00647f6fd79a19ab4dd5e27fb78f968be6492a2b6549c8025dcc.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-12 > header {
  position: relative;
  background-color: #bf8b2e;
}
.sdg-goal-show .sdg-goal.sdg-goal-12 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-12 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-12 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-12 > header::after {
  background-image: url(/assets/sdg/goal_12_icon_only-059e44a9400e7bd29f17ad1c800a1c52dc49091109f1a1a0da42c01f5a74e8b0.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-13 > header {
  position: relative;
  background-color: #3f7e44;
}
.sdg-goal-show .sdg-goal.sdg-goal-13 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-13 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-13 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-13 > header::after {
  background-image: url(/assets/sdg/goal_13_icon_only-c357fa188550917eed0961a1ff79528adc8645f4d90d5ed6222cc61f5d434136.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-14 > header {
  position: relative;
  background-color: #0a97d9;
}
.sdg-goal-show .sdg-goal.sdg-goal-14 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-14 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-14 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-14 > header::after {
  background-image: url(/assets/sdg/goal_14_icon_only-c1530162c19157f87b15e43eae2c4a37633b16bbd89e5efc9693a1b81ab1cbb7.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-15 > header {
  position: relative;
  background-color: #56c02b;
}
.sdg-goal-show .sdg-goal.sdg-goal-15 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-15 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-15 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-15 > header::after {
  background-image: url(/assets/sdg/goal_15_icon_only-45c2fdf8fb31487a80fac83b1744afc0033cf8bdde2b9b1f6def98516c073eb9.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-16 > header {
  position: relative;
  background-color: #00689d;
}
.sdg-goal-show .sdg-goal.sdg-goal-16 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-16 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-16 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-16 > header::after {
  background-image: url(/assets/sdg/goal_16_icon_only-5f52b36f531195788bffdc56673f0efc974c9891cd0c1e38db4bced5fb29fb89.svg);
}
.sdg-goal-show .sdg-goal.sdg-goal-17 > header {
  position: relative;
  background-color: #19486a;
}
.sdg-goal-show .sdg-goal.sdg-goal-17 > header::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  left: -0.625rem;
  right: -0.625rem;
  background: inherit;
  z-index: -1;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .sdg-goal.sdg-goal-17 > header::before {
    left: -0.9375rem;
    right: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .sdg-goal-show .sdg-goal.sdg-goal-17 > header::before {
    left: calc(37.5rem - 50vw - 0.9375rem);
    right: calc(37.5rem - 50vw - 0.9375rem);
  }
}
.sdg-goal-show .sdg-goal.sdg-goal-17 > header::after {
  background-image: url(/assets/sdg/goal_17_icon_only-da4fb2e0402203d287245ecbf81df32e7c66e95627b35008e15bb5573058874d.svg);
}
.sdg-goal-show .sdg-goal .goal-description-content .read-more {
  text-align: center;
}
.sdg-goal-show .sdg-goal .goal-description-content .read-more button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.sdg-goal-show .sdg-goal .goal-description-content .read-more button:hover, .sdg-goal-show .sdg-goal .goal-description-content .read-more button:active, .sdg-goal-show .sdg-goal .goal-description-content .read-more button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.sdg-goal-show .sdg-goal .goal-description-content .read-more button:hover, .sdg-goal-show .sdg-goal .goal-description-content .read-more button:active {
  text-decoration: underline;
}
.sdg-goal-show .sdg-goal .goal-description.short {
  height: 9.375rem;
  overflow: hidden;
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .feed-processes .feed-content {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
    display: flex;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .sdg-goal-show .feed-processes .feed-content {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  .sdg-goal-show .feed-processes .feed-content {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 40em) {
  .sdg-goal-show .feed-processes .feed-content > * {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    width: 50%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .sdg-goal-show .feed-processes .feed-content > * {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.sdg-goal-targets dt,
.sdg-goal-targets dd {
  display: inline;
}
.sdg-goal-targets dd::after {
  content: "";
  display: block;
}
.sdg-goal-targets dd:not(:last-child)::after {
  margin-bottom: 0.75rem;
}

.sdg-help-content {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .sdg-help-content {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.sdg-help-content > .tabs li:focus {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}

.sdg-related-list-selector {
  clear: both;
}
.sdg-related-list-selector > legend {
  margin-bottom: 0;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag {
  color: #fff;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="1"] {
  background-color: #e5243b;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="2"] {
  background-color: #dda63a;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="3"] {
  background-color: #4c9f38;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="4"] {
  background-color: #c5192d;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="5"] {
  background-color: #ff3a21;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="6"] {
  background-color: #26bde2;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="7"] {
  background-color: #fcc30b;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="8"] {
  background-color: #a21942;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="9"] {
  background-color: #fd6925;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="10"] {
  background-color: #dd1367;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="11"] {
  background-color: #fd9d24;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="12"] {
  background-color: #bf8b2e;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="13"] {
  background-color: #3f7e44;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="14"] {
  background-color: #0a97d9;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="15"] {
  background-color: #56c02b;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="16"] {
  background-color: #00689d;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-select-tag[data-val^="17"] {
  background-color: #19486a;
}
.sdg-related-list-selector .goals + label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.sdg-related-list-selector .goals legend {
  font-style: italic;
  font-weight: normal;
}
.sdg-related-list-selector .goal-list input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.sdg-related-list-selector .goal-list input:focus + label {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.sdg-related-list-selector .goal-list input:checked + label img {
  opacity: 0.15;
}
.sdg-related-list-selector .help-text {
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: normal;
}
.sdg-related-list-selector .input-section {
  margin-bottom: 1rem;
}
.sdg-related-list-selector .amsify-suggestags-area {
  position: relative;
}
.sdg-related-list-selector .amsify-suggestags-area .amsify-suggestags-list {
  top: 3rem;
}
.sdg-related-list-selector .amsify-suggestags-input-area {
  display: flex;
  flex-wrap: wrap;
}
.sdg-related-list-selector .amsify-suggestags-input-area > input {
  margin-bottom: 0.375rem !important;
  order: -1;
}
.sdg-related-list-selector .remove-tag {
  color: #fff;
}
.sdg-related-list-selector h3 {
  font-size: 1.125rem;
}
@media print, screen and (min-width: 40em) {
  .sdg-related-list-selector h3 {
    font-size: 1.1875rem;
  }
}

.sdg-tag-list .sdg-target-tag-list a:not(.more-targets),
.sdg-tag-list .sdg-target-tag-list span {
  color: #fff;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="1"] {
  background-color: #e5243b;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="1"]:hover {
  background-color: #bf172b;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="1"] {
  background-color: #e5243b;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="2"] {
  background-color: #dda63a;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="2"]:hover {
  background-color: #c28c22;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="2"] {
  background-color: #dda63a;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="3"] {
  background-color: #4c9f38;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="3"]:hover {
  background-color: #3a792b;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="3"] {
  background-color: #4c9f38;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="4"] {
  background-color: #c5192d;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="4"]:hover {
  background-color: #981323;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="4"] {
  background-color: #c5192d;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="5"] {
  background-color: #ff3a21;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="5"]:hover {
  background-color: #ed1b00;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="5"] {
  background-color: #ff3a21;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="6"] {
  background-color: #26bde2;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="6"]:hover {
  background-color: #199cbc;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="6"] {
  background-color: #26bde2;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="7"] {
  background-color: #fcc30b;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="7"]:hover {
  background-color: #d1a103;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="7"] {
  background-color: #fcc30b;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="8"] {
  background-color: #a21942;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="8"]:hover {
  background-color: #761230;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="8"] {
  background-color: #a21942;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="9"] {
  background-color: #fd6925;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="9"]:hover {
  background-color: #ed4c02;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="9"] {
  background-color: #fd6925;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="10"] {
  background-color: #dd1367;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="10"]:hover {
  background-color: #ae0f51;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="10"] {
  background-color: #dd1367;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="11"] {
  background-color: #fd9d24;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="11"]:hover {
  background-color: #ec8402;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="11"] {
  background-color: #fd9d24;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="12"] {
  background-color: #bf8b2e;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="12"]:hover {
  background-color: #966d24;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="12"] {
  background-color: #bf8b2e;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="13"] {
  background-color: #3f7e44;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="13"]:hover {
  background-color: #2e5c32;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="13"] {
  background-color: #3f7e44;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="14"] {
  background-color: #0a97d9;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="14"]:hover {
  background-color: #0875a8;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="14"] {
  background-color: #0a97d9;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="15"] {
  background-color: #56c02b;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="15"]:hover {
  background-color: #439622;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="15"] {
  background-color: #56c02b;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="16"] {
  background-color: #00689d;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="16"]:hover {
  background-color: #00466a;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="16"] {
  background-color: #00689d;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="17"] {
  background-color: #19486a;
}
.sdg-tag-list .sdg-target-tag-list a[data-code^="17"]:hover {
  background-color: #0f2c41;
}
.sdg-tag-list .sdg-target-tag-list span[data-code^="17"] {
  background-color: #19486a;
}

.sdg-content-menu .goals-link::before {
  -webkit-mask-image: url(/assets/sdg-07ec536921f7dc69933952a654d138329b713166f0e54ed0baf0a93d5f76f7f2.svg);
          mask-image: url(/assets/sdg-07ec536921f7dc69933952a654d138329b713166f0e54ed0baf0a93d5f76f7f2.svg);
}
.sdg-content-menu .homepage-link::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M575.8 255.5c0 18-15 32.1-32 32.1l-32 0 .7 160.2c0 2.7-.2 5.4-.5 8.1l0 16.2c0 22.1-17.9 40-40 40l-16 0c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1L416 512l-24 0c-22.1 0-40-17.9-40-40l0-24 0-64c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32 14.3-32 32l0 64 0 24c0 22.1-17.9 40-40 40l-24 0-31.9 0c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2l-16 0c-22.1 0-40-17.9-40-40l0-112c0-.9 0-1.9 .1-2.8l0-69.7-32 0c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M575.8 255.5c0 18-15 32.1-32 32.1l-32 0 .7 160.2c0 2.7-.2 5.4-.5 8.1l0 16.2c0 22.1-17.9 40-40 40l-16 0c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1L416 512l-24 0c-22.1 0-40-17.9-40-40l0-24 0-64c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32 14.3-32 32l0 64 0 24c0 22.1-17.9 40-40 40l-24 0-31.9 0c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2l-16 0c-22.1 0-40-17.9-40-40l0-112c0-.9 0-1.9 .1-2.8l0-69.7-32 0c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z'/%3E%3C/svg%3E");
}
.sdg-header > header,
.phase-cards > header {
  align-items: flex-start;
  display: flex;
}
.sdg-header > header a,
.phase-cards > header a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  margin-left: auto;
}
[data-whatinput=mouse] .sdg-header > header a,
[data-whatinput=mouse] .phase-cards > header a {
  outline: 0;
}
.sdg-header > header a:focus, .sdg-header > header a:hover,
.phase-cards > header a:focus,
.phase-cards > header a:hover {
  text-decoration: none !important;
}
.sdg-header > header a[disabled],
.phase-cards > header a[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.sdg-header > header a::selection,
.sdg-header > header a *::selection,
.phase-cards > header a::selection,
.phase-cards > header a *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.sdg-header > header a:hover, .sdg-header > header a:focus,
.phase-cards > header a:hover,
.phase-cards > header a:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.sdg-header > header a:hover::selection,
.sdg-header > header a:hover *::selection, .sdg-header > header a:focus::selection,
.sdg-header > header a:focus *::selection,
.phase-cards > header a:hover::selection,
.phase-cards > header a:hover *::selection,
.phase-cards > header a:focus::selection,
.phase-cards > header a:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.sdg-content-menu .goals-link::before {
  -webkit-mask-image: url(/assets/sdg-07ec536921f7dc69933952a654d138329b713166f0e54ed0baf0a93d5f76f7f2.svg);
          mask-image: url(/assets/sdg-07ec536921f7dc69933952a654d138329b713166f0e54ed0baf0a93d5f76f7f2.svg);
}
.sdg-content-menu .homepage-link::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M575.8 255.5c0 18-15 32.1-32 32.1l-32 0 .7 160.2c0 2.7-.2 5.4-.5 8.1l0 16.2c0 22.1-17.9 40-40 40l-16 0c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1L416 512l-24 0c-22.1 0-40-17.9-40-40l0-24 0-64c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32 14.3-32 32l0 64 0 24c0 22.1-17.9 40-40 40l-24 0-31.9 0c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2l-16 0c-22.1 0-40-17.9-40-40l0-112c0-.9 0-1.9 .1-2.8l0-69.7-32 0c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M575.8 255.5c0 18-15 32.1-32 32.1l-32 0 .7 160.2c0 2.7-.2 5.4-.5 8.1l0 16.2c0 22.1-17.9 40-40 40l-16 0c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1L416 512l-24 0c-22.1 0-40-17.9-40-40l0-24 0-64c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32 14.3-32 32l0 64 0 24c0 22.1-17.9 40-40 40l-24 0-31.9 0c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2l-16 0c-22.1 0-40-17.9-40-40l0-112c0-.9 0-1.9 .1-2.8l0-69.7-32 0c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z'/%3E%3C/svg%3E");
}
.advanced-search-form {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 40em) {
  .advanced-search-form {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .advanced-search-form {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .advanced-search-form .filter {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    width: 100%;
    float: left;
    width: 33%;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 40em) {
  .advanced-search-form .filter {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .advanced-search-form .filter, .advanced-search-form .filter:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .advanced-search-form .filter:last-child:not(:first-child) {
    float: right;
  }
  .advanced-search-form .date-filters {
    float: left;
    width: 33%;
  }
  .advanced-search-form .date-filters .filter {
    width: 100%;
  }
  .advanced-search-form .date-filters .custom-date-filters {
    clear: both;
  }
  .advanced-search-form .submit {
    width: 33%;
  }
}
.advanced-search-form > [aria-expanded] {
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  max-width: -webkit-max-content;
  max-width: max-content;
}
@media print, screen and (min-width: 40em) {
  .advanced-search-form > [aria-expanded] {
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
  }
}
.advanced-search-form > [aria-expanded]:hover, .advanced-search-form > [aria-expanded]:active, .advanced-search-form > [aria-expanded]:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.advanced-search-form > [aria-expanded]:hover, .advanced-search-form > [aria-expanded]:active {
  text-decoration: underline;
}
@media print, screen and (min-width: 40em) {
  .advanced-search-form > [aria-expanded] {
    align-self: flex-end;
    margin-bottom: 0;
    margin-top: 0.375rem;
  }
}
.advanced-search-form .general-search,
.advanced-search-form .filter,
.advanced-search-form .submit {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .advanced-search-form .general-search,
  .advanced-search-form .filter,
  .advanced-search-form .submit {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.advanced-search-form select {
  height: 3rem;
}

.initialjs-avatar {
  font-family: HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  vertical-align: middle;
}

.banner {
  position: relative;
  position: relative;
  padding: 0 1rem;
}
.banner::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .banner::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.banner:focus-within {
  box-shadow: 0 0 0 6px #2e2e2e;
  outline: 3px solid #ffbf47;
  outline-offset: 1px;
}
.banner:focus-within a:focus {
  box-shadow: none;
  outline: none;
}
.banner a::after, .banner a::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.banner a:hover {
  text-decoration: none;
}
.debates-list .banner::before, .proposals-list .banner::before, .admin .banner::before {
  content: none;
}
.banner:hover {
  text-decoration: underline;
}
.banner a, .banner a:hover {
  color: inherit;
}
.banner > :empty {
  display: none;
}
.banner + .budget-header,
.banner + .budgets-index > .budget-header,
.banner + .jumbo {
  margin-top: 0;
}

.basic-content {
  margin: 0;
  min-height: 11.25rem;
  position: relative;
}
.basic-content .basic-description {
  font-size: 0.8125rem;
  height: 4.5rem;
  line-height: 1.5rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
  overflow: hidden;
  position: relative;
}
.basic-content .truncate {
  background: url(/assets/truncate-7128021588d380a152ce460fe9f5a54492f666e5bf085a08ccfb85cb300188a0.png);
  background-repeat: repeat-x;
  bottom: 0;
  height: 1.5rem;
  position: absolute;
  width: 100%;
}

.basic-info {
  color: #4b4f58;
  font-size: 0.875rem;
  margin: 0.375rem 0 0;
}
.basic-info > :not(svg) + * {
  margin-left: 1em;
  position: relative;
}
.basic-info > :not(svg) + *::after {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  border-radius: 100%;
  height: 0.25em;
  opacity: 1;
  width: 0.25em;
  left: -1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.basic-info .icon-comments {
  font-size: 1rem;
  vertical-align: top;
}
.basic-info a {
  color: #4b4f58;
}

.check-all-none {
  list-style-type: none;
  margin-left: 0;
}
.check-all-none button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.check-all-none button:hover, .check-all-none button:active, .check-all-none button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.check-all-none button:hover, .check-all-none button:active {
  text-decoration: underline;
}
.check-all-none li {
  display: inline-block;
}
.check-all-none li + li::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  height: 1em;
  opacity: 0.5;
  width: 1px;
}

.comments-count::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.8 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.8 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z'/%3E%3C/svg%3E");
}
.comments-count::before {
  margin-right: 0.3rem;
}
.legislation-comments .comments-count a {
  text-decoration: underline;
}
.legislation-comments .comments-count::before {
  color: #999;
}
.comment-header .comments-count::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c0 0 0 0 0 0s0 0 0 0s0 0 0 0c0 0 0 0 0 0l.3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c0 0 0 0 0 0s0 0 0 0s0 0 0 0c0 0 0 0 0 0l.3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z'/%3E%3C/svg%3E");
}
.comment-header .comments-count::before {
  color: #838383;
}

.detailed-info {
  clear: both;
  color: #4b4f58;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.detailed-info > :not(svg) + * {
  margin-left: 1em;
  position: relative;
}
.detailed-info > :not(svg) + *::after {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  border-radius: 100%;
  height: 0.25em;
  opacity: 1;
  width: 0.25em;
  left: -1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.detailed-info span:not(.label) {
  line-height: 2rem;
}
.detailed-info a {
  color: #4b4f58;
}
.detailed-info p {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin: 0;
}

.download-csv-link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  border-color: currentcolor;
  color: #2e2e2e;
  margin-bottom: 0;
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  float: right;
}
.download-csv-link::selection,
.download-csv-link *::selection {
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
}
[data-whatinput=mouse] .download-csv-link {
  outline: 0;
}
.download-csv-link:focus, .download-csv-link:hover {
  text-decoration: none !important;
}
.download-csv-link[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.download-csv-link:hover, .download-csv-link:focus {
  color: #171717;
  color: var(--anchor-color-hover, #171717);
}
.download-csv-link::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z'/%3E%3C/svg%3E");
}
.download-csv-link::before {
  margin-right: 0.2em;
}

.embedded-video {
  margin-bottom: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .embedded-video {
    width: 58.3333333333%;
  }
}
.embedded-video [data-video-code] {
  container-type: inline-size;
}
.embedded-video [data-video-code] > * {
  min-height: 75cqi;
  width: 100%;
}
.embedded-video [data-video-code] .video-placeholder {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
  border-style: solid;
  border-width: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5em;
}
.embedded-video [data-video-code] .video-placeholder button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.0625rem;
  background-color: #2e2e2e;
  color: #ffffff;
  background-color: var(--brand, #2e2e2e);
  color: var(--brand-contrast, #ffffff);
  align-self: center;
}
[data-whatinput=mouse] .embedded-video [data-video-code] .video-placeholder button {
  outline: 0;
}
.embedded-video [data-video-code] .video-placeholder button:focus, .embedded-video [data-video-code] .video-placeholder button:hover {
  text-decoration: none !important;
}
.embedded-video [data-video-code] .video-placeholder button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.embedded-video [data-video-code] .video-placeholder button::selection,
.embedded-video [data-video-code] .video-placeholder button *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}
.embedded-video [data-video-code] .video-placeholder button:hover, .embedded-video [data-video-code] .video-placeholder button:focus {
  background-color: #14679e;
  color: #ffffff;
  background-color: var(--button-background-hover, #14679e);
  color: var(--button-background-hover-contrast, #ffffff);
}
.embedded-video [data-video-code] .video-placeholder button:hover::selection,
.embedded-video [data-video-code] .video-placeholder button:hover *::selection, .embedded-video [data-video-code] .video-placeholder button:focus::selection,
.embedded-video [data-video-code] .video-placeholder button:focus *::selection {
  background-color: rgba(255, 255, 255, 0.99);
  background-color: var(--brand-contrast, rgba(255, 255, 255, 0.99));
  color: #2e2e2e;
  color: var(--brand, #2e2e2e);
}

.flag-actions button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.flag-actions button:hover, .flag-actions button:active, .flag-actions button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.flag-actions button:hover, .flag-actions button:active {
  text-decoration: underline;
}
.flag-actions .flag-disable,
.flag-actions .flag-active {
  line-height: 0;
}
.flag-actions .flag-disable {
  color: #4b4f58;
}
.flag-actions .flag-active {
  color: #db2e0f;
}

.in-favor-against {
  display: flex;
  margin-left: -1.125rem;
}
.in-favor-against > * {
  margin-left: 1.125rem;
}
.in-favor-against,
.in-favor-against .in-favor,
.in-favor-against .against,
.in-favor-against form {
  display: inline-block;
}
.in-favor-against button {
  background: #fff;
  border-radius: 0.1875rem;
  color: #8a8a8a;
  display: inline-block;
  font-size: 1.875rem;
  line-height: 1.875rem;
  padding: 0.1875rem 0.375rem 0.375rem;
  position: relative;
}
.in-favor-against button[aria-pressed=true] {
  border-style: inset;
  border-width: 3px 2px 2px 3px;
}
.in-favor-against button[aria-pressed=true]:active {
  border-style: outset;
  border-width: 2px 3px 3px 2px;
}
.in-favor-against button[aria-pressed=false] {
  border-style: outset;
  border-width: 2px 3px 3px 2px;
}
.in-favor-against button[aria-pressed=false]:active {
  border-style: inset;
  border-width: 3px 2px 2px 3px;
}
.in-favor-against .in-favor button::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16l-97.5 0c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8l97.5 0c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32L0 448c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32l-64 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16l-97.5 0c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8l97.5 0c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32L0 448c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32l-64 0z'/%3E%3C/svg%3E");
}
.in-favor-against .in-favor button:not([disabled]) {
  cursor: pointer;
}
.in-favor-against .in-favor button:not([disabled])[aria-pressed=false]:hover::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=false]:active::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2l144 0c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48l-97.5 0c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3l0-38.3 0-48 0-24.9c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32L0 224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2l144 0c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48l-97.5 0c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3l0-38.3 0-48 0-24.9c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32L0 224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E");
}
.in-favor-against .in-favor button:not([disabled])[aria-pressed=true] {
  background: #38a36f;
  border-color: #38a36f;
  color: #fff;
}
.in-favor-against .in-favor button:not([disabled])[aria-pressed=true]::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2l144 0c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48l-97.5 0c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3l0-38.3 0-48 0-24.9c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32L0 224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2l144 0c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48l-97.5 0c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3l0-38.3 0-48 0-24.9c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32L0 224c0-17.7 14.3-32 32-32z'/%3E%3C/svg%3E");
}
.in-favor-against .in-favor button:not([disabled])[aria-pressed=true]:hover::before, .in-favor-against .in-favor button:not([disabled])[aria-pressed=true]:active::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16l-97.5 0c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8l97.5 0c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32L0 448c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32l-64 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16l-97.5 0c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8l97.5 0c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32L0 448c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32l-64 0z'/%3E%3C/svg%3E");
}
.in-favor-against .against button::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16l-97.5 0c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8L384 32c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32L0 128c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16l-97.5 0c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8L384 32c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32L0 128c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0z'/%3E%3C/svg%3E");
}
.in-favor-against .against button:not([disabled]) {
  cursor: pointer;
}
.in-favor-against .against button:not([disabled])[aria-pressed=false]:hover::before, .in-favor-against .against button:not([disabled])[aria-pressed=false]:active::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2l144 0c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48l-97.5 0c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7l0 38.3 0 48 0 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32L32 96C14.3 96 0 110.3 0 128L0 352c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2l144 0c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48l-97.5 0c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7l0 38.3 0 48 0 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32L32 96C14.3 96 0 110.3 0 128L0 352c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E");
}
.in-favor-against .against button:not([disabled])[aria-pressed=true] {
  background: #ea6666;
  border-color: #ea6666;
  color: #fff;
}
.in-favor-against .against button:not([disabled])[aria-pressed=true]::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2l144 0c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48l-97.5 0c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7l0 38.3 0 48 0 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32L32 96C14.3 96 0 110.3 0 128L0 352c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2l144 0c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48l-97.5 0c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7l0 38.3 0 48 0 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384l64 0c17.7 0 32-14.3 32-32l0-224c0-17.7-14.3-32-32-32L32 96C14.3 96 0 110.3 0 128L0 352c0 17.7 14.3 32 32 32z'/%3E%3C/svg%3E");
}
.in-favor-against .against button:not([disabled])[aria-pressed=true]:hover::before, .in-favor-against .against button:not([disabled])[aria-pressed=true]:active::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16l-97.5 0c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8L384 32c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32L0 128c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16l-97.5 0c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8L384 32c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32L0 128c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 224c0 17.7-14.3 32-32 32l-64 0z'/%3E%3C/svg%3E");
}
.in-favor-against .percentage {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.map-location-remove-marker {
  border-bottom: 1px dotted;
  border-radius: 0;
  color: #db2e0f;
  cursor: pointer;
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
}
.map-location-remove-marker:hover, .map-location-remove-marker:active, .map-location-remove-marker:focus {
  border-bottom-style: solid;
  color: #ab240c;
}

.leaflet-bar a.leaflet-disabled {
  color: #525252;
}

.leaflet-container .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.9);
}
.leaflet-container a {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.leaflet-container a:hover, .leaflet-container a:active, .leaflet-container a:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.leaflet-container a:hover, .leaflet-container a:active {
  text-decoration: underline;
}

.leaflet-bottom,
.leaflet-pane,
.leaflet-top {
  z-index: 4;
}

.moderation-actions,
.moderation-actions form {
  display: inline;
}
.moderation-actions button {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  cursor: pointer;
}
.moderation-actions button:hover, .moderation-actions button:active, .moderation-actions button:focus {
  color: black;
  color: var(--anchor-color-hover, black);
}
.moderation-actions button:hover, .moderation-actions button:active {
  text-decoration: underline;
}
.moderation-actions > * + *::before {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  background: currentcolor;
  height: 1em;
  opacity: 0.5;
  width: 1px;
}

.recommended-index {
  position: relative;
  position: relative;
  position: relative;
  background: #fafafa;
  margin-bottom: 1.5rem;
  margin-top: -1.5625rem;
  padding: 1.5rem 0 0.75rem;
}
.recommended-index::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .recommended-index::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.recommended-index::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 75em) {
  .recommended-index::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
.recommended-index::after {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  border-top: 1px solid #fafafa;
}
@media screen and (min-width: 75em) {
  .recommended-index::after {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}
@media print, screen and (min-width: 40em) {
  .recommended-index {
    padding-top: 0;
  }
}
.recommended-index h2 {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.recommended-index ul {
  display: grid;
  gap: 0.375rem 1.875rem;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  font-weight: bold;
  list-style: none;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .recommended-index ul {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 40em) {
  .recommended-index ul + * {
    text-align: right;
  }
}
.recommended-index ul + * {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-top: 0.375rem;
}
@media print, screen and (min-width: 40em) {
  .recommended-index ul + * {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.recommended-index a:hover {
  text-decoration: none;
}
.recommended-index .recommendation {
  background: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
  display: block;
  padding: 0.75rem;
  z-index: 1;
}
.recommended-index .recommendation:hover:not(:focus-within) {
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.15);
}
.recommended-index .hide-recommendations {
  color: #bfbfbf;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: inherit;
  position: absolute;
  right: 12px;
  top: 0;
  z-index: 2;
}
@media print, screen and (min-width: 40em) {
  .recommended-index .hide-recommendations {
    top: -18px;
  }
}
.recommended-index .hide-recommendations:focus, .recommended-index .hide-recommendations:hover {
  color: black;
  color: var(--anchor-color-hover, black);
}

.search-results-summary {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: relative;
  background: #e7f2fc;
  margin-bottom: 1.5rem;
  margin-top: -1.5rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .search-results-summary {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.search-results-summary::before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
@media screen and (min-width: 75em) {
  .search-results-summary::before {
    left: calc(37.5rem - 50vw);
    right: calc(37.5rem - 50vw);
  }
}

.social-share-button .ssb-icon {
  background-image: none;
  color: #fff;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  width: 3rem;
}
.social-share-button .ssb-icon::before {
  font-size: 1.5rem;
  margin-right: 0;
}
.social-share-button .ssb-icon:hover, .social-share-button .ssb-icon:focus {
  background: #fff;
}

.ssb-twitter {
  background: #45b0e3;
}
.ssb-twitter::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
}
.ssb-twitter:hover, .ssb-twitter:focus {
  color: #40a2d1;
}

.ssb-facebook {
  background: #3b5998;
}
.ssb-facebook::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z'/%3E%3C/svg%3E");
}
.ssb-facebook:hover, .ssb-facebook:focus {
  color: #354f88;
}

.ssb-telegram {
  background: #08c;
}
.ssb-telegram::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath d='M248%2C8C111.033%2C8%2C0%2C119.033%2C0%2C256S111.033%2C504%2C248%2C504%2C496%2C392.967%2C496%2C256%2C384.967%2C8%2C248%2C8ZM362.952%2C176.66c-3.732%2C39.215-19.881%2C134.378-28.1%2C178.3-3.476%2C18.584-10.322%2C24.816-16.948%2C25.425-14.4%2C1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25%2C5.342-39.5%2C3.652-3.793%2C67.107-61.51%2C68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608%2C69.142-14.845%2C10.194-26.894%2C9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7%2C18.45-13.7%2C108.446-47.248%2C144.628-62.3c68.872-28.647%2C83.183-33.623%2C92.511-33.789%2C2.052-.034%2C6.639.474%2C9.61%2C2.885a10.452%2C10.452%2C0%2C0%2C1%2C3.53%2C6.716A43.765%2C43.765%2C0%2C0%2C1%2C362.952%2C176.66Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath d='M248%2C8C111.033%2C8%2C0%2C119.033%2C0%2C256S111.033%2C504%2C248%2C504%2C496%2C392.967%2C496%2C256%2C384.967%2C8%2C248%2C8ZM362.952%2C176.66c-3.732%2C39.215-19.881%2C134.378-28.1%2C178.3-3.476%2C18.584-10.322%2C24.816-16.948%2C25.425-14.4%2C1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25%2C5.342-39.5%2C3.652-3.793%2C67.107-61.51%2C68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608%2C69.142-14.845%2C10.194-26.894%2C9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7%2C18.45-13.7%2C108.446-47.248%2C144.628-62.3c68.872-28.647%2C83.183-33.623%2C92.511-33.789%2C2.052-.034%2C6.639.474%2C9.61%2C2.885a10.452%2C10.452%2C0%2C0%2C1%2C3.53%2C6.716A43.765%2C43.765%2C0%2C0%2C1%2C362.952%2C176.66Z'/%3E%3C/svg%3E");
}
.ssb-telegram:hover, .ssb-telegram:focus {
  color: #40a2d1;
}

.ssb-whatsapp_app {
  background: #43d854;
}
.ssb-whatsapp_app::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}
.ssb-whatsapp_app:hover, .ssb-whatsapp_app:focus {
  color: #43d854;
}

@media print, screen and (min-width: 40em) {
  .ssb-telegram,
  .ssb-whatsapp_app {
    display: none !important;
  }
}
.share-supported {
  text-align: center;
}
.share-supported .social-share-button {
  display: inline-block;
}

.view-mode {
  float: right;
}
.view-mode ul {
  list-style: none;
  margin: 0;
}
.view-mode ul li {
  align-items: center;
  display: flex;
  gap: 1ch;
  padding: 0.375rem 0;
}
.view-mode ul a {
  color: #2e2e2e;
  color: var(--anchor-color, var(--brand, #2e2e2e));
  align-items: center;
  display: inline-flex;
  gap: 1ch;
}
.view-mode .dropdown-pane {
  width: auto;
}
.view-mode button {
  background: #eee;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0.5rem;
}
.view-mode button::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64L64 96zm384 0L192 96l0 64 256 0 0-64zM64 224l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64zM64 352l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64L64 96zm384 0L192 96l0 64 256 0 0-64zM64 224l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64zM64 352l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64z'/%3E%3C/svg%3E");
}
.view-mode button::before {
  color: #2e2e2e;
}
.view-mode.minimal button::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}
.view-mode .view-list::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}
.view-mode .view-card::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64L64 96zm384 0L192 96l0 64 256 0 0-64zM64 224l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64zM64 352l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64L64 96zm384 0L192 96l0 64 256 0 0-64zM64 224l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64zM64 352l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64z'/%3E%3C/svg%3E");
}
.view-mode [aria-current]::after {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}
.view-mode [aria-current]::after {
  font-size: 0.75rem;
}

.subscriptions-edit form {
  max-width: 43.75rem;
}

.user-budget-investment-table-actions {
  display: flex;
  margin-left: -0.375rem;
}
.user-budget-investment-table-actions > * {
  margin-left: 0.375rem;
}

.users-following {
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .users-following {
    display: flex;
  }
  .users-following > .followables {
    flex-basis: 66.6666666667%;
  }
  .users-following > .interests {
    border-left: 1px solid #ececec;
    flex-basis: 33.3333333333%;
    padding-left: 1.5rem;
  }
}
.users-following .follow-list {
  list-style-type: circle;
  padding: 0.75rem;
}
.users-following .follow-list li {
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
}
.users-following h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  padding-left: 1.875rem;
  position: relative;
}
.users-following h3 span {
  left: 0;
  position: absolute;
  top: 2px;
}

.widget-feed .feed-description p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.widget-feed .feed-content .debate,
.widget-feed .feed-content .proposal {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0.75rem 0;
}
.widget-feed .no-items {
  margin-top: 1.5rem;
}

.feeds-participation {
  display: flex;
  margin-left: -1.875rem;
  flex-wrap: wrap;
}
.feeds-participation > * {
  margin-left: 1.875rem;
}
.feeds-participation .feed-proposals {
  flex-basis: 30rem;
  flex-grow: 2;
}
.feeds-participation .feed-debates {
  flex-basis: 15rem;
  flex-grow: 1;
}
.feeds-participation .feed-proposals,
.feeds-participation .feed-debates {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.feeds-participation .feed-proposals .feed-content,
.feeds-participation .feed-debates .feed-content {
  flex-grow: 1;
}
.feeds-participation .sdg-tag-list {
  margin-top: 0.75rem;
}

.feed-proposals .proposal {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
  clear: both;
}
@media print, screen and (min-width: 40em) {
  .feed-proposals .proposal {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .feed-proposals .proposal {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.feed-proposals .proposal .feed-image {
  display: inline-block;
  height: 7.5rem;
  overflow: hidden;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .feed-proposals .proposal .feed-image {
    height: 6rem;
  }
}
.feed-proposals .proposal .feed-image img {
  max-width: none;
  width: 100%;
}

html,
body {
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 93.75em) {
  body.public {
    margin-left: calc(50vw - 750px) !important;
    margin-right: calc(50vw - 750px) !important;
    width: 1500px !important;
    max-width: 1500px !important;
  }
}

.wrapper,
.home-page {
  max-width: 100% !important;
}

.public > .wrapper > header,
header:has(#navigation_bar) {
  background-color: #ffffff !important;
  box-shadow: none !important;
  border-bottom: none !important;
  position: relative;
}
.public > .wrapper > header .top-links,
header:has(#navigation_bar) .top-links {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e9e9e9;
  color: #4b4f58;
  font-size: 0.875rem;
}
.public > .wrapper > header .top-links a,
header:has(#navigation_bar) .top-links a {
  color: #2e2e2e;
  font-weight: 600;
}
.public > .wrapper > header .top-links a:hover,
header:has(#navigation_bar) .top-links a:hover {
  color: #cc9f38;
}
.public > .wrapper > header .top-bar,
header:has(#navigation_bar) .top-bar {
  background-color: #ffffff !important;
  padding: 0.75rem 0;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
}
.public > .wrapper > header .top-bar h1,
header:has(#navigation_bar) .top-bar h1 {
  flex-grow: 0 !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
}
.public > .wrapper > header .top-bar h1 a img,
header:has(#navigation_bar) .top-bar h1 a img {
  max-height: 70px;
  width: auto;
}
.public > .wrapper > header .top-bar .header-search-addon,
header:has(#navigation_bar) .top-bar .header-search-addon {
  flex: 1 1 auto !important;
  max-width: 480px !important;
  margin: 0 1.5rem !important;
}
@media print, screen and (max-width: 39.99875em) {
  .public > .wrapper > header .top-bar .header-search-addon,
  header:has(#navigation_bar) .top-bar .header-search-addon {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.75rem 0 0 0 !important;
    order: 3 !important;
  }
}
.public > .wrapper > header .top-bar .header-search-addon #search_form,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header {
  margin: 0 !important;
  width: 100% !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form form,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header form,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form form,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header form {
  margin: 0 !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group {
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: stretch !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group label,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group label,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group label,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group label {
  flex: 1 !important;
  margin: 0 !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group .input-group-field,
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group input[type=text],
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group .input-group-field,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group input[type=text],
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group .input-group-field,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group input[type=text],
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group .input-group-field,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group input[type=text] {
  height: 42px !important;
  border: 1px solid #e9e9e9 !important;
  border-right: none !important;
  border-radius: 25px 0 0 25px !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.95rem !important;
  color: #2e2e2e !important;
  background-color: #f8f9fa !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  width: 100% !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group .input-group-field:focus,
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group input[type=text]:focus,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group .input-group-field:focus,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group input[type=text]:focus,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group .input-group-field:focus,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group input[type=text]:focus,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group .input-group-field:focus,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group input[type=text]:focus {
  background-color: #ffffff !important;
  border-color: #cc9f38 !important;
  outline: none !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group .input-group-button,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group .input-group-button,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group .input-group-button,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group .input-group-button {
  margin: 0 !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group .input-group-button button.button,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group .input-group-button button.button,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button {
  height: 42px !important;
  border-radius: 0 25px 25px 0 !important;
  background-color: #2e2e2e !important;
  color: #ffffff !important;
  border: 1px solid #2e2e2e !important;
  padding: 0 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  line-height: 1 !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group .input-group-button button.button span,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button span,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group .input-group-button button.button span,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button span {
  font-size: 1.1rem !important;
}
.public > .wrapper > header .top-bar .header-search-addon #search_form .input-group .input-group-button button.button:hover, .public > .wrapper > header .top-bar .header-search-addon #search_form .input-group .input-group-button button.button:focus,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button:hover,
.public > .wrapper > header .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button:focus,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group .input-group-button button.button:hover,
header:has(#navigation_bar) .top-bar .header-search-addon #search_form .input-group .input-group-button button.button:focus,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button:hover,
header:has(#navigation_bar) .top-bar .header-search-addon .search-form-header .input-group .input-group-button button.button:focus {
  background-color: #cc9f38 !important;
  border-color: #cc9f38 !important;
  color: #2e2e2e !important;
}
.public > .wrapper > header .top-bar .responsive-menu,
header:has(#navigation_bar) .top-bar .responsive-menu {
  flex-grow: 0 !important;
  margin-left: auto !important;
}
.public > .wrapper > header .top-bar a, .public > .wrapper > header .top-bar button, .public > .wrapper > header .top-bar .top-bar-right a, .public > .wrapper > header .top-bar .top-bar-right button,
header:has(#navigation_bar) .top-bar a,
header:has(#navigation_bar) .top-bar button,
header:has(#navigation_bar) .top-bar .top-bar-right a,
header:has(#navigation_bar) .top-bar .top-bar-right button {
  color: #2e2e2e !important;
  background-color: transparent !important;
  font-weight: 600;
}
.public > .wrapper > header .top-bar a:hover, .public > .wrapper > header .top-bar button:hover, .public > .wrapper > header .top-bar .top-bar-right a:hover, .public > .wrapper > header .top-bar .top-bar-right button:hover,
header:has(#navigation_bar) .top-bar a:hover,
header:has(#navigation_bar) .top-bar button:hover,
header:has(#navigation_bar) .top-bar .top-bar-right a:hover,
header:has(#navigation_bar) .top-bar .top-bar-right button:hover {
  color: #cc9f38 !important;
}
.public > .wrapper > header #navigation_bar,
.public > .wrapper > header .subnavigation,
header:has(#navigation_bar) #navigation_bar,
header:has(#navigation_bar) .subnavigation {
  background-color: #ffffff !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding-bottom: 0.85rem !important;
  margin-bottom: 0 !important;
}
.public > .wrapper > header #navigation_bar ul li a,
.public > .wrapper > header .subnavigation ul li a,
header:has(#navigation_bar) #navigation_bar ul li a,
header:has(#navigation_bar) .subnavigation ul li a {
  color: #2e2e2e !important;
  background-color: transparent !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 0.75rem 1.25rem !important;
  margin: 0.15rem 0.15rem !important;
  border-radius: 8px !important;
  transition: all 0.25s ease-in-out !important;
  display: inline-block !important;
}
.public > .wrapper > header #navigation_bar ul li a:hover, .public > .wrapper > header #navigation_bar ul li a:focus,
.public > .wrapper > header .subnavigation ul li a:hover,
.public > .wrapper > header .subnavigation ul li a:focus,
header:has(#navigation_bar) #navigation_bar ul li a:hover,
header:has(#navigation_bar) #navigation_bar ul li a:focus,
header:has(#navigation_bar) .subnavigation ul li a:hover,
header:has(#navigation_bar) .subnavigation ul li a:focus {
  text-decoration: none !important;
}
.public > .wrapper > header #navigation_bar ul li.is-active a,
.public > .wrapper > header .subnavigation ul li.is-active a,
header:has(#navigation_bar) #navigation_bar ul li.is-active a,
header:has(#navigation_bar) .subnavigation ul li.is-active a {
  border-bottom: 3px solid #cc9f38 !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+1) a:hover,
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+1) a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+1) a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+1) a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+1) a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+1) a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+1) a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+1) a:focus {
  background-color: #d880f8 !important;
  color: #68088b !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+1).is-active a:hover, .public > .wrapper > header #navigation_bar ul li:nth-child(6n+1).is-active a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+1).is-active a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+1).is-active a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+1).is-active a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+1).is-active a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+1).is-active a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+1).is-active a:focus {
  border-bottom-color: #68088b !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+2) a:hover,
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+2) a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+2) a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+2) a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+2) a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+2) a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+2) a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+2) a:focus {
  background-color: #02c1f2 !important;
  color: #00181e !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+2).is-active a:hover, .public > .wrapper > header #navigation_bar ul li:nth-child(6n+2).is-active a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+2).is-active a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+2).is-active a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+2).is-active a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+2).is-active a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+2).is-active a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+2).is-active a:focus {
  border-bottom-color: #00181e !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+3) a:hover,
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+3) a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+3) a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+3) a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+3) a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+3) a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+3) a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+3) a:focus {
  background-color: #fd7300 !important;
  color: #311600 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+3).is-active a:hover, .public > .wrapper > header #navigation_bar ul li:nth-child(6n+3).is-active a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+3).is-active a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+3).is-active a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+3).is-active a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+3).is-active a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+3).is-active a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+3).is-active a:focus {
  border-bottom-color: #311600 !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+4) a:hover,
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+4) a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+4) a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+4) a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+4) a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+4) a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+4) a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+4) a:focus {
  background-color: #94d420 !important;
  color: #121a04 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+4).is-active a:hover, .public > .wrapper > header #navigation_bar ul li:nth-child(6n+4).is-active a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+4).is-active a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+4).is-active a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+4).is-active a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+4).is-active a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+4).is-active a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+4).is-active a:focus {
  border-bottom-color: #121a04 !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+5) a:hover,
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+5) a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+5) a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+5) a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+5) a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+5) a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+5) a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+5) a:focus {
  background-color: #fec603 !important;
  color: #161100 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+5).is-active a:hover, .public > .wrapper > header #navigation_bar ul li:nth-child(6n+5).is-active a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+5).is-active a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+5).is-active a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+5).is-active a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+5).is-active a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+5).is-active a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+5).is-active a:focus {
  border-bottom-color: #161100 !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+6) a:hover,
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+6) a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+6) a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+6) a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+6) a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+6) a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+6) a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+6) a:focus {
  background-color: #bf9330 !important;
  color: #2c220b !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
}
.public > .wrapper > header #navigation_bar ul li:nth-child(6n+6).is-active a:hover, .public > .wrapper > header #navigation_bar ul li:nth-child(6n+6).is-active a:focus,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+6).is-active a:hover,
.public > .wrapper > header .subnavigation ul li:nth-child(6n+6).is-active a:focus,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+6).is-active a:hover,
header:has(#navigation_bar) #navigation_bar ul li:nth-child(6n+6).is-active a:focus,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+6).is-active a:hover,
header:has(#navigation_bar) .subnavigation ul li:nth-child(6n+6).is-active a:focus {
  border-bottom-color: #2c220b !important;
}
.public > .wrapper > header .top-bar::before,
.public > .wrapper > header .top-links::before,
.public > .wrapper > header #navigation_bar::before,
header:has(#navigation_bar) .top-bar::before,
header:has(#navigation_bar) .top-links::before,
header:has(#navigation_bar) #navigation_bar::before {
  background-color: #ffffff !important;
}

.public > .wrapper > header::after,
.proposal-dashboard > header::after,
header:has(#navigation_bar)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 5px !important;
  border: none !important;
  background: linear-gradient(90deg, #94d420 0%, #fec603 20%, #fd7300 40%, #02c1f2 60%, #d880f8 80%, #bf9330 100%) !important;
  pointer-events: none !important;
  z-index: 10 !important;
}
@media screen and (min-width: 93.75em) {
  .public > .wrapper > header::after,
  .proposal-dashboard > header::after,
  header:has(#navigation_bar)::after {
    left: calc(750px - 50vw) !important;
    right: calc(750px - 50vw) !important;
    width: auto !important;
  }
}

.top-bar,
.top-links,
#responsive_menu,
.responsive-menu,
.account-menu.menu,
.dropdown.menu {
  position: relative !important;
  z-index: 1000 !important;
}

.dropdown.menu > li.is-dropdown-submenu-parent,
.account-menu.menu > li,
.top-links ul > li {
  position: relative !important;
  z-index: 1001 !important;
}

.is-dropdown-submenu,
.dropdown-pane,
.f-dropdown,
.dropdown.menu .is-dropdown-submenu,
.account-menu.menu .is-dropdown-submenu {
  z-index: 99999 !important;
  position: absolute !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

main#main.public-content,
body.public .wrapper > main,
.public-content {
  margin-top: 1.75rem !important;
  padding-top: 0.5rem !important;
  position: relative !important;
  z-index: 1 !important;
}
main#main.public-content .help-header,
main#main.public-content .section-header,
main#main.public-content .budget-header,
main#main.public-content .search-results-summary,
main#main.public-content .background-header,
body.public .wrapper > main .help-header,
body.public .wrapper > main .section-header,
body.public .wrapper > main .budget-header,
body.public .wrapper > main .search-results-summary,
body.public .wrapper > main .background-header,
.public-content .help-header,
.public-content .section-header,
.public-content .budget-header,
.public-content .search-results-summary,
.public-content .background-header {
  margin-top: 0 !important;
}

.button,
button,
input[type=submit],
.ast-button {
  background-color: #cc9f38;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border: none;
  transition: all 0.25s ease;
}
.button:hover, .button:focus,
button:hover,
button:focus,
input[type=submit]:hover,
input[type=submit]:focus,
.ast-button:hover,
.ast-button:focus {
  background-color: #c9a646;
  color: #2e2e2e;
  box-shadow: 0 4px 12px rgba(204, 159, 56, 0.3);
}
.button.hollow, .button.secondary,
button.hollow,
button.secondary,
input[type=submit].hollow,
input[type=submit].secondary,
.ast-button.hollow,
.ast-button.secondary {
  background-color: transparent;
  border: 2px solid #cc9f38;
  color: #2e2e2e;
}
.button.hollow:hover, .button.secondary:hover,
button.hollow:hover,
button.secondary:hover,
input[type=submit].hollow:hover,
input[type=submit].secondary:hover,
.ast-button.hollow:hover,
.ast-button.secondary:hover {
  background-color: #cc9f38;
  color: #ffffff;
}

.banner,
.ast-single-entry-banner {
  background-color: #f0e9d6;
  border-left: 5px solid #cc9f38;
}

.card {
  border-radius: 12px;
  border: 1px solid #e9e9e9;
  transition: box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}
.card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cc9f38;
}

.admin-sidebar {
  background: #2e2e2e !important;
  background-image: none !important;
  border-right: 2px solid #cc9f38 !important;
}
.admin-sidebar > ul > li > :first-child,
.admin-sidebar li a,
.admin-sidebar li button,
.admin-sidebar [aria-expanded] {
  background: transparent !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-weight: 600;
  box-shadow: none !important;
}
.admin-sidebar > ul > li > :first-child:hover,
.admin-sidebar li a:hover,
.admin-sidebar li button:hover,
.admin-sidebar [aria-expanded]:hover {
  background: rgba(204, 159, 56, 0.2) !important;
  color: #cc9f38 !important;
}
.admin-sidebar li.is-active > a,
.admin-sidebar li.is-active > button,
.admin-sidebar li[aria-current] > a,
.admin-sidebar li[aria-current] > button {
  background: #cc9f38 !important;
  color: #2e2e2e !important;
  border-left: 4px solid #ffffff !important;
  font-weight: 700;
}
.admin-sidebar ul ul {
  background: rgba(0, 0, 0, 0.25) !important;
  border-left: 2px solid rgba(204, 159, 56, 0.4) !important;
}
.admin-sidebar ul ul li a {
  color: #d0d0d0 !important;
}
.admin-sidebar ul ul li a:hover {
  color: #cc9f38 !important;
  background: transparent !important;
}

.auth-page {
  background-color: #f5f5f5;
}
.auth-page .auth-image {
  background: linear-gradient(135deg, #2e2e2e 0%, #885f20 100%) !important;
  border-right: 4px solid #cc9f38;
}
.auth-page .auth-image h1 a {
  color: #ffffff !important;
}

.advanced-search-form > [aria-expanded],
button#js-advanced-search-title,
a.advanced-search,
.advanced-search-title {
  background-color: #cc9f38 !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.3rem !important;
  display: inline-block !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(204, 159, 56, 0.25) !important;
  transition: all 0.25s ease !important;
}
.advanced-search-form > [aria-expanded]:hover, .advanced-search-form > [aria-expanded]:focus,
button#js-advanced-search-title:hover,
button#js-advanced-search-title:focus,
a.advanced-search:hover,
a.advanced-search:focus,
.advanced-search-title:hover,
.advanced-search-title:focus {
  background-color: #2e2e2e !important;
  color: #cc9f38 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

body:not(.admin) > header,
body.public .wrapper > header,
body.public header {
  margin: 0 auto !important;
  max-width: 100% !important;
}
body:not(.admin) > header .top-bar::before,
body:not(.admin) > header .top-links::before,
body:not(.admin) > header #navigation_bar::before,
body.public .wrapper > header .top-bar::before,
body.public .wrapper > header .top-links::before,
body.public .wrapper > header #navigation_bar::before,
body.public header .top-bar::before,
body.public header .top-links::before,
body.public header #navigation_bar::before {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background-color: inherit !important;
}
@media screen and (min-width: 93.75em) {
  body:not(.admin) > header .top-bar::before,
  body:not(.admin) > header .top-links::before,
  body:not(.admin) > header #navigation_bar::before,
  body.public .wrapper > header .top-bar::before,
  body.public .wrapper > header .top-links::before,
  body.public .wrapper > header #navigation_bar::before,
  body.public header .top-bar::before,
  body.public header .top-links::before,
  body.public header #navigation_bar::before {
    left: calc(750px - 50vw) !important;
    right: calc(750px - 50vw) !important;
    width: auto !important;
  }
}

body.admin > header,
body.admin .header,
.admin > header,
.admin .header {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.admin > header .top-links,
body.admin > header .top-bar,
body.admin .header .top-links,
body.admin .header .top-bar,
.admin > header .top-links,
.admin > header .top-bar,
.admin .header .top-links,
.admin .header .top-bar {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
body.admin > header .top-links::before,
body.admin > header .top-bar::before,
body.admin .header .top-links::before,
body.admin .header .top-bar::before,
.admin > header .top-links::before,
.admin > header .top-bar::before,
.admin .header .top-links::before,
.admin .header .top-bar::before {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}
body.admin > header .top-links,
body.admin .header .top-links,
.admin > header .top-links,
.admin .header .top-links {
  background-color: #4b4f58 !important;
  color: #ffffff !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.65rem 2rem !important;
}
body.admin > header .top-links > :first-child,
body.admin > header .top-links .locale,
body.admin .header .top-links > :first-child,
body.admin .header .top-links .locale,
.admin > header .top-links > :first-child,
.admin > header .top-links .locale,
.admin .header .top-links > :first-child,
.admin .header .top-links .locale {
  flex-grow: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
}
body.admin > header .top-links > :first-child p,
body.admin > header .top-links > :first-child ul,
body.admin > header .top-links .locale p,
body.admin > header .top-links .locale ul,
body.admin .header .top-links > :first-child p,
body.admin .header .top-links > :first-child ul,
body.admin .header .top-links .locale p,
body.admin .header .top-links .locale ul,
.admin > header .top-links > :first-child p,
.admin > header .top-links > :first-child ul,
.admin > header .top-links .locale p,
.admin > header .top-links .locale ul,
.admin .header .top-links > :first-child p,
.admin .header .top-links > :first-child ul,
.admin .header .top-links .locale p,
.admin .header .top-links .locale ul {
  display: inline-block !important;
  margin: 0 !important;
  color: #ffffff !important;
}
body.admin > header .top-links > :first-child a,
body.admin > header .top-links .locale a,
body.admin .header .top-links > :first-child a,
body.admin .header .top-links .locale a,
.admin > header .top-links > :first-child a,
.admin > header .top-links .locale a,
.admin .header .top-links > :first-child a,
.admin .header .top-links .locale a {
  color: #ffffff !important;
  margin-right: 1rem !important;
  text-decoration: none !important;
}
body.admin > header .top-links > :first-child a:hover,
body.admin > header .top-links .locale a:hover,
body.admin .header .top-links > :first-child a:hover,
body.admin .header .top-links .locale a:hover,
.admin > header .top-links > :first-child a:hover,
.admin > header .top-links .locale a:hover,
.admin .header .top-links > :first-child a:hover,
.admin .header .top-links .locale a:hover {
  text-decoration: underline !important;
}
body.admin > header .top-links > a,
body.admin .header .top-links > a,
.admin > header .top-links > a,
.admin .header .top-links > a {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
body.admin > header .top-links > a:hover,
body.admin .header .top-links > a:hover,
.admin > header .top-links > a:hover,
.admin .header .top-links > a:hover {
  text-decoration: underline !important;
  color: #cc9f38 !important;
}
body.admin > header .top-bar,
body.admin .header .top-bar,
.admin > header .top-bar,
.admin .header .top-bar {
  background-color: #ffffff !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1rem 2rem !important;
}
body.admin > header .top-bar h1,
body.admin .header .top-bar h1,
.admin > header .top-bar h1,
.admin .header .top-bar h1 {
  margin: 0 !important;
}

.footer,
body > .footer {
  background-color: #ffffff !important;
  border-top: none !important;
  position: relative !important;
  color: #2e2e2e !important;
}
.footer::before,
body > .footer::before {
  background-color: #ffffff !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}
@media screen and (min-width: 93.75em) {
  .footer::before,
  body > .footer::before {
    left: calc(750px - 50vw) !important;
    right: calc(750px - 50vw) !important;
    width: auto !important;
  }
}
.footer::after,
body > .footer::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 5px !important;
  border: none !important;
  background: linear-gradient(90deg, #94d420 0%, #fec603 20%, #fd7300 40%, #02c1f2 60%, #d880f8 80%, #bf9330 100%) !important;
  pointer-events: none !important;
  z-index: 10 !important;
}
@media screen and (min-width: 93.75em) {
  .footer::after,
  body > .footer::after {
    left: calc(750px - 50vw) !important;
    right: calc(750px - 50vw) !important;
    width: auto !important;
  }
}
.footer footer,
body > .footer footer {
  background-color: transparent !important;
  color: inherit !important;
}
.footer footer .subfooter,
body > .footer footer .subfooter {
  border-top: 1px solid #e9e9e9 !important;
  color: #4b4f58 !important;
}

.home-page .widget-feed header,
.home-page .feeds-list header,
.home-page section header {
  text-align: left !important;
  display: block !important;
  width: 100% !important;
}

.home-page h2.title,
.home-page h3.title,
.widget-feed .title {
  border-top: none !important;
  position: relative !important;
  padding-top: 0.65rem !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  display: inline-block !important;
}
.home-page h2.title::before,
.home-page h3.title::before,
.widget-feed .title::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 4px !important;
  border: none !important;
  background: linear-gradient(90deg, #94d420 0%, #fec603 20%, #fd7300 40%, #02c1f2 60%, #d880f8 80%, #bf9330 100%) !important;
}

.header-carousel-container {
  margin: 1.5rem 0 2.5rem 0 !important;
  position: relative;
  z-index: 5;
}
.header-carousel-container .header-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  background-color: #2e2e2e;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .header-carousel-container .header-carousel-wrapper {
    height: 420px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .header-carousel-container .header-carousel-wrapper {
    height: 380px;
    border-radius: 12px;
  }
}
.header-carousel-container .header-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.header-carousel-container .header-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  z-index: 1;
}
.header-carousel-container .header-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.header-carousel-container .header-carousel-slide.is-active .header-carousel-bg {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.header-carousel-container .header-carousel-link-area {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none !important;
  color: inherit !important;
}
.header-carousel-container .header-carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: -webkit-transform 7s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 7s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}
.header-carousel-container .header-carousel-bg.header-carousel-bg-fallback {
  background: linear-gradient(135deg, #2e2e2e 0%, #1a2734 55%, #885f20 100%);
}
.header-carousel-container .header-carousel-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(15, 23, 34, 0.94) 0%, rgba(15, 23, 34, 0.65) 45%, rgba(15, 23, 34, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}
.header-carousel-container .header-carousel-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 4rem 4rem 4rem;
  z-index: 3;
  pointer-events: none;
}
@media print, screen and (max-width: 39.99875em) {
  .header-carousel-container .header-carousel-content-wrapper {
    padding: 1.75rem 1.5rem 3.5rem 1.5rem;
  }
}
.header-carousel-container .header-carousel-caption {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  pointer-events: auto;
}
.header-carousel-container .header-carousel-caption .header-carousel-label {
  background-color: #cc9f38;
  color: #2e2e2e;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(204, 159, 56, 0.35);
}
.header-carousel-container .header-carousel-caption .header-carousel-title {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .header-carousel-container .header-carousel-caption .header-carousel-title {
    font-size: 2rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .header-carousel-container .header-carousel-caption .header-carousel-title {
    font-size: 1.5rem;
  }
}
.header-carousel-container .header-carousel-caption .header-carousel-description {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
@media print, screen and (max-width: 39.99875em) {
  .header-carousel-container .header-carousel-caption .header-carousel-description {
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.header-carousel-container .header-carousel-caption .header-carousel-cta {
  margin-top: 0.5rem;
  background-color: #ffffff !important;
  color: #2e2e2e !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 0.65rem 1.6rem !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.header-carousel-container .header-carousel-caption .header-carousel-cta i {
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.header-carousel-container .header-carousel-slide:hover .header-carousel-cta {
  background-color: #cc9f38 !important;
  color: #2e2e2e !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(204, 159, 56, 0.45) !important;
}
.header-carousel-container .header-carousel-slide:hover .header-carousel-cta i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.header-carousel-container .header-carousel-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(15, 23, 34, 0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  padding-bottom: 3px;
}
.header-carousel-container .header-carousel-arrow:hover, .header-carousel-container .header-carousel-arrow:focus {
  background: #cc9f38;
  color: #2e2e2e;
  border-color: #cc9f38;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(204, 159, 56, 0.4);
}
.header-carousel-container .header-carousel-arrow.header-carousel-prev {
  left: 1.5rem;
}
@media print, screen and (max-width: 39.99875em) {
  .header-carousel-container .header-carousel-arrow.header-carousel-prev {
    left: 0.75rem;
  }
}
.header-carousel-container .header-carousel-arrow.header-carousel-next {
  right: 1.5rem;
}
@media print, screen and (max-width: 39.99875em) {
  .header-carousel-container .header-carousel-arrow.header-carousel-next {
    right: 0.75rem;
  }
}
.header-carousel-container .header-carousel-indicators {
  position: absolute;
  bottom: 1.25rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
}
@media print, screen and (max-width: 39.99875em) {
  .header-carousel-container .header-carousel-indicators {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 1rem;
  }
}
.header-carousel-container .header-carousel-indicators .header-carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.header-carousel-container .header-carousel-indicators .header-carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.85);
}
.header-carousel-container .header-carousel-indicators .header-carousel-indicator.is-active {
  width: 32px;
  border-radius: 8px;
  background: #cc9f38;
  border-color: #cc9f38;
  box-shadow: 0 0 10px rgba(204, 159, 56, 0.6);
}
