@charset "UTF-8";
.container-small {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  margin: 0 auto;
  position: relative;
  width: calc( 100% - (2* 1rem ));
}
@media (min-width: 900px) {
  .container-small {
    width: 40rem;
  }
}
@media (min-width: 1700px) {
  .container-small {
    width: 52rem;
  }
}

.container-medium, .container, #content {
  margin: 0 auto;
  position: relative;
  width: calc( 100% - (2* 1rem ));
}
@media (min-width: 900px) {
  .container-medium, .container, #content {
    width: 62rem;
  }
}
@media (min-width: 1200px) {
  .container-medium, .container, #content {
    width: 62rem;
  }
}
@media (min-width: 1700px) {
  .container-medium, .container, #content {
    width: 72rem;
  }
}

.container-large {
  margin: 0 auto;
  position: relative;
  width: calc( 100% - (2* 1rem ));
}
@media (min-width: 900px) {
  .container-large {
    width: 58rem;
  }
}
@media (min-width: 1200px) {
  .container-large {
    width: 70rem;
  }
}
@media (min-width: 1700px) {
  .container-large {
    width: 80rem;
  }
}

.container-full {
  width: 100%;
}

body, html {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.75;
  font-size: 1rem;
  text-decoration: none;
}

a {
  color: #582C83;
}

h1, h2, h3, h4 {
  color: #582C83;
  line-height: 1.25;
  font-weight: 500;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1200px) {
  h2 {
    margin-bottom: 0.25rem;
  }
}

.section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 900px) {
  .section {
    flex-direction: row;
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .section {
    flex-direction: row;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1700px) {
  .section {
    flex-direction: row;
    margin-bottom: 6rem;
  }
}
@media screen and (min-width: 900px) {
  .section--small {
    margin-bottom: 2.5rem;
  }
}
.section--title {
  margin-bottom: 0.5rem;
}
.section--title h1 {
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .section--title {
    margin-bottom: 1.5rem;
  }
}
.section--title h1, .section--title h2, .section--title h3, .section--title h4 {
  margin: 0;
}
.section--no-columns {
  flex-direction: column;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 900px) {
  .section--no-columns {
    margin-bottom: 6rem;
  }
}
.section--no-margin {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .section--no-margin {
    margin-bottom: 0;
  }
}
.section--center {
  justify-content: center;
  align-content: center;
}
.section--space-between {
  justify-content: space-between;
}
.section > :first-child {
  margin-top: 0;
}
.section > :last-child {
  margin-bottom: 0;
}

.col-half {
  width: 100%;
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .col-half {
    margin-bottom: 0;
    width: 50%;
  }
}
.col-half p {
  margin-top: 0.5rem;
}
.col-half__heading {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}
.col-half :first-child {
  margin-top: 0;
}
.col-half p:last-child {
  margin-bottom: 0;
}
.col-half .button {
  margin-top: 0.25rem;
}

.col-margin {
  width: calc( 100% - 2.5rem );
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 900px) {
  .col-margin {
    width: calc( 50% - 2.5rem );
  }
  .col-margin:nth-child(odd) {
    margin-right: 2.5rem;
  }
  .col-margin:nth-child(even) {
    margin-left: 2.5rem;
  }
}

.page-content, #content {
  margin: 8rem auto;
}
@media screen and (min-width: 900px) {
  .page-content, #content {
    margin: 10rem auto;
  }
}
.page-content--home, #content--home {
  margin: 75px auto 0;
}

