@charset "UTF-8";
@font-face {
  font-family: Brygada;
  src: url("../../fonts/Brygada 1918-Regular.otf");
  font-weight: normal; }

@font-face {
  font-family: Brygada;
  src: url("../../fonts/Brygada 1918-Italic.otf");
  font-style: italic; }

@font-face {
  font-family: Brygada;
  src: url("../../fonts/Brygada 1918-Bold.otf");
  font-weight: bold; }

@font-face {
  font-family: Brygada;
  src: url("../../fonts/Brygada 1918-Bolditalic.otf");
  font-weight: bold;
  font-style: italic; }

/** initial setup **/
.nano {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.nano > .nano-content {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.nano > .nano-content:focus {
  outline: thin dotted; }

.nano > .nano-content::-webkit-scrollbar {
  display: none; }

.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block; }

.nano > .nano-pane {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  width: 10px;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: .01;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.nano > .nano-pane > .nano-slider {
  background: #444;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  margin: 0 1px;
  -webkit-border-radius: 3px;
  border-radius: 3px; }

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility: visible\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99; }

.nano {
  min-height: 0; }
  .nano > .nano-pane {
    width: 11px; }

/* ----------------------------------------------------------- */
/* == tingle v0.13.2 */
/* ----------------------------------------------------------- */
.tingle-modal * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease; }

/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center; }

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default; }

.tingle-modal--noClose .tingle-modal__close {
  display: none; }

.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 1000;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border: none;
  background-color: transparent;
  color: #f0f0f0;
  font-size: 6rem;
  font-family: monospace;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease; }

.tingle-modal__closeLabel {
  display: none; }

.tingle-modal__close:hover {
  color: #fff; }

.tingle-modal-box {
  position: relative;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8); }

.tingle-modal-box__content {
  padding: 3rem 3rem; }

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto; }

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: ""; }

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  -webkit-transition: bottom .3s ease-in-out .3s;
  -o-transition: bottom .3s ease-in-out .3s;
  transition: bottom .3s ease-in-out .3s; }

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0; }

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0; }

.tingle-enabled .tingle-content-wrapper {
  -webkit-filter: blur(8px);
  filter: blur(8px); }

.tingle-modal--visible {
  visibility: visible;
  opacity: 1; }

.tingle-modal--visible .tingle-modal-box {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh; }

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  -webkit-transition: background-color .4s ease;
  -o-transition: background-color .4s ease;
  transition: background-color .4s ease; }

.tingle-btn--primary {
  background-color: #3498db; }

.tingle-btn--danger {
  background-color: #e74c3c; }

.tingle-btn--default {
  background-color: #34495e; }

.tingle-btn--pull-left {
  float: left; }

.tingle-btn--pull-right {
  float: right; }

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%; }
  .tingle-modal-box {
    width: auto;
    -webkit-border-radius: 0;
    border-radius: 0; }
  .tingle-modal-box__content {
    overflow-y: scroll; }
  .tingle-modal--noClose {
    top: 0; }
  .tingle-modal--noOverlayClose {
    padding-top: 0; }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%; }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    line-height: 55px; }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: .5rem;
    vertical-align: middle;
    font-size: 4rem; } }

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px); }
  @media (max-width: 540px) {
    .tingle-modal {
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px); } }
  .tingle-enabled .tingle-content-wrapper {
    -webkit-filter: none;
    filter: none; } }

#promoted-material-container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: transparent url("../../images/shadow.png") no-repeat center bottom;
  width: 100%;
  height: 100%; }

#promoted-material-container .slide-bottom-container {
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  z-index: 1; }
  #promoted-material-container .slide-bottom-container .slide-title {
    font-family: 'Brygada', serif;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: -0.2em; }
    #promoted-material-container .slide-bottom-container .slide-title p {
      position: relative;
      margin: 0; }
      #promoted-material-container .slide-bottom-container .slide-title p:last-child:after {
        content: "";
        border-top: 2px solid transparent;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%; }
      #promoted-material-container .slide-bottom-container .slide-title p:first-child {
        display: none; }
        #promoted-material-container .slide-bottom-container .slide-title p:first-child:after {
          content: "";
          border-bottom: 2px solid transparent;
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 100%; }

#promoted-material-container #skip-intro {
  text-transform: uppercase;
  color: #fff;
  padding: 10px;
  opacity: 0.6;
  font-weight: 700;
  text-align: center;
  display: block; }
  #promoted-material-container #skip-intro:focus, #promoted-material-container #skip-intro:hover {
    opacity: 1; }
  #promoted-material-container #skip-intro svg {
    fill: #fff;
    display: block;
    width: 26px;
    height: 17px;
    margin: 5px auto 0; }
  #promoted-material-container #skip-intro .control-pause {
    display: none; }
    [data-status="play"] #promoted-material-container #skip-intro .control-pause {
      display: block; }

#promoted-material-container[data-status="play"] #skip-intro .control-pause {
  display: block; }

#promoted-material-container[data-status="play"] #skip-intro .control-play {
  display: none; }

@media (min-width: 683px) {
  body.font-state-18 header.main .header-menu-container nav div > ul li a {
    padding: 0 7px; }
  body.font-state-21 header.main .header-menu-container .logo {
    width: 295px; }
  body.font-state-21 header.main .header-menu-container nav div > ul li a {
    padding: 0 3px;
    font-weight: normal; }
  body.font-state-16 .fs1 {
    font-size: 2.3rem;
    line-height: 3.22rem; }
  body.font-state-16 .fs2 {
    font-size: 1.25rem;
    line-height: 1.75rem; }
  body.font-state-16 .fs3 {
    font-size: 1rem;
    line-height: 1.4rem; }
  body.font-state-16 .fs4 {
    font-size: 0.87rem;
    line-height: 1.218rem; }
  body.font-state-16 .fs5 {
    font-size: 0.81rem;
    line-height: 1.134rem; }
  body.font-state-18 .fs1 {
    font-size: 2.3rem;
    line-height: 3.22rem; }
  body.font-state-18 .fs2 {
    font-size: 1.25rem;
    line-height: 1.75rem; }
  body.font-state-18 .fs3 {
    font-size: 1rem;
    line-height: 1.4rem; }
  body.font-state-18 .fs4 {
    font-size: 0.87rem;
    line-height: 1.218rem; }
  body.font-state-18 .fs5 {
    font-size: 0.81rem;
    line-height: 1.134rem; }
  body.font-state-21 .fs1 {
    font-size: 2rem;
    line-height: 2.8rem; }
  body.font-state-21 .fs2 {
    font-size: 1.2rem;
    line-height: 1.68rem; }
  body.font-state-21 .fs3 {
    font-size: 1rem;
    line-height: 1.4rem; }
  body.font-state-21 .fs4 {
    font-size: 0.88rem;
    line-height: 1.232rem; }
  body.font-state-21 .fs5 {
    font-size: 0.85rem;
    line-height: 1.19rem; }
  .font-state-16 #main-content ol,
  .font-state-16 #main-content ul,
  .font-state-16 #main-content p {
    font-size: 1rem; }
  .font-state-16 #main-content blockquote,
  .font-state-16 #main-content h2:not(.fs1):not(.exclude) {
    font-size: 1.25rem; }
  .font-state-16 #main-content h3 {
    font-size: 1rem; }
  .font-state-16 #main-content h4,
  .font-state-16 #main-content h5,
  .font-state-16 #main-content h6 {
    font-size: 0.81rem; }
  .font-state-16 #main-content .wp-caption .wp-caption-text {
    font-size: 0.81rem; }
  .font-state-16 #main-content .description h2 {
    max-width: 23.75rem; }
  .font-state-16 #main-content .excerpt {
    max-width: 40.02rem; }
  .font-state-18 #main-content ol,
  .font-state-18 #main-content ul,
  .font-state-18 #main-content p {
    font-size: 1rem; }
  .font-state-18 #main-content blockquote,
  .font-state-18 #main-content h2:not(.fs1):not(.exclude) {
    font-size: 1.25rem; }
  .font-state-18 #main-content h3 {
    font-size: 1rem; }
  .font-state-18 #main-content h4,
  .font-state-18 #main-content h5,
  .font-state-18 #main-content h6 {
    font-size: 0.81rem; }
  .font-state-18 #main-content .wp-caption .wp-caption-text {
    font-size: 0.81rem; }
  .font-state-18 #main-content .description h2 {
    max-width: 23.75rem; }
  .font-state-18 #main-content .excerpt {
    max-width: 40.02rem; }
  .font-state-21 #main-content ol,
  .font-state-21 #main-content ul,
  .font-state-21 #main-content p {
    font-size: 1rem; }
  .font-state-21 #main-content blockquote,
  .font-state-21 #main-content h2:not(.fs1):not(.exclude) {
    font-size: 1.2rem; }
  .font-state-21 #main-content h3 {
    font-size: 1rem; }
  .font-state-21 #main-content h4,
  .font-state-21 #main-content h5,
  .font-state-21 #main-content h6 {
    font-size: 0.85rem; }
  .font-state-21 #main-content .wp-caption .wp-caption-text {
    font-size: 0.85rem; }
  .font-state-21 #main-content .description h2 {
    max-width: 22.8rem; }
  .font-state-21 #main-content .excerpt {
    max-width: 40.48rem; } }

.responsive-table-container {
  display: table;
  width: 100%; }
  .responsive-table-container .responsive-row {
    display: table-row; }
    .responsive-table-container .responsive-row .col {
      padding: 15px;
      display: table-cell; }
  .responsive-table-container.columns-2 .col {
    width: 50%; }
  .responsive-table-container.columns-3 .col {
    width: 33%; }

.tile-lead {
  padding-top: 100%;
  position: relative;
  display: block;
  color: #000;
  -webkit-transition: box-shadow 0.3s;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  -webkit-box-shadow: 1px 1px 0px rgba(0, 0, 0, 0);
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0); }
  .tile-lead:hover {
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
    .tile-lead:hover .thumb {
      -webkit-background-size: auto 110%;
      background-size: auto 110%; }
      .tile-lead:hover .thumb::after {
        opacity: 0; }
    .tile-lead:hover .content {
      opacity: 1; }
  .tile-lead.color-1 .thumb {
    -webkit-transition: background-color 0.4s, background-size 0.4s;
    -webkit-transition: background-color 0.4s, -webkit-background-size 0.4s;
    transition: background-color 0.4s, -webkit-background-size 0.4s;
    -o-transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s, -webkit-background-size 0.4s; }
    .tile-lead.color-1 .thumb::after {
      background-color: #ff8c54; }
  .tile-lead.color-2 .thumb {
    -webkit-transition: background-color 0.4s, background-size 0.4s;
    -webkit-transition: background-color 0.4s, -webkit-background-size 0.4s;
    transition: background-color 0.4s, -webkit-background-size 0.4s;
    -o-transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s, -webkit-background-size 0.4s; }
    .tile-lead.color-2 .thumb::after {
      background-color: #ec6464; }
  .tile-lead.color-3 .thumb {
    -webkit-transition: background-color 0.4s, background-size 0.4s;
    -webkit-transition: background-color 0.4s, -webkit-background-size 0.4s;
    transition: background-color 0.4s, -webkit-background-size 0.4s;
    -o-transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s, -webkit-background-size 0.4s; }
    .tile-lead.color-3 .thumb::after {
      background-color: #d99e67; }
  .tile-lead.color-4 .thumb {
    -webkit-transition: background-color 0.4s, background-size 0.4s;
    -webkit-transition: background-color 0.4s, -webkit-background-size 0.4s;
    transition: background-color 0.4s, -webkit-background-size 0.4s;
    -o-transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s, -webkit-background-size 0.4s; }
    .tile-lead.color-4 .thumb::after {
      background-color: #ff554a; }
  .tile-lead.color-5 .thumb {
    -webkit-transition: background-color 0.4s, background-size 0.4s;
    -webkit-transition: background-color 0.4s, -webkit-background-size 0.4s;
    transition: background-color 0.4s, -webkit-background-size 0.4s;
    -o-transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s, -webkit-background-size 0.4s; }
    .tile-lead.color-5 .thumb::after {
      background-color: #ffa354; }
  .tile-lead.color-6 .thumb {
    -webkit-transition: background-color 0.4s, background-size 0.4s;
    -webkit-transition: background-color 0.4s, -webkit-background-size 0.4s;
    transition: background-color 0.4s, -webkit-background-size 0.4s;
    -o-transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s;
    transition: background-color 0.4s, background-size 0.4s, -webkit-background-size 0.4s; }
    .tile-lead.color-6 .thumb::after {
      background-color: #ff6d4a; }
  .tile-lead.color-1 .content {
    background-color: rgba(255, 198, 170, 0.8); }
  .tile-lead.color-2 .content {
    background-color: rgba(254, 161, 158, 0.8); }
  .tile-lead.color-3 .content {
    background-color: rgba(240, 203, 170, 0.8); }
  .tile-lead.color-4 .content {
    background-color: rgba(255, 170, 165, 0.8); }
  .tile-lead.color-5 .content {
    background-color: rgba(255, 198, 171, 0.8); }
  .tile-lead.color-6 .content {
    background-color: rgba(255, 170, 166, 0.8); }
  .tile-lead .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 20px 20px;
    z-index: 1;
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s; }
    .tile-lead .content h2 {
      text-transform: uppercase;
      font-weight: 700;
      padding-top: 15px;
      margin-top: 0 !important;
      margin-bottom: 0.5rem !important; }
    .tile-lead .content .description {
      padding-right: 40px;
      background: transparent url("../../images/icons/arrow-big-black.svg") no-repeat right bottom; }
  .tile-lead .thumb {
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9; }
    .tile-lead .thumb img {
      -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
      min-height: 100%;
      height: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .tile-lead .thumb::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      opacity: 0.3;
      -webkit-transition: opacity 0.2s;
      -o-transition: opacity 0.2s;
      transition: opacity 0.2s; }
  .tile-lead:hover {
    color: #000; }
    .tile-lead:hover .thumb {
      background-color: #fff; }
      .animation-on .tile-lead:hover .thumb img {
        -webkit-transform: translate(-50%, -50%) scale(1.2);
        -ms-transform: translate(-50%, -50%) scale(1.2);
        transform: translate(-50%, -50%) scale(1.2); }

.event-item .promoted,
.tile-lead .promoted {
  position: absolute;
  display: block;
  left: 40px;
  top: -10px;
  z-index: 1; }
  .event-item .promoted img,
  .tile-lead .promoted img {
    width: 45px; }

body.home .tile-group-container .thumb::after, body.page-template-tpl-about-niepodlegla .tile-group-container .thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.7; }

body.home .tile-group-container-1 .thumb::after, body.page-template-tpl-about-niepodlegla .tile-group-container-1 .thumb::after,
body.home .tile-group-container-1 .thumb::after, body.page-template-tpl-about-niepodlegla .tile-group-container-3 .thumb::after {
  background-color: #b47838; }

body.home .tile-group-container-2 .thumb::after, body.page-template-tpl-about-niepodlegla .tile-group-container-2 .thumb::after {
  background-color: #e53d33; }

.sticky-links {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  list-style-type: none; }
  .sticky-links li {
    width: 48px;
    display: block;
    margin-bottom: 2px;
    -webkit-background-size: cover;
    background-size: cover; }
    .sticky-links li a {
      height: 48px;
      display: block;
      background-color: #d59f44; }
      .sticky-links li a svg {
        color: #fff;
        width: 100%;
        height: 100%; }
      .sticky-links li a:hover, .sticky-links li a:focus {
        background-color: #fd241d; }
        .sticky-links li a:hover svg, .sticky-links li a:focus svg {
          color: #fff; }

.info-container {
  text-align: center; }
  .info-container .form-control {
    display: inline-block;
    max-width: 300px; }
  .info-container label::after {
    content: ":"; }
  .info-container .label {
    text-transform: uppercase; }
  .info-container label[for='search-phrase'] {
    line-height: 2rem; }
  .info-container .search-box {
    margin-bottom: 1.5rem; }

.main-menu-content .search-box,
.header-tools-container .search-box {
  display: inline-block;
  margin-left: 1em;
  padding-right: 1.6rem;
  position: relative; }
  .main-menu-content .search-box .loop,
  .header-tools-container .search-box .loop {
    width: 1.6rem;
    height: 1.6rem;
    display: block;
    cursor: pointer;
    background-color: red;
    position: absolute;
    right: 0;
    top: 0;
    background: #acacac url("../../images/icons/loop.svg") no-repeat center; }
  .main-menu-content .search-box input,
  .header-tools-container .search-box input {
    background-color: #c8c8c8;
    color: #6d6d6d;
    width: 9.5rem;
    height: 1.6rem;
    padding: 2px 5px;
    border: 0 none;
    -webkit-border-radius: 0;
    border-radius: 0; }
    .main-menu-content .search-box input::-webkit-input-placeholder,
    .header-tools-container .search-box input::-webkit-input-placeholder {
      text-transform: uppercase;
      color: #545454; }
    .main-menu-content .search-box input::-moz-placeholder,
    .header-tools-container .search-box input::-moz-placeholder {
      text-transform: uppercase;
      color: #545454; }
    .main-menu-content .search-box input:-ms-input-placeholder,
    .header-tools-container .search-box input:-ms-input-placeholder {
      text-transform: uppercase;
      color: #545454; }
    .main-menu-content .search-box input::-ms-input-placeholder,
    .header-tools-container .search-box input::-ms-input-placeholder {
      text-transform: uppercase;
      color: #545454; }
    .main-menu-content .search-box input::placeholder,
    .header-tools-container .search-box input::placeholder {
      text-transform: uppercase;
      color: #545454; }
  .main-menu-content .search-box label,
  .header-tools-container .search-box label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }

.types-filters {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .types-filters li {
    text-transform: uppercase;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px; }

.article-info-box {
  text-align: center;
  margin-bottom: 3rem; }
  .article-info-box:last-child {
    margin-top: 3rem;
    margin-bottom: 0; }
  .article-info-box dl {
    display: inline-block; }
    .article-info-box dl dt {
      padding-right: 0.4rem;
      text-transform: uppercase;
      display: inline-block;
      letter-spacing: 0.075em;
      opacity: 0.8; }
    .article-info-box dl dd {
      display: inline-block;
      opacity: 0.8; }
      .article-info-box dl dd:after {
        content: "|";
        padding: 0 1rem; }
      .article-info-box dl dd:last-child:after {
        content: "";
        padding: 0; }
  .article-info-box .print-ico {
    margin-right: 1rem; }
    .article-info-box .print-ico:focus, .article-info-box .print-ico:hover {
      text-decoration: none; }
      .article-info-box .print-ico:focus svg, .article-info-box .print-ico:hover svg {
        fill: #fd241d;
        opacity: 1; }
    .article-info-box .print-ico svg {
      cursor: pointer;
      width: 1.6rem;
      height: 1.6rem;
      opacity: 0.6;
      vertical-align: middle; }
      .color-version-dark-yellow .article-info-box .print-ico svg {
        fill: #fff; }

#main-content p {
  margin-bottom: 0.9rem; }

#main-content h2, #main-content h3:not(.text-in-middle), #main-content h4, #main-content h5, #main-content h6 {
  margin-top: 1.8rem;
  margin-bottom: 0.9rem; }

#main-content h2, #main-content h3, #main-content h4, #main-content h5 {
  text-transform: uppercase; }

#main-content h2, #main-content h3, #main-content h4 {
  font-weight: 700; }


#main-content .more-margins {
  margin: 10px 5px 10px;
  padding: 10px}

#main-content h5,
#main-content h6 {
  font-weight: 400; }

#main-content .excerpt {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center; }

#main-content .description h2 {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 1.1rem;
  margin: 3rem 0 2rem; }
  #main-content .description h2::after {
    content: "";
    border-bottom: 2px solid #fd241d;
    width: 160px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 0; }

#main-content .description img {
  max-width: 100%;
  height: auto !important;
  display: block;
  margin: 2rem auto; }

#main-content .description ol,
#main-content .description ul:not(#brands-slider) {
  list-style-type: none;
  font-style: italic;
  padding-left: 40px;
  margin-top: 40px;
  margin-bottom: 40px; }
  #main-content .description ol li:not(.slide-element),
  #main-content .description ul:not(#brands-slider) li:not(.slide-element) {
    list-style: none;
    position: relative;
    margin-bottom: 0.5rem; }
    #main-content .description ol li:not(.slide-element)::before,
    #main-content .description ul:not(#brands-slider) li:not(.slide-element)::before {
      text-align: right;
      padding-right: 0.3rem;
      position: absolute; }

#main-content .description ul li:not(.slide-element)::before {
  content: '';
  background-color: #d59f44;
  width: 0.25rem;
  height: 0.25rem;
  left: -0.8rem;
  top: .6em;
  margin-top: -0.13rem;
  display: block; }

#main-content .description ol {
  counter-reset: li;
  font-style: italic; }
  #main-content .description ol li::before {
    width: 2rem;
    left: -2rem;
    content: counter(li) ".";
    color: #d59f44;
    font-style: normal;
    counter-increment: li; }

#main-content .wp-caption {
  max-width: 100%;
  display: block;
  margin: 1rem auto 3rem; }
  #main-content .wp-caption img {
    margin-bottom: 0; }
  #main-content .wp-caption .wp-caption-text {
    position: relative;
    text-align: center;
    padding: 9px 0; }
    #main-content .wp-caption .wp-caption-text::after {
      content: "";
      border-bottom: 2px solid #fd241d;
      width: 160px;
      position: absolute;
      bottom: 0;
      left: 0;
      margin-left: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
    #main-content .wp-caption .wp-caption-text::before {
      content: "";
      border-bottom: 2px solid #fd241d;
      width: 160px;
      position: absolute;
      bottom: 0;
      left: 0;
      margin-left: 0;
      bottom: auto;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }

