// GRPD .sticker {

position: fixed;
padding: 0 30px;
left: 0;
right: 0;
bottom: 30px;
display: flex;
justify-content: center;
z-index: 999;

} .consent {

font-size: 14px;
display: flex;
align-items: center;
position: relative;
box-sizing: border-box;
padding: 20px;
max-width: 940px;
background-color: #fff;
pointer-events: auto;
box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
border: 1px solid #ECECEE;
border-radius: 8px;

} .consent .consent-large-flag {

height: 80px;
width: 120px;

background-size: contain;

} .consent .consent-body {

flex: 1 1 auto;
margin: 0 25px;

} .consent .consent-text span {

font-weight: bold;

} .cui-button.cui-is-small {

padding: 6px 12px 5px;
min-height: 32px;

} .consent > * {

flex: 0 0 auto;

} .consent .consent-close {

position: absolute;
height: 32px;
width: 32px;
right: -16px;
top: -16px;
box-sizing: border-box;
border: 1px solid #ececee;
border-radius: 16px;
padding-top: 6px;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
background-color: #ffffff;
color: #ececee;
text-align: center;
font-size: 19px;
cursor: pointer;

} // [class^=“icon-”] { // display: inline-block; // font-family: 'icomoon' !important; // speak: none; // font-style: normal; // font-weight: normal; // -webkit-font-feature-settings: normal; // font-feature-settings: normal; // font-variant: normal; // text-transform: none; // line-height: 1; // -webkit-font-smoothing: antialiased; // -moz-osx-font-smoothing: grayscale; // } .icon-close:before {

content: "\e601";

} .cui-button {

position: relative;
box-sizing: border-box;
display: inline-flex;
align-items: center;
padding: 10px 15px 8px;
min-height: 44px;
background-color: RGB(0, 162, 255);
background-color: var(--primary-color, #00a2ff);
border: 1px solid RGB(0, 162, 255);
border: 1px solid var(--primary-color, #00a2ff);
border-radius: 6px;
text-decoration: none;
text-align: center;
font-size: 14px;
justify-content: center;
color: #fff;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

} @media only screen and (max-width: 800px){

.consent {
  display: block;
}

} @media only screen and (max-width: 800px){

.consent .consent-large-flag {
  display: none;
}

} @media only screen and (max-width: 800px){

.consent .consent-body {
    margin: 0 0 20px 0;
}

}

@media only screen and (max-width: 800px){

.consent .consent-small-flag {
  display: inline-block;
}
.consent .consent-small-flag::before {
  content: '🇪🇺';
}

} @media (max-width: 800px){

.cui-button:not(.cui-is-not-responsive) {
    width: 100%;
}

}