@media screen and (max-width: 900px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.hidden {
  display: none;
}

.padcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex {
  display: flex;
}
.flex--column {
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .form-group label {
    width: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .form-group input {
    width: calc(25rem + 1rem);
  }
}
.form-group > .checkbox {
  display: flex;
  justify-content: flex-start;
}
.form-group__underline {
  display: flex;
  margin-top: 0.5rem;
}
.form-group__underline .icon-cc {
  margin-right: 0.5rem;
}
.form-group--row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .form-group--row {
    flex-direction: row;
  }
}
.form-group--row > input, .form-group--row select {
  width: 12.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1200px) {
  .form-group--row > input, .form-group--row select {
    margin-right: 1rem;
  }
}
.form-group--row :last-child {
  margin-right: 0;
}

.error-message {
  color: #a90000;
}

input {
  cursor: pointer;
}

input[type=text], input[type=text], input[type=email], input[type=password], textarea {
  cursor: pointer;
}

input[type=text], input[type=email], input[type=password], textarea, input[type=telephone], input[type=date], input[type=tel], select {
  border: 1px solid #dddddd;
  line-height: 2rem;
  background: #f7f7f7;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}
input[type=text] input::-webkit-input-placeholder, input[type=email] input::-webkit-input-placeholder, input[type=password] input::-webkit-input-placeholder, textarea input::-webkit-input-placeholder, input[type=telephone] input::-webkit-input-placeholder, input[type=date] input::-webkit-input-placeholder, input[type=tel] input::-webkit-input-placeholder, select input::-webkit-input-placeholder {
  color: #dddddd;
}
input[type=text] input:-moz-placeholder, input[type=email] input:-moz-placeholder, input[type=password] input:-moz-placeholder, textarea input:-moz-placeholder, input[type=telephone] input:-moz-placeholder, input[type=date] input:-moz-placeholder, input[type=tel] input:-moz-placeholder, select input:-moz-placeholder {
  /* Firefox 18- */
  color: #dddddd;
}
input[type=text] input::-moz-placeholder, input[type=email] input::-moz-placeholder, input[type=password] input::-moz-placeholder, textarea input::-moz-placeholder, input[type=telephone] input::-moz-placeholder, input[type=date] input::-moz-placeholder, input[type=tel] input::-moz-placeholder, select input::-moz-placeholder {
  /* Firefox 19+ */
  color: #dddddd;
}
input[type=text] input:-ms-input-placeholder, input[type=email] input:-ms-input-placeholder, input[type=password] input:-ms-input-placeholder, textarea input:-ms-input-placeholder, input[type=telephone] input:-ms-input-placeholder, input[type=date] input:-ms-input-placeholder, input[type=tel] input:-ms-input-placeholder, select input:-ms-input-placeholder {
  color: #dddddd;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, textarea::placeholder, input[type=telephone]::placeholder, input[type=date]::placeholder, input[type=tel]::placeholder, select::placeholder {
  color: #dddddd;
}

input[type=text], input[type=email], input[type=password] {
  display: inline-block;
}

.textarea, textarea {
  word-wrap: break-word;
  width: 100%;
  min-height: 200px;
  height: auto;
  background: white;
  padding: 1rem;
  border-bottom-right-radius: 2.5rem;
}

.textarea:focus {
  background: white;
}

label {
  cursor: pointer;
}

.checkbox {
  margin-bottom: 0.25rem;
  display: flex;
}
.checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.checkbox label > .checkbox {
  margin-right: 0.5rem;
}

select {
  font-size: 1rem;
  height: 2.5rem;
  padding: 0.25rem 1rem;
  width: 100%;
}
@media screen and (min-width: 900px) {
  select {
    width: calc(25rem + 1rem);
  }
}

.donate-template label[for=donation_is_private] {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.25;
}
.donate-template label[for=donation_is_private] input {
  width: auto;
  margin-right: 1rem;
}
.donate-template label[for=donation_amount_other] {
  display: block;
}
.donate-template .padbottom {
  padding-bottom: 2rem;
}
.donate-template .recurring-info {
  display: flex;
  width: 100%;
  margin-top: 0.25rem;
}
.donate-template .donation_form {
  width: 100%;
}
.donate-template .donation_form .button {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .donate-template .donation_form .button {
    width: calc(25rem + 1rem);
  }
}

.button, .btn {
  font-family: "Ubuntu", sans-serif;
  line-height: 1;
  background: #582C83;
  padding: 0.875rem 1rem;
  font-weight: 200;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;
  font-size: 1rem;
}
.button:hover, .btn:hover {
  background: #3e1f5d;
}
.button--yellow, .btn--yellow {
  color: white;
  background: #FFCC00;
}
.button--blue, .btn--blue {
  font-weight: 500;
  color: white;
  background: #1795FF;
}
.button--blue:hover, .btn--blue:hover {
  background: #64b8ff;
}
.button--white, .btn--white {
  font-weight: 500;
  color: #582C83;
  background: white;
}
.button--white:hover, .btn--white:hover {
  background: white;
  color: #a577d1;
}
.button--outline, .btn--outline {
  padding-top: calc( 0.25rem - 2px );
  padding-bottom: calc( 0.25rem - 2px );
  background: #582C83;
  border: 2px solid white;
  color: white;
}
.button--outline:hover, .btn--outline:hover {
  color: #C0A9D7;
  background: white;
}
.button--small, .btn--small {
  padding: 0.5rem;
  font-size: 0.875rem;
}
.button--large, .btn--large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  border-radius: 14px;
}
@media screen and (min-width: 900px) {
  .button--large, .btn--large {
    font-size: 1.75rem;
  }
}

.submit-button {
  margin-top: 1rem;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 300;
  font-size: 1rem;
  margin-top: 2.5rem;
}
.footer h1, .footer h2, .footer h3, .footer h4, .footer a {
  color: white;
}
.footer a {
  font-weight: 100;
}
.footer__top {
  background: #C0A9D7;
  padding: 2.5rem 0 2.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer__top__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .footer__top__inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.footer__bottom {
  background: #582C83;
  padding: 2.5rem 0;
  width: 100%;
}
.footer__bottom__inner {
  display: flex;
  flex-direction: column;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__bottom__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom__inner__column {
  display: flex;
  flex-direction: column;
  width: 18rem;
}
.footer__bottom__inner__column__head {
  margin: 1rem 0;
}
.footer__bottom__inner__column p {
  margin: 0;
}
.footer__bottom__inner__column__socials {
  display: flex;
  flex-direction: row;
}
.footer__bottom__inner__column__socials .social {
  margin-right: 1rem;
}

.challenges {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  .challenges {
    grid-template-columns: repeat(3, 1fr);
  }
}
.challenges__challenge {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.challenges__challenge img, .challenges__challenge svg {
  width: 100%;
}
.challenges__challenge__title {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.challenges-text {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .challenges-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3.25rem;
  }
}
.challenges-text__challenge {
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .challenges-text__challenge {
    margin-top: 0;
  }
}
.challenges-text__challenge__title {
  font-size: 1.55rem;
  margin: 0;
}
.challenges-text__challenge iframe {
  max-width: 100% !important;
  height: 400px !important;
  max-height: 400px !important;
}
.goals {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .goals {
    flex-direction: row;
  }
}
.goals__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2.5rem 0;
}
.goals__icon svg {
  width: 28rem;
}
@media screen and (min-width: 900px) {
  .goals > :nth-child(1) {
    margin-left: 20%;
  }
}
@media screen and (min-width: 900px) {
  .goals > :nth-child(2) {
    margin-left: 10%;
  }
}
@media screen and (min-width: 900px) {
  .goals > :nth-child(3) {
    margin-right: 10%;
  }
}

.hero {
  position: relative;
  background: #a577d1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 900px) {
  .hero {
    height: 40rem;
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .hero {
    height: 80vh;
  }
}
.hero img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 900px) {
  .hero img {
    height: 100%;
  }
}
.hero__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .hero__overlay {
    height: 100%;
  }
}
.hero__overlay__undertitle {
  color: white;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  max-width: 90%;
  margin: 1rem 0;
}
@media screen and (min-width: 900px) {
  .hero__overlay__undertitle {
    font-size: 2.5rem;
    max-width: 70%;
  }
}
.hero__overlay__huge-title {
  font-size: 3.5rem;
  color: white;
  text-align: center;
  width: 95%;
  margin: 1.5rem 0;
}
@media screen and (min-width: 900px) {
  .hero__overlay__huge-title {
    font-size: 6rem;
    max-width: 70%;
  }
}
.hero__form {
  padding: 1rem;
}
@media screen and (min-width: 900px) {
  .hero__form {
    position: absolute;
    left: 2.5rem;
    top: 2.5rem;
    width: 16rem;
    padding: 0;
  }
}
.hero__form__title {
  color: white;
  margin-top: 0;
  margin-bottom: 1rem;
}
.hero__form__field {
  margin-bottom: 1rem;
  display: flex;
}
.hero__form__field select, .hero__form__field input[type=text], .hero__form__field input[type=email] {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.hero__form__field--subtle-margin {
  margin-bottom: 1rem;
}
.hero__form__checkbox {
  color: white;
  display: flex;
  margin-bottom: 1rem;
}
.hero__form__checkbox input[type=checkbox] {
  margin: 0.5rem;
}
.hero__form__checkbox label {
  display: inline;
  margin-bottom: 0;
}
.hero__form__checkbox label a {
  color: white;
  text-decoration: underline;
}
.hero--no-margin {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .hero--no-margin {
    margin-bottom: 0;
  }
}

.page-title {
  font-size: 2.25rem;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content p {
  margin-top: 0;
}
.content a, .content .button {
  margin-bottom: 1.5rem;
}

.cookie-notice {
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: white;
  background: #a577d1;
  font-size: 0.875rem;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.cookie-notice a {
  color: white;
  display: block;
  margin-left: 0.25rem;
}
.cookie-notice #cookie-notice-button {
  margin-left: 1rem;
  font-size: inherit;
}

.donation-amounts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.donation-amounts #donation_billing_address_country_code {
  width: 100%;
}
.donation-amounts > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem 1rem 0;
  padding: 0.5rem;
  background: #dddddd;
}
.donation-amounts > span input {
  margin: 0 0.5rem;
}
.donation-amounts > label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem 1rem 0;
}
.donation-amounts > input {
  margin-left: 0.25rem;
  margin: 0 0.5rem 1rem 0;
}

.mobile-navigation-panel {
  background: #8b51c4;
  position: fixed;
  z-index: 10;
  width: 16rem;
  height: 100%;
  right: -16rem;
  top: 0;
  transition: right 200ms ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobile-navigation-panel.active {
  right: 0;
}
.mobile-navigation-panel > a {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
}
.mobile-navigation-panel > a.active {
  text-decoration: underline;
}
.mobile-navigation-panel .button {
  margin-top: 1rem;
  color: #582C83;
}

#map-europe {
  position: relative;
  height: 50vh;
  width: 100%;
}
#map-europe .mapboxgl-map {
  height: 100%;
  overflow: visible;
}