#main-content blockquote {
  letter-spacing: 0.025em;
  font-style: italic;
  position: relative;
  border-left: 0 none;
  padding: 40px 0 0 0;
  margin: 2.5rem 1.9rem;
  max-width: 580px; }
  #main-content blockquote::before {
    top: 0;
    left: 0;
    position: absolute;
    width: 34px;
    height: 31px;
    display: block;
    content: "";
    background: transparent url("../../images/icons/blockquote.png") no-repeat; }

#main-content .accordion-container {
  margin: 0.5rem 0 3rem; }
  #main-content .accordion-container .accordion-question {
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #ffd0ce;
    margin-bottom: 0.5rem; }
    #main-content .accordion-container .accordion-question a {
      color: #000;
      padding-left: 0;
      font-size: inherit; }
      #main-content .accordion-container .accordion-question a:before {
        display: none !important; }
    #main-content .accordion-container .accordion-question > a {
      padding-right: 1.5rem;
      display: block;
      background: transparent url("../../images/icons/arrow-navi.svg") no-repeat right center; }
    #main-content .accordion-container .accordion-question .answer a {
      color: #a57f3f;
      text-transform: none;
      font-size: inherit; }
    #main-content .accordion-container .accordion-question .answer > *:first-child {
      margin-top: 0.5rem !important; }
    #main-content .accordion-container .accordion-question .answer > *:last-child {
      margin-bottom: 0.5rem !important; }

#main-content .single-event ul.categories {
  padding-top: 5px; }

#main-content .single-event .n-button {
  color: #333;
  text-transform: none;
  margin: 5px 0;
  padding: 0; }
  #main-content .single-event .n-button:hover {
    color: #333; }

#main-content .single-event .event-info span {
  font-style: italic;
  opacity: 0.7; }

.tile-lead .thumb img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }

.color-version-dark-yellow .accordion-container .accordion-question a {
  color: #fff; }

.grant-link {
  text-align: center;
  display: block;
  margin: 3rem auto;
  color: #000;
  max-width: 300px; }
  .grant-link .action {
    color: #fd241d;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 27px; }
    .grant-link .action::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
      width: 25px;
      height: 13px;
      display: block;
      margin-left: 8px;
      right: auto;
      left: 50%;
      top: auto;
      bottom: 0;
      margin-left: 0;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
  .grant-link svg {
    width: 150px;
    height: 132px;
    display: block;
    margin: 0 auto 1rem;
    color: #d59f44; }

a[href$='.doc'],
a[href$='.rar'],
a[href$='.zip'],
a[href$='.doc'],
a[href$='.docx'],
a[href$='.xls'],
a[href$='.xlsx'],
a[href$='.pdf'] {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  text-transform: uppercase;
  font-size: 0.87rem;
  color: #7f7f7f; }
  a[href$='.doc']:hover,
  a[href$='.rar']:hover,
  a[href$='.zip']:hover,
  a[href$='.doc']:hover,
  a[href$='.docx']:hover,
  a[href$='.xls']:hover,
  a[href$='.xlsx']:hover,
  a[href$='.pdf']:hover {
    text-decoration: underline; }
  a[href$='.doc']::before,
  a[href$='.rar']::before,
  a[href$='.zip']::before,
  a[href$='.doc']::before,
  a[href$='.docx']::before,
  a[href$='.xls']::before,
  a[href$='.xlsx']::before,
  a[href$='.pdf']::before {
    background: transparent url("../../images/icons/download.svg") no-repeat center center;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 30px;
    height: 1.4rem;
    color: inherit; }

.color-version-dark-yellow .alert {
  border: 1px solid #fff; }

.alert.alert-success {
  color: green; }

.alert.alert-error {
  color: red; }

body.single-event_form .event-photo {
  max-width: 360px;
  max-height: 360px;
  width: 100%;
  height: 360px; }
  body.single-event_form .event-photo img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block; }

.page-template-tpl-add-event .tingle-modal-box__content,
.page-template-tpl-logo .tingle-modal-box__content {
  padding: 10px 20px; }
  .page-template-tpl-add-event .tingle-modal-box__content h3.success,
  .page-template-tpl-logo .tingle-modal-box__content h3.success {
    text-align: center; }

.page-template-tpl-add-event .tingle-modal-box__footer,
.page-template-tpl-logo .tingle-modal-box__footer {
  padding: 10px 20px; }
  .page-template-tpl-add-event .tingle-modal-box__footer .tingle-btn,
  .page-template-tpl-logo .tingle-modal-box__footer .tingle-btn {
    padding: 10px 20px; }

.page-template-tpl-add-event #main-content .form-title h2,
.page-template-tpl-logo #main-content .form-title h2 {
  font-family: 'Brygada', serif;
  font-size: 1.8rem;
  text-align: center;
  max-width: none;
  position: relative;
  padding-bottom: .8rem;
  margin-bottom: 2rem; }
  .page-template-tpl-add-event #main-content .form-title h2:after,
  .page-template-tpl-logo #main-content .form-title h2:after {
    margin-left: auto;
    margin-right: auto;
    display: block;
    right: 0; }

.page-template-tpl-add-event p.charsleft,
.page-template-tpl-logo p.charsleft {
  text-align: right;
  opacity: 0.6;
  font-size: .85rem !important; }

.page-template-tpl-add-event p.chars-hint {
  text-align: left;
  opacity: 0.6;
  font-size: .85rem !important; }

.page-template-tpl-add-event .toggle-container,
.page-template-tpl-logo .toggle-container {
  margin-bottom: 20px; }

.page-template-tpl-add-event .toggling,
.page-template-tpl-logo .toggling {
  display: none !important; }
  .page-template-tpl-add-event .toggling.active,
  .page-template-tpl-logo .toggling.active {
    display: block !important; }

.page-template-tpl-add-event .mail-container a,
.page-template-tpl-logo .mail-container a {
  font-size: 1.3rem; }

.page-template-tpl-add-event .description,
.page-template-tpl-logo .description {
  text-align: center; }

.page-template-tpl-add-event #map,
.page-template-tpl-logo #map {
  width: 100%;
  height: 300px; }

.page-template-tpl-add-event .header,
.page-template-tpl-logo .header {
  max-width: 100%; }

.page-template-tpl-add-event .tingle-btn-close,
.page-template-tpl-logo .tingle-btn-close {
  background-color: #d59f44; }

.page-template-tpl-add-event .categories-container li label,
.page-template-tpl-logo .categories-container li label {
  display: inline-block;
  margin-top: 0; }

.page-template-tpl-add-event #logo-popup,
.page-template-tpl-logo #logo-popup {
  position: fixed;
  top: 50vh;
  display: none;
  left: 50vw;
  z-index: 6;
  padding: 50px 30px;
  background-color: #FFCD7C;
  width: 425px;
  max-width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .page-template-tpl-add-event #logo-popup .add-next-event,
  .page-template-tpl-logo #logo-popup .add-next-event {
    display: none !important; }
  .page-template-tpl-add-event #logo-popup.status-success .add-next-event,
  .page-template-tpl-logo #logo-popup.status-success .add-next-event {
    display: block !important; }
  .page-template-tpl-add-event #logo-popup .message-info,
  .page-template-tpl-logo #logo-popup .message-info {
    position: relative;
    margin-bottom: 50px; }
    .page-template-tpl-add-event #logo-popup .message-info:after,
    .page-template-tpl-logo #logo-popup .message-info:after {
      margin-top: -10px;
      content: "";
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #d6a85a;
      position: absolute;
      width: 150px;
      left: 50%;
      margin-left: -75px; }
    .page-template-tpl-add-event #logo-popup .message-info p,
    .page-template-tpl-logo #logo-popup .message-info p {
      font-size: 1.2rem;
      line-height: 1.7rem;
      text-transform: uppercase;
      font-weight: 700; }

.page-template-tpl-add-event .load-wrapper.small,
.page-template-tpl-logo .load-wrapper.small {
  opacity: 0.5;
  position: absolute;
  bottom: 3px;
  right: 8px; }

form.nf_form {
  padding: 0 0 30px;
  text-align: left;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px; }
  form.nf_form input[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1; }
    form.nf_form input[type="file"] + label {
      display: inline-block;
      font-weight: bold; }
      form.nf_form input[type="file"] + label:after {
        content: '';
        position: absolute;
        display: block;
        bottom: 0;
        height: 1px;
        background-color: #d59f44;
        left: 0;
        right: 0;
        width: 0;
        margin: auto;
        -webkit-transition: width .1s ease-in-out;
        -o-transition: width .1s ease-in-out;
        transition: width .1s ease-in-out; }
      form.nf_form input[type="file"] + label:hover {
        opacity: 1; }
      form.nf_form input[type="file"] + label * {
        pointer-events: none; }
    form.nf_form input[type="file"]:focus + label {
      outline: 1px dotted #000;
      outline: -webkit-focus-ring-color auto 5px; }
  form.nf_form .files-container .n-button {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    text-transform: none; }
    form.nf_form .files-container .n-button .close {
      text-transform: uppercase;
      float: none;
      font-size: inherit;
      margin-right: 10px; }
    form.nf_form .files-container .n-button:after {
      display: none; }
  form.nf_form a {
    padding-left: 5px;
    padding-right: 0; }
    form.nf_form a.accept-rules:before {
      display: none; }
  form.nf_form #send-form,
  form.nf_form .form-title {
    display: block;
    background-color: #ffcd7c;
    margin: 0 -30px;
    text-align: center;
    padding: 1rem;
    text-transform: uppercase; }
  form.nf_form .form-description {
    padding-top: 2.5rem; }
    form.nf_form .form-description *:last-child {
      margin-bottom: 0; }
  form.nf_form hr {
    border-top: 2px solid #d6a85a;
    margin: 2.5rem 0; }
  form.nf_form h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.5rem; }
  form.nf_form .info-label,
  form.nf_form legend,
  form.nf_form label {
    margin-top: 0px;
    margin-bottom: 4px;
    display: block;
    font-weight: normal; }
  form.nf_form .lowercase {
    text-transform: none; }
  form.nf_form .info-label {
    margin-top: 2rem; }
  form.nf_form legend {
    float: left; }
  form.nf_form select,
  form.nf_form input:not([type="checkbox"]),
  form.nf_form textarea {
    padding: 4px 10px;
    letter-spacing: 0.0025em;
    width: 100%;
    border: 1px solid #1f1f1f;
    font-size: 0.87rem;
    resize: none; }
  form.nf_form #send-form, form.nf_form input.submit {
    font-weight: 700;
    margin: 15px 0 0;
    text-transform: uppercase;
    background-color: #d59f44;
    color: #fff;
    border: 0;
    padding: 6px 0;
    opacity: 0.7;
    -webkit-transition: opacity .1s ease-in-out;
    -o-transition: opacity .1s ease-in-out;
    transition: opacity .1s ease-in-out; }
    form.nf_form #send-form:hover, form.nf_form input.submit:hover {
      opacity: 1; }
  form.nf_form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    white-space: nowrap;
    background: url("../../images/icons/icon-chevron-down.png") no-repeat;
    background-position: right 10px center;
    padding-right: 35px; }
  form.nf_form .checkbox-list-container label {
    position: relative;
    margin-top: 0;
    cursor: pointer;
    margin-left: 30px;
    margin-bottom: 1rem;
    text-transform: none; }
    form.nf_form .checkbox-list-container label::after {
      text-align: center;
      line-height: 1rem;
      position: absolute;
      left: -30px;
      top: 0.7em;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      color: #5c4a2c;
      content: "";
      width: 1rem;
      height: 1rem;
      display: block;
      background-color: #b89559; }
    form.nf_form .checkbox-list-container label::before {
      content: "*";
      color: red; }
  form.nf_form .checkbox-list-container input[type="checkbox"]:checked + label::after {
    content: "✔"; }
  form.nf_form .checkbox-list-container input[type="checkbox"] {
    position: absolute;
    left: -9999px;
    float: left; }
  form.nf_form .checkbox-list-container a:before {
    content: "";
    background: none; }
  form.nf_form .checkbox-list-container .regulation-link {
    padding-left: 0; }
  form.nf_form select {
    cursor: pointer;
    display: inline-block; }

.nf-input-container {
  margin-bottom: 15px;
  position: relative; }
  .nf-input-container .geo-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.8rem;
    height: 1.8rem; }
  .nf-input-container.checkbox input, .nf-input-container.radio input {
    opacity: 0;
    z-index: -100;
    margin-left: 3px; }
    .nf-input-container.checkbox input:checked + label .box:after, .nf-input-container.radio input:checked + label .box:after {
      width: 100%;
      height: 100%; }
  .nf-input-container.checkbox label, .nf-input-container.radio label {
    padding-left: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    .nf-input-container.checkbox label .box, .nf-input-container.radio label .box {
      width: 1.2rem;
      min-width: 1.2rem;
      height: 1.2rem;
      border: 1px solid #1f1f1f;
      display: inline-block;
      position: relative;
      margin-right: 10px; }
      .nf-input-container.checkbox label .box:after, .nf-input-container.radio label .box:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 0;
        height: 0;
        background-color: #d59f44;
        -webkit-transition-property: width, height;
        -o-transition-property: width, height;
        transition-property: width, height;
        -webkit-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
        -webkit-transition-duration: .1s;
        -o-transition-duration: .1s;
        transition-duration: .1s; }
    .nf-input-container.checkbox label .dot, .nf-input-container.radio label .dot {
      display: none; }
  .nf-input-container.radio label .box {
    -webkit-border-radius: 50%;
    border-radius: 50%; }
    .nf-input-container.radio label .box:after {
      -webkit-border-radius: 50%;
      border-radius: 50%; }
  .nf-input-container.required label .dot {
    display: inline;
    color: #d59f44; }

.logo-popup-showed #logo-popup {
  display: block; }

.logo-download-links-container * {
  color: #333 !important; }

.slider-container {
  position: relative; }
  .slider-container .brand-slider-partners {
    height: 164px; }
    .slider-container .brand-slider-partners #brands-slider:not(.no-transition) {
      -webkit-transition: left 0.3s;
      -o-transition: left 0.3s;
      transition: left 0.3s; }
    .slider-container .brand-slider-partners ul {
      margin-left: 0 !important;
      padding-left: 0 !important; }
  .slider-container .navi {
    z-index: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    height: 50px;
    width: 50px;
    display: block;
    cursor: pointer; }
    .slider-container .navi svg {
      opacity: 0.8;
      width: 14px;
      height: 100%;
      display: inline-block;
      text-align: center;
      color: #fd241d;
      fill: #fd241d; }
    .slider-container .navi.navi-left {
      left: 0; }
    .slider-container .navi.navi-right {
      text-align: right;
      right: 0; }
    .slider-container .navi:focus svg, .slider-container .navi:hover svg {
      opacity: 1; }

#reasons-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  padding: 0 8px; }
  .reasons-popup-showed #reasons-popup {
    display: block; }
  #reasons-popup .title {
    padding: 12px 0;
    background-color: #E97B31;
    color: #000;
    text-transform: uppercase; }
  #reasons-popup .content {
    -webkit-box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.5);
    background-color: #fff; }
  #reasons-popup .close {
    position: absolute;
    right: 20px;
    top: 12px;
    color: #000; }
    #reasons-popup .close::before {
      font-size: 2em;
      content: "×";
      display: block; }

@media print {
  .before-footer,
  .cookie-info-container,
  .container.navigation,
  .print-ico,
  footer.main-footer,
  header.main {
    display: none !important; } }

@media print {
  a[href]::after {
    content: none !important; } }

@media print {
  .page-break {
    page-break-before: always; } }

