/* ---------------------------
*
*
*
*  Cookie Consent
*
*
*
---------------------------- */
/* Popup Container Settings */
/* Both Buttons */
/* Accept */
/* Cookies Popup */
/* line 39, cc.scss */


#cookie-popup > .cc__btn-container {
  display: flex;
}

/* line 42, cc.scss */
#cookie-popup {
  opacity: 0;
  z-index: 9999;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  border: 1px solid black;
  border-radius: 2px;
  margin: 1rem;
  padding: 2rem;
  color: black;
  background-color: #eee;
  max-width: 500px;
  left: 0;
  left: unset;
  box-shadow: 2px 2px 2px;
  transition: opacity 1s;
}

/* line 61, cc.scss */
#cookie-popup > a {
  display: block;
  text-decoration: underline;
  margin: 1rem 0rem;
  color: #f0cb00;
}

/* line 67, cc.scss */
#cookie-popup > a:hover {
  color: #444;
  text-decoration: underline;
}

/* line 72, cc.scss */
#cookie-popup > .cc__btn-container {
  display: flex;
  justify-content: space-evenly;
}

/* line 77, cc.scss */
#cookie-popup .cc__btn {
  font-weight: 600;
  cursor: pointer;
  margin: 4px;
  flex: 1;
  border-radius: 2px;
  max-width: 200px;
  padding: 15px;
  color: white;
  border: 4px solid #f0cb00;
  background-color: #f0cb00;
}

/* line 90, cc.scss */
#cookie-popup .cc__btn:hover {

  background-color: black;
}

@media screen and (max-width: 600px) {
  /* line 97, cc.scss */
  #cookie-popup {
    max-width: 100%;
  }
}
