.cookie-window {
width: 100%;
min-height: 60px;
position: fixed;
bottom: 0;
}
.cookie-info {
width: 100%;
max-width: 1140px;
margin: 0 auto;
height: max-content;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0.5rem 1rem 0.5rem 0;
margin: 0 auto;
background: #dbdbdb;
position: relative;
z-index: 2;
}
.cookie-close {
width: 60px;
border-right: 1px solid;
margin-right: 1rem;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.cookie-close::after, .cookie-close::before {
content: '';
display: block;
height: 3px;
width: 40px;
background: #000000;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.cookie-close::before {
-webkit-transform: translateX(9px) translateY(20px) rotate(-45deg);
-ms-transform: translateX(9px) translateY(20px) rotate(-45deg);
transform: translateX(9px) translateY(20px) rotate(-45deg);
}
.cookie-close::after {
-webkit-transform: translateX(9px) translateY(17px) rotate(45deg);
-ms-transform: translateX(9px) translateY(17px) rotate(45deg);
transform: translateX(9px) translateY(17px) rotate(45deg);
}
.cookie-text {
font-size: 14px;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1; letter-spacing: .03em;
}