/* ------------------------------------------------------------------------------ */
/* ----- Cookies
/* ------------------------------------------------------------------------------ */

.ce-banner{
    position: fixed;
    width: 100%;
    margin: 0px;
    left: 0px;
    bottom: 0px;
    padding: 15px 0;
    z-index: 9999;
    background-color: #503971;
    color: #ffffff;
}

.ce-banner p{
    color: #ffffff;
    margin-bottom: 20px;
}

.ce-banner a{
    color: #ffffff;
    text-decoration: underline;
}

.ce-banner a:hover{
    color: #ad9e78;	
}



.ce-banner .ce-accept{
    border:3px solid #ffffff!important;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;	
    text-align: center;
    padding: 6px 15px;
    margin-top: 20px;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
    -o-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
}

.ce-accept:hover{
    background: #ffffff;
    color: #503971!important;
}

.ce-text-container{
    /*display:table;*/
    margin: auto;
    width:80vw;
    padding-top: 10px;
}
.ce-text-wrapper{
    align-items: center;
    display: flex;
}
.ce-text{
    width:84%;
    float:left;
    margin-right:1%;
}
.ce-button-wrapper{
    text-align:left;
    width:15%;
    float:left;
}

@media (max-width:767px){

}
@media (min-width:768px) and (max-width:991px){
    
}
@media (min-width:992px) and (max-width:1199px){
    
}
@media (max-width:1200px){
    .ce-text-wrapper{display: block}
    .ce-text{
        width:100%;
        margin-right:0;
        float:none;
    }
    .ce-button-wrapper{
        text-align:center;
        width:100%;
        float:none;
    }
}

