/* NAVIGATION & MENU */
.row-header {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.navicon {
  display: none;
}

@media only screen and (max-width: 960px) {
  .locked-menu {
    overflow-y: hidden;
  }

  .row-header {
    /* position: fixed; */
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
    left: 0;
    top: 0;
    z-index: 100;
  }

  .languageSwitcherToggle,
  .logo,
  .navicon {
    position: relative;
    float: none;
    margin: initial;
    z-index: 100;
  }

  .logo {
    margin-left: 20px;
  }

  .header-wraper {
    margin-right: 20px;
  }

  .main-menu {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    float: none !important;
  }

  .main-menu > ul {
    display: flex;
    width:100%;
    flex-direction: column;
  }

  .main-menu > ul > li {
    padding: 0;
  }
  .main-menu > ul > li > a {
    padding: 10px 20px;
  }
  .main-menu-level-2 {
    display: none !important;
  }

  .navicon {
    position: relative;
    width: 40px;
    display: block;
    height: 30px;
    padding: 10px;
    margin: 10px 0;
    border: 0;
    background: transparent !important;
    outline: 0;
    cursor: pointer;
  }

  .navicon:before,
  .navicon:after {
    content: '';
    position: absolute;
    width: 45px;
    height: 3px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: white;
    transition: all 250ms ease-in-out;
  }
  .navicon:before {
    top: 5px;
    transform-origin: center;
  }
  .navicon:after {
    top: calc(100% - 5px);
    transform-origin: center;
  }

  .navicon.active:before {
    top: 50%;
    transform: rotate(45deg);
  }
  .navicon.active:after{
    top: 50%;
    transform: rotate(-45deg);
  }

  .row-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    left: auto;
    padding-top: 60px;
    padding-left: 100px; /* Which is logo width */
    background: #4ba7e0;
    border: 0;
    float: none;
    transition: right 250ms ease-in-out;
    z-index: 99;
    overflow: hidden;
  }
  .row-menu.active {
    right: 0%;
  }
}


/* FONTS & TEXT */
@media only screen and (max-width: 960px) {
  .row-title h1.home,
  .row-title h1 {
    font-size: 40px;
  }

  .row-title {
    margin: 0 40px;
  }
} 

/* GLOBAL & MATRIX */
@media only screen and (max-width: 960px) {
  .matrix-body {
    padding: 0 20px;
  }

  .call-to-action-link{
    width: 100%;
    padding: 20px;
  }
  .call-to-action-link:after {
    display: none;
  }
} 


/* HOMEPAGE */
@media only screen and (max-width: 960px) {
  .row-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .item-KrgSingleParkItem .row-btn a {
    width: calc(100% - 40px);
    margin: 0;
  }
  .item-KrgSingleParkItem .row-btn a + a {
    margin-top: 20px;
  }

  .alternate-content .section-row {
    flex-direction: column !important;
  }
  .alternate-content img {
    width: calc(100% - 40px);
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .section-row div {
    width: calc(100% - 40px);
  }
}


/* FOOTER */
@media only screen and (max-width: 960px) {
  .container footer .footer-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  .container footer .latest-news {
    padding-right: 0;
  }
  .container footer .latest-news,
  .container footer .plan-your-visit,
  .container footer .more-information,
  .container footer .footer-section,
  .container footer .copyright-banner {
    width: calc(100% - 40px);
    margin-left: 20px;
  }
}

/* PARCS */
@media only screen and (max-width: 960px) {
  .content-current {
    width: auto;
    padding: 0 20px;
  }

  .krg-photo-gallery {
    margin-bottom: 20px;
  }
  .krg-photo-gallery .section-title {
    width: calc(100% - 40px);
    text-align: left;
  }
  .gallery-controls {
    display: none;
  }

  .container .krg-employees-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container .krg-employees-section .park-employees-title {
    width: calc(100% - 40px);
    text-align: left;
  }
  .employees-list {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .container .krg-employees-section .park-employee {
    width: auto;
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}


/* EXPERIENCES */
@media only screen and (max-width: 960px) {
  .showcase .filters {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
  }
  .showcase .filter {
    width: 100%;
  }
  .showcase .filter + .filter {
    margin-top: 20px;
  }
  .double-slider-filter,
  .combo-multi-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .double-slider-filter-seasons {
    margin-bottom: 40px;
  }

  .right-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }
  .right-sidebar .col-wide,
  .right-sidebar .col-narrow {
    float: none;
    width: 100%;
  }

  .section-activities .section-label {
    width: 100%;
  }
  .experiences-activities {
    width: 100%;
  }

  .experiences {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .showcase ul li {
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
  }

  .combo-multi-filter .options li {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }
  .combo-multi-filter .options span {
    padding-left: 20px;
  }

  .filter-reset-label {
    user-select: none;
  }
}

/* FORM */
@media only screen and (max-width: 960px) {
  .contact-form {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .booking-experience .experience-picture {
    margin: auto;
  }
  .booking-experience {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: none;
    padding: 0;
  }
  .booking-experience .experience-info {
    float: none;
    width: 100%;
    margin-top: 40px;
  }

  .booking-form {
    width: 100%;
    padding: 0;
  }

  .contact-form input, 
  .contact-form textarea {
    width: calc(100% - 40px);
  }
}

/* ACCORDION */
@media only screen and (max-width: 600px) { 
  .accordion-trigger {
    width: fit-content;
    width: -webkit-fill-available;
    text-align: left;
    line-height: 1.5;
    padding: 10px 40px 10px 20px;
  }
}

/* NEWS */
@media only screen and (max-width: 800px) { 
  .item-KrgSingleNewsItem {
    width: calc(100% - 40px);
  }
}


/* CONTACT */
@media only screen and (max-width: 960px) { 
  .row .two-columns {
    display: flex;
    flex-direction: column;
  }
  .row .two-columns .colunm-half {
    float: none;
    width: 100%;
  }
}
.section-address {
  width: 100% !important;
}


/* CONTENT PAGE */
@media only screen and (max-width: 960px) { 
  .intro {
    width: 100%;
    padding: 0 20px;
  }
}


/* MAP */
@media only screen and (max-width: 960px) { 
  .google-maps .legend {
    left: 0;
    top: 0;
    margin: 0;
    z-index: 99;
    width: 100%;
  }
}
