#acceptCookie {
  padding: 10px;
  width: 500px;
  height: fit-content;
  position: fixed;
  z-index: 99;
  right: 10px;
  bottom: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 10px;
  transition: box-shadow 1s;
}
#acceptCookie:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
#acceptCookie .close {
  width: 20px;
  height: 20px;
}
#acceptCookie .close img {
  width: 100%;
  height: 100%;
}
#acceptCookie .title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  font-family: 'HurmeGeometricSans_No3_4_Regular';
  color: #000;
}
#acceptCookie .content {
  margin-top: 20px;
}
#acceptCookie .content p {
  font-family: 'HurmeGeometricSans_No3_4_Regular';
  font-size: 14px;
  margin-bottom: 0;
  color: #0a0a0a;
}
#acceptCookie .accept-btnbox {
  margin-top: 32px;
  background-color: #0074c8;
  display: flex;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}
#acceptCookie .accept-btnbox .accept-btn {
  width: 100%;
  color: #fff;
  padding: 10px;
}
#acceptCookie .cookie-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
#acceptCookie .cookie-links a {
  margin: 0 5px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #acceptCookie {
    width: 100%;
    right: 0;
    bottom: 0;
  }
}
/*# sourceMappingURL=cookie-pop.css.map */