@media print and (orientation: portrait) {
  @page {
    size: A4 portrait; }
  html, body {
    width: 210mm;
    height: 297mm; } }

.navbar-toggle {
  margin-right: 0;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: right 0.6s;
  -o-transition: right 0.6s;
  transition: right 0.6s; }
  .navbar-toggle .icon-bar {
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    background-color: #000; }
    .color-version-dark-yellow .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-toggle.transition-off {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; }

.menu-container {
  position: relative; }

.single-news_item #main-content .description {
  margin-bottom: 3rem; }

.related-articles-container {
  margin-bottom: 1rem; }
  .related-articles-container .title {
    text-transform: uppercase;
    letter-spacing: 0.075em;
    opacity: 0.8;
    font-weight: 700;
    margin-bottom: 1.2rem; }
  .related-articles-container ul {
    list-style-type: none; }
    .related-articles-container ul .tile-lead h2 {
      text-transform: none !important;
      margin-bottom: 0 !important; }

body.cookie-info-show .cookie-info-container {
  display: block; }

.cookie-info-container {
  background-color: #222;
  bottom: 0;
  color: #fff;
  display: none;
  letter-spacing: .02em;
  position: fixed;
  width: 100%;
  z-index: 1000; }
  .cookie-info-container .container {
    padding: 30px 65px 30px 15px;
    position: relative; }
    @media (min-width: 769px) {
      .cookie-info-container .container {
        padding: 40px 95px; } }
    .cookie-info-container .container .cookie-info {
      font-size: .9rem;
      text-align: center; }
    .cookie-info-container .container a {
      color: #fff;
      -webkit-transition: opacity .3s;
      -o-transition: opacity .3s;
      transition: opacity .3s; }
      .cookie-info-container .container a:focus, .cookie-info-container .container a:hover {
        opacity: .5; }
    .cookie-info-container .container svg {
      fill: currentColor; }
    .cookie-info-container .container .cookie-icon,
    .cookie-info-container .container .cookie-x-mark {
      height: -webkit-calc(100% - 80px);
      height: calc(100% - 80px);
      position: absolute;
      width: 80px; }
      .cookie-info-container .container .cookie-icon svg,
      .cookie-info-container .container .cookie-x-mark svg {
        height: 100%;
        width: 100%; }
    .cookie-info-container .container .cookie-icon {
      color: #ab8341;
      left: 0; }
      .cookie-info-container .container .cookie-icon svg {
        max-height: 60px; }
      @media (max-width: 768px) {
        .cookie-info-container .container .cookie-icon {
          display: none; } }
    .cookie-info-container .container .cookie-x-mark {
      right: 0; }
      .cookie-info-container .container .cookie-x-mark .cookie-close {
        display: block;
        position: relative; }
        @media (min-width: 769px) {
          .cookie-info-container .container .cookie-x-mark .cookie-close {
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%); } }
        .cookie-info-container .container .cookie-x-mark .cookie-close svg {
          max-height: 20px; }
  .cookie-info-container img:hover {
    opacity: .5; }

body.page-template-tpl-grants-list p {
  padding-left: 10px; }

body.page-template-tpl-grants-list .press-materials-list a {
  color: #1f1f1f;
  display: block;
  padding: 10px 10px 15px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none; }
  body.page-template-tpl-grants-list .press-materials-list a span {
    -webkit-transition: -webkit-background-size .5s ease-in-out;
    transition: -webkit-background-size .5s ease-in-out;
    -o-transition: background-size .5s ease-in-out;
    transition: background-size .5s ease-in-out;
    transition: background-size .5s ease-in-out, -webkit-background-size .5s ease-in-out;
    background-repeat: no-repeat;
    -webkit-background-size: 0 1px;
    background-size: 0 1px;
    background-position: 0 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fd241d), to(#fd241d));
    background-image: -webkit-linear-gradient(top, #fd241d 0, #fd241d 100%);
    background-image: -o-linear-gradient(top, #fd241d 0, #fd241d 100%);
    background-image: linear-gradient(to bottom, #fd241d 0, #fd241d 100%); }
  body.page-template-tpl-grants-list .press-materials-list a:hover span {
    -webkit-background-size: 100% 1px;
    background-size: 100% 1px; }

#main-content .tile-group-container .tile-group-name {
  margin-bottom: 1.2rem;
  opacity: 0.8; }

#main-content .tile-group-container .tile-list {
  margin-bottom: -30px; }
  #main-content .tile-group-container .tile-list .article-tile {
    margin-bottom: 30px; }
    #main-content .tile-group-container .tile-list .article-tile a {
      color: #fff;
      padding-top: 100%;
      position: relative;
      display: block; }
      #main-content .tile-group-container .tile-list .article-tile a .thumb {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-position: center;
        -webkit-background-size: cover;
        background-size: cover; }
      #main-content .tile-group-container .tile-list .article-tile a .title {
        margin: 0 !important;
        text-align: center;
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        padding: 0 17%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%); }

#main-content .tile-group-container .collapse .tile-list {
  margin-bottom: 0; }

#main-content .more-tile-group-container {
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: -30px; }
  #main-content .more-tile-group-container a {
    color: #777;
    cursor: pointer;
    text-transform: uppercase; }

#main-content .tile-group-container .tile-list .article-tile a:focus .thumb::after, #main-content .tile-group-container .tile-list .article-tile a:hover .thumb::after {
  background-color: transparent; }

#main-content .tile-group-container .tile-list .article-tile a:focus .title, #main-content .tile-group-container .tile-list .article-tile a:hover .title {
  background-color: rgba(0, 0, 0, 0.5); }

#main-content .tile-group-container-1 .tile-list .article-tile a .title::before, #main-content .tile-group-container-1 .tile-list .article-tile a .title::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  display: block;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #d59f44; }

#main-content .tile-group-container-1 .tile-list .article-tile a .title::before {
  top: -1.8rem; }

#main-content .tile-group-container-1 .tile-list .article-tile a .title::after {
  bottom: -1.8rem; }

#main-content .tile-group-container-2 .tile-list .article-tile .title::before, #main-content .tile-group-container-2 .tile-list .article-tile .title::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 30%;
  margin-left: -15%;
  display: block;
  border-top: 2px solid #fd241d; }

#main-content .tile-group-container-2 .tile-list .article-tile .title::before {
  top: -1.8rem; }

#main-content .tile-group-container-2 .tile-list .article-tile .title::after {
  bottom: -1.8rem; }

#main-content .tile-group-container-2 h2 {
  padding-top: 2rem; }

.is-IE {
  /*.page-template-tpl-add-event #logo-form form .checkbox-list-container input[type="checkbox"]:checked + label::after,
    .page-template-tpl-logo #logo-form form .checkbox-list-container input[type="checkbox"]:checked + label::after {
        background-image: url('../../images/alter/tick.png');
    }

    .page-template-tpl-add-event #logo-form form .checkbox-list-container label::after,
    .page-template-tpl-logo #logo-form form .checkbox-list-container label::after {

        background-repeat: no-repeat;
        background-position: center;
    }*/ }
  .is-IE .header-menu-container .logo {
    background: transparent url("../../images/alter/n_logo_1.png") no-repeat center center;
    -webkit-background-size: contain;
    background-size: contain; }
    .is-IE .header-menu-container .logo svg {
      display: none !important; }
  .is-IE .tile-lead .promoted:before {
    background: transparent url("../../images/alter/flower.png") no-repeat center center;
    width: 52px;
    height: 52px;
    display: block;
    content: "";
    top: -10px;
    left: 8px;
    position: absolute;
    z-index: 2; }
  .is-IE .tile-lead .promoted svg {
    display: none; }
  .is-IE .article-info-box .print-ico {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    display: inline-block;
    vertical-align: middle; }
    .is-IE .article-info-box .print-ico:before {
      background: transparent url("../../images/alter/print.png") no-repeat center center;
      -webkit-background-size: 100% auto;
      background-size: 100% auto;
      content: "";
      top: 0;
      left: 0;
      opacity: 0.6;
      display: block;
      position: absolute;
      z-index: 0;
      width: 1.6rem;
      height: 1.6rem; }
    .is-IE .article-info-box .print-ico:hover:before {
      opacity: 1; }
    .is-IE .article-info-box .print-ico svg {
      display: none !important; }
  .is-IE #before-footer .return-link:before {
    background: transparent url("../../images/alter/arrow-red-left-small.png") no-repeat center center;
    height: 1rem;
    width: 1.8rem;
    display: block;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0; }
  .is-IE #before-footer .return-link svg {
    display: none !important; }
  .is-IE .main-footer .logo-container .logo {
    width: 293px;
    height: 58px;
    background: transparent url("../../images/alter/n_logo_2.png") no-repeat center center; }
    .is-IE .main-footer .logo-container .logo svg {
      display: none !important; }
  .is-IE .main-footer .logo-container .logo-mkidn {
    background: transparent url("../../images/alter/mkidn.png") no-repeat left 30px; }
    .is-IE .main-footer .logo-container .logo-mkidn svg {
      display: none !important; }
  .is-IE .sticky-links svg {
    display: none !important; }
  .is-IE .sticky-links .facebook,
  .is-IE .sticky-links .instagram,
  .is-IE .sticky-links .newsletter,
  .is-IE .sticky-links .twitter {
    background-color: #d59f44; }
    .is-IE .sticky-links .facebook:hover,
    .is-IE .sticky-links .instagram:hover,
    .is-IE .sticky-links .newsletter:hover,
    .is-IE .sticky-links .twitter:hover {
      background-color: #fd241d; }
  .is-IE .sticky-links .facebook a {
    background: transparent url("../../images/alter/fb.png") no-repeat center center; }
  .is-IE .sticky-links .twitter a {
    background: transparent url("../../images/alter/twitter.png") no-repeat center center; }
  .is-IE .sticky-links .instagram a {
    background: transparent url("../../images/alter/instagram.png") no-repeat center center; }
  .is-IE .sticky-links .newsletter a {
    background: transparent url("../../images/alter/newsletter.png") no-repeat center center; }
  .is-IE .slider-container .navi svg {
    display: none !important; }
  .is-IE .slider-container .navi.navi-left {
    background: transparent url("../../images/alter/arrow-red-single-left-big.png") no-repeat left center; }
  .is-IE .slider-container .navi.navi-right {
    background: transparent url("../../images/alter/arrow-red-single-right-big.png") no-repeat right center; }
  .is-IE .donation-list svg {
    display: none !important; }
  .is-IE .donation-list a {
    padding-top: 55px;
    background: transparent url("../../images/alter/dotacje_flaga.png") no-repeat center 10px; }
  .is-IE.home .static-pages-container ul li {
    -webkit-background-size: auto 120px;
    background-size: auto 120px; }
    .is-IE.home .static-pages-container ul li a {
      padding-top: 180px; }
      .is-IE.home .static-pages-container ul li a svg {
        display: none !important; }
    .is-IE.home .static-pages-container ul li:nth-child(1) {
      background: transparent url("../../images/alter/n_obchody_1.png") no-repeat center 10px; }
    .is-IE.home .static-pages-container ul li:nth-child(2) {
      background: transparent url("../../images/alter/n_obchody_2.png") no-repeat center 10px; }
    .is-IE.home .static-pages-container ul li:nth-child(3) {
      background: transparent url("../../images/alter/n_obchody_3.png") no-repeat center 10px; }
  .is-IE .cookie-info-container .container .cookie-icon {
    background: transparent url("../../images/alter/cookies.png") no-repeat center 0;
    -webkit-background-size: contain;
    background-size: contain; }
    .is-IE .cookie-info-container .container .cookie-icon svg {
      display: none; }
  .is-IE .cookie-info-container .container .cookie-x-mark .ico {
    width: 25px;
    height: 25px;
    display: block;
    background-color: #222222 !important;
    border: 5px solid #222222;
    background: transparent url("../../images/alter/x-white-big.png") no-repeat center 0;
    -webkit-background-size: contain;
    background-size: contain; }
  .is-IE .cookie-info-container .container .cookie-x-mark .cookie-close {
    height: 20px; }
    .is-IE .cookie-info-container .container .cookie-x-mark .cookie-close svg {
      display: none; }
  .is-IE .scroll-top-container #scroll-top {
    padding-top: 20px;
    background: transparent url("../../images/alter/arrow-single-up-big.png") no-repeat center 0; }
    .is-IE .scroll-top-container #scroll-top svg {
      display: none !important; }
  .is-IE #logo-form .file-loader .add-file {
    background-image: url("../../images/alter/form-add.png");
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat; }
    .is-IE #logo-form .file-loader .add-file svg {
      display: none !important; }
  .is-IE #logo-form .file-loader .clear-file {
    background-image: url("../../images/alter/form-delete.png");
    cursor: pointer;
    background-repeat: no-repeat;
    background-color: transparent !important; }
    .is-IE #logo-form .file-loader .clear-file svg {
      display: none !important; }
  .is-IE #logo-form .file-loader .visible-label svg {
    display: none; }
  .is-IE #logo-form .file-loader .visible-label .ico {
    height: 30px;
    left: -35px;
    padding: 4px 5px;
    position: absolute;
    display: block;
    top: 0;
    background-image: url("../../images/alter/attach.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 35px; }
  .is-IE .events-search-modules-container .query-container .loop.send {
    background-image: url("../../images/alter/search-loop-small.png");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: auto 20px;
    background-size: auto 20px; }
    .is-IE .events-search-modules-container .query-container .loop.send svg {
      display: none; }
  .is-IE.home #main-content .selected-events .events-label a:after {
    content: "";
    width: 25px;
    height: 1em;
    background: transparent url("../../images/alter/arrow-black-right-small.png") no-repeat right 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-background-size: contain;
    background-size: contain;
    opacity: 0.6; }
  .is-IE.home #main-content .selected-events .events-label svg {
    display: none; }
  .is-IE.page-template-tpl-search-events .add-event a {
    background: transparent url("../../images/alter/dodaj_wydarzenie.png") no-repeat right 0;
    -webkit-background-size: contain;
    background-size: contain; }
    .is-IE.page-template-tpl-search-events .add-event a svg {
      display: none; }
  .is-IE .query-container span.icon-chevron {
    background: transparent url("../../images/alter/arrow-single-up-big-2.png") no-repeat center; }
    .is-IE .query-container span.icon-chevron svg {
      display: none; }
  .is-IE #promoted-material-container #skip-intro .control-pause:after,
  .is-IE #promoted-material-container #skip-intro .control-play:after {
    content: "";
    background: transparent url("../../images/alter/arrow-single-up-down.png") no-repeat center 3px;
    display: block;
    width: 100%;
    height: 25px; }
  .is-IE #promoted-material-container #skip-intro .control-pause svg,
  .is-IE #promoted-material-container #skip-intro .control-play svg {
    display: none; }
  .is-IE #main-content .static-pages-container ul li.dynamic-page-link a {
    padding-top: 0; }
  .is-IE #main-content .static-pages-container ul li a .arrow {
    padding-bottom: 30px; }
    .is-IE #main-content .static-pages-container ul li a .arrow:after {
      background: transparent url("../../images/alter/arrow-red-right-small.png") no-repeat center 0;
      content: "";
      display: block;
      width: 100%;
      height: 15px; }
    .is-IE #main-content .static-pages-container ul li a .arrow svg {
      display: none; }

.is-IE.color-version-dark-yellow .header-menu-container .logo {
  background-image: url("../../images/alter/n_logo_2.png"); }

.message_success,
.message_error {
  width: 100%;
  padding: 1rem;
  color: red;
  display: block;
  text-align: center; }

.message_success {
  color: green; }

.form_subscribe .form_subscribe_button {
  height: auto !important; }

.posts-calendar {
  display: table;
  width: 100%; }
  .posts-calendar .c-header,
  .posts-calendar .c-days-row {
    display: table-row; }
    .posts-calendar .c-header span,
    .posts-calendar .c-days-row span {
      width: 14.2%;
      text-align: center;
      display: table-cell;
      border: 1px solid #dcb26b;
      padding: 0.5em 0; }
      .posts-calendar .c-header span.next-month, .posts-calendar .c-header span.previous-month,
      .posts-calendar .c-days-row span.next-month,
      .posts-calendar .c-days-row span.previous-month {
        opacity: 0; }
      .posts-calendar .c-header span.current-month,
      .posts-calendar .c-days-row span.current-month {
        background-color: #c69032;
        cursor: pointer; }
        .posts-calendar .c-header span.current-month:not(.past):hover,
        .posts-calendar .c-days-row span.current-month:not(.past):hover {
          background-color: #b3822d; }
      .posts-calendar .c-header span.past,
      .posts-calendar .c-days-row span.past {
        background-color: #d5a759;
        cursor: default; }
      .posts-calendar .c-header span.selected:not(.past),
      .posts-calendar .c-days-row span.selected:not(.past) {
        background-color: #fc3e30; }
        .posts-calendar .c-header span.selected:not(.past):hover,
        .posts-calendar .c-days-row span.selected:not(.past):hover {
          background-color: #eb1303; }
  .posts-calendar .c-header span {
    border-color: transparent; }

.new-calendar .posts-calendar .c-header span,
.new-calendar .posts-calendar .c-days-row span {
  border: 0; }
  .new-calendar .posts-calendar .c-header span.next-month, .new-calendar .posts-calendar .c-header span.previous-month,
  .new-calendar .posts-calendar .c-days-row span.next-month,
  .new-calendar .posts-calendar .c-days-row span.previous-month {
    opacity: 1;
    color: #666; }
  .new-calendar .posts-calendar .c-header span.current-month,
  .new-calendar .posts-calendar .c-days-row span.current-month {
    background-color: transparent; }
    .new-calendar .posts-calendar .c-header span.current-month:not(.past):hover,
    .new-calendar .posts-calendar .c-days-row span.current-month:not(.past):hover {
      background-color: #666; }
  .new-calendar .posts-calendar .c-header span.past,
  .new-calendar .posts-calendar .c-days-row span.past {
    background-color: transparent;
    color: #666; }
  .new-calendar .posts-calendar .c-header span.selected:not(.past),
  .new-calendar .posts-calendar .c-days-row span.selected:not(.past) {
    background-color: #fff;
    color: #000; }
    .new-calendar .posts-calendar .c-header span.selected:not(.past):hover,
    .new-calendar .posts-calendar .c-days-row span.selected:not(.past):hover {
      background-color: #e0e0e0; }

.events-search-modules-container {
  background-color: #dcb26b;
  margin-bottom: 2rem;
  color: #735b34;
  letter-spacing: 0.05em; }
  .events-search-modules-container .query-container {
    margin-bottom: 0; }
  .events-search-modules-container #modules-group-sidebar .modules-group-navi {
    -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    background-color: #dcb26b; }
    .events-search-modules-container #modules-group-sidebar .modules-group-navi li {
      display: inline-block; }
      .events-search-modules-container #modules-group-sidebar .modules-group-navi li a {
        padding: 10px;
        opacity: 0.5;
        display: block; }
        .events-search-modules-container #modules-group-sidebar .modules-group-navi li a svg {
          width: 1rem;
          height: 1rem; }
        .events-search-modules-container #modules-group-sidebar .modules-group-navi li a.active {
          opacity: 1; }
        .events-search-modules-container #modules-group-sidebar .modules-group-navi li a:focus {
          color: #000; }
  .events-search-modules-container #modules-group-sidebar #collapse-calendar.selector-group .calendar-container {
    top: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  .events-search-modules-container #modules-group-sidebar .scope-select-list {
    text-align: center; }
  .events-search-modules-container #modules-group-sidebar .map-container {
    padding-top: 114%; }
  .events-search-modules-container #modules-group-sidebar .categories-container legend {
    color: #735b34; }
  .events-search-modules-container #modules-group-sidebar .categories-container .categories-list-container {
    overflow: auto;
    max-height: -webkit-calc(100% - 3rem);
    max-height: calc(100% - 3rem);
    margin-top: 1.5rem;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center; }
    .events-search-modules-container #modules-group-sidebar .categories-container .categories-list-container label {
      max-width: 25ch;
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      text-align: center;
      -webkit-border-radius: 2rem;
      border-radius: 2rem; }
  .events-search-modules-container .padding {
    padding: 15px; }
  .events-search-modules-container .city-field-container {
    position: relative;
    padding: 10px;
    height: 2.5rem; }
    .events-search-modules-container .city-field-container input {
      position: absolute;
      right: 0;
      top: 0;
      width: -webkit-calc(100% - 5rem) !important;
      width: calc(100% - 5rem) !important; }
    .events-search-modules-container .city-field-container .label {
      font-size: 0.7rem;
      line-height: 1.4rem;
      padding: 0;
      text-transform: uppercase;
      width: 3rem;
      top: 0;
      right: -webkit-calc(100% - 5rem) !important;
      right: calc(100% - 5rem) !important; }

