body {
    position: relative;
}

.cookies-notification * {
    padding: 0px;
    margin: 0px;
}

.cookies-notification-hidden {
    display: none;
    opacity: 0;
}

.cookies-notification {
    width: auto;
    margin: 0px;
    max-width: 110%;
    padding: 20px;
    position: fixed;
    left: 50%;
    bottom: 0px;
    z-index: 99999;
    transform: translateX(-50%);
}

.cookies-notification-content {
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);;
    border-radius: 5px;
}

.cookies-notification-content p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #000000;
    letter-spacing: 0.5px;
}

.cookies-notification-content a {
    color: #0032a3;
}

.cookies-notification-content a:hover {
    color: #000;
}

.cookies-notification-content .cookies-notification-bt {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    width: 120px;
    font-size: 14px;
    color: #ffffff;
    background: #0032a3;
    border: 1px solid #ffffff;
    padding: 10px 15px;
    font-weight: 500;
    display: table;
    margin: 0px 10px;
    letter-spacing: 0.1em;
    text-align: center;
    border-radius: 5px;
}

.cookies-notification-content .cookies-notification-bt:hover {
    color: #0032a3;
    background: #ffffff;
    border: 1px solid #0032a3;
}

@media (min-width: 1200px) {

    .cookies-notification-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 1199px) {

    .cookies-notification {
        width: 100%;
    }

    .cookies-notification-content p {
        margin-bottom: 10px;
    }

    .cookies-notification-content .cookies-notification-bt {
        width: 100%;
        margin: 0px auto;
        padding: 5px 10px;
    }

}