29 lines
578 B
CSS
29 lines
578 B
CSS
#cmplz-cookiebanner-container {
|
|
.cmplz-cookiebanner {
|
|
z-index: 9998;
|
|
}
|
|
@media screen and (min-width: 900px) {
|
|
.cmplz-cookiebanner {
|
|
right: 120px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-height: 500px), screen and (max-width: 350px) {
|
|
.cmplz-cookiebanner {
|
|
overflow: scroll;
|
|
height: 800px;
|
|
height: fit-content;
|
|
max-height: unset;
|
|
/* top: 140px; */
|
|
top: 0px;
|
|
position: absolute;
|
|
}
|
|
|
|
.cmplz-body {
|
|
height: fit-content;
|
|
display: block;
|
|
max-height: unset;
|
|
}
|
|
}
|
|
}
|