.calendar-container {
  padding: 0 35px 10px;
  text-transform: uppercase;
  font-weight: 700; }
  .calendar-container .navigation {
    position: relative;
    text-align: center; }
    .calendar-container .navigation .current-month-name {
      font-size: 0.9rem; }
    .calendar-container .navigation button {
      border: none;
      background-color: transparent; }
      .calendar-container .navigation button svg {
        fill: currentColor;
        width: 0.8rem;
        height: 0.8rem; }
      .calendar-container .navigation button:focus {
        border: 1px dotted #000; }
    .calendar-container .navigation .previous-month {
      position: absolute;
      top: 0;
      left: 0; }
    .calendar-container .navigation .next-month {
      position: absolute;
      top: 0;
      right: 0; }
  .calendar-container #posts-calendar .c-header {
    font-size: 0.6rem; }
  .calendar-container .selected-dates {
    margin: 3rem -10px  -10px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: right;
    letter-spacing: 0; }
    .calendar-container .selected-dates .label {
      font-size: 0.8rem; }
    .calendar-container .selected-dates input {
      font-size: 0.9rem;
      text-transform: uppercase;
      border: 0 none;
      width: 3ch !important;
      background-color: #d5a759;
      color: #000;
      display: inline-block;
      width: 2em;
      text-align: center;
      cursor: default; }
      .calendar-container .selected-dates input.y {
        width: 5ch !important; }
    .calendar-container .selected-dates .first-row {
      margin-bottom: 0.5rem;
      display: inline-block; }
    .calendar-container .selected-dates .second-row {
      display: inline-block; }
  .calendar-container input[type="number"]::-webkit-outer-spin-button,
  .calendar-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .calendar-container input[type="number"] {
    -moz-appearance: textfield; }
  .calendar-container.new-calendar .navigation {
    color: #fff; }
  .calendar-container.new-calendar #posts-calendar .c-header {
    color: #999; }
  .calendar-container.new-calendar #posts-calendar .c-days-row {
    color: #fff; }
  .calendar-container.new-calendar .selected-dates {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .calendar-container.new-calendar .selected-dates span.label {
      color: #fff; }
    .calendar-container.new-calendar .selected-dates .date-holder {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
      .calendar-container.new-calendar .selected-dates .date-holder input, .calendar-container.new-calendar .selected-dates .date-holder .date-divider {
        background-color: #fff;
        color: #999; }
      .calendar-container.new-calendar .selected-dates .date-holder > * {
        display: block; }

form.events-search #city,
form.events-search #query {
  background-color: #dcb26b;
  border: none;
  font-family: 'Brygada', serif;
  letter-spacing: .001em;
  text-transform: uppercase;
  padding: 10px;
  height: 2.5rem;
  width: -webkit-calc(100% - 2.5rem);
  width: calc(100% - 2.5rem);
  font-size: 1rem; }
  form.events-search #city::-webkit-input-placeholder,
  form.events-search #query::-webkit-input-placeholder {
    color: #9d7c47; }
  form.events-search #city:-moz-placeholder,
  form.events-search #query:-moz-placeholder {
    color: #9d7c47; }
  form.events-search #city::-moz-placeholder,
  form.events-search #query::-moz-placeholder {
    color: #9d7c47; }
  form.events-search #city:-ms-input-placeholder,
  form.events-search #query:-ms-input-placeholder {
    color: #9d7c47; }

form.events-search .loop {
  color: inherit; }
  form.events-search .loop.send {
    width: 2.5rem;
    height: 2.5rem;
    float: right;
    margin-top: 0;
    line-height: 2.5rem; }
    form.events-search .loop.send svg {
      width: 1.2rem;
      height: 1.2rem;
      fill: currentColor; }

form.events-search .label {
  color: #735b34; }

form.events-search .send {
  text-align: center;
  color: #fff;
  background-color: #c69032;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  padding: 5px;
  cursor: pointer;
  border: 0 none;
  width: 100%;
  position: relative; }
  form.events-search .send:hover, form.events-search .send:focus {
    text-transform: underline; }
    form.events-search .send:hover:after, form.events-search .send:focus:after {
      content: "";
      border: 1px dotted #fff;
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }

.home .events-container {
  position: relative;
  overflow: hidden; }
  .home .events-container > .container, .home .events-container > .container > .first-col, .home .events-container > .container > .row, .home .events-container > .container > .row > .first-col {
    height: 100%; }
    .home .events-container > .container .selected-events, .home .events-container > .container > .first-col .selected-events, .home .events-container > .container > .row .selected-events, .home .events-container > .container > .row > .first-col .selected-events {
      height: 100%;
      overflow-y: auto; }
  .home .events-container .nano {
    position: relative;
    display: block;
    min-height: 300px;
    max-width: 360px;
    overflow: hidden;
    z-index: 2;
    float: left;
    background-color: #fff; }

  .home .events-container .events-is-anthem-modules {
      background-color: rgba(66, 66, 66, 0.85)!important;
      color: white;
      padding: 10px 10px 10px 10px;
      width: 300px!important;
  }
    .home .events-container .events-is-anthem-modules .toggle-event-type{
      display: -webkit-inline-box;
    }
    .home .events-container .events-is-anthem-modules  .toggle-event-type.anthem-events:hover,
    .home .events-container .events-is-anthem-modules  .toggle-event-type.anthem-events.active {
      border-color: #b08a4c;
      border-style: solid;
      border-width: thin;
    }
    .home .events-container .events-is-anthem-modules .toggle-event-type.all-events:hover,
    .home .events-container .events-is-anthem-modules .toggle-event-type.all-events.active{
      border-color: #fd241d;
      border-style: solid;
      border-width: thin;
    }
  .home .events-container #map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }




.home .events-container .events-search-modules-container {
  background: none;
  position: relative;
  z-index: 2;
  float: right;
  width: 235px;
  margin-top: 30px; }

#events-search-form .query-container {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ac976c;
  margin: 0; }
#events-search-form .query-container button {
  height: 30px;
  width: 30px;
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ac976c; }
#events-search-form .query-container button svg {
  fill: #fff;
  width: 78%;
  height: 78%; }
#events-search-form .query-container input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 30px;
  border: none;
  padding: 0 5px;
  text-transform: uppercase; }

body.page-template-tpl-search-events .pac-container {
  width: 380px !important;
  -webkit-transform: translateX(-42px);
  -ms-transform: translateX(-42px);
  transform: translateX(-42px);
  background-color: rgba(66, 66, 66, 0.97);
  border-bottom: 2px solid #dbdbdb; }
  body.page-template-tpl-search-events .pac-container .pac-item {
    color: #dbdbdb; }
    body.page-template-tpl-search-events .pac-container .pac-item .pac-item-query {
      color: #fff; }
    body.page-template-tpl-search-events .pac-container .pac-item:hover, body.page-template-tpl-search-events .pac-container .pac-item.pac-item-selected {
      background-color: #666; }

body.page-template-tpl-search-events main {
  min-height: 640px; }

body.page-template-tpl-search-events .side-panel {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  height: 100%; }

body.page-template-tpl-search-events .nano {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
  height: 100%;
  width: 380px;
  left: 10vw;
  z-index: 10;
  position: absolute;
  background-color: rgba(66, 66, 66, 0.85); }

body.page-template-tpl-search-events .search-panel {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 20px; }

body.page-template-tpl-search-events form.events-search, body.page-template-tpl-search-events #accordion-side-panel {
  padding: 0 15px; }

body.page-template-tpl-search-events form.events-search {
  background-color: #1f1f1f; }
  body.page-template-tpl-search-events form.events-search .form-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative; }
    body.page-template-tpl-search-events form.events-search .form-item:not(:last-of-type) {
      border-bottom: 2px solid #999; }
    body.page-template-tpl-search-events form.events-search .form-item .form-icon {
      height: 1rem;
      width: 1rem;
      color: #fff; }
      body.page-template-tpl-search-events form.events-search .form-item .form-icon svg {
        fill: currentColor;
        width: 100%;
        height: 100%; }
      body.page-template-tpl-search-events form.events-search .form-item .form-icon.geo-icon {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 2rem;
        height: 2rem;
        margin: auto; }
    body.page-template-tpl-search-events form.events-search .form-item #city,
    body.page-template-tpl-search-events form.events-search .form-item #query {
      outline: none;
      background-color: transparent;
      padding: 0;
      width: -webkit-calc(100% - 1.7rem);
      width: calc(100% - 1.7rem);
      margin-left: .7rem;
      color: #fff;
      font-family: inherit;
      font-weight: bold; }
      body.page-template-tpl-search-events form.events-search .form-item #city::-webkit-input-placeholder,
      body.page-template-tpl-search-events form.events-search .form-item #query::-webkit-input-placeholder {
        color: #999; }
      body.page-template-tpl-search-events form.events-search .form-item #city:-moz-placeholder,
      body.page-template-tpl-search-events form.events-search .form-item #query:-moz-placeholder {
        color: #999; }
      body.page-template-tpl-search-events form.events-search .form-item #city::-moz-placeholder,
      body.page-template-tpl-search-events form.events-search .form-item #query::-moz-placeholder {
        color: #999; }
      body.page-template-tpl-search-events form.events-search .form-item #city:-ms-input-placeholder,
      body.page-template-tpl-search-events form.events-search .form-item #query:-ms-input-placeholder {
        color: #999; }

body.page-template-tpl-search-events #accordion-side-panel .accordion-item:not(:first-of-type) {
  border-top: 1px solid #999; }
  body.page-template-tpl-search-events #accordion-side-panel .accordion-item:not(:first-of-type).active .accordion-header {
    border-top-width: 0; }

body.page-template-tpl-search-events #accordion-side-panel .accordion-item .arrow-right {
  display: inline-block;
  margin-left: 4px;
  -webkit-transition: border-color .1s ease-in-out, -webkit-transform .1s ease-in-out;
  transition: border-color .1s ease-in-out, -webkit-transform .1s ease-in-out;
  -o-transition: transform .1s ease-in-out, border-color .1s ease-in-out;
  transition: transform .1s ease-in-out, border-color .1s ease-in-out;
  transition: transform .1s ease-in-out, border-color .1s ease-in-out, -webkit-transform .1s ease-in-out;
  width: 0;
  height: 0;
  border-top: .24rem solid transparent;
  border-bottom: .24rem solid transparent;
  border-left: 0.57rem solid #999; }

body.page-template-tpl-search-events #accordion-side-panel .accordion-item.active {
  border-top-width: 2px; }
  body.page-template-tpl-search-events #accordion-side-panel .accordion-item.active .accordion-header {
    color: #fff; }
  body.page-template-tpl-search-events #accordion-side-panel .accordion-item.active .arrow-right {
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotate(90deg);
    transform: rotateZ(90deg);
    border-left-color: #fff; }

body.page-template-tpl-search-events #accordion-side-panel .accordion-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0;
  color: #999;
  text-transform: uppercase;
  font-weight: bold;
  outline: none;
  text-decoration: none;
  -webkit-transition: color .1s ease-in-out;
  -o-transition: color .1s ease-in-out;
  transition: color .1s ease-in-out; }
  body.page-template-tpl-search-events #accordion-side-panel .accordion-header .text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  body.page-template-tpl-search-events #accordion-side-panel .accordion-header .icon {
    display: none;
    width: 2.5rem;
    height: 2.5rem; }
    body.page-template-tpl-search-events #accordion-side-panel .accordion-header .icon svg {
      fill: rgba(255, 255, 255, 0.5);
      height: 100%;
      width: 100%; }
  body.page-template-tpl-search-events #accordion-side-panel .accordion-header:hover {
    color: #dbdbdb; }
    body.page-template-tpl-search-events #accordion-side-panel .accordion-header:hover .arrow-right {
      border-left-color: #dbdbdb; }

body.page-template-tpl-search-events #accordion-side-panel .active .accordion-header {
  border-top-width: 0; }

body.page-template-tpl-search-events #accordion-side-panel .active .accordion-body {
  max-height: 100vh; }

body.page-template-tpl-search-events .accordion-body {
  display: none; }

body.page-template-tpl-search-events .send {
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: 0 15px;
  border-color: #dbdbdb;
  background-color: #1f1f1f;
  color: #dbdbdb;
  text-transform: uppercase;
  font-weight: bold;
  padding: 8px 0;
  -webkit-transition: background-color .1s ease-in-out, color .1s ease-in-out;
  -o-transition: background-color .1s ease-in-out, color .1s ease-in-out;
  transition: background-color .1s ease-in-out, color .1s ease-in-out;
  outline: none; }
  body.page-template-tpl-search-events .send:hover {
    border-color: #666;
    color: #fff; }

body.page-template-tpl-search-events .filter-container {
  position: relative;
  padding-top: -webkit-calc(107px + 1rem);
  padding-top: calc(107px + 1rem); }
  body.page-template-tpl-search-events .filter-container > .sticky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 10; }

body.page-template-tpl-search-events.logged-in.admin-bar .filter-container > .sticky.sticked {
  top: 32px; }

body.page-template-tpl-search-events #events-nav {
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1rem auto 0; }
  body.page-template-tpl-search-events #events-nav h2, body.page-template-tpl-search-events #events-nav h3, body.page-template-tpl-search-events #events-nav h4 {
    margin: 0;
    display: inline-block; }
  body.page-template-tpl-search-events #events-nav .filters {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    body.page-template-tpl-search-events #events-nav .filters.filters-hidden > * {
      display: none; }

body.page-template-tpl-search-events .add-event {
  color: #1f1f1f;
  text-transform: uppercase;
  position: relative;
  border: 1px solid #b08a4c;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0;
  text-decoration: none;
  background-color: #fff; }
  body.page-template-tpl-search-events .add-event h2, body.page-template-tpl-search-events .add-event h4 {
    margin: 0 auto;
    padding: 0 20px; }
  body.page-template-tpl-search-events .add-event .plus {
    display: inline-block;
    width: 47px;
    height: 100%;
    background-color: #b08a4c;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    body.page-template-tpl-search-events .add-event .plus svg {
      width: 50%;
      height: 50%; }
  body.page-template-tpl-search-events .add-event, body.page-template-tpl-search-events .add-event .plus {
    -webkit-transition: background-color .1s ease-in-out, color .1s ease-in-out;
    -o-transition: background-color .1s ease-in-out, color .1s ease-in-out;
    transition: background-color .1s ease-in-out, color .1s ease-in-out; }
  body.page-template-tpl-search-events .add-event:hover {
    background-color: #b08a4c;
    color: #fff; }
    body.page-template-tpl-search-events .add-event:hover .plus {
      background-color: #fff;
      color: #b08a4c; }

body.page-template-tpl-search-events #load-more-events {
  display: none !important;
  background-color: transparent;
  cursor: pointer;
  border: 0 none;
  text-transform: uppercase;
  width: 100%; }
  body.page-template-tpl-search-events #load-more-events.enabled {
    display: block !important; }

body.page-template-tpl-search-events .filters-info-container {
  font-size: 1.2rem;
  margin-top: -2px;
  margin-bottom: 2px; }
  body.page-template-tpl-search-events .filters-info-container .label {
    padding-left: 0;
    text-transform: uppercase; }
  body.page-template-tpl-search-events .filters-info-container .filter {
    margin: 0 0.2rem;
    background-color: #dbdbdb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    white-space: nowrap;
    display: inline-block;
    padding: 0.1em 0.7em 0.1em 1.7em;
    cursor: pointer;
    position: relative; }
    body.page-template-tpl-search-events .filters-info-container .filter:before {
      background: transparent url("../../images/icons/close-x.svg") no-repeat;
      -webkit-background-size: 55% 55%;
      background-size: 55%;
      background-position: center;
      width: 0.8rem;
      content: "";
      top: 0.3em;
      left: 0.4em;
      position: absolute;
      color: #fff;
      height: 0.8rem;
      line-height: 0.8rem;
      display: inline-block;
      margin-right: 0.3em;
      background-color: #666;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      text-align: center;
      font-weight: 400; }
    body.page-template-tpl-search-events .filters-info-container .filter[data-filter-type="clear"] {
      padding-left: .7rem; }
      body.page-template-tpl-search-events .filters-info-container .filter[data-filter-type="clear"]:before {
        display: none; }
    body.page-template-tpl-search-events .filters-info-container .filter:hover, body.page-template-tpl-search-events .filters-info-container .filter:focus {
      opacity: 0.8; }
      body.page-template-tpl-search-events .filters-info-container .filter:hover:before, body.page-template-tpl-search-events .filters-info-container .filter:focus:before {
        font-weight: 700; }

body.page-template-tpl-search-events .results-info {
  font-style: italic;
  opacity: 0.9;
  text-transform: lowercase; }
  body.page-template-tpl-search-events .results-info hr {
    margin-top: 10px;
    border-top: 3px solid #dbdbdb;
    margin-bottom: 0; }

body.page-template-tpl-search-events #event-results-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 13px; }
  body.page-template-tpl-search-events #event-results-container:before, body.page-template-tpl-search-events #event-results-container:after {
    display: none; }