.leaflet-panel, .leaflet-bottom {
  z-index: 1 !important;
}

.mapboxgl-canvas-container {
  height: 100%;
}

.map-europe {
  position: relative;
  height: inherit;
  width: inherit;
}

.instafeed-title {
  margin: 80px 0 60px;
  text-align: center;
}

.insta-feed {
  margin: 0 0 40px;
}

.img-featured-container {
  overflow: hidden;
  position: relative;
}
.img-featured-container img {
  width: 100%;
  display: block;
}
.img-featured-container .img-backdrop {
  background: linear-gradient(135deg, rgba(38, 163, 255, 0.85), rgba(83, 201, 179, 0.85));
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.img-featured-container .description-container {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 30px;
  text-align: center;
  line-height: 20px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease;
}
.img-featured-container .description-container p {
  font-weight: 300;
  margin-bottom: 0;
}
.img-featured-container .description-container .caption {
  display: none;
  margin-bottom: 10px;
}
.img-featured-container .description-container .likes,
.img-featured-container .description-container .comments {
  margin: 0 5px;
}
.img-featured-container:hover img {
  filter: grayscale(0);
}
.img-featured-container:hover .img-backdrop, .img-featured-container:hover .description-container {
  opacity: 1;
}

@media screen and (min-width: 600px) {
  .insta-feed .item-grid {
    grid-gap: 0.5rem;
  }
}
.button-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.button-row > .button, .button-row a {
  margin-right: 0.5rem;
}
.button-row .link {
  font-size: 1rem;
  color: #582C83;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media-flags {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-media-flags__heading {
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.55rem;
}
.social-media-flags__flags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 80%;
  margin: 0 auto;
}
.social-media-flags__flags > a {
  margin: 0.25rem;
}
.social-media-flags__flags > a:first-child {
  margin: 0;
}

