/* input(488,29): run-time error CSS1038: Expected hex color, found '#0003'
input(644,46): run-time error CSS1038: Expected hex color, found '#0003'
input(646,45): run-time error CSS1038: Expected hex color, found '#0003'
input(1039,44): run-time error CSS1034: Expected closing parenthesis, found ','
input(1039,44): run-time error CSS1042: Expected function, found ','
input(1039,49): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')' */
:root {
    /* Text, button */
    --main-color: #0ABAB5;
    --main-color-dark: #244C44;
    --secondary-color: #3FCAAF;
    --light-color: #9CFAE7;
    --main-font: Gilroy Light;
    --text-font: Nunito;
    --gray-color: #343434;
    --home-aero-indicator-color: #296178;
    --background-color: #2f4f4f;
    --night-background-color: #132834;
}

@font-face {
    font-family: Gilroy Light;
    src: url(../fonts/Gilroy-Light.otf?v=s1ydJNWt0ifRFPhFAw8kW033a2M) format('truetype');
}

@font-face {
    font-family: Nunito;
    src: url(../fonts/Nunito-Regular.ttf?v=s1ydJNWt0ifRFPhFAw8kW033a2M) format('truetype');
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--main-font), sans-serif;
    /* Default pixel size for em ones */
    font-size: 16px;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

* { box-sizing: border-box; }

p { margin: 0; }

main {
    height: calc(100vh - 64px);
    width: 100%;
    overflow: hidden;
}

main.headerless { height: 100%; }

.fill-container {
    width: 100%;
    height: 100%
}

.text-center { text-align: center; }

.link {
    color: var(--main-color);
    font-weight: bold;
}

.link:hover {
    cursor: pointer;
    text-decoration: underline;
}

.grow-y { overflow-y: auto; }

/* buttons */

button {
    width: 127px;
    height: 34px;
    font-family: var(--main-font);
    font-size: 0.6875em;
    text-transform: uppercase;
    border: none;
}

button:hover { cursor: pointer; }

button.white {
    background-color: white;
    color: var(--main-color);
}

