#dpcc-wrapper p {
    display: inline-block;
    float: left;
    margin: 0;
    margin-right: 20px;
}

#dpcc-accept {
    display: inline-block;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    white-space: nowrap;
    float: right;
}

#dpcc-wrapper {
    position: fixed;
    left: 0;
    padding: 10px 15px 10px 15px;
    width: 100%;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9999;
}

#dpcc-close-button {
    display: inline-block;
    font-size: 60px;
    cursor: pointer;
    line-height: 30px;
    margin-left: 20px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 468px) {
    #dpcc-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    body #dpcc-wrapper p {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }

    body #dpcc-accept {
        white-space: normal;
        font-size: 14px;
        padding: 5px 10px 5px 10px;
    }
}

.dpcc-hide {
    display: none !important;
}