.social {
  text-decoration: none;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.social i {
  height: 100%;
  font-size: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a577d1 !important;
}
.social i ::before {
  color: #a577d1 !important;
}
.surface {
  padding: 2.5rem 0 4rem;
  margin-bottom: 2.5rem;
  background: #dddddd;
}
.surface__intro {
  margin-bottom: 2.5rem;
}
.surface--even-padding {
  padding: 2.5rem 0;
}
.surface > .button-row {
  margin-top: 1.5rem;
}
.surface > * > .button-row {
  margin-top: 1.5rem;
}
.surface--touch-of-blue h1, .surface--touch-of-blue h2, .surface--touch-of-blue h3, .surface--touch-of-blue h4 {
  color: #1795FF;
}
.surface--large {
  padding: 6rem 0;
}
.surface--yellow {
  background: #FFCC00;
}

.spacer {
  font-size: 5rem;
  color: #1795FF;
  margin: 2.5rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tile-floating {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  height: 100%;
  transition: background ease-in-out 150ms;
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .tile-floating {
    width: 24rem;
    margin-bottom: 0;
  }
}
.tile-floating__title {
  margin-top: 0;
  color: #1795FF;
  font-size: 1.25rem;
}
.tile-floating__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.tile-floating__list li {
  margin: 0 0 0 2rem;
  color: black;
}
.tile-floating__list__by {
  color: black;
  position: absolute;
  left: 0rem;
}
.tile-floating__arrow {
  display: none;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  transition: right ease-in-out 150ms;
}
.tile-floating__arrow svg {
  height: 20px;
  fill: #582C83;
}
.tile-floating__arrow svg g {
  fill: #582C83;
}
.tile-floating__arrow svg g g {
  fill: #582C83;
}
.tile-floating--blue .tile-floating__arrow svg {
  height: 20px;
  fill: #1795FF;
}
.tile-floating--blue .tile-floating__arrow svg g {
  fill: #1795FF;
}
.tile-floating--blue .tile-floating__arrow svg g g {
  fill: #1795FF;
}
.tile-floating--anchor {
  color: #1795FF;
  text-decoration: none;
}
.tile-floating--anchor .tile-floating__title {
  color: #1795FF;
}
.tile-floating--anchor .tile-floating__arrow {
  display: flex;
}
.tile-floating--anchor:hover {
  background: #f7f7f7;
}
.tile-floating--anchor:hover .tile-floating__arrow {
  display: flex;
  right: 1rem;
}

.tiles-row {
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .tiles-row {
    flex-direction: row;
  }
  .tiles-row > :first-child {
    margin-right: 1.5rem;
  }
}

.video-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 1rem 1rem;
}
@media screen and (min-width: 900px) {
  .video-box {
    margin: 0 1.5rem 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .video-box {
    margin: 0 2.5rem 2.5rem;
  }
}
.video-box video {
  width: 100%;
}

.oblique-lines {
  display: flex;
  justify-content: center;
  position: relative;
  height: 250px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .oblique-lines {
    width: 500px;
  }
}
.oblique-lines__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.oblique-lines__overlay__title {
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.oblique-lines__overlay__subtitle {
  text-align: center;
  margin-top: 0;
  color: #582C83;
  line-height: 1.25;
  font-weight: 500;
  font-size: 1.55rem;
}
.oblique-lines__lines {
  display: flex;
  position: relative;
}
.oblique-lines__lines__line {
  background: rgba(192, 169, 215, 0.8);
  transform: rotate(69deg) scale(0.75, 0.75);
  position: absolute;
  transition: all ease-in-out 1s;
  width: 3.865rem;
  height: 17.8025rem;
}
.oblique-lines__lines__line:nth-child(1) {
  left: calc( ( 50% - ( 3.82rem / 3) ) - 2rem );
  top: calc( ( 50% - ( 21.07rem / 3) ) + 0rem );
}
.oblique-lines__lines__line:nth-child(2) {
  left: calc( ( 50% - ( 3.82rem / 3) ) + 2.25rem );
  top: calc( ( 50% - ( 21.07rem / 3) ) + .5rem );
}
.oblique-lines__lines__line:nth-child(3) {
  left: calc( ( 50% - ( 3.82rem / 3) ) + .25rem );
  top: calc( ( 50% - ( 21.07rem / 3) ) - 1.5rem );
}
.oblique-lines__lines__line:nth-child(4) {
  left: calc( ( 50% - ( 3.82rem / 3) ) + 0rem );
  top: calc( ( 50% - ( 21.07rem / 3) ) - 3.75rem );
}
.oblique-lines__lines__line:nth-child(5) {
  left: calc( ( 50% - ( 3.82rem / 3) ) - 3.75rem );
  top: calc( ( 50% - ( 21.07rem / 3) ) - 4.25rem );
}
@media screen and (min-width: 900px) {
  .oblique-lines__lines__line {
    width: 3.82rem;
    height: 21.07rem;
  }
  .oblique-lines__lines__line:nth-child(1) {
    left: calc( ( 50% - ( 3.82rem / 2) ) - 2rem );
    top: calc( ( 50% - ( 21.07rem / 2) ) + 1.5rem );
  }
  .oblique-lines__lines__line:nth-child(2) {
    left: calc( ( 50% - ( 3.82rem / 2) ) + 3.75rem );
    top: calc( ( 50% - ( 21.07rem / 2) ) + 1.55rem );
  }
  .oblique-lines__lines__line:nth-child(3) {
    left: calc( ( 50% - ( 3.82rem / 2) ) + .25rem );
    top: calc( ( 50% - ( 21.07rem / 2) ) - 0.5rem );
  }
  .oblique-lines__lines__line:nth-child(4) {
    left: calc( ( 50% - ( 3.82rem / 2) ) + 2.75rem );
    top: calc( ( 50% - ( 21.07rem / 2) ) - 1.5rem );
  }
  .oblique-lines__lines__line:nth-child(5) {
    left: calc( ( 50% - ( 3.82rem / 2) ) - 2.75rem );
    top: calc( ( 50% - ( 21.07rem / 2) ) - 2.25rem );
  }
}
.oblique-lines--white .oblique-lines__lines__line {
  background: rgba(255, 255, 255, 0.8);
}
@keyframes animateStripe1 {
  0% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(5rem) translateY(4rem);
  }
  100% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(0) translateY(0);
  }
}
@keyframes animateStripe2 {
  0% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(1rem) translateY(6rem);
  }
  100% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(0) translateY(0);
  }
}
@keyframes animateStripe3 {
  0% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(-2rem) translateY(3rem);
  }
  100% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(0) translateY(0);
  }
}
@keyframes animateStripe4 {
  0% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(-2rem) translateY(-3rem);
  }
  100% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(0) translateY(0);
  }
}
@keyframes animateStripe5 {
  0% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(4rem) translateY(-2rem);
  }
  100% {
    transform: rotate(69deg) scale(0.75, 0.75) translateX(0) translateY(0);
  }
}
.oblique-lines--animate .oblique-lines__lines__line:nth-child(1) {
  animation: 1s ease-out 0s 1 animateStripe1;
}
.oblique-lines--animate .oblique-lines__lines__line:nth-child(2) {
  animation: 1s ease-out 0s 1 animateStripe2;
}
.oblique-lines--animate .oblique-lines__lines__line:nth-child(3) {
  animation: 1s ease-out 0s 1 animateStripe3;
}
.oblique-lines--animate .oblique-lines__lines__line:nth-child(4) {
  animation: 1s ease-out 0s 1 animateStripe4;
}
.oblique-lines--animate .oblique-lines__lines__line:nth-child(5) {
  animation: 1s ease-out 0s 1 animateStripe5;
}

