File: /var/www/linde-elearning/styles/layout/_cookie.scss
.cookie {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: var(--color-white);
z-index: 200;
padding: 15px 0;
h2 {
font-size: 16px;
line-height: 1.5;
font-weight: 600;
margin-bottom: 10px;
text-align: left;
text-transform: none;
}
p {
font-size: 14px;
line-height: 1.5;
color: var(--color-1);
font-weight: 400;
margin-bottom: 15px;
}
a {
color: #4cbcea;
}
.btn-col {
display: flex;
}
.inline-buttons {
margin-top: auto;
.btn-cookie {
padding: 15px 40px;
border: none;
border-radius: 10px;
font-weight: 400;
font-size: 18px;
line-height: 1;
text-decoration: none;
color: var(--color-2);
cursor: pointer;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
transition: all 200ms ease-in-out;
position: relative;
&:focus,
&:active {
outline: none;
}
&--gradient-small {
font-size: 16px;
background: linear-gradient(90deg, #005691 0%, #00a0e1 100%, #4cbcea 100%);
padding: 10px 25px;
color: var(--color-white);
box-shadow: none;
&:hover {
box-shadow: 0px 0px 10px rgba(23, 189, 241, 0.5);
}
}
&:last-of-type {
margin-right: 0;
}
&--hollow {
padding: 12px 25px;
background: transparent;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='Gradient' x1='0' x2='100' y1='0' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23005691' offset='0'/%3E%3Cstop stop-color='%234CBCEA' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' width='100%25' height='100%25' style='height:calc(100%25 - 0px);width:calc(100%25 - 0px)' rx='10' ry='10' stroke-width='4px' fill='transparent' stroke='url(%23Gradient)'/%3E%3C/svg%3E");
&:before {
content: "";
opacity: 0;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
border-radius: 10px;
background-image: linear-gradient(90deg, #005691 0%, #00a0e1 100%, #4cbcea 100%);
transition: all 200ms ease-in-out;
}
&:hover {
&:before {
opacity: 1;
}
}
&.small {
font-size: 16px;
padding: 10px 25px;
&:hover {
box-shadow: 0px 0px 10px rgba(23, 189, 241, 0.5);
&:before {
opacity: 0;
}
}
}
}
}
}
}