#cookie-form-container {
  width: 100%;
  background: none;
  position: fixed;
  bottom: -250px;
  z-index: 100000;
  transition: all 0.5s 0.25s;
}

#cookie-form-box {
  width: 65%;
  background-color: #ffffff;
  border: solid 1px #303030;
  display: flex;
  justify-content: center;
  gap: 3.5em;
  position: relative;
  padding: 2.5%;
  margin: 0 auto;
  box-shadow: 5px 5px 10px #909090;
}

#cookie-form-message {
  width: 60%;
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}
#cookie-form-message a {
  text-decoration: none;
  cursor: pointer;
  color: #442A8B;
}
#cookie-form-message a:hover {
  text-decoration: underline;
}

#cookie-form-buttonbar {
  vertical-align: middle;
}
#cookie-form-buttonbar button {
  border-radius: 4px;
  padding: 8px 20px;
  min-height: 40px;
  margin: 1em 0.5em;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-size: 0.9em;
}

.do-slide-up {
  transform: translateY(-300px);
}

.do-slide-down {
  transform: translateY(0);
}

#cookie-btn-accept {
  background-color: rgb(255, 92, 41);
  border: solid 1px rgb(255, 92, 41);
  color: #ffffff;
}

#cookie-btn-accept:hover {
  background-color: #ffbda9;
}

#cookie-btn-decline {
  background-color: #ffffff;
  border: solid 1px rgb(255, 92, 41);
  color: rgb(255, 92, 41);
}

#cookie-btn-decline:hover {
  background-color: white;
}

@media screen and (max-width: 768px) {
  #cookie-form-box {
    width: 100%;
    gap: 1.5em;
    padding: 2%;
  }
  .do-slide-up {
    transform: translateY(-400px);
  }
  #cookie-form-message {
    width: 95%;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.1;
    font-size: 0.9em;
  }
  #cookie-form-buttonbar button {
    padding: 4px 10px;
    margin: 1em 0.5em;
    font-size: 0.8em;
  }
}/*# sourceMappingURL=cookie-popup.css.map */