/* cookie consent tool */
/*.cookie-modal-content button.secondary {
  background-color: grey;
}*/
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
.cookie-modal-content {
  background-color: white;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  border-radius: 5px;
  text-align: left;
  max-height: calc(100% - 50px);
  overflow: auto;
  overflow-x: auto;
}

.cookie-modal-content h2 {
  margin-top: 0;
}
.cookie-modal-content label {
  display: block;
  margin-bottom: 10px;
}
.cookie-modal-content button {
  background-color: var(--green);
  color: var(--txt-main);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  /*margin-right: 10px;*/
  float: right;
}
.cookie-description {
  font-size: 0.9em;
  color: #666;
}
button.accordion {
  background-color: #eee;
  /* color: #444; */
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom: 20px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.cookie-modal-content .asset {
  border-bottom: 1px solid #eee;
  padding: 10px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-radius: 10px;
}