.single-event .map-container {
  padding-top: 100%;
  width: 100%;
  position: relative; }
  .single-event .map-container #map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.home .events-container, .page-template-tpl-search-events .map-container,
.container .row .col-md-12 .map-container {
  width: 100%;
  height: 500px;
  max-height: 70vh;
  min-height: 200px;
  position: relative; }
  .home .events-container #map, .page-template-tpl-search-events .map-container #map,
  .container .row .col-md-12 .map-container #map{
    height: 100%; }

#main-content .localization-data span {
  color: #666;
  display: inline-block;
  font-size: .7rem;
  line-height: 1.8; }
  #main-content .localization-data span svg {
    height: 1em;
    width: 1em;
    bottom: -0.1em;
    margin-right: .2em;
    position: relative;
    fill: currentColor; }
  #main-content .localization-data span:not(:last-child) {
    margin-right: 1.5em; }

#main-content .categories {
  font-size: 0;
  margin-bottom: 0; }
  #main-content .categories li {
    background-color: #dbdbdb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #666;
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    margin-bottom: .5em;
    padding: .1em .7em;
    text-transform: uppercase; }
    #main-content .categories li:not(:last-child) {
      margin-right: .6em; }

#main-content .event-item {
  position: relative;
  margin-bottom: 2rem;
  -webkit-transition: background-color .1s ease-in-out;
  -o-transition: background-color .1s ease-in-out;
  transition: background-color .1s ease-in-out; }
  #main-content .event-item .localization-data {
    margin-top: .4rem; }
  #main-content .event-item .event-box {
    padding: 0 0 35px;
    position: relative;
    display: block;
    color: #000;
    height: 100%;
    -webkit-transition: background-color .1s ease-in-out;
    -o-transition: background-color .1s ease-in-out;
    transition: background-color .1s ease-in-out; }
    #main-content .event-item .event-box.geo-near {
      border-top: 1px solid red; }
    #main-content .event-item .event-box h2 {
      font-family: 'Brygada', serif;
      font-weight: 700;
      letter-spacing: .001em;
      padding: .7rem 0 0;
      margin: 0;
      text-transform: none !important; }
    #main-content .event-item .event-box .thumb {
      background-repeat: no-repeat;
      -webkit-background-size: cover;
      background-size: cover;
      background-position: center center;
      height: 240px;
      width: 100%; }
    #main-content .event-item .event-box .description .read-more {
      padding-top: .5rem; }
      #main-content .event-item .event-box .description .read-more p {
        color: #666;
        font-size: .8em;
        margin-bottom: 0;
        text-transform: uppercase; }
        #main-content .event-item .event-box .description .read-more p::after {
          background: transparent url("../../images/icons/arrow-link.svg") no-repeat;
          -webkit-background-size: cover;
          background-size: cover;
          bottom: -0.1em;
          content: '';
          display: inline-block;
          height: .6rem;
          margin-left: .5rem;
          position: relative;
          width: 1.2rem; }
    #main-content .event-item .event-box:after {
      content: '';
      position: absolute;
      bottom: 0px;
      height: 2px;
      background-color: #dbdbdb;
      width: 90%;
      left: 0;
      right: 0;
      margin: auto;
      -webkit-transition: background-color .1s ease-in-out, width .1s ease-in-out, left .1s ease-in-out, right .1s ease-in-out;
      -o-transition: background-color .1s ease-in-out, width .1s ease-in-out, left .1s ease-in-out, right .1s ease-in-out;
      transition: background-color .1s ease-in-out, width .1s ease-in-out, left .1s ease-in-out, right .1s ease-in-out; }
  #main-content .event-item .content, #main-content .event-item .categories, #main-content .event-item .localization-data {
    padding: 5px 5px 0; }
  #main-content .event-item .content h2 {
    text-decoration: none;
    margin: 0;
    padding: 0; }
  #main-content .event-item .content p {
    margin: 5px 0 0;
    font-size: .8rem;
    text-align: justify; }
  #main-content .event-item .readmore {
    position: absolute;
    bottom: 12px;
    text-transform: uppercase;
    font-size: .8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap; }
    #main-content .event-item .readmore:after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
      width: 25px;
      height: 13px;
      display: block;
      margin-left: 8px;
      position: static;
      right: auto;
      top: auto;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      display: inline-block;
      margin-left: 12px; }
  #main-content .event-item:focus, #main-content .event-item:hover {
    background-color: #f0f0f0; }
    #main-content .event-item:focus .event-box, #main-content .event-item:hover .event-box {
      background-color: #f0f0f0;
      color: #000;
      text-decoration: none; }
      #main-content .event-item:focus .event-box h2, #main-content .event-item:hover .event-box h2 {
        text-decoration: underline; }
      #main-content .event-item:focus .event-box:after, #main-content .event-item:hover .event-box:after {
        background-color: #fd241d;
        left: -15px;
        right: -15px;
        width: auto; }

#main-content .events-label {
  background-color: #ff5a44;
  height: 3.6em;
  padding: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  color: #fff; }

#main-content .event-list {
  padding-bottom: 1rem;
  margin-bottom: 0; }

.home #main-content .event-item {
  margin-bottom: 0; }
  .home #main-content .event-item .localization-data {
    padding: 0;
    margin-top: 0; }
  .home #main-content .event-item .event-box {
    padding: 0 1rem 1rem; }
    .home #main-content .event-item .event-box:after {
      background-color: #ff5a44; }

.scroll-top-container {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 99; }
  .scroll-top-container #scroll-top {
    position: absolute;
    right: 20px;
    bottom: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 0.68rem;
    line-height: 1rem;
    color: #999;
    font-weight: 700;
    text-decoration: none; }
    .scroll-top-container #scroll-top .icon {
      margin-bottom: 8px;
      background-color: #dbdbdb;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      opacity: 0.7; }
      .scroll-top-container #scroll-top .icon svg {
        fill: #999;
        width: 25px;
        height: 25px;
        display: block;
        margin: 0 auto; }
    .scroll-top-container #scroll-top:hover .icon svg {
      -webkit-animation: trf 1.1s ease-in infinite;
      animation: trf 1.1s ease-in infinite; }

@-webkit-keyframes trf {
  0% {
    -webkit-transform: translateY(35%);
    transform: translateY(35%); }
  100% {
    -webkit-transform: translateY(-35%);
    transform: translateY(-35%); } }

@keyframes trf {
  0% {
    -webkit-transform: translateY(35%);
    transform: translateY(35%); }
  100% {
    -webkit-transform: translateY(-35%);
    transform: translateY(-35%); } }

.modules-group-container .selector-group {
  display: none;
  padding-top: 114%;
  position: relative; }
  .modules-group-container .selector-group > * {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  .modules-group-container .selector-group .group-name {
    position: absolute;
    top: 0;
    text-align: center;
    font-size: 0.9rem !important;
    line-height: 1.6rem !important;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: 0.7rem !important;
    margin-bottom: 0.9rem !important; }
  .modules-group-container .selector-group.selector-group-active {
    display: block; }

.gm-style-pbc + div + div > div:last-child > div {
  pointer-events: none; }

.gm-style-pbc + div + div > div:last-child > div > div:first-child {
  display: none; }

@media screen and (min-width: 768px) {
  .gm-style-pbt {
    top: 91%;
    text-align: right;
    padding-right: 200px; } }

.gm-style-iw {
  background-color: #fff !important;
  border-bottom: 2px solid #f00;
  overflow: hidden; }
  .gm-style-iw + div {
    opacity: 0.7 !important; }
    .gm-style-iw + div:hover {
      opacity: 1 !important; }

.info-window-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .info-window-content a {
    color: #000;
    font-family: 'Brygada', serif;
    font-weight: 700;
    text-decoration: none; }
    .info-window-content a span.date {
      font-family: 'Open Sans', sans-serif;
      font-weight: normal;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      opacity: 0.5;
      font-size: 90%;
      text-decoration: none; }
      .info-window-content a span.date svg {
        width: .75rem;
        height: .75rem;
        margin-right: 5px; }
    .info-window-content a:hover span:not(.date) {
      text-decoration: underline; }

.geo-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity .1s ease-in-out, -webkit-transform .1s ease-in-out;
  transition: opacity .1s ease-in-out, -webkit-transform .1s ease-in-out;
  -o-transition: transform .1s ease-in-out, opacity .1s ease-in-out;
  transition: transform .1s ease-in-out, opacity .1s ease-in-out;
  transition: transform .1s ease-in-out, opacity .1s ease-in-out, -webkit-transform .1s ease-in-out; }
  .geo-icon svg {
    fill: #004;
    width: 100%;
    height: 100%;
    display: block; }
  .geo-icon:hover {
    opacity: 1;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); }

@media screen and (min-width: 992px) {
  .sticky-seed-parent {
    height: 100%;
    padding-top: 0px; }
    .sticky-seed-parent.sticky .sticky-seed {
      position: fixed; }
    .sticky-seed-parent.locked .sticky-seed {
      position: static; }
  .seed-top-correction {
    padding-top: 0px; } }

@media screen and (max-width: 991px) {
  .sticky-seed-parent {
    min-height: 1px !important;
    padding-top: 0 !important; } }

@media screen and (min-width: 1200px) {
  .sticky-me-container[data-sticky="on"] {
    position: fixed;
    left: 0;
    top: 0; } }

@media screen and (max-width: 1199px) {
  .sticky-me-container .sticky-glue-point .sticky-seed {
    margin-top: 0px !important; } }

.page-template-tpl-press-materials #main-content .material-image {
  display: block;
  text-align: center; }
  .page-template-tpl-press-materials #main-content .material-image p {
    text-transform: uppercase;
    font-size: 0.87rem;
    color: #7f7f7f; }
  .page-template-tpl-press-materials #main-content .material-image img {
    max-width: 100%; }

body.page-template-tpl-press-releases-archive ul.select-year {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'Brygada', serif;
  font-weight: 700;
  letter-spacing: .001em;
  margin: 3rem 0 4rem;
  text-align: center; }
  @media (min-width: 683px) {
    body.page-template-tpl-press-releases-archive ul.select-year {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }
  body.page-template-tpl-press-releases-archive ul.select-year li {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    width: 20%; }
  body.page-template-tpl-press-releases-archive ul.select-year a {
    color: #000; }
    body.page-template-tpl-press-releases-archive ul.select-year a.selected {
      color: #fd241d !important; }

body.page-template-tpl-press-releases-archive .press-materials-list {
  margin-bottom: 1rem; }
  body.page-template-tpl-press-releases-archive .press-materials-list .material {
    margin-bottom: .7rem; }
    body.page-template-tpl-press-releases-archive .press-materials-list .material a {
      color: #000; }
    body.page-template-tpl-press-releases-archive .press-materials-list .material span {
      font-weight: 700; }

body.page-template-tpl-press-materials .title-center-box, body.page-template-tpl-press-releases-archive .title-center-box, body.single-press_release .title-center-box {
  max-width: 95%; }

body.home #main-content .nano {
  padding-bottom: 0px;
  -webkit-box-shadow: 0px 4px 10px 0px #a0a0a0;
  box-shadow: 0px 4px 10px 0px #a0a0a0;
  margin-bottom: 120px; }

body.home #main-content .static-pages-container {
  padding-top: 1rem; }
  body.home #main-content .static-pages-container ul li {
    text-align: center;
    margin-bottom: 4rem; }
    body.home #main-content .static-pages-container ul li a {
      display: block;
      width: 80%;
      margin: 0 auto;
      text-decoration: none; }
      body.home #main-content .static-pages-container ul li a svg {
        color: #ab8341;
        display: block;
        margin-bottom: 2rem;
        width: 100%;
        height: 120px; }
      body.home #main-content .static-pages-container ul li a .claim {
        color: #000;
        min-height: 5em;
        display: block; }
      body.home #main-content .static-pages-container ul li a .arrow {
        color: #f00;
        display: block; }
        body.home #main-content .static-pages-container ul li a .arrow h3 {
          text-transform: uppercase;
          margin-top: 0;
          margin-bottom: 0.7rem;
          letter-spacing: 0.05rem;
          font-size: 0.9rem; }
        body.home #main-content .static-pages-container ul li a .arrow svg {
          width: 100%;
          height: 25px;
          color: inherit; }

body.home #main-content #about-niepodlegla-section {
  padding-bottom: 2rem; }

body.home .categories-container {
  padding: 0 35px 10px; }
  body.home .categories-container legend {
    margin-bottom: .5rem;
    margin-left: 0;
    color: #735b34; }
  body.home .categories-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #eed9b5 url("../../images/icons/chevron-down.svg") no-repeat right;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-weight: bold;
    height: 29px;
    letter-spacing: .04em;
    padding: 5px 29px 5px 7px;
    text-transform: uppercase;
    width: 100%; }

body.home .events-search-modules-container {
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3); }
  body.home .events-search-modules-container .advanced-options-container {
    display: none; }

body.home .event-box .thumb {
  display: none; }

body.home .event-box .promoted {
  display: none; }

body.error404 #main-content {
  padding-top: 4rem;
  text-align: center; }
  body.error404 #main-content .image {
    color: #b8965e;
    margin-bottom: 2.5rem; }
    body.error404 #main-content .image svg {
      height: 140px;
      width: 105px; }
  body.error404 #main-content h1 {
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase; }
  body.error404 #main-content p {
    margin-bottom: 3rem; }
  body.error404 #main-content .yellow-button {
    background-color: #ffCd7c;
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
    color: #886c3f;
    font-size: .8rem;
    font-weight: bold;
    letter-spacing: .05em;
    margin-bottom: 3rem;
    padding: .5em 1em;
    text-transform: uppercase; }

body.page-template-proto_tpl-search-results h1 {
  font-weight: bold;
  margin-bottom: 1.5rem;
  margin-top: 0;
  text-transform: uppercase;
  font-family: 'Brygada', serif;
  line-height: 2.9rem !important;
  letter-spacing: 0.001em; }

body.page-template-proto_tpl-search-results .main-icon svg {
  fill: currentColor;
  height: 57px;
  margin: 1rem auto 1rem;
  width: 60px; }

body.page-template-proto_tpl-search-results .search-results {
  padding-top: 1.5rem;
  text-align: left; }
  body.page-template-proto_tpl-search-results .search-results .types-filters {
    padding-bottom: 1.5rem; }
    body.page-template-proto_tpl-search-results .search-results .types-filters li {
      padding-left: .7rem;
      padding-right: .7rem; }
      body.page-template-proto_tpl-search-results .search-results .types-filters li a {
        color: #a57f3f;
        font-weight: bold; }
    @media (max-width: 991px) {
      body.page-template-proto_tpl-search-results .search-results .types-filters {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; }
        body.page-template-proto_tpl-search-results .search-results .types-filters li {
          padding: 3px 0; } }
  body.page-template-proto_tpl-search-results .search-results table {
    overflow-x: auto; }
    body.page-template-proto_tpl-search-results .search-results table.pre-events {
      margin-bottom: 0; }
    body.page-template-proto_tpl-search-results .search-results table thead th {
      color: #8d8d8d;
      text-transform: uppercase; }
    body.page-template-proto_tpl-search-results .search-results table .name {
      letter-spacing: 0.05em;
      color: #a57f3f; }
    body.page-template-proto_tpl-search-results .search-results table .link a {
      font-family: 'Brygada', serif;
      font-weight: bold;
      display: block;
      color: #000; }
  body.page-template-proto_tpl-search-results .search-results .summary {
    margin: 50px 0; }
    body.page-template-proto_tpl-search-results .search-results .summary a {
      color: #a57f3f; }

body.page-template-proto_tpl-search-results #event-results-container {
  border-top: 1px solid #dbdbdb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px; }
  body.page-template-proto_tpl-search-results #event-results-container, body.page-template-proto_tpl-search-results #event-results-container li {
    margin-bottom: 0 !important; }

@media screen and (max-width: 767px) {
  body.page-template-proto_tpl-search-results #event-results-container {
    display: block; }
  body.page-template-proto_tpl-search-results .search-results table .name {
    font-size: 12px; }
  body.page-template-proto_tpl-search-results .search-results table .link a {
    font-size: 12px;
    text-decoration: underline; } }

.partner-list-container {
  margin-top: 3rem; }
  .partner-list-container .partner-list li {
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s; }
    .partner-list-container .partner-list li a {
      position: relative;
      display: block;
      padding-top: 100%; }
      .partner-list-container .partner-list li a img {
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 100%;
        max-height: 100%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }

#logo-form .categories-container ul {
  padding: 0 15px; }
  #logo-form .categories-container ul li {
    float: left;
    margin-bottom: 10px; }
    #logo-form .categories-container ul li:not(:last-child) {
      margin-right: 10px; }

#logo-form .file-loader {
  position: relative; }
  #logo-form .file-loader .visible-label {
    background-color: #eed9b5;
    color: #5e4c2d;
    display: block;
    height: 30px;
    left: 35px;
    line-height: 30px;
    padding-left: 10px;
    position: relative;
    width: -webkit-calc(100% - 65px);
    width: calc(100% - 65px); }
    #logo-form .file-loader .visible-label .file-name {
      display: block;
      max-height: 30px;
      max-width: -webkit-calc(100% - 35px);
      max-width: calc(100% - 35px);
      overflow: hidden;
      font-size: 0.85rem; }
    #logo-form .file-loader .visible-label > svg {
      fill: currentColor;
      height: 30px;
      left: -35px;
      padding: 4px 5px;
      position: absolute;
      top: 0;
      width: 35px; }
  #logo-form .file-loader .clear-file {
    background-color: #a6977e;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 22px;
    position: absolute;
    right: 37px;
    top: 4px;
    width: 22px; }
    #logo-form .file-loader .clear-file svg {
      fill: #eed9b5;
      height: 22px;
      padding: 5px;
      width: 22px; }
      #logo-form .file-loader .clear-file svg:hover {
        cursor: pointer; }
  #logo-form .file-loader .add-file {
    background-color: #bc985b;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    z-index: 1;
    cursor: pointer;
    pointer-events: none; }
    #logo-form .file-loader .add-file svg {
      fill: #5e4c2d;
      height: 30px;
      padding: 7px;
      width: 30px; }
  #logo-form .file-loader .file-to-send {
    font-size: 100px !important;
    height: 30px;
    line-height: 100px !important;
    opacity: 0;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px !important; }
    #logo-form .file-loader .file-to-send:hover {
      cursor: pointer; }

