.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

h4 {
    font-weight: 300;
}

.crush-preferences {
    position: fixed;
    bottom: 30px;
    width: 100%;
    background-image: url('assets/imgs/cookie-popup-bg.png');
    background-size: cover;
    z-index: 100;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px #505050;
    color: #fff;
    display:block;
    min-height:150px;
}
@media screen and (min-width:560px) {
    .crush-preferences {
        display:flex;
    }
}

.crush-preferences h4 {
    margin: 0;
    color: #fff;
    margin-bottom: 20px;
    font-size: 26px;
}

.crush-preferences p {
    font-size:14px;
    margin: 15px 20px;
}

.crush-preferences button {
    background-color: transparent;
}

@media screen and (min-width:560px) {
    .crush-preferences p {
        align-self: center;
        display:inline-block;
        font-size:17px;
        width:65%;
    }
}

.crush-preferences a {
    text-decoration: underline !important;
    color: #fff;
}

.crush-preferences button {
    transition: background-color 0.3s;
    width: 120px;
    height: 40px;
    padding: 5px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    margin-bottom:5px;
    margin-right: 20px;
    width:100%;
}

@media screen and (min-width:560px) {
    .crush-preferences button {
        position: absolute;
        right: 30px;
        margin-bottom:0;
        margin-right: 0;
        min-width: 100px;
        width:auto;
    }
}

@media screen and (min-width:1010px) {
    .crush-preferences button {
        min-width: 200px;
    }
}

.crush-preferences button:hover {
    background-color: #fff;
    transition: background-color 0.3s;
    color: #1f1f1f;
    cursor:pointer;
}

@media screen and (min-width:560px) {
    .crush-preferences .accept-button {
        margin-left: auto;
        top: 30px;
    }

    .crush-preferences .refuse-button {
        margin-left: 1em;
        top: 80px;
    }
}