﻿html, body {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    background-color: #494948;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.head {
    background-color: #494948;
}

    .head .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        font-size: 35px;
        padding-bottom: 1%;
        padding-top: 1%;
        padding-left: 4%;
        margin-bottom: 0px;
    }

.header-text {
    margin-left: auto;
}

.section {
    background-color: #636362;
}

p {
    font-size: 18px;
    margin: 0px;
}

span {
    display: block;
}

@media (min-width: 576px) {
    .box {
        font-size: 22px;
    }
}

.box {
    background-color: #494948;
    padding: 2%;
    font-size: 17px;
    margin-bottom: 5px;
    word-break: break-all;
}

.fas {
    margin-right: 18px;
}

.input-box {
    padding: 5px 1em;
    display: flex;
    align-items: center;
    background-color: #636362;
    border-radius: 3px;
}

.result-value {
    text-align: right;
    width: 100%;
}

.result-name {
    width: 100%;
}

.result-name-value-container {
    display: flex;
}

.input-box-spacer {
    height: 22px;
}

.input-box input {
    width: 100%;
    background-color: transparent;
    border: 0;
    caret-color: #ffffff;
    color: #ffffff;
}

input {
    height: 40px;
}

    input:focus, textarea:focus, select:focus {
        outline: none;
    }

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.7; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.7);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.7);
}

::-webkit-clear-button,
::-webkit-outer-spin-button,
::-webkit-inner-spin-button,
::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/*        ::-webkit-clear-button,
        ::-webkit-outer-spin-button,
        ::-webkit-inner-spin-button,
        ::-webkit-calendar-picker-indicator {
            display: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            margin: 0;
        }*/

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Firefox */
input[type=date] {
    -moz-appearance: textfield;
}

.cc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    grid-template-areas: "last-4-header" "last-4" "last-4-error";
}

@media (min-width: 576px) {
    .cc-grid {
        grid-template-columns: minmax(auto, 1fr) minmax(auto, 1fr);
        grid-template-areas: "last-4-header" "last-4" "last-4-error";
    }
}

.cc-grid input {
    text-align: center;
}

.last-4-header {
    grid-area: last-4-header;
}

.last-4 {
    grid-area: last-4;
    display: grid;
    grid-template-columns: repeat(5, 60px);
    gap: 5px;
}

.last-4-error {
    grid-area: last-4-error;
}

.input-box {
    padding: 5px 0.5em;
}

.info-button {
    background-color: transparent;
    border: none;
    color: white;
    padding: 12px 16px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.info-button i{
    margin-right:0;
    font-size: 24px;
}

.info-div {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.info-div-content {
    background-color: #636362;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    display:flex;
    flex-direction: column;
    align-items:flex-start;
}

    .info-div-content p {
        word-break: break-word;
    }

    .info-links{
        width: 100%;
        display:flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .info-links a{
        color: lightblue;
        font-weight: bold;
    }


    .info-div-content button {
        margin-top: 30px;
        word-break: break-word;
        width: 100%;
    }

small.error {
    color: #f44336;
}

.btn-default {
    background-color: #494948;
    border: none;
    padding: 2%;
    font-size: 22px;
    display: block;
    color: #ffffff;
}

    .btn-default:hover {
        color: #005d8c;
        background-color: #ffffff;
    }

#btn-clear-coords {
    background-color: transparent;
    display: flex;
}

.fas-no-margin {
    margin: 0;
}

.container {
    padding: 2%;
    padding-left: 4%;
    padding-right: 4%;
}

.inline {
    display: inline;
}

@media (max-width: 991px) {
    .abteil {
        margin-top: 20px;
    }
}

.small {
    font-size: 14px;
}

footer .container {
    text-align: right;
    font-size: 18px;
}

    footer .container a {
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
    }

.details-button {
    margin-bottom: 5%;
}

#cultureSelector {
    color: white;
    background-color: #494948;
    margin-right: 20px;
}

#map-container {
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 1; /* Sit on top */
    background-color: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    position: fixed;
}

#map {
    position: absolute;
    width: 100%;
    height: 100%;
}

.btn-map-wrapper {
    padding: 2% 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.btn-map {
    width: 100%;
    z-index: 2;
    padding: 0.375rem 0.75rem;
    position: relative;
    top: 0px;
    left: 0px;
    max-width: 1140px;
    margin-bottom: 5px;
}

.circle-marker {
    position: relative;
    top: 50%;
    left: 50%;
    height: 400px;
    color: black;
    z-index: 1;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    width: 400px;
    border: 1px solid rgba(255, 0, 0, 0.75);
    margin-top: -200px;
    margin-left: -200px;
    pointer-events: none;
}

#gps-coords {
    cursor: pointer;
}


.pac-container {
    z-index: 2;
    background-color: #636362;
    padding-bottom: 12px;
    margin-right: 12px;
    color: white;
}

.pac-item {
    padding: 5px 11px;
    width: 100%;
    text-overflow: clip;
    border: 0;
}

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

.pac-container * {
    display: inline-block;
    font-size: 13px;
    color: white;
}

.pac-item-query {
    font-size: 17px;
    color: white;
}

.pac-matched {
    font-size: 17px;
    color: white;
    font-weight: bolder;
}

#pac-input {
    z-index: 2;
    /*margin-top: 8px;*/
    margin-top: 60px;
    margin-left: 10px;
    margin-right: 10px;
    text-overflow: ellipsis;
    width: calc(100% - 20px);
    max-width: 400px;
    color: white;
    font-size: 17px;
    border-radius: 3px;
    border: 0;
}

.gm-bundled-control-on-bottom {
    bottom: 260px !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(118, 118, 118);
    opacity: 0;
    transition: opacity 1s ease;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    z-index: 99998;
}

.cookie-banner-text {
    font-size: 16px;
    margin-left: 1em;
    margin-right: 1em;
}

    .cookie-banner-text a {
        opacity: .8;
        display: inline-block;
        padding: 0.2em;
        text-decoration: underline;
        color: rgb(255, 255, 255);
    }

    .cookie-banner-text a:hover {
        opacity: 1;
        text-decoration: none;
        color: rgb(255, 255, 255);
    }

.cookie-banner-close {
    margin: 0;
    padding: 0.8em 1.8em;
    height: 100%;
    background-color: rgb(3, 247, 255);
    border: none;
    cursor: pointer;
    color: white;
    font-size: 0.9em;
    font-weight: 700;
}

@media (max-width: 414px) and (orientation: portrait), (max-width: 736px) and (orientation: landscape){
    .cookie-banner {
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cookie-banner-text {
        margin-bottom: 1em;
        margin-top: 1em;
    }
   
}

.no-results-infos{
    word-break:break-word;
}

.no-results-infos h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 16px;
}

.link {
    font-weight: 600;
}

.link-url {
    font-weight: 400;
    color: dodgerblue;
}

.no-results-infos p {
    font-size: 16px;
}

