.cb-cookie-popup {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.4);
z-index: 99999;
}
.cb-cookie-popup.show {
display: block;
}
.cb-cookie-popup__dialog {
padding: 50px 30px 30px 30px;
position: absolute;
top: 50%;
left: 50%;
max-width: 90vw;
max-height: 95vh;
overflow-y: auto;
width: 400px;
transform: translate(-50%, -50%);
text-align: center;
color: #31363a;
}
.cb-cookie-popup__title {
color: #31363a;
}
.cb-cookie-popup__close {
position: absolute;
top: 0;
right: 0;
width: 25px;
height: 25px;
background-color: #31363A;
text-align: center;
line-height: 25px;
cursor: pointer;
user-select: none;
}
.cb-cookie-popup__cookie-image {
width: 50px;
margin: 0 auto;
}
.cb-cookie-popup__cookie-content {
margin-top: 15px;
margin-bottom: 30px;
}
.cb-cookie-popup__cookie-content a,
.cb-cookie-popup__cookie-content a:hover,
.cb-cookie-popup__cookie-content a:active,
.cb-cookie-popup__cookie-content a:visited {
font-weight: bold;
color: white;
}
.cb-cookie-popup__cookie-content h2 {
color: #06568E;
}
.cb-cookie-popup__cookie-privacy,
.cb-cookie-popup__cookie-privacy:hover,
.cb-cookie-popup__cookie-privacy:active,
.cb-cookie-popup__cookie-privacy:visited {
text-decoration: underline;
color: #31363a;
}
.cb-cookie-popup__button-group {
display: flex;
align-items: center;
justify-content: space-evenly;
margin-left: -30px;
margin-right: -30px;
margin-bottom: -30px;
}
.cb-cookie-popup__button-group a {
flex: 1;
padding: 10px;
text-decoration: none;
text-transform: uppercase;
}
.cb-cookie-popup__button-group a:first-child {
background-color: #0080C9;
color: #ffffff;
}
.cb-cookie-popup__button-group a:last-child {
background-color: #E9BE01;
color: #31363a;
font-weight: bold;
}