.cookie-confirm-popup {
    font-size: 10px;
    padding: 0 0 10px;
    width: 100%;
    position: fixed;
    /*height: 100px;*/
    bottom: 0;
    left: 0;
    background-color: #DCDCDC;
    box-shadow: 0 0 7px 0 rgba(66,66,66,0.5);
}

.cookie-confirm-content {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.cookie-confirm-button {
    font-size: 8px;
    padding: 5px 15px;
    border-radius: 3px;
    background-color: #373737;
    color: #fff;
    margin-top: 5px;
    border: none;
}

.cookie-confirm-button:hover {
    background-color: #717171;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .cookie-confirm-content {
        width: 95%;
    }
}