.rpCookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: arial, serif;
  box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.25);
  background: pink;
  z-index: 100;
}
.rpCookieBar button {
  border: 0;
  margin: 5px 5px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
}
.rpCookieBar button:hover {
  background: #ffffff;
}
.rpCookieModal-wrapper {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  font-family: arial, serif;
}
.rpCookieModal-wrapper .rpCookieModal {
  width: 500px;
  padding: 50px;
  background: white;
}
.rpCookieModal-wrapper .rpCookieModal button {
  border: 0;
  padding: 10px 15px;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
.rpCookieModal-wrapper .rpCookieModal button:hover {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}
.rpCookieModal-wrapper .rpCookieModal label {
  padding-bottom: 5px;
  color: rgba(0, 0, 0, 0.75);
}
@media (max-width: 768px) {
  .rpCookieBar {
    flex-direction: column;
  }
}
/*# sourceMappingURL=rpCookies.css.map */