/*@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');*/

:root {
    --sunflower: #ffc700;
    /*--sunflower-light: #ffe594;*/
    --redwine: #c72e4d;
    --seablue: #00c7ff;
    --purple: #bb33cc;
    --route-panel-viewport-height: 500px;
    --route-panel-viewport-height--md: 530px;
}

/* ------------------------------- */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    padding: 10px;
    width: 100%;
    height: 30px;
    box-sizing: content-box;
    box-shadow: 0 0 5px black;
    /*text-align: center;*/
    /*font-weight: bold;*/
    z-index: 2;
    line-height: 2em;
    cursor: pointer;
}

.navbar img {
    width: 32px;
    float: left;
}

.navbar h1 {
    text-align: left;
    margin-left: 40px;
}

@media(max-width: 639px) {
    .navbar .menu {
        display: none;
        position: fixed;
        top: 97px;
        left: 0;
        background: white;
        width: 100%;
        height: calc(100vh - 138px);
        padding: 40px 20px;
    }

    .navbar .menu.open {
        display: block;
    }

    .navbar h3 {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .navbar .menu a {
        /*margin-right: 20px;*/
        display: block;
        padding: 10px;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 5px;
        right: 25px;
        height: 40px;
        width: 40px;
    }

    .hamburger > div {
        position: absolute;
        display: block;
        width: 20px;
        height: 1px;
        background-color: black;
        cursor: pointer;
    }

    .hamburger > div:first-child {
        top: 10px;
        left: 10px;
    }

    .hamburger > div:nth-child(2) {
        top: 18px;
        left: 10px;
    }

    .hamburger > div:nth-child(3) {
        top: 26px;
        left: 10px;
    }

    .hamburger.open > div:first-child {
        transform: rotateZ(45deg);
        top: 19px;
    }

    .hamburger.open > div:nth-child(2) {
        transform: rotateZ(-45deg);
        top: 19px;
    }

    .hamburger.open > div:nth-child(3) {
        display: none;
    }
}

@media(min-width: 640px) {
    .navbar .menu {
        display: block;
        position: absolute;
        top: 1px;
        right: 150px;
        line-height: 50px;
    }

    .navbar .menu a {
        margin-right: 20px;
    }

    .navbar .menu a.active {
        font-weight: bold;
    }

    .navbar h3 {
        display: none;
    }
}

/* ------------------------------- */
/* Map */
.map-container {
    width: 100%;
    height: 100%;
}

.poi-info-window {
    display: none;
}

.map-label {
    /*font-weight: bold;*/
    padding: 10px;
    background: white;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
    transition: all 0.2s ease;
    /*width: 40px;*/
    /*height: 15px;*/
    /*box-sizing: content-box;*/
}

/*.map-label:focus,*/
/*.map-label:hover {*/
/*    background: #ffc700;*/
/*    width: 170px;*/
/*    height: 170px;*/
/*}*/

.more-content {
    display: none;
}

/*.map-label:focus .more-content,*/
/*.map-label:hover .more-content {*/
/*    display: block;*/
/*}*/

.point-image {
    width: 100%;
    height: 100px;
}

.point-image img {
    width: 100%;
    height: 100%;
}

/* Gmap Info window */

.gm-style .gm-style-iw-c {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

/* Gmap Info window down arrow */
.gm-style .gm-style-iw-t::after {
    display: none;
}

/* Gmap Info window close button */
.gm-style .gm-style-iw-c button {
    display: none !important;
}

/* Gmap Info window position */
.gm-style .gm-style-iw-t {
    bottom: 28px !important;
}

/* Gmap Info window ?? */
.gm-style .gm-style-iw-d {
    overflow: initial !important;
}

/* ------------------------------- */
/* Events selector panel */
.events-selector-panel {
    position: fixed;
    bottom: 48px;
    right: 61px;
    background: white;
    padding: 5px 10px;
    box-shadow: 0 0 5px rgba(0,0,0, 0.15);
    width: calc(100vw - 80px);
    max-width: 330px;
}

.events-selector-panel label {
    /*background: white;*/
    /*border: 1px solid black;*/
    padding: 0 5px 0 18px;
    margin: 5px;
    width: 100%;
    display: block;
    text-align: left;
    position: relative;
    user-select: none;
}

/*.events-selector-panel {*/
/*    display: block;*/
/*    padding-left: 22px;*/
/*    position: relative;*/
/*}*/

.events-selector-panel label input {
    margin-right: 5px;
}

.events-selector-panel label input::before {
    content: '';
    display: block;
    position: absolute;
    left: -4px;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 9999px;
}

.events-selector-panel label:nth-child(1) input::before {
    background: var(--seablue);
}

/*.events-selector-panel label:nth-child(2) input::before {*/
/*    background: var(--seablue);*/
/*}*/

.events-info-panel {
    bottom: 94px;
    transform: translateY(calc(100% + 140px));
    transition: all 0.2s ease-out;
}

.events-info-panel.open {
    transform: translateY(0);
}

/* ------------------------------- */
/* Left panel */

.left-panel {
    position: fixed;
    top: 50px;
    left: -390px;
    box-sizing: border-box;
    width: 380px;
    height: 100%;
    background: white;
    box-shadow: 0 0 5px black;
    transition: all 0.2s ease-out;
    z-index: 1;
}

.left-panel.open {
    left: 0;
}

.left-panel h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
}

.left-panel fieldset {
    border: 1px solid #d0d0d0;
    padding: 10px 20px 10px 10px;
    margin: 10px;
}

.left-panel h3 {

}

.left-panel select,
.left-panel textarea,
.left-panel input[type=text],
.left-panel input[type=submit] {
    border: 1px solid black;
    padding: 5px;
    margin: 5px;
    width: 100%;
}

.left-panel input[type=checkbox] {
    float: left;
    margin: 5px 5px 0 5px;
}

/* ------------------------------- */
/* Share panel */

.share-panel {
    position: fixed;
    top: 10px;
    right: 50px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--sunflower);
    z-index: 3;
    transition: 0.2s all ease;
    overflow: hidden;

    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@media(min-width: 640px) {
    .share-panel {
        right: 10px;
        width: 100px;
        height: 100px;
    }
}

.share-panel.shake-animation {
    animation: share-panel-shake 8.2s cubic-bezier(.36,.07,.19,.97) both infinite;
}

.share-panel .dynamic-sm {
    transition: 0.5s all ease;
    font-size: 0.875rem;
    opacity: 0;
}

.share-panel.open .dynamic-sm {
    opacity: 1;
}

.share-panel .qr {
    width: 100px;
    image-rendering: pixelated;
}

.share-panel.open {
    width: 200px;
    height: 385px;
    animation: none;
}

.share-panel.open .qr {
    width: 200px;
}

.share-panel .social {
    display: none;
}

.share-panel.open .social {
    padding: 0 10px 10px 10px;
    display: block;
    width: 100%;
}

.share-panel .social img {
    width: 20px;
    float: left;
}


/* ------------------------------- */
/* Bottom panels */

.point-info-panel,
.route-panel {
    position: fixed;
    bottom: calc(var(--route-panel-viewport-height) * -1 + 40px);
    left: 0;
    z-index: 2;
    width: 100%;
    height: var(--route-panel-viewport-height);
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
    box-sizing: border-box;
    transition: 0.2s all ease;
}

.point-info-panel {
    bottom: calc(var(--route-panel-viewport-height) * -1 + 0px);
}

.scrollable-wrapper {
    height: calc(var(--route-panel-viewport-height) - 200px);
    overflow-y: auto;
    margin: 15px 0 15px 0;
}


@media(min-width: 640px) {
    .route-panel {
        bottom: calc(var(--route-panel-viewport-height--md) * -1 + 40px);
        height: var(--route-panel-viewport-height--md);
    }

    .point-info-panel {
        bottom: calc(var(--route-panel-viewport-height--md) * -1);
        height: var(--route-panel-viewport-height--md);
    }

    .scrollable-wrapper {
        height: calc(var(--route-panel-viewport-height--md) - 200px);
    }
}

.route-panel.open {
    /*bottom: 0;*/
    transform: translateY(calc(var(--route-panel-viewport-height) * -1 + 40px));
}

@media(min-width: 640px) {
    .route-panel.open {
        transform: translateY(calc(var(--route-panel-viewport-height--md) * -1 + 40px));
    }
}

.point-info-panel .title,
.route-panel .title {
    width: calc(100% - 50px);
    margin-left: 20px;
    margin-top: -3px;
    text-align: center;
    font-weight: bold;
    background-color: #fafafa;
    border-radius: 3px;
    margin-bottom: 20px;
    cursor: pointer;
}

.point-info-panel .title:hover,
.route-panel .title:hover {
    background: #f0f0f0;
}

.route-panel .route-item {
    /*max-width: calc(100vw - 100px);*/
    background: #fafafa;
    padding: 10px 5px;
    display: block;
    margin: 5px auto;
    text-align: left;
    position: relative;
}

.route-panel .route-item .content {
    padding-left: 35px;
}

.route-panel .route-item .content .handle {
    width: 20px;
    height: 20px;
    float: left;
}

.route-panel .route-item .content .handle::before {
    content: '☰';
    position: absolute;
    /*left: -7px;*/
    /*top: 10px;*/
    top: 38px;
    left: 12px;
    cursor: move;
}

.button {
    display: inline-block;
    margin: 5px auto;
    border: 1px solid black;
    padding: 5px;
}

.point-info-panel.open {
    /* bottom: 0; */
    transform: translateY(calc(var(--route-panel-viewport-height) * -1 - 0px));
}

@media(min-width: 640px) {
    .point-info-panel.open {
        transform: translateY(calc(var(--route-panel-viewport-height--md) * -1 + 40px));
    }
}

.point-info-panel .title {
    font-weight: bold;
}

.point-info-panel img {
    margin: 0 auto;
    /*width: 200px;*/
    height: 200px;
}

.point-info-panel .schedule {
    font-family: system-ui, -apple-system, /* Firefox supports this but not yet `system-ui` */ 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
    line-height: 1.2em;
}

.point-info-panel .schedules-two-cols {
    display: flex;
    width: 100%;
    text-align: left;
    font-size: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.point-info-panel .schedules-two-cols div {
    flex: 1;
}

.point-info-panel .schedules-two-cols div:first-child {
    padding: 5px;
    /*padding-right: 10px;*/
}

.point-info-panel .schedules-two-cols div:last-child {
    padding: 5px;
    /*padding-left: 10px;*/
}

.point-info-panel button {
    /*border: 1px solid black;*/
    /*padding: 10px;*/
    margin: 10px 1px;
}

.route-item-number {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid black;
    border-radius: 9999px;
    text-align: center;
    line-height: 1.4rem;
    position: absolute;
    /*top: -2px;*/
    top: 9px;
    left: 7px;
    margin-right: 5px;
}

/* ------------------------------- */
/* Close button */
.close-button-wrapper {
    position: relative;
}

.close-button {
    position: absolute;
    right: -9px;
    top: -5px;
    color: #aaa;
    /*border: 3px solid #f0f0f0;*/
    /*border-radius: 9999px;*/
    display: block;
    height: 34px;
    width: 34px;
    text-align: center;
    line-height: 27px;
    font-size: 30px;
    opacity: 0;
    transition: 0.2s all ease;
    cursor: pointer;
}

.close-button--top-27 {
    top: -27px;
}

.close-button:hover {
    color: #000;
}

.events-info-panel.open .close-button,
.route-panel.open .close-button,
.point-info-panel.open .close-button,
.iframe-panel.open .close-button {
    opacity: 1;
}

.close-button--variant2 {
    left: -16px;
    top: -16px;
    background: #000;
    color: white;
    border-radius: 9999px;
    border: 2px solid #ccc;
    animation: share-panel-shake--more 8.2s cubic-bezier(.36,.07,.19,.97) both infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ------------------------------- */
/* Toolbar panel */
.toolbar-panel {
    position: fixed;
    bottom: 140px;
    right: 10px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    display: block;
    width: 40px;
    height: 40px;
}

.bounds-button {
    display: block;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);*/
    border: 1px solid #fafafa;
    width: 30px;
    height: 30px;
    margin: 4px 0 0 4px;
    border-radius: 3px;
}

.bounds-icon {
    width: 30px;
    height: 30px;
}

/* ------------------------------- */
/* Toast message */
.toast-wrapper {
    position: fixed;
    bottom: -60px;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: 0.2s all ease;
}

.toast-wrapper.on {
    bottom: 20px;
}

.toast {
    width: 240px;
    padding: 10px;
    background: var(--sunflower);
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.toast-wrapper.error .toast {
    background: var(--redwine);
    color: white;
}


/* ------------------------------- */
/* Iframe panel */

.iframe-panel {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    padding: 20px;
    backdrop-filter: brightness(0.5);
    /*pointer-events: none;*/
    display: none;
}

.iframe-panel.open {
    display: block;
}

.iframe-panel .inner {
    pointer-events: all;
    background-color: white;
    width: 100%;
    height: 100%;
}

.iframe-panel .inner iframe {
    width: 100%;
    height: 100%;
}

.iframe-panel .inner .information {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    opacity: 0;
    transition: all 2s ease;
    pointer-events: none;
}

.iframe-panel .inner .information.open {
    opacity: 1;
}

/* ------------------------------- */
/* Welcome screen - Hero intro */
.welcome-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /*z-index: 1000; -- not working to go over the cookies banner */
    padding: 1em;
}

.welcome-screen .start {
    display: block;
    margin: 0 auto;
    padding: 0.5em 1em;
    font-weight: bold;
    cursor: pointer;
    border: 3px solid var(--seablue);
    color: var(--seablue);
    font-weight: bold;
}

.welcome-screen .start:hover {
    background-color: var(--seablue);
    color: white;
}

.introhero {
    font-family: 'Fredericka the Great';
    font-size: 100px;
    font-weight: 400;
    font-style: normal;
}

.animated-gradient-text_foreground__2kjjY {
    font-family: 'Fredericka the Great';
    font-size: 80px;
    font-weight: 400;
    font-style: normal;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 0.05em;
    padding-right: 0.05em;
    background-image: linear-gradient(90deg,var(--start-color), var(--end-color));
    position: relative;
    z-index: 1;
}


.animated-gradient-text_foreground-1__3O_nT {
    animation: 8s ease 0s infinite normal none running animated-gradient-text_fade-foreground-1__SuH6k;
}

.animated-gradient-text_background__104Eo {
    font-family: 'Fredericka the Great';
    font-size: 80px;
    font-weight: 400;
    font-style: normal;
    position: relative;
    display: block;
    user-select: none;
}

/*style={"--content:'Develop.';--padding:0.05em;--start-color:#007CF0;--end-color:#00DFD8"}>*/
.animated-gradient-text_background__104Eo::before {
    content: var(--content);
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color: black;
    top: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    padding-left: 0.05em;
    padding-right: 0.05em;
    /*margin-left: -18px;*/
}

.hero_title__2dqLj {
    text-align: center;
    font-size: 5em;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
    /*margin: 0 0 var(--geist-space-16x);*/
}


@media (min-width: 1200px) {
    .hero_title__2dqLj {
        font-size: 7rem;
    }
}

.animated-gradient-text_background-1__2q1-A::before {
    animation: 8s ease 0s infinite normal none running animated-gradient-text_fade-background-1__qz_La;
}

.animated-gradient-text_background-2__3r8da:before {
    animation: animated-gradient-text_fade-background-2__318o7 8s infinite;
}

.animated-gradient-text_background-3__3Bvxj:before {
    animation: animated-gradient-text_fade-background-3__11wxx 8s infinite;
}

@-webkit-keyframes animated-gradient-text_fade-foreground-1__SuH6k {
    0%,16.667%,to {
        opacity: 1
    }

    33.333%,83.333% {
        opacity: 0
    }
}

@keyframes animated-gradient-text_fade-foreground-1__SuH6k {
    0%,16.667%,to {
        opacity: 1
    }

    33.333%,83.333% {
        opacity: 0
    }
}

@-webkit-keyframes animated-gradient-text_fade-background-1__qz_La {
    0%,16.667%,to {
        opacity: 0
    }

    25%,91.667% {
        opacity: 1
    }
}

@keyframes animated-gradient-text_fade-background-1__qz_La {
    0%,16.667%,to {
        opacity: 0
    }

    25%,91.667% {
        opacity: 1
    }
}

@-webkit-keyframes animated-gradient-text_fade-foreground-2__3icLB {
    0%,to {
        opacity: 0
    }

    33.333%,50% {
        opacity: 1
    }

    16.667%,66.667% {
        opacity: 0
    }
}

@keyframes animated-gradient-text_fade-foreground-2__3icLB {
    0%,to {
        opacity: 0
    }

    33.333%,50% {
        opacity: 1
    }

    16.667%,66.667% {
        opacity: 0
    }
}

@-webkit-keyframes animated-gradient-text_fade-background-2__318o7 {
    0%,to {
        opacity: 1
    }

    33.333%,50% {
        opacity: 0
    }

    25%,58.333% {
        opacity: 1
    }
}

@keyframes animated-gradient-text_fade-background-2__318o7 {
    0%,to {
        opacity: 1
    }

    33.333%,50% {
        opacity: 0
    }

    25%,58.333% {
        opacity: 1
    }
}

@-webkit-keyframes animated-gradient-text_fade-foreground-3__jI4nQ {
    0%,50%,to {
        opacity: 0
    }

    66.667%,83.333% {
        opacity: 1
    }
}

@keyframes animated-gradient-text_fade-foreground-3__jI4nQ {
    0%,50%,to {
        opacity: 0
    }

    66.667%,83.333% {
        opacity: 1
    }
}

@-webkit-keyframes animated-gradient-text_fade-background-3__11wxx {
    0%,58.333%,91.667%,to {
        opacity: 1
    }

    66.667%,83.333% {
        opacity: 0
    }
}

@keyframes animated-gradient-text_fade-background-3__11wxx {
    0%,58.333%,91.667%,to {
        opacity: 1
    }

    66.667%,83.333% {
        opacity: 0
    }
}


@keyframes share-panel-shake {
    0% {
        transform: rotateZ(0deg);
    }

    91%, 99% {
        /*transform: translate3d(-1px, 0, 0);*/
        transform: rotateZ(-1deg);
    }

    92%, 98% {
        /*transform: translate3d(2px, 0, 0);*/
        transform: rotateZ(2deg);
    }

    93%, 95%, 97% {
        /*transform: translate3d(-4px, 0, 0);*/
        transform: rotateZ(-4deg);
    }

    94%, 96% {
        /*transform: translate3d(4px, 0, 0);*/
        transform: rotateZ(4deg);
    }
}

@keyframes share-panel-shake--more {
    0% {
        transform: rotateZ(0deg);
    }

    91%, 99% {
        /*transform: translate3d(-1px, 0, 0);*/
        transform: rotateZ(-3deg);
    }

    92%, 98% {
        /*transform: translate3d(2px, 0, 0);*/
        transform: rotateZ(6deg);
    }

    93%, 95%, 97% {
        /*transform: translate3d(-4px, 0, 0);*/
        transform: rotateZ(-12deg);
    }

    94%, 96% {
        /*transform: translate3d(4px, 0, 0);*/
        transform: rotateZ(12deg);
    }
}


/* ------------------------------- */
/* CMS Content */
.cms-content-wrapper {
    max-width: 1000px;
    padding: 20px;
    margin: 30px auto;
}

.cms-content-wrapper h1 {
    font-size: 3em;
    font-weight: bold;
}

@media(min-width: 640px) {
    .cms-content-wrapper h1 {
        text-align: left;
    }
}

.cms-content-wrapper h2 {
    margin-top: 30px;
    font-size: 2em;
    font-weight: bold;
}

.cms-content-wrapper h3 {
    margin-top: 30px;
    font-weight: bold;
}

@media(min-width: 640px) {
    .cms-content-wrapper h1 {
        text-align: left;
    }
}

.cms-content-wrapper p {
    text-align: left;
    margin: 10px 0;
}


/* ------------------------------- */
/* Festival panel */

.search-panel,
.festival-panel {
    position: fixed;
    top: 51px;
    /*bottom: 40px;*/
    left: 0;
    z-index: 1;
    width: 100%;
    height: 44px;
    background: #fafafa;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
    box-sizing: border-box;
    transition: 0.2s all ease;
    display: flex;
    align-content: center;
    cursor: pointer;
}

.blue-dot-festival {
    display: inline-block;
    margin-left: 5px;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    background-color: var(--seablue);
    border-radius: 9999px;
}

.blue-dot-festival-small {
    width: 1em;
    height: 1em;
    margin-right: 5px;
    margin-left: 0;
    position: relative;
    top: 2px;
}

.black-dot {
    background-color: black;
}

.blue-dot-festival-wrapper {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
}

.button-web-official {
    cursor: pointer;
    border: 3px solid var(--seablue);
    color: var(--seablue);
    font-weight: bold;
}

.button-web-official:hover {
    background-color: var(--seablue);
    color: white;
}

.arrow-number {
    border: 1px solid black;
    border-radius: 9999px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    float: left;
    position: relative;
    top: 10px;
}

.arrow-next {
    top: 200px;
    position: relative;
    float: right;
    right: 10px;
    display: flex;
    border: 3px solid #ccc;
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    cursor: pointer;
}

.arrow-next div:first-child {
    display: block;
    width: 14px;
    height: 2px;
    background-color: black;
    transform: rotateZ(45deg);
    position: absolute;
    top: 11px;
    left: 11px;
}

.arrow-next div:last-child {
    display: block;
    width: 14px;
    height: 2px;
    background-color: black;
    transform: rotateZ(-45deg);
    position: absolute;
    top: 21px;
    left: 11px;
}

.arrow-prev {
    top: 200px;
    position: relative;
    float: left;
    left: 10px;
    display: flex;
    border: 3px solid #ccc;
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    cursor: pointer;
}

.arrow-prev div:first-child {
    display: block;
    width: 14px;
    height: 2px;
    background-color: black;
    transform: rotateZ(-45deg);
    position: absolute;
    top: 11px;
    left: 8px;
}

.arrow-prev div:last-child {
    display: block;
    width: 14px;
    height: 2px;
    background-color: black;
    transform: rotateZ(45deg);
    position: absolute;
    top: 21px;
    left: 8px;
}

.arrow-prev:hover,
.arrow-next:hover {
    opacity: 0.5;
}

.search-icon {
    position: fixed;
    top: 13px;
    right: 98px;
    width: 22px !important;
    height: 22px !important;
    padding: 2px !important;
}

@media(min-width: 640px) {
    .search-icon {
        display: none;
    }
}

.search-panel {
    /*top: -51px;*/
    display: none;
}

.search-panel.open {
    display: block;
    /*top: 51px;*/
}

@media(min-width: 640px) {
    .search-panel {
        display: block;
        width: 240px;
        right: 98px;
        position: fixed;
        left: unset;
        background: unset;
        box-shadow: none;
    }

    .search-panel .react-autosuggest__input {
        width: 180px;
    }
}

@media(min-width: 1024px) {
    .search-panel {
        right: 158px;
    }

    .search-panel .react-autosuggest__input {
        width: 250px;
    }
}

.search-panel .react-autosuggest__container:after {
    content: url(/vector-find-icon-small.jpg);
    display: block;
    position: absolute;
    right: 26px;
    width: 16px;
    height: 20px;
    top: 11px;
}

@media(min-width: 640px) {
    .search-panel .react-autosuggest__container:after {
        right: 36px;
    }
}

@media(min-width: 1024px) {
    .search-panel .react-autosuggest__container:after {
        right: -19px;
    }
}

.language-link {
    margin-right: 0 !important;
}

.walked-distance {
    position: fixed;
    bottom: 60px;
    right: 60px;
    font-size: 24px;
    /*color: #00c7ff;*/
}