button.white:hover { background-color: #E5E5E5; }

button.white:active {
    background-color: white;
    color: #3384E1;
}

button.main {
    background-color: var(--main-color);
    color: white;
}

button.main:hover { background-color: var(--secondary-color); }

button.main:active {
    background-color: var(--main-color);
    color: #AFD3FC;
}

/* dropdown */

.dropbtn {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-transform: none;
    font-size: 0.875em;
    line-height: 1.375em;
    text-align: left;
}

.dropbtn.showing { color: #AFD3FC; }

.dropbtn .chevron {
    float: right;
    position: relative;
    top: 2px;
    left: 10px;
}

.dropbtn.showing .chevron path { stroke: #AFD3FC; }

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown button { width: max-content }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    min-width: 186px;
    min-height: 34px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content .item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: white;
    font-size: 0.875em;
    line-height: 1.375em;
    padding: 6px 10px;
}

.dropdown-content .item:hover {
    cursor: pointer;
    background-color: var(--gray-color);
}

.dropdown-content .item.selected { background-color: var(--main-color); }

.dropdown-content.show { display: block; }

/* Home layout */

.home-logo-wrapper {
    margin: 0 auto;
    margin: 50px 0px 30px 0px;
}

.home-logo-wrapper img { width: 260px; }

.home-title-wrapper {
    font-family: var(--text-font);
    font-size: 1.75em;
    line-height: 1.5em;
    color: var(--main-color);
    max-width: 740px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.home-photo-wrapper { position: relative; }

.home-photo-wrapper img { width: 100%; }

.home-description-wrapper {
    margin: 0 auto;
    padding: 40px 0px 24px 0px;
    max-width: 660px;
    color: #4C4C4C;
    font-size: 1em;
    line-height: 1.5em;
}

.home-button-wrapper button {
    width: 243px;
    height: 54px;
    margin-bottom: 56px;
}

/* Home indicators */

.home-aero-indicators-container {
    position: absolute;
    width: 100%;
    top: 46%;
}

@media (max-width: 1500px) {
    .home-aero-indicators-container { top: 44%; }
}

@media (max-width: 1200px) {
    .home-aero-indicators-container { top: 42%; }
}

@media (max-width: 800px) {
    .home-aero-indicators-container { top: 40%; }
}

@media (max-width: 600px) {
    .home-aero-indicators-container { top: 36%; }
}

.home-aero-indicator {
    float: left;
    position: relative;
}

.home-aero-indicator.position { left: 19.85%; }

.home-aero-indicator.size { left: 45.6%; }

.home-aero-indicator.distance { left: 70%; }


@media (max-width: 600px) {
    .home-aero-indicator.position { left: 20%; }

    .home-aero-indicator.size { left: 40%; }

    .home-aero-indicator.distance { left: 60%; }
}

.home-aero-indicator-label {
    position: absolute;
    top: -22px;
    font-size: 0.875em;
    font-weight: 600;
    color: var(--home-aero-indicator-color);
}

.home-aero-indicator .plus {
    float: left;
    position: relative;
}

.home-aero-indicator .plus svg { fill: var(--home-aero-indicator-color); }

.home-aero-indicator .circle {
    float: left;
    position: relative;
    left: -24px;
}

.home-aero-indicator .circle svg { fill: var(--home-aero-indicator-color); }

.home-aero-indicator:hover { cursor: pointer; }

.home-aero-indicator:hover .circle { transform: scale(1.285); }

/* Home info popup */

.home-information-panel-wrapper {
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    visibility: hidden;
    opacity: 0;
}

.home-information-panel-wrapper.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}

.home-information-panel {
    position: absolute;
    top: calc(50% - 110px);
    left: calc(50% - 373px);
    background-color: white;
    width: 747px;
    box-shadow: 0px 12px 12px 0 #03142880;
    overflow: hidden;
    height: 220px;
}

.home-information-panel .text-container {
    float: left;
    width: 61%;
    height: 100%;
    text-align: left;
    padding: 36px;
}

.home-information-panel .text-container .title {
    font-size: 1.25em;
    line-height: 1.375em;
    color: #292929;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

.home-information-panel .text-container .description {
    font-size: 0.875em;
    line-height: 1.375em;
    color: #4C4C4C;
}

.home-information-panel .image-container {
    float: right;
    width: 39%;
    height: 100%;
}

.home-information-panel .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-information-panel .image-container .close-container {
    float: left;
    position: absolute;
    top: 4px;
    right: 4px;
    pointer-events: auto;
}

.home-information-panel .image-container .close-container:hover { cursor: pointer; }

@media (max-width: 768px) {
    .home-information-panel {
        left: calc(50% - 320px);
        width: 640px;
    }
}

@media (max-width: 480px) {
    .home-information-panel {
        left: calc(50% - 180px);
        width: 360px;
        height: 320px;
    }
}

.description-image { }

/* Home more information */

.home-more-information-panel-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-color: #00000066;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
}

.home-more-information-panel-wrapper.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}

.home-more-information-panel {
    position: absolute;
    top: calc(50% - 240px);
    left: calc(50% - 422px);
    background-color: white;
    width: 844px;
    height: 480px;
    box-shadow: 0px 12px 12px 0 #03142880;
    overflow: hidden;
    padding: 32px;
}

.home-more-information-panel .row { }

.home-more-information-panel .column { float: left; }

.home-more-information-panel .close-button {
    float: right;
    top: 8px;
    right: 8px;
    position: absolute;
}

.home-more-information-panel .close-button:hover { cursor: pointer; }

.home-more-information-panel .table-title {
    color: var(--main-color);
    font-family: var(--text-font);
    font-size: 1.5em;
    margin-bottom: 32px;
}

.home-more-information-panel .box {
    background-color: rgba(245, 245, 245, 0.6);
    width: 249px;
    height: 98px;
    padding: 24px;
    margin-left: 16px;
    margin-bottom: 16px;
}

.home-more-information-panel .lastRow .box { height: 134px; }

.home-more-information-panel .box.first { margin-left: 0; }

.home-more-information-panel .box.double { width: 514px; }

.home-more-information-panel .title {
    color: var(--main-color);
    font-size: 0.875em;
    margin-bottom: 10px;
}

.home-more-information-panel .description {
    color: var(--main-color-dark);
    font-size: 0.70em;
}

.home-more-information-panel .description strong { font-size: 1.25em; }

@media (max-width: 900px) {
    .home-more-information-panel {
        width: 640px;
        left: calc(50% - 320px);
        height: auto;
        top: 90px;
    }
}

@media (max-width: 640px) {
    .home-more-information-panel {
        width: 480px;
        left: calc(50% - 240px);
        height: auto;
        top: 90px;
    }

    .home-more-information-panel .box { margin-left: 0; }

    .home-more-information-panel .box.double {
        width: auto;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .home-more-information-panel {
        width: 360px;
        left: calc(50% - 180px);
        height: auto;
        top: 90px;
    }
}

/* Header layout */

.header {
    position: relative;
    background-color: var(--main-color);
    height: 64px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px 0 #0003;
    z-index: 200;
}

.header-contents { width: 100%; }

.header-logo { margin: auto; }

.header-logo img {
    max-width: 190px;
    margin: 0 24px;
}

.header-left-container {
    float: left;
    margin-top: 22px;
}

.header-right-container {
    float: right;
    padding: 15px;
}

.section-header {
    font-family: var(--main-font);
    color: var(--light-color);
    font-size: 0.875em;
    line-height: 1.375em;
    margin-right: 24px;
}

.selector-wrapper {
    position: relative;
    float: right;
}

#place-selector {
    position: absolute;
    top: -6px;
}

#place-selector .dropdown-content { margin-top: 18px; }

/* action buttons */

.action-button-wrapper {
    float: left;
    margin-right: 22px;
    margin-top: 6px;
}

.action-button:hover { cursor: pointer; }

.action-button .tooltip {
    visibility: hidden;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.875em;
    padding: 4px 8px;
    bottom: -30px;
    margin-left: -30px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.action-button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.action-button svg path { fill: var(--light-color); }

.action-button.active svg path { fill: white; }

.go-to-map-button { margin-left: 30px; }

/* Map */

.div-poi-marker { transform: translate(-50%, calc(-75% - 4px)); }

.poi-marker { padding-bottom: 4px; }

.poi-marker:hover { cursor: pointer; }

.poi-marker .title {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.poi-marker .circle {
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin: 0 auto;
}

.aero-marker .circle {
    background-color: #fff;
    width: 4px;
    height: 4px;
    border-radius: 2px;
}

.zoom-controls {
    width: 52px;
    margin: 0px 30px 60px 0;
    right: 0 !important;
}

.controls-zoom-in {
    background-color: #00000099;
    width: 24px;
    height: 24px;
    border: 0px solid #00000099;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.controls-zoom-out {
    background-color: #00000099;
    width: 24px;
    height: 24px;
    border: 0px solid #00000099;
    border-radius: 50%;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

/* Viewer */

.viewer-container {
    position: relative;
    background-color: var(--background-color);
}

.night { background-color: var(--night-background-color); }

.viewer-holder {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    top: 50%;
    transform: translateY(-50%);
}

.viewer-background { box-shadow: 0 2px 8px 0 #0003; }

.viewer.scrollbar { box-shadow: 0 2px 8px 0 #0003; }

#background img {
    position: relative;
    z-index: -1;
}

.difference {
    color: white;
    margin-right: 10px;
}

.aero {
    position: absolute;
    overflow: hidden;
}

.aeroImg {
    transform-origin: top left;
}

.beacon {
    position: absolute;
    transform: translate(-50%, -100%);
    mix-blend-mode: screen;
}

@keyframes aeroAnimation0_25X {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(-960px);
    }
}

@keyframes aeroAnimation0_5X {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(-1920px);
    }
}

@keyframes aeroAnimation {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(-3840px);
    }
}

@keyframes aeroAnimation2X {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(-7680px);
    }
}

@keyframes beaconAnimation {
    from { background-position-x: 0px; }

    to { background-position-x: 48px; }
}

/* Viewer scroll area */

.scroll-area-wrapper {
    position: absolute;
    width: calc(100vw - 180px);
    right: 60px;
    left: 120px;
    bottom: 33px;
    overflow: hidden;
}

.no-aeros .scroll-area-wrapper {
    width: calc(100vw - 60px);
    right: 30px;
    left: 30px;
}

.night .scrollbar-background { background-color: rgba(255, 255, 255, 0.6); }

.scroll-content { height: 6px; }

.simplebar-scrollbar.simplebar-visible::before { opacity: 1; }

.simplebar-scrollbar::before { background: white; }

.custom-scroll:hover,
.custom-scroll.simplebar-dragging {
    cursor: pointer;
    height: 10px;
}

.custom-scroll:hover .scrollbar-background,
.custom-scroll.simplebar-dragging .scrollbar-background {
    height: 8px;
    margin-top: 1px;
}

.simplebar-track.simplebar-horizontal {
    height: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.custom-scroll:hover .simplebar-track.simplebar-horizontal { border-radius: 6px; }

.night .simplebar-track.simplebar-horizontal { background-color: rgba(255, 255, 255, 0.6); }

.custom-scroll:hover .simplebar-track.simplebar-horizontal,
.custom-scroll.simplebar-dragging .simplebar-track.simplebar-horizontal { height: 10px; }

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    top: 0px;
    height: 6px;
}

.custom-scroll:hover .simplebar-track.simplebar-horizontal .simplebar-scrollbar,
.custom-scroll.simplebar-dragging .simplebar-track.simplebar-horizontal .simplebar-scrollbar { height: 10px; }

.scroll-aero-indicators {
    margin-top: 2px;
    background-color: #00000066;
    height: 24px;
    width: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.night .scroll-aero-indicators { background-color: rgba(255, 255, 255, 0.4); }

.aero-indicator {
    position: absolute;
    background-color: white;
    width: 1px;
    height: 12px;
    display: flex;
    align-items: center;
}

/* Information panel */

.info-wrapper {
    position: absolute;
    float: right;
    right: 22px;
    transition: all .1s ease-in-out;
    padding: 10px;
    bottom: 25px;
}

.info-wrapper:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.no-aeros .info-wrapper { display: none; }

.viewport-info-container {
    z-index: 1000;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: center;
}

.viewport-info-container.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}

.no-aeros .viewport-info-container { display: none; }

.viewport-info-box {
    background-color: white;
    box-shadow: 0px 12px 36px rgba(3, 20, 40, 0.5);
    margin: 24px;
    padding: 24px;
    color: #292929;
    font-size: 0.875em;
    line-height: 1.375em;
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.viewport-info-close {
    position: absolute;
    top: 6px;
    right: 6px;
}

.viewport-info-close:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.flexrow { display: flex; }

.flexcolumn {
    display: flex;
    flex-direction: column;
}

.flexwrap { flex-wrap: wrap; }

.flexcenter { align-items: center; }

.info-title {
    color: #009681;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
}

.info-subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.biggap { gap: 24px; }

.smallgap { gap: 8px; }

.hgap { column-gap: 38px; }

.vgap { row-gap: 20px; }

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background: rgba(41, 41, 41, 0.8);
    color: #FFFFFF;
    text-align: center;
    padding: 4px 8px;
    position: absolute;
    z-index: 1;
    margin-top: -3px;
    margin-left: 4px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    width: max-content;
    max-width: 450px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Compass */

.compass-wrapper {
    position: absolute;
    width: max-content;
    left: 36px;
    bottom: 16px;
    z-index: 3;
}

.compass-azimut {
    background-color: rgba(0, 0, 0, 0.6);
    width: max-content;
    margin: 0 auto;
    margin-bottom: 4px;
    font-size: 0.75em;
    font-weight: bold;
    color: white;
    font-weight: bold;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 2px 6px 4px;
}

.compass-wrapper .compass-canvas-wrapper {
    width: 64px;
    height: 64px;
}

.no-aeros .compass-wrapper { display: none; }

/* Mini-map */

.mini-map-container {
    position: absolute;
    bottom: 92px;
    right: 32px;
    transition: width 0.75s, height 0.75s;
    display: none;
}

.mini-map-container.showing { display: block; }

.mini-map-container.minimized {
    width: 270px;
    height: 270px;
}

.mini-map-container.maximized {
    width: 540px;
    height: 540px;
}

.mini-map-container .button {
    margin: 8px;
    z-index: 100;
    position: relative;
}

.mini-map-container .button:hover { cursor: pointer; }

.mini-map-container .button > * { margin: 0 auto; }

.mini-map-container .size-button {
    float: left;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

.mini-map-container .size-button.maximized { transform: rotate(180deg); }

.mini-map-container .close-button {
    float: right;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
}

.map-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.map-wrapper > * {
    width: 100%;
    height: 100%;
}

.map-wrapper .poi-view-marker {
    position: relative;
    margin-left: -50%;
    margin-top: -50%;
    width: 102px;
    height: 102px;
}

.map-wrapper .poi-view-marker canvas {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.map-wrapper .poi-view-marker .circle {
    width: 24px;
    height: 24px;
    position: absolute;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0px 0px 0px 2px rgb(0, 0, 0, 0.6);
}

.map-wrapper .poi-view-marker svg { margin-left: -1px; }

/* Share dialog */

.share-dialog {
    position: fixed;
    width: 452px;
    height: 292px;
    left: calc(50% - 226px);
    top: calc(50% - 146px);
    background-color: white;
    padding: 58px;
    box-shadow: 0px 12px 36px rgba(3, 20, 40, 0.5);
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    visibility: hidden;
    opacity: 0;
}

.share-dialog.showing {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}

.share-dialog h3 {
    font-size: 1.25em;
    text-align: center;
    padding: 0;
    margin-top: 0;
    margin-bottom: 32px;
}

.share-dialog .icons {
    justify-content: center;
    display: flex;
}

.share-dialog .icons > * { margin-right: 48px; }

.share-dialog .icons > *:hover { cursor: pointer; }

.share-dialog .icons > *:last-child { margin-right: 0; }

.share-dialog .clipboard {
    border: 1px solid #B3B3B3;
    margin-top: 32px;
    height: 38px;
    padding: 8px;
}

.share-dialog .clipboard .text {
    float: left;
    height: 100%;
}

.share-dialog .clipboard .text input,
.share-dialog .clipboard .text input:focus {
    border: none;
    outline: none;
    font-size: 0.875em;
    color: #292929;
    height: 100%;
    width: 227px;
    text-overflow: ellipsis;
}

.share-dialog .clipboard .text input::selection { background-color: transparent; }

.share-dialog .clipboard .text input::-moz-selection { background-color: transparent; }

.share-dialog .clipboard .icon {
    float: right;
    font-size: 0.875em;
}

.share-dialog .clipboard .icon:hover { cursor: pointer; }

.share-dialog .clipboard .icon span {
    align-items: center;
    height: 24px;
    margin: 0;
    float: right;
    display: flex;
    margin-left: 10px;
}

.share-dialog .copied {
    display: none;
    position: absolute;
    bottom: 32px;
}

.share-dialog .copied.show { display: block; }

.share-dialog .close-button {
    position: absolute;
    right: 14px;
    top: 14px;
}

.share-dialog .close-button:hover { cursor: pointer; }

/* Help Dialog */

.help-dialog {
    z-index: 1000;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: center;
}

.help-dialog.showing {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}

.help-dialog-box {
    background-color: white;
    box-shadow: 0px 12px 36px rgba(3, 20, 40, 0.5);
    margin: 24px;
    padding: 24px;
    color: #292929;
    font-size: 0.875em;
    line-height: 1.375em;
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-dialog-close {
    position: absolute;
    top: 6px;
    right: 6px;
}

.help-dialog-close:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.help-dialog-left {
    position: absolute;
    top: 230px;
    left: 6px;
}

.help-dialog-left:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.help-dialog-right {
    position: absolute;
    top: 230px;
    right: 6px;
}

.help-dialog-right:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.help-dialog-left.disabled {
    opacity: 0.3;
    cursor: default;
}

.help-dialog-right.disabled {
    opacity: 0.3;
    cursor: default;
}

.help-dialog-bullet {
    margin: 0 8px;
    padding: 4px;
    cursor: pointer
}

.help-dialog-bullet.selected {
    cursor: default;
}

.help-dialog-bullet.selected svg circle {
    fill: #0ABAB5;
}

.no-turbines-wrapper {
    position: absolute;
    width: 100%;
    height: max-content;
    bottom: 75px;
    z-index: 2;
    display: none;
}

.no-visible-aeros .no-turbines-wrapper {
    display: block;
}

.no-turbines {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-style: normal;
    font-size: 14px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    user-select: none;
}