@font-face {
  font-family: "Circe";
  src: url("../../fonts/circe-regular.woff2") format("woff2"), url("../../fonts/circe-regular.woff") format("woff"), url("../../fonts/circe-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

.popup-cookies {
  position: fixed;
  bottom: 3%;
  width: 100%;
  z-index: 9999;
  opacity: 1;
  transition: 0.3s;
  color: #32374E;
}
.popup-cookies__body {
  background-color: #FFFFFF;
  border-radius: 50px;
  padding: 10px 20px;
  width: 100%;
  max-width: 1177px;
  font-family: Circe;
  margin: 0 auto;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: -12px 8px 12px 0px rgba(72, 37, 94, 0.1019607843);
  border: 1px solid #131519;
}
.popup-cookies__link {
  text-decoration: underline;
}
.popup-cookies__button {
  color: #FFFFFF;
  background-color: #1E6AFF;
  border-radius: 50px;
  width: 104;
  padding: 4px 30px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.popup-cookies.hide {
  opacity: 0;
}