#cms-cookie-wrapper {
    position: fixed;
    bottom:0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 99999;
}

#cms-cookie-message{
    padding: 10px 15px;
    font-size: 13px;
}

#cms-cookie-message a{
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
}

#cms-cookie-allow{
    color: #000 !important;
    background-color: #fff !important;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    padding: 12px 20px;
    margin: 15px 0 15px;
    min-width: 140px;
    line-height: 1;
    display: inline-block;
    border-radius: 6px;
    cursor: pointer;

    transition: all 250ms ease-in-out;
}

#cms-cookie-allow:hover{
    text-decoration: none;
    background: #fff;
    color: #860044;
}

#cms-cookie-wrapper .col-xs-12{
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#cms-cookie-wrapper .col-xs-12 .text{
    max-width:70%;
}

@media (max-width: 623px){
    #cms-cookie-wrapper .col-xs-12{
        display:block;
    }

    #cms-cookie-wrapper .col-xs-12 .text{
        max-width:100%;
    }

    #cms-cookie-allow{
        float:right;
    }
}