body.page-template-tpl-press-office .trivia-box {
  background-color: #e6e6e6;
  padding: 30px; }
  body.page-template-tpl-press-office .trivia-box h2 {
    display: inline-block;
    margin-top: 0 !important;
    padding-bottom: .5rem;
    position: relative; }
    body.page-template-tpl-press-office .trivia-box h2::before {
      content: "";
      border-bottom: 2px solid #fd241d;
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      margin-left: 0; }

body.color-version-dark-yellow .trivia-box {
  border: 1px solid #fff;
  background-color: transparent; }

.overflow-expander,
.overflow-expander-patron{
  overflow: hidden;
  -webkit-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s; }
  .overflow-expander .start-hidden,
  .overflow-expander-patron .start-hidden{
    display: none;
    opacity: 0; }

.press-releases ul {
  list-style-type: none;
  padding-left: 1rem !important; }
  .press-releases ul .press-release {
    font-style: normal; }
    .press-releases ul .press-release:before {
      display: none !important; }
    .press-releases ul .press-release a {
      display: block;
      color: inherit !important; }
      .press-releases ul .press-release a:hover {
        text-decoration: none; }
        .press-releases ul .press-release a:hover .read-more {
          text-decoration: underline; }
      .press-releases ul .press-release a h3.title {
        text-transform: none !important;
        margin-bottom: 0.3rem !important; }
      .press-releases ul .press-release a .read-more {
        position: relative;
        text-transform: uppercase;
        color: #666;
        padding-right: 1.8rem; }
        .press-releases ul .press-release a .read-more:after {
          content: '';
          -webkit-background-size: cover;
          background-size: cover;
          display: block;
          height: .6rem;
          position: absolute;
          right: 0;
          top: 50%;
          width: 1.6rem;
          background: transparent url("../../images/icons/arrow-link.svg") no-repeat center;
          -webkit-background-size: auto 100%;
          background-size: auto 100%;
          -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); }

.accordion {
  padding: 0; }
  .accordion .accordion-item .accordion-body {
    max-height: 0;
    overflow: hidden;
    display: none; }
  .accordion .accordion-item.active .accordion-body {
    max-height: 30px;
    display: block; }

.load-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 30px; }
  .load-wrapper .line {
    display: inline-block;
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #d59f44;
    -webkit-animation: loading .8s ease-in-out infinite, loadingBG 1.2s ease-in-out infinite;
    animation: loading .8s ease-in-out infinite, loadingBG 1.2s ease-in-out infinite;
    margin-right: 5px; }
    .load-wrapper .line:nth-last-child(1) {
      margin-right: 0px;
      -webkit-animation-delay: -.1s;
      animation-delay: -.1s; }
    .load-wrapper .line:nth-last-child(2) {
      -webkit-animation-delay: -.2s;
      animation-delay: -.2s; }
    .load-wrapper .line:nth-last-child(3) {
      -webkit-animation-delay: -.3s;
      animation-delay: -.3s; }
  .load-wrapper.off .line {
    display: none; }
  .load-wrapper.small {
    height: 20px; }
    .load-wrapper.small .line {
      width: 10px;
      height: 10px;
      margin-right: 3px;
      -webkit-animation: loadingSmall .8s ease-in-out infinite, loadingBG 1.2s ease-in-out infinite;
      animation: loadingSmall .8s ease-in-out infinite, loadingBG 1.2s ease-in-out infinite; }
      .load-wrapper.small .line:nth-last-child(1) {
        margin-right: 0px;
        -webkit-animation-delay: -.1s;
        animation-delay: -.1s; }
      .load-wrapper.small .line:nth-last-child(2) {
        -webkit-animation-delay: -.2s;
        animation-delay: -.2s; }
      .load-wrapper.small .line:nth-last-child(3) {
        -webkit-animation-delay: -.3s;
        animation-delay: -.3s; }

@-webkit-keyframes loading {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes loading {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@-webkit-keyframes loadingSmall {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes loadingSmall {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@-webkit-keyframes loadingBG {
  0% {
    background-color: #d59f44; }
  50% {
    background-color: #fd241d; }
  100% {
    background-color: #d59f44; } }

@keyframes loadingBG {
  0% {
    background-color: #d59f44; }
  50% {
    background-color: #fd241d; }
  100% {
    background-color: #d59f44; } }

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .pika-single.is-hidden {
    display: none; }
  .pika-single.is-bound {
    position: absolute;
    -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5); }

.pika-single {
  *zoom: 1; }
  .pika-single:before, .pika-single:after {
    content: " ";
    display: table; }
  .pika-single:after {
    clear: both; }

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px; }

.pika-title {
  position: relative;
  text-align: center; }
  .pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0; }

.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #333;
  background-color: #fff; }

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: 75% 75%;
  background-size: 75% 75%;
  opacity: .5;
  *position: absolute;
  *top: 0; }
  .pika-prev:hover,
  .pika-next:hover {
    opacity: 1; }
  .pika-prev.is-disabled,
  .pika-next.is-disabled {
    cursor: default;
    opacity: .2; }

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0; }

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0; }

.pika-select {
  display: inline-block;
  *display: inline; }

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0; }
  .pika-table th,
  .pika-table td {
    width: 14.285714285714286%;
    padding: 0; }
  .pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center; }
  .pika-table abbr {
    border-bottom: none;
    cursor: help; }

.pika-button {
  cursor: pointer;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5; }
  .is-today .pika-button {
    color: #33aaff;
    font-weight: bold; }
  .is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    -webkit-box-shadow: inset 0 1px 3px #178fe5;
    box-shadow: inset 0 1px 3px #178fe5;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .is-disabled .pika-button,
  .is-outside-current-month .pika-button {
    color: #999;
    opacity: .3; }
  .is-disabled .pika-button {
    pointer-events: none;
    cursor: default; }
  .pika-button:hover {
    color: #fff;
    background: #ff8000;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .pika-button .is-selection-disabled {
    pointer-events: none;
    cursor: default; }

.pika-week {
  font-size: 11px;
  color: #999; }

.is-inrange .pika-button {
  background: #D5E9F7; }

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 3px;
  border-radius: 3px; }

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 3px;
  border-radius: 3px; }

#main-content .donation-list {
  clear: both;
  padding-top: 4rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 80px; }
  #main-content .donation-list:before, #main-content .donation-list:after {
    display: none; }
  #main-content .donation-list li.donation-item {
    position: relative;
    -webkit-transition: background-color .1s ease-in-out;
    -o-transition: background-color .1s ease-in-out;
    transition: background-color .1s ease-in-out;
    margin-bottom: 45px; }
    #main-content .donation-list li.donation-item:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      height: 1px;
      background-color: #dbdbdb;
      width: 90%;
      -webkit-transition: background-color .1s ease-in-out, width .1s ease-in-out, left .1s ease-in-out, right .1s ease-in-out;
      -o-transition: background-color .1s ease-in-out, width .1s ease-in-out, left .1s ease-in-out, right .1s ease-in-out;
      transition: background-color .1s ease-in-out, width .1s ease-in-out, left .1s ease-in-out, right .1s ease-in-out; }
    #main-content .donation-list li.donation-item:hover {
      background-color: #f0f0f0; }
      #main-content .donation-list li.donation-item:hover:after {
        background-color: #fd241d;
        left: -15px;
        right: -15px;
        width: 100%; }
    #main-content .donation-list li.donation-item.donation-thumb .thumb {
      padding-top: 15px; }
    #main-content .donation-list li.donation-item.donation-thumb a img {
      max-width: 60px;
      max-height: 60px; }
  #main-content .donation-list a {
    text-decoration: none;
    display: block;
    color: #000;
    padding-bottom: 30px;
    height: 100%;
    position: relative; }
    #main-content .donation-list a::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
      width: 25px;
      height: 13px;
      display: block;
      margin-left: 8px;
      right: auto;
      left: 50%;
      top: auto;
      bottom: 30px;
      margin-left: 0;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
    #main-content .donation-list a:hover {
      text-decoration: none;
      color: inherit; }
    #main-content .donation-list a .title {
      letter-spacing: 0.075em;
      margin-top: 0;
      padding-top: 1.8rem;
      padding-bottom: 1rem;
      position: relative; }
      #main-content .donation-list a .title::after {
        content: "";
        border-bottom: 2px solid #fd241d;
        width: 160px;
        position: absolute;
        bottom: 0;
        left: 0;
        margin-left: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }
    #main-content .donation-list a .content {
      text-align: justify;
      padding: 0 15px 30px; }
    #main-content .donation-list a svg {
      width: 44px;
      height: 44px;
      display: block;
      margin: 0 auto;
      color: #d59f44; }

.grants-template-single-grant #main-content .description .buttons {
  margin-bottom: 40px; }
  .grants-template-single-grant #main-content .description .buttons > .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px; }
    .grants-template-single-grant #main-content .description .buttons > .row:last-of-type {
      margin-bottom: 0; }
      .grants-template-single-grant #main-content .description .buttons > .row:last-of-type > div {
        margin-left: auto;
        margin-right: auto;
        float: none; }

