  .privacy {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: rgba(21, 49, 90, .95);
    color: white;
    padding: 10px 20px;
    border-top: 1px solid #fff;
    display: flex;
}

.privacy .privacy__text-container {
    padding-right: 20px;
}
.privacy .privacy__text-container a {
    color: #7DBCF2;
}
.privacy .privacy__button-container {
    margin-left:auto;
    flex-basis: 400px;
}
.privacy .privacy__button {
    background: #2e7bbe;
    color: #fff;
    padding: 12px;
    text-decoration: none;
    display: block;
    text-align: center;
}


@media screen and (max-width: 600px) {
    .privacy {
        display:block;
    }

    .privacy__button {
        max-width: 400px;
        margin: 0 auto;
    }
}