/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f8ff;
} */

#cookiePopup {
  background-color: #ffffff;
  position: fixed;
  z-index: 999;
  font-size: 14px;
  width: 70vw;
  max-width: 42.85em;
  box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
  font-family: "Poppins", sans-serif;
  text-align: justify;
  line-height: 1.8em;
  padding: 2em 1.4em;
  border-radius: 6px;
  transition: all 0.5s ease-in;
}

#cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
}

#cookiePopup p {
  text-align: center;
  margin: 1.4em 0;
}

#cookiePopup button {
  cursor: pointer;
  background-color: #1bbdec;
  border: none;
  color: #ffffff;
  font-size: 1.2em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 5px;
}

#cookiePopup a {
  color: #1bbdec;
}

.hide {
  visibility: hidden;
  bottom: 0;
  right: 2em;
}

.show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
}

@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
  }

  .hide {
    bottom: 2em;
    right: 0;
  }

  .show {
    right: 0;
    bottom: 0;
  }
}















/* ---------------------------------------------------------------------------- */
.acceptcookies {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 90%;
  margin-top: auto;
  margin-bottom: auto;
  right: 15px;
}

.acceptcookies .x {
  display: block;
  position: relative;
  width: 12px;
  height: 13px;
  transition: transform .28s ease-in-out;
  border-color: rgb(255, 255, 255);
}

.acceptcookies .x:hover {
  transform: rotate(90deg);
  cursor: pointer;
}

.acceptcookies .x:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 6px; 
  bottom: 0;
  width: 20px;
  height: 0;
  border-top: 1.5px solid rgba(0,0,0,0.5);
  transform: rotate(45deg);
  transform-origin: center;
}

.acceptcookies .x:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 6px;
  bottom: 0;
  width: 20px;
  height: 0;
  border-top: 1.5px solid rgba(0,0,0,0.5);
  transform: rotate(-45deg);
  transform-origin: center;
}