#cookies-eu-banner {
    background: #f8f8f8;
    color: #222;
    padding: 2%;
    font-size: 13px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    float: left;
}

#cookies-eu-more,
#cookies-eu-accept {
    text-decoration: none;
    background: #222;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 10 10 10 10px;
    margin: 2px 0;
    font-size: 13px;
    margin-left: 1em;
    font-weight: bold;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}

#cookies-cancel {
    text-decoration: none;
    background: #222;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 10 10 10 10px;
    margin: 2px 0;
    font-size: 13px;
    margin-left: 1em;
    font-weight: bold;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}

#cookies-eu-accept:hover,
#cookies-eu-accept:focus {
    background: #fff;
    color: #222;
}




#cookies-cancel:hover,
#cookies-cancel:focus {
    border-color: #fff;
    background: #222;
    color: #fff;

}

/* img Modal */
/* Style the Image Used to Trigger the Modal */
#tourImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}



/* The Modal (background) */
.modal-img {
    padding-top: 20vh;
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content-img {
    margin: auto;
    display: block;
    width: 85vw;
    height: auto;
    padding: 0;
    margin-top: 10vh;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption-img {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 80vw;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content-img,
#caption-img {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close-img {
    margin-top: 10vh;
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-img:hover,
.close-img:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content-img {
        width: 100%;
    }
}