File: //var/www/quadcode-jobs/resources/sass/components/popup-cookie.scss
.popup-cookie {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
padding: 21px 30px;
background: #F8FAFB;
box-shadow: 0px 4px 12px rgba(118, 132, 144, 0.144367);
border-radius: 20px;
max-width: 883px;
width: 100%;
z-index: 100;
@include breakpoint-down('lg') {
max-width: 668px;
padding: 14px 25px;
}
@include breakpoint-down('sm') {
max-width: none;
right: 0;
left: 0;
border-radius: 0;
bottom: 0;
transform: none;
padding: 14px 28px 16px 28px;
}
&__content {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
@include breakpoint-down('sm') {
display: block;
}
}
&__text {
font-size: 14px;
line-height: 16px;
color: #82A5C3;
max-width: 596px;
@include breakpoint-down('lg') {
max-width: 431px;
}
@include breakpoint-down('sm') {
margin-bottom: 9px;
text-align: center;
}
a {
color: map_get($pallete, link);
}
}
&__btn {
background: #82A5C3;
border-radius: 30px;
width: 170px;
height: 36px;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 16px;
line-height: 19px;
@include breakpoint-down('sm') {
margin: 0 auto;
}
}
}