#consent {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    width: calc(100% - 40px);
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background-color: #052634;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    box-shadow: 0 0 10px -2px rgba(0,0,0,.9);
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity .8s ease, bottom .8s ease, visibility .8s ease;
}
#consent.hidec {
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}
#consent a {
    color: #fff;
    white-space: nowrap;
}
.cmsg {
    margin-right: 20px;
}
#cbut {
    padding: 10px 14px;
    background-color: #14842f;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 430px) {
    #consent {
        flex-wrap: wrap;
        text-align: center
    }
    .cmsg {
        margin-right: 0;
        margin-bottom: 20px
    }
    #cbut {
        flex-basis: 100%
    }
}