/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.gbgkonst-wp-cookie-consent {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  /* background: rgba(255, 255, 255, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  display: none;
}

.gbgkonst-wp-cookie-consent h2 {
  margin-top: 0;
}

.gbgkonst-wp-cookie-consent.gbgkonst-wp-cookie-consent--mounted {
  display: flex;
}

.gbgkonst-wp-cookie-consent__modal * {
  color: black;
}

.gbgkonst-wp-cookie-consent__modal a,
.gbgkonst-wp-cookie-consent__modal a:hover {
  color: black;
  text-decoration: underline;
}
.gbgkonst-wp-cookie-consent__modal li {
  margin-bottom: 0.25rem;
}

.gbgkonst-wp-cookie-consent__modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e1d1e8;
  color: black;
  margin: auto;
  padding: 30px 45px;
  transition: all 300ms ease-in-out;
  max-height: 90vh;
  overflow: scroll;
}

@media only screen and (min-width: 1024px) {
  .gbgkonst-wp-cookie-consent__modal {
    display: flex;
    justify-content: space-between;
  }
  .gbgkonst-wp-cookie-consent__modal > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .gbgkonst-wp-cookie-consent__modal .step_1_text {
    width: 60%;
    margin-bottom: auto;
  }
  .gbgkonst-wp-cookie-consent__modal .step_1_buttons {
    width: 35%;
    margin-bottom: 16px;
  }
  .gbgkonst-wp-cookie-consent__modal .step_2_text {
    width: 40%;
    margin-bottom: auto;
  }
  
  .gbgkonst-wp-cookie-consent__modal .step_2_buttons {
    width: 55%;
  }
}



/* Settings */
.gbgkonst-wp-cookie-consent__modal--settings {
  background-color: #e1d1e8;
  color: #000;
}

.gbgkonst-wp-cookie-consent__modal--settings * {
  color: #000;
}

.gbgkonst-wp-cookie-consent__modal--settings a,
.gbgkonst-wp-cookie-consent__modal--settings a:hover {
  color: black;
  text-decoration: underline;
}

.gbgkonst-wp-cookie-consent__cookie-list,
.gbgkonst-wp-cookie-consent__cookie-list * {
  color: black;
  text-align: left;
}

.gbgkonst-wp-cookie-consent__cookie-list > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 6px 0;
  align-items: center;
}

.gbgkonst-wp-cookie-consent__cookie-list-toggle {
  padding-left: 36px;
}

.gbgkonst-wp-cookie-consent__cookie-list-toggle span {
  white-space: nowrap;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}

.gbgkonst-wp-cookie-consent__toggle {
  width: 60px;
  height: 36px;
  padding: 3px;
  display: flex;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  flex-direction: row;
  cursor: pointer;
}

.gbgkonst-wp-cookie-consent__toggle div {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 30px;
  pointer-events: none;
}

.gbgkonst-wp-cookie-consent__toggle--active {
  background-color: #674a99;
  flex-direction: row-reverse;
}

a.gbgkonst-wp-cookie-consent__button,
a.gbgkonst-wp-cookie-consent__button:hover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  background: white;
  color: black;
  text-decoration: none;
  margin: 32px 0 16px 0;
  font-weight: bold;
  font-size: 18px;
}

a.gbgkonst-wp-cookie-consent__button--white,
a.gbgkonst-wp-cookie-consent__button--white:hover {
  background: white;
  color: #000;
}