.box {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  background: #8b51c4;
  color: white;
}
.box--white {
  background: white;
  color: black;
}
.box--white .box__title {
  color: #582C83;
}
.box__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.box__icon img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  background: #C0A9D7;
}
.box__title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.55rem;
}
.box__text {
  margin-top: 0;
}
.box > :last-child {
  margin-bottom: 0;
}
.box iframe {
  max-width: 100% !important;
}

.or {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.or span {
  margin: 0.5rem;
  color: #582C83;
  font-size: 2rem;
}

.navigation-bar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #582C83;
  height: 75px;
}
.navigation-bar__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .navigation-bar__inner {
    padding: 1.5rem;
  }
}
.navigation-bar__inner__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation-bar__inner__logo img {
  width: 70px;
}
.navigation-bar__inner__button {
  background: white;
  width: 3rem;
  height: 3rem;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
}
@media screen and (min-width: 900px) {
  .navigation-bar__inner__button {
    display: none;
  }
}
.navigation-bar__inner__button__stripe {
  width: 70%;
  transform: rotate(0deg);
  height: 4px;
  background: #582C83;
  margin-top: 6px;
  transition: transform 100ms linear;
}
.navigation-bar__inner__button__stripe:first-child {
  margin-top: 0;
}
.navigation-bar__inner__button.active .navigation-bar__inner__button__stripe {
  transform: rotate(-21deg);
}
.navigation-bar__inner__nav {
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  transition: right 100ms linear;
}
@media screen and (min-width: 900px) {
  .navigation-bar__inner__nav {
    display: flex;
  }
}
.navigation-bar__inner__nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1rem;
}
@media screen and (min-width: 900px) {
  .navigation-bar__inner__nav__links {
    flex-direction: row;
  }
}
.navigation-bar__inner__nav__links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 1rem;
}
@media screen and (min-width: 900px) {
  .navigation-bar__inner__nav__links a {
    margin-left: 1.5rem;
  }
}
.navigation-bar__inner__nav__links a:hover:after, .navigation-bar__inner__nav__links a.active:after {
  content: "";
  display: block;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.navigation-bar__inner__nav__external {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .navigation-bar__inner__nav__external {
    flex-direction: row;
  }
}
@media screen and (min-width: 900px) {
  .navigation-bar__inner__nav__external a {
    margin-left: 1.5rem;
  }
}
.navigation-bar__inner__nav__external .languages {
  display: none;
}
.navigation-bar__inner__nav__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
}
.navigation-bar__inner__nav__socials .social {
  margin-left: 1rem;
}

