.popupCookies {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: #FFF;
    color: #000;
    opacity: 0;

    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);

    -moz-transition: bottom 1s ease, opacity 1s ease;
    -webkit-transition: bottom 1s ease, opacity 1s ease;
    -o-transition: bottom 1s ease, opacity 1s ease;
    transition: bottom 1s ease, opacity 1s ease;
}

@media (min-width: 480px) and (max-width: 799px) {  .cookiesPopup section { padding: 20px 60px; } }


@media (max-width: 799px) {.cookiesPopup section div.cookieText { padding-bottom: 20px;} } 

@media (min-width: 800px) {
    .cookiesPopup section div.cookieText { 
        width: 75%;
        float: left;
     }

    .cookiesPopup section a.button { float: right; }

    .cookiesPopup section { padding: 20px 80px; }

}

.popupCookies a.button {
    display: inline-block;
    border: 1px solid #4E4E42;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 4px;
    transition-duration: 500ms;
}

.popupCookies a.button:hover {
    background-color: #4E4E42;
    color: #FFF;
}