#cookies-consent {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
  z-index:1000;
}
#cookies-consent.hide { display:none; }
.cookies-consent-container {
  position:absolute;
  top:75%;
  left:75%;
  transform:translate(-50%,-50%);
  background:white;
  padding:40px;
  max-width:80%;
  max-height:80%;
  width:650px;
  overflow:auto;
}
@media screen and (max-width: 768px) {
  .cookies-consent-container { padding:20px; }
}
.cookies-consent-container h2 {
  font-size:20px;
  line-height:1;
}
.cookies-consent-container h2::after {
  content:"";
  display:block;
  height:1px;
  width:37px;
  margin:10px 0 20px;
  background:#173c86;
}
.cookies-consent-container p {
  font-size:12px;
  line-height:15px;
  margin:0;
}
.cookies-consent-container .links { margin:20px 0 0; }
.cookies-consent-container .links a {
  display:inline-block;
  margin:0;
  color:white;
  padding:15px 20px;
  font-weight:700;
  min-width:150px;
  text-align:center;
  font-size:12px;
  line-height:1;
}
.cookies-consent-container .links a:first-child { background:#173c86; }
.cookies-consent-container .links a:last-child {
  background:#8bb043;
  margin-left:40px;
}
@media screen and (max-width: 768px) {
  .cookies-consent-container .links a { display:block; }
  .cookies-consent-container .links a:last-child {
    margin-top:20px;
    margin-left:0;
  }
}
.cookies-consent-second-screen { display:none; }
.cookies-consent-close {
  width:20px;
  height:20px;
  position:absolute;
  top:10px;
  right:10px;
  background:transparent;
  cursor:pointer;
  z-index:10;
}
.cookies-consent-close::before {
  content:"";
  display:block;
  position:absolute;
  height:2px;
  top:50%;
  width:100%;
  background:#e4e5e7;
  transform:rotate(45deg);
}
.cookies-consent-close::after {
  content:"";
  display:block;
  position:absolute;
  height:2px;
  top:50%;
  width:100%;
  background:#e4e5e7;
  transform:rotate(-45deg);
}
.cookies-consent-group { margin:0 0 40px; }
.cookies-consent-group .cookies-consent-accordeon {
  height:0;
  overflow:hidden;
  transition:height .35s;
}
.cookies-consent-group .cookies-consent-accordeon ul { padding-top:20px; }
.cookies-consent-group li {
  list-style:none;
  border-bottom:1px solid #e4e5e7;
  padding:5px 0;
  font-size:12px;
  color:#2b4043;
}
.cookies-consent-group li:first-child { border-top:1px solid #e4e5e7; }
.cookies-consent-group button {
  display:block;
  margin:20px 0 0;
  color:#8bb043;
  background:none;
  cursor:pointer;
  border-bottom:1px solid transparent;
  transition:border .5s;
}
.cookies-consent-group button:hover { border-bottom:1px solid #8bb043; }
.cookies-consent-group label {
  color:#8bb043;
  text-transform:uppercase;
  font-size:14px;
}
