/* Cookie Dialog */
#gdpr-cookie-message {
  position: fixed;
  right: 30px;
  bottom: 30px;
  max-width: 375px;
  background-color: var(--dark);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  margin-left: 30px;
  font-family: system-ui;
  z-index: 10;
}

#gdpr-cookie-message h4 {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

#gdpr-cookie-message h5 {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

#gdpr-cookie-message p,
#gdpr-cookie-message ul {
  color: white;
  font-size: 15px;
  line-height: 1.5em;
}

#gdpr-cookie-message p:last-child {
  margin-bottom: 0;
  text-align: right;
}

#gdpr-cookie-message li {
  width: 49%;
  display: inline-block;
}

#gdpr-cookie-message a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message a:hover {
  color: white;
  border-bottom-color: var(--accent);
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message button {
  border: none;
  background: var(--accent);
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  padding: 7px;
  border-radius: 3px;
  margin-left: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:hover {
  background: white;
  color: #fff;
  transition: all 0.3s ease-in;
}

button#gdpr-cookie-advanced {
  background: white;
  color: #fff;
}

#gdpr-cookie-message button:disabled {
  opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
  float: none;
  margin-top: 0;
  margin-right: 5px;
}

.privacy-page h2 {
    padding-top: 50px;
}

.privacy-page h3 {
    font-size: 30px;
    padding-top: 20px;
}

.privacy-page h4 {
    font-size: 26px;
    padding-top: 10px;
    padding-bottom: 8px;
}

.privacy-page .disable-cookies a {
    color: var(--dark);
    text-decoration: underline;
}

.privacy-page .list-roman {
    list-style-type: upper-roman;
}

.privacy-page #box {
    margin-top: var(--spacing-lg);
    text-wrap: balance;

    /* Desktop */
    @media (min-width: 1025px) {
        margin-block: var(--spacing-2xl);
    }
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    min-width: 600px;

    @media (min-width: 769px) {
        font-size: 14px;
    }
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--dark);
    padding: 8px;
    text-align: left;
    vertical-align: top;

    @media (min-width: 769px) {
        padding: 10px;
    }
}

.cookie-table th {
    background-color: var(--white);
    font-weight: bold;
}

.cookie-table a {
    color: var(--dark);
    text-decoration: none;
}

.cookie-table a:hover {
    text-decoration: underline;
}


.privacy-page .cookie-types>ul,
.privacy-page .disable-cookies>ul,
.privacy-page .glossary>ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.privacy-page .btn-grp {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    align-items: center;
    margin-block: var(--spacing-lg);
    width: 100%;

    /* Desktop */
    @media (min-width: 1025px) {
        margin-block: var(--spacing-2xl);
    }
}
