.cookie-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.cookie-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 2rem;
    width: 80%;
    max-width: 700px;
    color: #000;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cookie-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 15px 0;
}

.cookie-options label {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 0 0 1rem 0;

}

.cookie-options [type=checkbox] {
  height: 24px;
  width: 24px;
  padding-top: 5px;
}


.cookie-button {
  background-color: var(--maincolor);
  color: #fff;
  border: none;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  margin: 1rem 0;
  cursor: pointer;
}

.cookie-button:hover {
  background-color: var(--maincolor-d5);
  color: #fff;
}

.cookie-href {
    cursor: pointer;
    background-color: transparent;
    
}
