#cookie-consent {
    visibility: hidden;
    min-width: 80vw;
    margin: auto;
    background-color: #fff;
    color: #492614;
    text-align: center;
    border-radius: 3px;
    padding: 10px;
    position: fixed;
    z-index: 1;
    bottom: 20px;
    left: 10%;
    right: 10%;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
    border: none;
    z-index: 2147483647;
    min-height: 38px;
    font-size: 11px;
    display: flex !important;
    align-items: center;
    font-weight: 300;
}

#text-cookie-consent {
    width: 75vw;
}

    #text-cookie-consent > a {
        color: #492614;
        text-decoration: underline;
        font-weight: 300;
    }

#button-cookie-consent {
    width: 10vw;
}


@media (max-width: 768px) {
    #cookie-consent {
        display: inline-block;
        text-align: center
    }

    #button-cookie-consent {
        width: auto;
        margin-top: 10px;
    }

        #button-cookie-consent > .btn-cookie {
            width: auto;
            margin-top: 10px;
            width: 90%;
        }
}

#cookie-consent.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

.btn-cookie {
    background-color: #492614;
    text-align: center;
    color: #fff;
    line-height: 1;
    font-weight: normal;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.068em;
    padding: 6px 10px;
    border-radius: 3px;
    border: none;
    margin-left: 5px;
    cursor: pointer;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@media only screen and (max-width: 872px) and (orientation: landscape) {
    #cookie-consent{display: none !important;}
}