.layout-block {
  display: flex;
}
.layout-block__inner > *:first-child {
  margin-top: 0;
}
.layout-block__inner h2 {
  margin-bottom: 1.5rem;
}
.layout-block--center {
  justify-content: center;
  align-items: center;
}
.layout-block--center h2 {
  line-height: 1.5;
}
.layout-block--center .layout-block__inner {
  width: 100%;
  max-width: 27rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.layout-block--full-width {
  width: 100%;
}
.layout-block--max-width {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.layout-block--max-width .layout-block__inner {
  width: calc( 100% - (2* 1rem ));
}
@media screen and (min-width: 900px) {
  .layout-block--max-width .layout-block__inner {
    width: 25rem;
  }
}
@media screen and (min-width: 1200px) {
  .layout-block--max-width .layout-block__inner {
    width: 34rem;
  }
}
@media screen and (min-width: 1700px) {
  .layout-block--max-width .layout-block__inner {
    width: 40rem;
  }
}

.picture-show-off {
  position: relative;
  height: 30rem;
  background: #a577d1;
}
@media screen and (min-width: 1200px) {
  .picture-show-off {
    height: 40rem;
  }
}
@media screen and (min-width: 1700px) {
  .picture-show-off {
    height: 48rem;
  }
}
.picture-show-off img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.picture-show-off__edge-up, .picture-show-off__edge-bottom {
  background: white;
  position: absolute;
  content: "";
  left: 0;
  display: none;
}
@media screen and (min-width: 1200px) {
  .picture-show-off__edge-up, .picture-show-off__edge-bottom {
    display: block;
  }
}
.picture-show-off__edge-up {
  top: -1px;
  width: 40%;
  height: 25%;
  background-size: cover;
  clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
}
.picture-show-off__edge-bottom {
  bottom: -1px;
  width: 20%;
  height: 75%;
  background-size: cover;
  clip-path: polygon(0% 100%, 100% 100%, 0% 0%);
}
.picture-show-off__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.picture-show-off__overlay__content {
  display: flex;
  position: relative;
}
.picture-show-off__overlay__content .skewed-bars {
  position: absolute;
  left: 0;
  top: 0;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
}
.subscribe-form h2 {
  margin: 0 0 1rem;
}
.subscribe-form #subscribe_page_new_signup_form {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .subscribe-form #subscribe_page_new_signup_form {
    flex-direction: row;
  }
}
.subscribe-form__field {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
}
.subscribe-form__field input {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .subscribe-form__field {
    width: 80%;
  }
}
.subscribe-form__field select {
  width: 100%;
  height: 42px;
}
.subscribe-form .col-half {
  margin-bottom: 0;
}
.subscribe-form .checkbox {
  display: inline;
}
@media screen and (min-width: 900px) {
  .subscribe-form .checkbox {
    display: flex;
    align-items: center;
  }
}
.subscribe-form .checkbox .checkbox {
  margin-right: 0.5rem;
}
.subscribe-form .checkbox #signup_volt_basic_checks {
  width: auto;
}
.subscribe-form .checkbox a {
  display: inline-block;
  margin: 0 0.25rem;
}

