.privacy_panel {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(154, 158, 150, 0.95);
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    z-index: 10000000;
}

.privacy_wrapper {
    flex-wrap: wrap;
    max-width: 990px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
}

.privacy_text {
    margin-bottom: 15px;
}

.privacy_text a {
    position: relative;
    white-space: nowrap;

}

.button_wrapper {
    display: flex;
    margin: 0 auto;
}

.more_btn {
    background-color: transparent;
    min-width: 100px;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    border: 1px solid #fff;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 7px 12px 8px;
}

.more_btn:hover {
    background-color: #8b8e87;
}

.privacy_panel .privacy_text a:hover {
    text-decoration: none;
    color: #cc0000;
}

.privacy_btn {
    background-color: #cc0000;
    min-width: 100px;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    border: 1px solid #cc0000;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 7px 12px 8px;
    margin-right: 15px;
}

.privacy_panel .privacy_btn:hover {
    background-color: #db110f;
    color: #fff;
    text-decoration: none;
    border-color: #db110f;
}

@media (max-width: 480px) {

    .privacy_wrapper {
        justify-content: space-around;
        flex-flow: wrap;
        padding-bottom: 50px;
    }

    .privacy_btn {
        margin-top: 20px;
    }
}