.wrapCookie {
  width: 670px;
  height: auto;
  box-shadow: 0 14px 60px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  position: fixed;
  z-index: 20000000;
  flex-wrap: wrap;
  max-width: 90%;
  left: 50%;
  bottom: 20px;
  transform: translate3d(-50%, 0px, 0px);
}
@media only screen and (min-width: 590px) {
  .wrapCookie {
    right: 20px;
    left: auto;
    transform: none;
  }
}
@media only screen and (min-width: 820px) {
  .wrapCookie {
    flex-wrap: nowrap;
  }
}
.wrapCookie > div {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 820px) {
  .wrapCookie > div {
    width: auto;
    text-align: left;
  }
}
.wrapCookie p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #262a2b;
}
.wrapCookie p a {
  text-decoration: underline;
  color: #EC3131;
}
.wrapCookie p a:hover {
  cursor: pointer;
  text-decoration: none;
}
.wrapCookie .butCookie {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  height: 50px;
  font-size: 18px;;
}