.political-values {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .political-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 4rem;
  }
}
.political-values__value {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #582C83;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 900px) {
  .political-values__value {
    margin-bottom: 0;
  }
}
.political-values__value__title {
  margin: 0;
  font-size: 1.35rem;
}
.political-values__value__icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid #582C83;
  border-radius: 50%;
  margin-bottom: -2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.political-values__value__icon img {
  max-width: 80%;
  max-height: 80%;
}

.person {
  background: white;
  display: flex;
  flex-direction: row;
}
.person__image {
  width: 10rem;
  height: 10rem;
}
.person__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.person__text {
  padding: 1rem;
}
@media screen and (min-width: 900px) {
  .person__text {
    padding: 1.5rem;
  }
}
.person__name {
  margin: 0;
}
.person__function {
  margin: 0;
}

.page {
  padding: 1.5rem 1rem 2.5rem;
  border: 0.1rem solid #919191;
  background: white;
  box-shadow: 0.2rem 0.2rem #1795FF;
}
@media screen and (min-width: 900px) {
  .page {
    width: calc(100% - ( 2 * 1.5rem ) );
    padding: 1.5rem 1.5rem 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .page {
    width: calc(100% - ( 2 * 6rem ) );
    padding: 2.5rem 2.5rem 6rem;
  }
}
.page__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.page__header__intro {
  padding: 0.25rem;
  color: white;
  background: #1795FF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  height: 2.5rem;
  width: 2.5rem;
}
.page__header h2 {
  font-size: 1.25rem;
  margin: 0 0 0 1rem;
}
.page :first-child {
  margin-top: 0;
}
.page :last-child {
  margin-bottom: 0;
}
.page .section {
  margin-top: 2.5rem;
}
@media screen and (min-width: 900px) {
  .page--left {
    margin-left: 1rem;
    align-self: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .page--left {
    margin-left: -2.5rem;
  }
}
@media screen and (min-width: 1700px) {
  .page--left {
    margin-left: -6rem;
  }
}
@media screen and (min-width: 900px) {
  .page--right {
    margin-right: 1rem;
    align-self: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .page--right {
    margin-right: -2.5rem;
    align-self: flex-end;
  }
}
@media screen and (min-width: 1700px) {
  .page--right {
    margin-left: -6rem;
  }
}
.page h1, .page h2, .page h3, .page h4 {
  color: #1795FF;
}
.page ul {
  margin-bottom: 1.5rem;
  list-style: none;
}
.page ul li:before {
  content: "‣";
  color: #582C83;
  margin-right: 0.25rem;
}
.page ul li {
  padding: 0.25rem;
  margin-bottom: 0.25rem;
}
.page ul li:last-child {
  border-bottom: none;
}

.news-tile {
  padding: 0;
  text-decoration: none;
  color: black;
  border: 1px solid #dddddd;
}
.news-tile:hover {
  border: 1px solid #582C83;
}
.news-tile__image {
  display: flex;
  width: 100%;
  height: 10rem;
}
.news-tile__image img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.news-tile__bottom {
  padding: 1rem;
}
.news-tile__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}
.news-tile__date {
  text-transform: uppercase;
  color: #555;
  font-size: 0.875rem;
}
.news-tile__excerpt, .news-tile date {
  font-size: 0.875rem;
  margin: 0;
}
.news-tile--white {
  background: white;
}

.skewed-bars {
  position: relative;
}
.skewed-bars__bar {
  position: absolute;
  background: rgba(88, 44, 131, 0.7);
  width: 283.27px;
  height: 120px;
  transform: rotate(-21deg);
}
@media screen and (min-width: 900px) {
  .skewed-bars__bar {
    transform: rotate(-21deg) scale(1.25, 1.25);
  }
}

.item-grid {
  display: flex;
  flex-direction: column;
}
.item-grid > * {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 600px) {
  .item-grid {
    display: grid;
    grid-gap: 2.5rem;
  }
  .item-grid > * {
    margin-bottom: 0;
  }
  .item-grid--small-gap {
    grid-gap: 1.5rem;
  }
  .item-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
  .item-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 600px) and (min-width: 1200px) {
  .item-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 600px) {
  .item-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/*# sourceMappingURL=style.css.map */
