<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#cookies-eu-banner {
    border:4px solid #e30613;
    background: #fff;
    color: #3A3A38;
    padding: 20px;
    font-size: 13px;
    text-align: left;
    position:fixed;
    z-index:1001;
    max-width:50rem;
    top:1%;
    left: 50%;
    transform: translateX(-50%);
}
#cookies-eu-accept,
#cookies-eu-reject {
    border-radius: 10px;
    text-decoration: none;
    background: #e7e6e6;
    color: #3A3A38;
    border: 1px solid #3A3A38;
    cursor: pointer;
    padding: 10px 10px;
    margin: 2px 0;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}
#cookies-eu-reject {
  margin-left:10px;
}
#cookies-eu-more:hover,
#cookies-eu-more:focus,
#cookies-eu-accept:hover,
#cookies-eu-accept:focus {
    background: #fff;
    color: #222;
}
#cookies-eu-more {
    margin-left: 7px;
    line-height: 42px;
    color:#3A3A38;
}


#cookies-eu-reject:hover,
#cookies-eu-reject:focus {
    border-color: #fff;
    background: #222;
    color: #fff;
}
/*
    Custom
*/

#cookies-eu-banner input[type="checkbox"] + label, input[type="radio"] + label {
    display: inline-block;
    margin-left: 0.5rem;
    margin-right: 1rem;
    margin-bottom: 0;
    vertical-align: baseline;
}
table.cookie_table {
    table-layout:fixed;
    width:100%;
    word-wrap:break-word;
}
.cookies-check {
  margin:20px 0 20px 0;
}
.cookies-check ul {
  margin:0;
  font-size:12px;
  line-height: 1;
}
.cookies-check ul li {
  display:flex;
  flex-wrap: nowrap;
}
.cookies-check ul li div:nth-child(1) input {
  margin:0 4px 0 4px;
}
.cookies-check input {
  margin:0;
}
#cookies-eu-banner label {
  color:#3A3A38;
    cursor: pointer;
    display: block;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;

}
#cookies-eu-banner h1 {
  padding:0;
  margin:0;
  font-weight:bold;
    color:#3A3A38;
}
.button_block {
  display:flex;
  flex-wrap: wrap;
  margin:20px 0 0 0;
}
.button_block div {
  box-sizing: border-box;
}
.button_block div:nth-child(1) {
  flex: 1 0 25%;
}
.button_block div:nth-child(2) {
  flex: 3 0 75%;
}
.cookies-check {
    display:flex;
    flex-wrap: wrap;
}
.cookies-check ul {
    list-style: none;
    flex: 1 0 25%;
    box-sizing: border-box;
}
.cookies-check input[type="checkbox"] {
  display:none;
}
.cookies-check input[type="checkbox"] + label::before {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #3A3A38;
  background-color: #fff;
  display: block;
  content: "";
  float: left;
}
.cookies-check input[type="checkbox"]:checked + label::before {
  box-shadow: inset 0px 0px 0px 3px #fff;
  background-color: #000;
}


@media screen and (max-width: 1000px) {
  #cookies-eu-banner {
      left: 20%;
      transform: translateX(-20%);
  }
    .cookies-check ul {
        flex: 1 0 50%;
    }
}

@media screen and (max-width: 500px) {
    .cookies-check {
        flex-flow: column;
    }
    #cookies-eu-banner {
        left: 0%;
        transform: translateX(0%);
    }
}
</pre></body></html>