.grants-template-single-grant .donation-btn {
  border: 1px solid #d59f44;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 10px;
  text-align: center;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: color .1s ease-in-out, background-color .1s ease-in-out;
  -o-transition: color .1s ease-in-out, background-color .1s ease-in-out;
  transition: color .1s ease-in-out, background-color .1s ease-in-out;
  text-decoration: none;
  height: 100%; }
  .grants-template-single-grant .donation-btn:hover {
    background-color: #d59f44;
    color: #fff; }

.grants-template-single-grant .subvention-conclusion .donation-btn {
  max-width: 300px;
  margin: auto;
  background-color: #d59f44;
  color: #fff; }
  .grants-template-single-grant .subvention-conclusion .donation-btn:hover {
    background-color: #fff;
    color: #d59f44; }

.page-template-tpl-grants .title-center-box {
  margin-bottom: 1.5rem; }

.main-footer {
  z-index: 20;
  position: relative;
  padding: 90px 0 20px;
  border-top: 2px solid #dbdbdb; }
  .main-footer .logo-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .main-footer .logo-container > a {
      max-width: 225px; }
      .main-footer .logo-container > a.logo {
        display: block; }
        .main-footer .logo-container > a.logo.mono-logo {
          display: none; }
      .main-footer .logo-container > a.logo-mkidn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .main-footer .logo-container > a.logo-mkidn svg {
          width: 120px;
          height: 120px; }
        .main-footer .logo-container > a.logo-mkidn span {
          padding-left: 30px;
          -webkit-box-flex: 1;
          -webkit-flex: 1;
          -ms-flex: 1;
          flex: 1; }
  .main-footer .cell {
    margin-bottom: 20px; }
    .main-footer .cell p {
      margin: 0; }
  .main-footer strong {
    text-transform: uppercase; }
    .main-footer strong a {
      padding-right: 1em; }
      .main-footer strong a:after {
        content: " > ";
        position: absolute;
        top: 0;
        right: 0;
        -webkit-transform: translate(0, -12%);
        -ms-transform: translate(0, -12%);
        transform: translate(0, -12%); }
  .main-footer a {
    position: relative;
    color: #fff;
    color: inherit; }
  .main-footer .text-container .cell strong {
    display: block; }

@media (min-width: 683px) {
  body.color-version-dark-yellow {
    background-color: #000;
    color: #fff; }
    body.color-version-dark-yellow #logo-form .file-loader .visible-label .ico,
    body.color-version-dark-yellow #logo-form .file-loader .add-file {
      background-color: #fff !important; }
    body.color-version-dark-yellow .scroll-top-container #scroll-top {
      color: #fff;
      opacity: 1; }
    body.color-version-dark-yellow img {
      -webkit-filter: contrast(2);
      filter: contrast(2); }
    body.color-version-dark-yellow .label {
      color: #fff; }
    body.color-version-dark-yellow .navigation nav {
      color: #a2a2a2; }
      body.color-version-dark-yellow .navigation nav li:before {
        color: #fff; }
      body.color-version-dark-yellow .navigation nav li a {
        color: #808080; }
      body.color-version-dark-yellow .navigation nav li:last-child a {
        color: #fff; }
    body.color-version-dark-yellow header.main {
      background-color: #000; }
      body.color-version-dark-yellow header.main .header-tools-container {
        background-color: #000; }
        body.color-version-dark-yellow header.main .header-tools-container .font-controls a,
        body.color-version-dark-yellow header.main .header-tools-container .lang-menu-container .lang-menu a {
          color: #fff; }
      body.color-version-dark-yellow header.main .header-menu-container nav div > ul li a {
        color: #fff;
        display: block; }
    body.color-version-dark-yellow .donation-list a svg,
    body.color-version-dark-yellow .donation-list a .excerpt {
      color: #fff !important; }
    body.color-version-dark-yellow .grant-link svg {
      color: #fff !important; }
    body.color-version-dark-yellow #main-content .accordion-container .accordion-question a {
      color: #fff; }
    body.color-version-dark-yellow .tile-lead {
      color: #000; }
      body.color-version-dark-yellow .tile-lead:focus .thumb::after, body.color-version-dark-yellow .tile-lead:hover .thumb::after {
        background-color: transparent; }
      body.color-version-dark-yellow .tile-lead.bg-color::after {
        display: none; }
      body.color-version-dark-yellow .tile-lead .thumb img {
        -webkit-filter: contrast(2);
        filter: contrast(2); }
      body.color-version-dark-yellow .tile-lead .content {
        background-color: rgba(255, 255, 255, 0.8); }
    body.color-version-dark-yellow a[href$='.doc'],
    body.color-version-dark-yellow a[href$='.rar'],
    body.color-version-dark-yellow a[href$='.zip'],
    body.color-version-dark-yellow a[href$='.pdf'] {
      color: #fd241d; }
      body.color-version-dark-yellow a[href$='.doc']::before,
      body.color-version-dark-yellow a[href$='.rar']::before,
      body.color-version-dark-yellow a[href$='.zip']::before,
      body.color-version-dark-yellow a[href$='.pdf']::before {
        background-image: url("../../images/icons/download-white.svg"); }
    body.color-version-dark-yellow .header-tools-container .search-box .loop {
      background-image: url("../../images/icons/loop-white.svg"); }
    body.color-version-dark-yellow #before-footer .return-link {
      color: #fff; }
      body.color-version-dark-yellow #before-footer .return-link .link-text {
        opacity: 1; }
    body.color-version-dark-yellow #logo-form form {
      background-color: transparent; }
      body.color-version-dark-yellow #logo-form form .form-title {
        color: #000; }
      body.color-version-dark-yellow #logo-form form legend {
        color: #fff; }
      body.color-version-dark-yellow #logo-form form #send-form,
      body.color-version-dark-yellow #logo-form form textarea,
      body.color-version-dark-yellow #logo-form form select,
      body.color-version-dark-yellow #logo-form form input {
        color: #000 !important; }
      body.color-version-dark-yellow #logo-form form .checkbox-list-container label::before {
        background-color: #fff !important; }
    body.color-version-dark-yellow .cookie-info-container {
      background-color: #fff !important;
      color: #000; }
    body.color-version-dark-yellow .organizer,
    body.color-version-dark-yellow .organizer a {
      color: #fff !important; }
    body.color-version-dark-yellow .event-photo {
      color: #fff !important; }
    body.color-version-dark-yellow ul.categories li {
      background-color: #fff;
      color: #000; }
    body.color-version-dark-yellow .localization-data span {
      color: #fff; }
    body.color-version-dark-yellow .event-box {
      background-color: #000 !important;
      color: #fff !important; }
      body.color-version-dark-yellow .event-box p {
        color: inherit !important; }
    body.color-version-dark-yellow .events-search-modules-container {
      color: #fff;
      background-color: #a17426; }
      body.color-version-dark-yellow .events-search-modules-container .query-container {
        background-color: #a17426;
        color: #fff; }
        body.color-version-dark-yellow .events-search-modules-container .query-container #city,
        body.color-version-dark-yellow .events-search-modules-container .query-container #query {
          background-color: #a17426; }
          body.color-version-dark-yellow .events-search-modules-container .query-container #city::-webkit-input-placeholder,
          body.color-version-dark-yellow .events-search-modules-container .query-container #query::-webkit-input-placeholder {
            color: #e6e6e6; }
          body.color-version-dark-yellow .events-search-modules-container .query-container #city:-moz-placeholder,
          body.color-version-dark-yellow .events-search-modules-container .query-container #query:-moz-placeholder {
            color: #e6e6e6; }
          body.color-version-dark-yellow .events-search-modules-container .query-container #city::-moz-placeholder,
          body.color-version-dark-yellow .events-search-modules-container .query-container #query::-moz-placeholder {
            color: #e6e6e6; }
          body.color-version-dark-yellow .events-search-modules-container .query-container #city:-ms-input-placeholder,
          body.color-version-dark-yellow .events-search-modules-container .query-container #query:-ms-input-placeholder {
            color: #e6e6e6; }
      body.color-version-dark-yellow .events-search-modules-container .calendar-container .c-days-row span {
        background-color: #000;
        color: #fff !important;
        border: 1px solid #a17426; }
        body.color-version-dark-yellow .events-search-modules-container .calendar-container .c-days-row span.current-month {
          border: 1px solid #fff; }
        body.color-version-dark-yellow .events-search-modules-container .calendar-container .c-days-row span.past {
          background-color: transparent; }
      body.color-version-dark-yellow .events-search-modules-container .calendar-container .selected-dates input {
        color: #fff !important;
        border: 1px solid #fff;
        background-color: transparent; }
      body.color-version-dark-yellow .events-search-modules-container .calendar-container .navigation button:focus {
        border-color: #fff; }
      body.color-version-dark-yellow .events-search-modules-container .categories-container select#event-category {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        white-space: nowrap;
        background: #000 url("../../images/icons/icon-chevron-down.png") no-repeat;
        background-position: right 10px center;
        padding-right: 35px; }
      body.color-version-dark-yellow .events-search-modules-container .categories-container legend {
        color: #fff !important; }
    body.color-version-dark-yellow .select-year a {
      color: #fff !important; }
    body.color-version-dark-yellow .press-materials-list .material a {
      color: #fff !important; }
    body.color-version-dark-yellow .events-label a {
      color: #fff !important; }
    body.color-version-dark-yellow .cookie-info-container a {
      color: #000; }
    body.color-version-dark-yellow .search-results .types-filters a {
      color: #fff !important; }
    body.color-version-dark-yellow .search-results .result .type {
      color: #fff !important; }
    body.color-version-dark-yellow .search-results .result a {
      color: #fff !important; }
    body.color-version-dark-yellow .sticky-links li a {
      background-color: #9A6E23; }
    body.color-version-dark-yellow #main-content .static-pages-container li a {
      color: #fff !important; }
      body.color-version-dark-yellow #main-content .static-pages-container li a .claim {
        color: #fff !important; }
    body.color-version-dark-yellow #main-content .tile-group-container .tile-list .article-tile a:focus .thumb::after, body.color-version-dark-yellow #main-content .tile-group-container .tile-list .article-tile a:hover .thumb::after {
      border: 1px solid #fff; }
    body.color-version-dark-yellow #main-content .tile-group-container .tile-list .article-tile a .thumb::after {
      background-color: transparent; }
    body.color-version-dark-yellow #main-content .tile-group-container .tile-list .article-tile a .title {
      background-color: rgba(0, 0, 0, 0.5); }
    body.color-version-dark-yellow .events-search-modules-container #modules-group-sidebar .scope-select-list li label, body.color-version-dark-yellow .events-search-modules-container #modules-group-sidebar .categories-container li label {
      color: #000; }
    body.color-version-dark-yellow .events-search-modules-container #modules-group-sidebar .modules-group-navi {
      background-color: transparent; }
      body.color-version-dark-yellow .events-search-modules-container #modules-group-sidebar .modules-group-navi li a {
        color: #fff; }
    body.color-version-dark-yellow .posts-calendar .c-days-row span.selected:not(.past) {
      background-color: #DD1203; }
    body.color-version-dark-yellow .header-tools-container .search-box input {
      background-color: #000;
      border: 1px solid #fff;
      color: #fff; }
      body.color-version-dark-yellow .header-tools-container .search-box input::-webkit-input-placeholder {
        color: #787878; }
      body.color-version-dark-yellow .header-tools-container .search-box input::-moz-placeholder {
        color: #787878; }
      body.color-version-dark-yellow .header-tools-container .search-box input:-ms-input-placeholder {
        color: #787878; }
      body.color-version-dark-yellow .header-tools-container .search-box input::-ms-input-placeholder {
        color: #787878; }
      body.color-version-dark-yellow .header-tools-container .search-box input::placeholder {
        color: #787878; }
    body.color-version-dark-yellow #main-content .donation-list li.donation-item h3, body.color-version-dark-yellow #main-content .donation-list li.donation-item .content {
      color: #fff; }
    body.color-version-dark-yellow #main-content .donation-list li.donation-item:hover {
      background-color: #303030; }
    body.color-version-dark-yellow header.main .header-menu-container .logo #logo-color,
    body.color-version-dark-yellow .main-footer .logo-container > a.logo.color-logo {
      display: none !important; }
    body.color-version-dark-yellow .main-footer .logo-container > a.logo.mono-logo {
      display: block; }
    body.color-version-dark-yellow #logo-form form .nf-input-container input, body.color-version-dark-yellow #logo-form form .nf-input-container select {
      background-color: #fff; }
    body.color-version-dark-yellow form.nf_form .nf-input-container .n-button {
      opacity: 1;
      padding-top: 5px;
      padding-bottom: 5px;
      margin-bottom: 5px; }
    body.color-version-dark-yellow form.nf_form .nf-input-container.radio label .box, body.color-version-dark-yellow form.nf_form .nf-input-container.checkbox label .box {
      border-width: 2px;
      border-color: #d59f44; }
    body.color-version-dark-yellow .logo-download-links-container * {
      color: #fff !important; } }

.pac-container {
  background-color: #fff;
  position: absolute !important;
  z-index: 1000;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial,sans-serif;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }

.pac-logo:after {
  content: "";
  padding: 1px 1px 1px 0;
  height: 16px;
  text-align: right;
  display: block;
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);
  background-position: right;
  background-repeat: no-repeat;
  -webkit-background-size: 120px 14px;
  background-size: 120px 14px; }

.hdpi.pac-logo:after {
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png); }

.pac-item {
  cursor: default;
  padding: 0 4px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  border-top: 1px solid #e6e6e6;
  font-size: 11px;
  color: #999; }

.pac-item:hover {
  background-color: #fafafa; }

.pac-item-selected, .pac-item-selected:hover {
  background-color: #ebf2fe; }

.pac-matched {
  font-weight: 700; }

.pac-item-query {
  font-size: 13px;
  padding-right: 3px;
  color: #000; }

.pac-icon {
  width: 15px;
  height: 20px;
  margin-right: 7px;
  margin-top: 6px;
  display: inline-block;
  vertical-align: top;
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
  -webkit-background-size: 34px 34px;
  background-size: 34px; }

.hdpi .pac-icon {
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png); }

.pac-icon-search {
  background-position: -1px -1px; }

.pac-item-selected .pac-icon-search {
  background-position: -18px -1px; }

.pac-icon-marker {
  background-position: -1px -161px; }

.pac-item-selected .pac-icon-marker {
  background-position: -18px -161px; }

.pac-placeholder {
  color: gray; }

.single-event_form .event-link {
  margin: 9px 0; }
  .single-event_form .event-link a {
    font-weight: 700;
    background-color: #d59f44;
    color: #fff;
    border: 0;
    padding: 6px;
    opacity: 0.7;
    -webkit-transition: opacity .1s ease-in-out;
    -o-transition: opacity .1s ease-in-out;
    transition: opacity .1s ease-in-out;
    display: inline-block; }
    .single-event_form .event-link a:hover {
      opacity: 1; }

body.font-state-18 header.main .header-menu-container nav div > ul li a {
  padding: 0 5px; }

body.font-state-21 header.main > .container {
  padding: 0 10px; }

body.font-state-21 header.main .header-menu-container .logo, body.font-state-21 header.main .header-menu-container .logo svg {
  width: 290px; }

body.font-state-21 header.main .header-menu-container nav div > ul li {
  padding: 0; }
  body.font-state-21 header.main .header-menu-container nav div > ul li a {
    padding: 0 1px;
    margin: 0; }

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

@font-face {
  font-family: Nimbus;
  src: url("../../fonts/NimbusSanExt-Bol.otf");
  font-weight: 700; }

.br {
  font-family: 'Brygada', serif;
  font-weight: 700; }

#main-content {
  padding-bottom: 2rem; }
  #main-content h1 a {
    color: inherit;
    position: relative;
    padding-right: 40px;
    display: inline-block; }
  #main-content .title-center-box h1 a {
    padding-left: 40px; }
  #main-content h1 a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
    width: 25px;
    height: 13px;
    display: block;
    margin-left: 8px; }
  #main-content h2 a {
    color: inherit;
    position: relative;
    padding-right: 40px;
    display: inline-block; }
  #main-content .title-center-box h2 a {
    padding-left: 40px; }
  #main-content h2 a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
    width: 25px;
    height: 13px;
    display: block;
    margin-left: 8px; }
  #main-content h3 a {
    color: inherit;
    position: relative;
    padding-right: 40px;
    display: inline-block; }
  #main-content .title-center-box h3 a {
    padding-left: 40px; }
  #main-content h3 a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
    width: 25px;
    height: 13px;
    display: block;
    margin-left: 8px; }
  #main-content h4 a {
    color: inherit;
    position: relative;
    padding-right: 40px;
    display: inline-block; }
  #main-content .title-center-box h4 a {
    padding-left: 40px; }
  #main-content h4 a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
    width: 25px;
    height: 13px;
    display: block;
    margin-left: 8px; }
  #main-content h5 a {
    color: inherit;
    position: relative;
    padding-right: 40px;
    display: inline-block; }
  #main-content .title-center-box h5 a {
    padding-left: 40px; }
  #main-content h5 a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
    width: 25px;
    height: 13px;
    display: block;
    margin-left: 8px; }
  #main-content h6 a {
    color: inherit;
    position: relative;
    padding-right: 40px;
    display: inline-block; }
  #main-content .title-center-box h6 a {
    padding-left: 40px; }
  #main-content h6 a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent url("../../images/icons/arrow-link.svg") no-repeat left center;
    width: 25px;
    height: 13px;
    display: block;
    margin-left: 8px; }
  #main-content .sticky-seed h2.exclude {
    margin-top: 0; }
  #main-content .webpage a {
    /* https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/ */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; }
  #main-content .description a {
    color: #a57f3f; }
  #main-content .description h1 a, #main-content .description h2 a {
    color: inherit; }

header.main {
  padding: 0 0 20px; }
  header.main .lang-menu-container {
    display: inline-block; }
    header.main .lang-menu-container .lang-menu li {
      text-transform: uppercase;
      display: inline-block;
      vertical-align: top; }
      header.main .lang-menu-container .lang-menu li a {
        color: #000;
        font-weight: 700; }
      header.main .lang-menu-container .lang-menu li:before {
        color: #000;
        content: "|";
        padding: 0 3px; }
      header.main .lang-menu-container .lang-menu li:first-child:before {
        content: ""; }
  header.main .logo-container {
    position: relative;
    z-index: 1;
    float: left; }
    header.main .logo-container img {
      max-width: 100%; }
  header.main .header-tools-container {
    text-align: right;
    line-height: 31px;
    background-color: #dbdbdb;
    min-height: 48px;
    position: relative;
    padding-top: 7px;
    padding-bottom: 7px; }
    header.main .header-tools-container:after, header.main .header-tools-container:before {
      display: block;
      content: "";
      height: 100%;
      width: 50%;
      position: absolute;
      top: 0;
      left: -50%;
      background-color: inherit; }
    header.main .header-tools-container:after {
      left: auto;
      right: -50%; }
    header.main .header-tools-container .label {
      font-weight: 400;
      display: inline;
      padding-right: 5px; }
      header.main .header-tools-container .label:last-of-type {
        padding-right: 0; }
    header.main .header-tools-container ul {
      display: inline-block;
      margin-bottom: 0; }
    header.main .header-tools-container .contrast-controls li,
    header.main .header-tools-container .font-controls li {
      display: inline-block;
      text-align: center; }
      header.main .header-tools-container .contrast-controls li .control,
      header.main .header-tools-container .font-controls li .control {
        width: 22px;
        height: 22px;
        display: block; }
        header.main .header-tools-container .contrast-controls li .control svg,
        header.main .header-tools-container .font-controls li .control svg {
          vertical-align: middle;
          opacity: 0.5; }
          .color-version-dark-yellow header.main .header-tools-container .contrast-controls li .control svg, .color-version-dark-yellow
          header.main .header-tools-container .font-controls li .control svg {
            fill: #fff; }
        header.main .header-tools-container .contrast-controls li .control:focus svg, header.main .header-tools-container .contrast-controls li .control:hover svg, header.main .header-tools-container .contrast-controls li .control.active svg,
        header.main .header-tools-container .font-controls li .control:focus svg,
        header.main .header-tools-container .font-controls li .control:hover svg,
        header.main .header-tools-container .font-controls li .control.active svg {
          opacity: 1; }
    header.main .header-tools-container .font-controls {
      line-height: 0.7rem; }
      header.main .header-tools-container .font-controls li:last-child .control {
        width: 27px; }
      header.main .header-tools-container .font-controls li .control svg {
        vertical-align: bottom; }
    header.main .header-tools-container .animation-tools-container {
      position: relative;
      display: inline-block; }
      header.main .header-tools-container .animation-tools-container [type="checkbox"] {
        position: absolute;
        left: -9999px; }
      header.main .header-tools-container .animation-tools-container label {
        position: relative;
        padding-left: 1.95em;
        cursor: pointer;
        padding-right: 48px !important; }
        header.main .header-tools-container .animation-tools-container label::before, header.main .header-tools-container .animation-tools-container label::after {
          top: 50%;
          -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
          content: "";
          position: absolute;
          display: block; }
        header.main .header-tools-container .animation-tools-container label::after {
          width: 38px;
          height: 22px;
          background-color: #fff;
          right: 0;
          -webkit-border-radius: 11px;
          border-radius: 11px; }
        header.main .header-tools-container .animation-tools-container label::before {
          width: 18px;
          height: 18px;
          background-color: #a0a0a0;
          right: 2px;
          z-index: 1;
          -webkit-border-radius: 50%;
          border-radius: 50%; }
      header.main .header-tools-container .animation-tools-container [type="checkbox"]:checked + label::before {
        right: 17px; }
  header.main .header-menu-container {
    position: relative;
    padding-top: 10px;
    height: 60px; }
    header.main .header-menu-container nav {
      margin-top: 17px;
      font-weight: 700; }
      header.main .header-menu-container nav div > ul {
        text-transform: uppercase;
        margin-right: -10px;
        margin-bottom: 0; }
        header.main .header-menu-container nav div > ul li {
          display: block;
          position: relative;
          padding: 0 10px; }
          header.main .header-menu-container nav div > ul li a {
            color: #000;
            display: block;
            padding: 0 10px;
            margin: 0 -10px;
            text-decoration: none; }
          header.main .header-menu-container nav div > ul li.current-menu-item a:after, header.main .header-menu-container nav div > ul li.current-menu-item a.inactive-lock:after, header.main .header-menu-container nav div > ul li.current_page_parent a:after, header.main .header-menu-container nav div > ul li.current_page_parent a.inactive-lock:after {
            width: 100%;
            right: 0;
            left: 0; }
          header.main .header-menu-container nav div > ul li li {
            padding: 3px 10px; }
          header.main .header-menu-container nav div > ul li .sub-menu {
            position: absolute;
            overflow: hidden;
            padding-left: 0;
            top: 100%;
            left: 0;
            z-index: 99; }
            header.main .header-menu-container nav div > ul li .sub-menu li {
              -webkit-transition: -webkit-transform .1s ease-in-out;
              transition: -webkit-transform .1s ease-in-out;
              -o-transition: transform .1s ease-in-out;
              transition: transform .1s ease-in-out;
              transition: transform .1s ease-in-out, -webkit-transform .1s ease-in-out;
              -webkit-transform: translateX(100%);
              -ms-transform: translateX(100%);
              transform: translateX(100%); }
              header.main .header-menu-container nav div > ul li .sub-menu li a {
                padding-top: 8px; }
        header.main .header-menu-container nav div > ul li.menu-item-has-children:hover > .sub-menu li, header.main .header-menu-container nav div > ul li.menu-item-has-children.sfHover > .sub-menu li {
          -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
          transform: translateX(0); }
        header.main .header-menu-container nav div > ul > li {
          display: inline-block; }
          header.main .header-menu-container nav div > ul > li:focus, header.main .header-menu-container nav div > ul > li:hover {
            height: auto; }
    header.main .header-menu-container .logo {
      display: block;
      width: 315px;
      height: 60px;
      overflow: hidden; }
      header.main .header-menu-container .logo svg {
        width: 315px;
        height: 60px;
        display: block; }

.navigation {
  margin-top: 0.7rem; }
  .navigation nav {
    line-height: 20px;
    font-weight: 700;
    color: #a2a2a2;
    text-transform: uppercase; }
    .navigation nav ul {
      display: inline-block;
      margin-bottom: 0; }
    .navigation nav li {
      display: inline-block; }
      .navigation nav li:not(:first-child):before {
        color: #fd241d;
        content: '';
        background: transparent url("../../images/icons/arrow-navi.svg") no-repeat center;
        vertical-align: middle;
        width: 1em;
        display: inline-block;
        height: 1em; }
      .navigation nav li a {
        color: #808080; }
      .navigation nav li:last-child a {
        color: #000; }

.header,
.title-center-box {
  max-width: 36rem;
  text-align: center;
  margin: 2.5rem auto 2.5rem;
  position: relative;
  padding-bottom: 15px; }
  .header .claim,
  .title-center-box .claim {
    margin: 0.2rem 0 0.5rem;
    padding: 0 30px;
    display: block;
    text-transform: uppercase; }
  .header h1,
  .header h2,
  .title-center-box h1,
  .title-center-box h2 {
    margin: 0;
    text-transform: uppercase;
    font-family: 'Brygada', serif;
    font-weight: 700;
    line-height: 2.9rem !important;
    letter-spacing: 0.001em; }
  .header::after,
  .title-center-box::after {
    content: "";
    border-bottom: 2px solid #fd241d;
    width: 160px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px; }

.header {
  padding-bottom: 10px;
  text-align: left;
  margin: 2.5rem 0 2.5rem; }
  .header::after {
    margin-left: 0;
    left: 0; }

.tile-item.col-md-4 {
  margin-bottom: 30px; }

.reasons-link {
  width: 110px;
  height: 110px !important;
  display: block;
  background: #ff7364 url("../../images/icons/arrow-reasons.png") no-repeat 30px 80px;
  color: #000;
  -webkit-box-shadow: 2px 2px 4px #000;
  box-shadow: 2px 2px 4px #000;
  position: absolute;
  bottom: -222px;
  right: 0;
  z-index: 1;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0 !important; }
  .reasons-link a {
    width: 100%;
    height: 100%;
    display: block;
    font-weight: 900; }
    .reasons-link a span {
      -webkit-transform: translate(0, 17px);
      -ms-transform: translate(0, 17px);
      transform: translate(0, 17px);
      text-align: center;
      vertical-align: middle;
      display: block; }

.load-more-scroll-point {
  opacity: 0;
  display: block;
  width: 100%;
  clear: both;
  height: 32px;
  background: transparent url("./../../images/loading.gif") no-repeat center; }
  .load-more-scroll-point.processing {
    opacity: 1; }
  .load-more-scroll-point.disabled {
    opacity: 0 !important; }

.apla {
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  background-color: #000;
  pointer-events: none; }
  .logo-popup-showed .apla,
  .reasons-popup-showed .apla {
    opacity: 0.5; }

.o-hidden {
  overflow: hidden; }

body > .o-hidden {
  min-height: -webkit-calc(100vh - 289px);
  min-height: calc(100vh - 289px); }

.after-link-arrow {
  position: relative;
  padding-right: 2rem; }
  .after-link-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    line-height: inherit;
    height: 1rem;
    width: 1.8rem;
    display: block;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: transparent url("../../images/icons/arrow-link.svg") no-repeat right center; }

#before-footer {
  position: relative;
  padding-bottom: 4rem; }
  #before-footer .return-link {
    text-transform: uppercase;
    position: absolute;
    bottom: 1.2rem;
    font-size: 0.81rem;
    line-height: 1rem;
    color: #000;
    letter-spacing: 0.075em;
    font-weight: 700; }
    #before-footer .return-link .link-text {
      opacity: 0.4; }
  #before-footer .return-link {
    left: 1.2rem;
    padding-left: 2.9rem;
    display: inline-block; }
    #before-footer .return-link span {
      font-style: italic; }
    #before-footer .return-link svg {
      position: absolute;
      left: 0;
      line-height: 1rem;
      height: 1rem;
      width: 1.8rem;
      display: block;
      fill: #fd241d; }
  #before-footer .to-top-link {
    right: 1.2rem; }

.divider {
  margin-top: 2rem;
  height: 40px;
  width: 100%;
  display: block;
  position: relative;
  background: transparent url("../../images/divider-shadow.png") repeat-x; }
  .color-version-dark-yellow .divider {
    background: none;
    border-top: 3px solid #fff; }
  .divider::after, .divider::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    background: transparent url("../../images/divider-shadow.png") repeat-x; }
    .color-version-dark-yellow .divider::after, .color-version-dark-yellow .divider::before {
      background: none;
      border-top: 3px solid #fff;
      top: -3px; }
  .divider::after {
    left: auto;
    right: -100%; }

.page-template-tpl-page-narrow .form_container {
  margin: 0 auto; }

.scope-select-list legend,
.distance-select-list legend,
.categories-container legend {
  text-transform: uppercase;
  border-bottom: 0 none;
  margin-bottom: 1rem;
  font-weight: 700; }

.scope-select-list li,
.distance-select-list li,
.categories-container li {
  line-height: 1rem;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem; }
  .scope-select-list li input,
  .distance-select-list li input,
  .categories-container li input {
    position: absolute;
    opacity: 0; }
    .scope-select-list li input:focus + label,
    .distance-select-list li input:focus + label,
    .categories-container li input:focus + label {
      background-color: #ffcd7c;
      color: #735b34; }
  .scope-select-list li label,
  .distance-select-list li label,
  .categories-container li label {
    position: relative;
    cursor: pointer;
    margin: 0;
    text-transform: uppercase;
    background-color: #eed9b5;
    color: #837762;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    padding: 2px 10px; }
  .scope-select-list li input:checked + label,
  .distance-select-list li input:checked + label,
  .categories-container li input:checked + label {
    background-color: #ffcd7c;
    color: #735b34;
    padding-left: 1.6rem; }
    .scope-select-list li input:checked + label::before,
    .distance-select-list li input:checked + label::before,
    .categories-container li input:checked + label::before {
      content: "✓";
      text-align: center;
      line-height: 1rem;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      display: block;
      width: 1rem;
      height: 1rem;
      position: absolute;
      left: 4px;
      background-color: #bc985b;
      color: #261e12;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }

.scope-select-list.box-checkbox,
.distance-select-list.box-checkbox,
.categories-container.box-checkbox {
  padding-left: 15px;
  margin-bottom: 10px; }
  .scope-select-list.box-checkbox li,
  .distance-select-list.box-checkbox li,
  .categories-container.box-checkbox li {
    margin-bottom: 5px; }
    .scope-select-list.box-checkbox li input:focus + label,
    .distance-select-list.box-checkbox li input:focus + label,
    .categories-container.box-checkbox li input:focus + label {
      background-color: transparent;
      color: #fff; }
    .scope-select-list.box-checkbox li label,
    .distance-select-list.box-checkbox li label,
    .categories-container.box-checkbox li label {
      position: relative;
      cursor: pointer;
      margin: 0;
      text-transform: uppercase;
      background-color: transparent;
      color: #fff;
      -webkit-border-radius: 0;
      border-radius: 0;
      padding: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 3px 5px; }
      .scope-select-list.box-checkbox li label .box,
      .distance-select-list.box-checkbox li label .box,
      .categories-container.box-checkbox li label .box {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-right: 13px;
        background-color: #999; }
    .scope-select-list.box-checkbox li input:checked + label,
    .distance-select-list.box-checkbox li input:checked + label,
    .categories-container.box-checkbox li input:checked + label {
      background-color: transparent;
      color: #fff;
      padding-left: 5px; }
      .scope-select-list.box-checkbox li input:checked + label .box,
      .distance-select-list.box-checkbox li input:checked + label .box,
      .categories-container.box-checkbox li input:checked + label .box {
        background-color: #fff; }
      .scope-select-list.box-checkbox li input:checked + label::before,
      .distance-select-list.box-checkbox li input:checked + label::before,
      .categories-container.box-checkbox li input:checked + label::before {
        display: none; }
    .scope-select-list.box-checkbox li:last-of-type,
    .distance-select-list.box-checkbox li:last-of-type,
    .categories-container.box-checkbox li:last-of-type {
      margin-bottom: 0; }
    .scope-select-list.box-checkbox li:hover label, .scope-select-list.box-checkbox li input:checked + label,
    .distance-select-list.box-checkbox li:hover label,
    .distance-select-list.box-checkbox li input:checked + label,
    .categories-container.box-checkbox li:hover label,
    .categories-container.box-checkbox li input:checked + label {
      text-decoration: underline; }

.red-line {
  position: relative;
  padding-bottom: 0.5rem; }
  .red-line::after {
    content: "";
    border-bottom: 2px solid #fd241d;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 0; }

div.red-line {
  margin: 5px 0 15px; }

.show-more {
  display: block;
  position: relative;
  opacity: 0.7;
  padding: 0.5rem 0 1.2rem;
  margin-bottom: 1rem; }
  .show-more[aria-expanded='true']::after {
    -webkit-transform: translateX(-50%) rotate(-180deg);
    -ms-transform: translateX(-50%) rotate(-180deg);
    transform: translateX(-50%) rotate(-180deg); }
  .show-more::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    display: block;
    width: 20px;
    height: 13px;
    content: '';
    background-image: url("../../images/icons/arrow-small-black-down.svg");
    opacity: 0.5;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s; }

.n-button {
  background: #fff;
  color: #d59f44;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  opacity: 0.7;
  text-transform: uppercase;
  -webkit-transition: opacity .1s ease-in-out;
  -o-transition: opacity .1s ease-in-out;
  transition: opacity .1s ease-in-out;
  position: relative;
  cursor: pointer; }
  .n-button.n-border {
    border: 1px solid #d59f44;
    padding: 5px 6px;
    font-weight: bold; }
  .n-button:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    height: 1px;
    background-color: #d59f44;
    left: 0;
    right: 0;
    width: 0;
    margin: auto;
    -webkit-transition: width .1s ease-in-out;
    -o-transition: width .1s ease-in-out;
    transition: width .1s ease-in-out; }
  .n-button:hover {
    opacity: 1; }

a.n-button {
  text-decoration: none;
  padding-left: 0;
  padding-right: 0; }
  a.n-button:hover {
    color: #d59f44; }

.description .form_subscribe.freshmail_form_2 button[type="submit"] {
  background-color: #d59f44 !important;
  padding: 6px 0;
  opacity: 0.7;
  -webkit-transition: opacity .1s ease-in-out;
  -o-transition: opacity .1s ease-in-out;
  transition: opacity .1s ease-in-out; }
  .description .form_subscribe.freshmail_form_2 button[type="submit"]:hover {
    opacity: 1; }

.text-brygada {
  font-family: 'Brygada', serif; }

#main-content .title-center-box h1 a {
  padding-left: 0;
  padding-right: 40px; }
  #main-content .title-center-box h1 a::after {
    right: 0px; }

.header-menu-container .sf-menu > li a {
  position: relative; }
  .header-menu-container .sf-menu > li a::after {
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    content: "";
    position: absolute;
    width: 0px;
    display: block;
    bottom: -6px;
    left: 0;
    border-bottom: 2px solid #fd241d; }
  .header-menu-container .sf-menu > li a.inactive-lock::after {
    left: auto;
    right: 0; }

.header-menu-container .sf-menu > li > .sub-menu > li {
  padding-bottom: 6px; }
  .header-menu-container .sf-menu > li > .sub-menu > li a {
    position: relative; }
  .header-menu-container .sf-menu > li > .sub-menu > li:hover > a:after {
    width: 100%; }

.header-menu-container .sf-menu > li:hover > a:after {
  width: 100%; }

.animation-tools-container {
  display: none !important; }

.main-menu-content .search-box,
.main-menu-content .lang-menu-mobile {
  display: none; }

@media (min-width: 1500px) {
  .reasons-link {
    position: fixed !important;
    right: 55px !important;
    top: 55px;
    bottom: 0; } }

@media (max-width: 1499px) {
  .reasons-link {
    position: absolute !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .tile-item {
    width: 50% !important; }
  #main-content .tile-group-container .tile-list .article-tile a .title {
    padding: 0 9%; }
  body.page-template-tpl-search-events .filter-container > .sticky {
    position: absolute !important; }
  .font-state-21 #main-content .tile-group-container .tile-list .article-tile a {
    overflow: hidden; }
    .font-state-21 #main-content .tile-group-container .tile-list .article-tile a .title {
      padding: 0 10px;
      font-size: .8rem;
      line-height: 1.2rem; } }

@media (min-width: 1200px) {
  .slider-container .navi.navi-left {
    left: -30px; }
  .slider-container .navi.navi-right {
    text-align: right;
    right: -30px; }
  #promoted-material-container #skip-intro .control-pause {
    position: relative;
    text-indent: -1000px;
    overflow: hidden; }
    #promoted-material-container #skip-intro .control-pause::before {
      text-indent: 0;
      text-align: center;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      content: attr(data-alter-text); }
  .font-state-21 #main-content .tile-group-container .tile-list .article-tile a .title {
    padding: 0 10px; } }

@media screen and (max-width: 767px) {
  .partner-list-container .partner-list li a {
    text-align: center;
    padding-top: 0; }
    .partner-list-container .partner-list li a img {
      position: static;
      top: 50%;
      left: 50%;
      max-width: 100%;
      max-height: 100%;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      padding-top: 8px;
      padding-bottom: 8px;}
  .main-footer .logo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  .sticky-links {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding-left: 20px;
    margin-top: 1.4rem; }
    .sticky-links li {
      display: inline-block; }
  body.page-template-tpl-search-events .map-container {
    padding-left: 15px;
    padding-right: 15px;
    height: 650px;
    max-height: 85vh;
    min-height: 200px;
    overflow: hidden; }
  body.page-template-tpl-search-events .pac-container {
    width: -webkit-calc(100% - 20px) !important;
    width: calc(100% - 20px) !important; }
  body.page-template-tpl-search-events .nano {
    width: auto;
    left: 15px;
    right: 15px;
    height: auto;
    padding-bottom: 0; }
  body.page-template-tpl-search-events .search-panel {
    position: relative; }
  body.page-template-tpl-search-events .active .accordion-body-container {
    height: -webkit-calc(650px - 180px);
    height: calc(650px - 180px);
    max-height: -webkit-calc(85vh - 180px);
    max-height: calc(85vh - 180px); }
  body.page-template-tpl-search-events .accordion-body.active {
    display: block; }
  body.page-template-tpl-search-events #collapse-calendar {
    max-width: 400px;
    margin: auto; }
  body.page-template-tpl-search-events #accordion-side-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px; }
    body.page-template-tpl-search-events #accordion-side-panel .accordion-body {
      display: none; }
    body.page-template-tpl-search-events #accordion-side-panel .title {
      color: #fff;
      font-weight: bold;
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 0 10px; }
    body.page-template-tpl-search-events #accordion-side-panel .accordion-item:not(:first-of-type) {
      border-top: none; }
    body.page-template-tpl-search-events #accordion-side-panel .accordion-header .text {
      display: none; }
    body.page-template-tpl-search-events #accordion-side-panel .accordion-header .icon {
      display: block; }
    body.page-template-tpl-search-events #accordion-side-panel .accordion-item.active .accordion-header .icon svg {
      fill: rgba(255, 255, 255, 0.9);
      height: 100%;
      width: 100%; }
  body.page-template-tpl-search-events .send-container {
    position: absolute;
    z-index: 20;
    bottom: 0;
    left: 15px;
    right: 15px;
    padding: 10px;
    background-color: #1f1f1f; }
    body.page-template-tpl-search-events .send-container .send {
      margin: 0px;
      width: 100%; }
  body.page-template-tpl-search-events #event-results-container {
    margin-top: 20px; }
  .home .events-container {
    height: auto;
    padding: 0 15px;
    max-height: none; }
    .home .events-container > .container, .home .events-container > .container > .first-col, .home .events-container > .container > .row, .home .events-container > .container > .row > .first-col {
      height: auto; }
    .home .events-container .events-search-modules-container {
      width: 100%; }
    .home .events-container .nano {
      float: none;
      max-width: none;
      margin-bottom: 0 !important;
      width: auto;
      height: auto; }
      .home .events-container .nano .selected-events {
        position: relative;
        margin-right: 0 !important; }
    .home .events-container .events-label {
      display: none; }
    .home .events-container .change-order {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
    .home .events-container #map {
      display: none; }
    .home .events-container .event-box h2 {
      font-size: 1.3rem; }
  body.page-template-tpl-search-events .filter-container {
    padding-top: 0; }
    body.page-template-tpl-search-events .filter-container > .sticky {
      position: relative !important; }
  body.page-template-tpl-search-events #events-nav {
    margin: 0 auto 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    body.page-template-tpl-search-events #events-nav .filters {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -ms-flex-order: 2;
      order: 2;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start; }
      body.page-template-tpl-search-events #events-nav .filters h3 {
        line-height: 1.5rem;
        font-size: .8rem; }
      body.page-template-tpl-search-events #events-nav .filters.filters-hidden > * {
        display: none; }
    body.page-template-tpl-search-events #events-nav .add-event {
      width: 100%;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
      margin-top: 30px;
      margin-bottom: 10px; }
  .grants-template-single-grant #main-content .description .buttons > .row {
    display: block; }
    .grants-template-single-grant #main-content .description .buttons > .row:not(:last-of-type), .grants-template-single-grant #main-content .description .buttons > .row > div:not(:last-of-type) {
      margin-bottom: 15px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .home .events-container .events-label {
    display: none; }
  .home .events-container .change-order {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .home .events-container .change-order .first-col {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -ms-flex-order: 2;
      order: 2; }
    .home .events-container .change-order .last-col {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1; }
  .home .events-container #map {
    display: none; }
  .home .events-container .events-search-modules-container {
    width: 100%; }
  .home .events-container .last-col {
    padding: 0; }
  .home .events-container .selected-events {
    float: none;
    max-width: none; }
  /*
body.home .events-search-modules-container #events-search-form {
    .icon-chevron {
        display: none;
    }

    .advanced-options-container {
        display: block !important;
        height: auto !important;
    }
    }*/ }

@media (max-width: 991px) {
  .responsive-table-container .responsive-row .col {
    width: 100%;
    display: block; }
  .home .events-container .events-search-modules-container {
    width: 100%; }
  .home .events-container .last-col {
    padding: 0; }
  .donation-list a {
    padding-bottom: 20px; }
    .donation-list a:after {
      bottom: 20px; }
  body.single-event_form .event-photo {
    max-width: 360px;
    max-height: 360px;
    width: 100%;
    margin: auto;
    display: block; }
  .home .events-container .nano {
    float: none;
    max-width: none;
    margin-bottom: 0 !important;
    width: auto;
    height: 100%; } }

@media (max-width: 1199px) and (min-width: 683px) {
  .main-menu-content {
    margin-top: 48px; } }

@media (max-width: 1199px) {
  body {
    padding-top: 150px; }
    body.home {
      padding-top: 118px; }
  header.main {
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    position: fixed;
    z-index: 1500;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #fff; }
    header.main .header-tools-container .search-box,
    header.main .header-tools-container .lang-menu-container {
      display: none; }
    header.main .header-menu-container .menu-container {
      text-align: left; }
      header.main .header-menu-container .menu-container nav {
        margin-top: 0; }
        header.main .header-menu-container .menu-container nav .navbar-toggle {
          display: block; }
        header.main .header-menu-container .menu-container nav div > ul li {
          padding: 0; }
          header.main .header-menu-container .menu-container nav div > ul li a {
            color: #fff; }
          header.main .header-menu-container .menu-container nav div > ul li .sub-menu {
            opacity: 0.7 !important;
            position: static; }
            header.main .header-menu-container .menu-container nav div > ul li .sub-menu li {
              -webkit-transform: translateX(0);
              -ms-transform: translateX(0);
              transform: translateX(0);
              padding-left: 10px; }
        header.main .header-menu-container .menu-container nav div > ul > li {
          margin-bottom: 2rem; }
  .main-menu-content {
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    position: fixed;
    top: 0;
    z-index: 1;
    right: 0;
    height: 100vh;
    display: block;
    min-width: 230px;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 10px;
    background-color: #000; }
    .main-menu-content::before {
      content: "";
      position: absolute;
      top: -50px;
      left: 0;
      width: 100%;
      display: block;
      background-color: inherit;
      z-index: 34;
      height: 50px; }
    .main-menu-content .search-box {
      display: block;
      margin: 20px 55px 40px; }
      .main-menu-content .search-box input {
        width: 100%; }
      .main-menu-content .search-box label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0; }
    .main-menu-content .lang-menu-mobile {
      display: block;
      margin-bottom: 3rem; }
      .main-menu-content .lang-menu-mobile .lang-menu {
        text-align: right;
        width: 100%;
        padding-right: 20px;
        height: 50px; }
        .main-menu-content .lang-menu-mobile .lang-menu > li {
          display: inline-block;
          padding-left: 10px !important;
          margin-bottom: 0;
          line-height: 50px; }
    .main-menu-content > ul {
      padding: 0px 55px; }
  header.main .header-menu-container nav div > ul > li {
    display: block; }
  .related-articles-container .tile-item {
    margin-bottom: 2rem; }
  .main-footer .logo-container {
    width: 100%;
    padding-left: 15px; }
    .main-footer .logo-container > a {
      max-width: none;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1; } }

.menu-opened .main-menu-content {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }

.menu-opened .navbar-toggle .icon-bar {
  background-color: #fff; }

.touch .header-tools-container {
  display: none; }

.touch body {
  padding-top: 72px; }

@media screen and (max-aspect-ratio: 16 / 9) {
  #promoted-material-container .home-slide.type-video {
    width: 100vw;
    padding-top: 56%;
    height: 0; }
    #promoted-material-container .home-slide.type-video video {
      height: 100%; } }

@media (max-width: 682px) {
  body {
    padding-top: 72px; }
    body.home {
      padding-top: 72px; }
  .header-tools-container {
    display: none; } }

@media (max-width: 480px) {
  #promoted-material-container:not(.no-slides) {
    overflow: visible;
    margin-bottom: 11rem; }
    #promoted-material-container:not(.no-slides)::after {
      opacity: 0.5;
      -webkit-background-size: 100% 100%;
      background-size: 100%; }
    #promoted-material-container:not(.no-slides) .slide-bottom-container .slide-title {
      bottom: -9rem;
      position: absolute;
      color: #000;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
  #main-content .tile-group-container .tile-list .article-tile a .title {
    padding: 0 9%;
    font-size: 20px; }
  .title-center-box h1,
  .title-center-box h2 {
    font-size: 26px; }
  header.main .header-menu-container .logo {
    width: 180px; } }

@media (max-width: 682px) {
  #before-footer h2 {
    font-size: 20px; } }

.pointer {cursor: pointer;}
