File: /var/www/quadcode-site/src/style/components/popup-cookie.scss
.cookie {
position: fixed;
left: 0;
right: 0;
bottom: -100%;
background: rgba(20, 20, 20, 1);
padding: 8px;
z-index: 11;
pointer-events: none;
opacity: 0;
transition: .4s cubic-bezier(0.65, 0.05, 0.36, 1);
@include breakpoint-down('tabM') {
position: fixed;
top: auto;
left: 0;
right: 0;
bottom: 0;
padding: 20px 20px;
}
.cookieContainer {
width: max-content;
margin-inline: auto;
display: flex;
align-items: center;
gap: 24px;
font-size: 15px;
font-weight: 400;
line-height: 21px;
@include breakpoint-down('deskL') {
font-size: 14px;
line-height: 20px;
}
@include breakpoint-down('deskS') {
font-size: 12px;
line-height: 17px;
}
@include breakpoint-down('tabM') {
width: max-content;
max-width: 100%;
}
}
.cookieText {
font-size: 15px;
font-weight: 400;
line-height: 21px;
@include breakpoint-down('deskL') {
font-size: 14px;
line-height: 20px;
}
@include breakpoint-down('deskS') {
font-size: 12px;
line-height: 17px;
}
color: rgba(255, 255, 255, 1);
}
.cookieLink {
font-size: 15px;
font-weight: 400;
line-height: 21px;
@include breakpoint-down('deskL') {
font-size: 14px;
line-height: 20px;
}
@include breakpoint-down('deskS') {
font-size: 12px;
line-height: 17px;
}
margin-left: 4px;
color: rgba(45, 192, 238, 1);
text-decoration: underline;
}
.cookieButton {
font-size: 15px;
font-weight: 600;
line-height: 21px;
@include breakpoint-down('deskL') {
font-size: 14px;
line-height: 20px;
}
@include breakpoint-down('deskS') {
font-size: 12px;
line-height: 13px;
}
cursor: pointer;
color: rgba(255, 255, 255, 1);
border: 1px solid rgba(255, 255, 255, 1);
padding: 3px 35px;
border-radius: 40px;
}
&.active {
pointer-events: all;
opacity: 1;
bottom: 0;
}
}