﻿.info-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: lightgreen;
    width: 50%;
    height: 300px;
    overflow: auto;
    box-shadow: -2px -2px 10px rgba(0,0,0,0.2);
    padding: 10px;
    box-sizing: border-box;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}


.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 2147483645;
    box-sizing: border-box;
    width: 50%;
    background-color: #F1F6F4;
    animation: slideUp 0.5s ease-out forwards;
    border-top-left-radius: 20px;
}

.cookie-consent-banner__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 32px;
}

.cookie-consent-banner__copy {
    margin-bottom: 16px;
}

.cookie-consent-banner__actions {
}

.cookie-consent-banner__header {
    margin-bottom: 8px;
    font-family: "CeraPRO-Bold", sans-serif, arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

.cookie-consent-banner__description {
    font-family: "CeraPRO-Regular", sans-serif, arial;
    font-weight: normal;
    color: #838F93;
    font-size: 16px;
    line-height: 24px;
}

.cookie-consent-banner__cta {
    box-sizing: border-box;
    display: inline-block;
    min-width: 164px;
    padding: 11px 13px;
    border-radius: 2px;
    background-color: #2CE080;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-family: "CeraPRO-Regular", sans-serif, arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

.cookie-consent-banner__cta--secondary {
    padding: 9px 13px;
    border: 2px solid #3A4649;
    background-color: transparent;
    color: #2CE080;
}

.cookie-consent-banner__cta:hover {
    background-color: #20BA68;
}

.cookie-consent-banner__cta--secondary:hover {
    border-color: #838F93;
    background-color: transparent;
    color: #22C870;
}

.cookie-consent-banner__cta:last-child {
    margin-left: 16px;
}




.map-location {
    position: absolute;
}


.map-location-details {
    display: none;
    background: #fff;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.1);
}



.consent-window {
    position: fixed;
    bottom: -80%;
    right: 0px;
    width:50%;
    background-color: #f1f6f4;
    color: black;
    border-radius: 20px 0 0 0;
    padding: 20px;
    transition: bottom 0.5s;
    z-index: 1000;
    line-height:16px;
   
}

    .consent-window.show {
        bottom: 10px;
    }

    .consent-window h2 {
        font-size: 1.0rem;
        font-weight:bolder;
    }

    .consent-window p {
        font-size: 0.7rem;
        color: #838F93;
    }

    .consent-window .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: transparent;
        border: none;
        color: black;
        font-size: 1.5rem;
    }

@media (max-width: 767.98px) {
    .consent-window {
        bottom: -90%;
        width: 100%;
        right: 0;
        border-radius: 0;
        font-size: 0.5rem;
    }

        .consent-window h2 {
            font-size: 1.0rem;
        }

        .consent-window p {
            font-size: 0.675rem;
        }
}
