
.cookies {
  position: fixed;
  background: #fff;
  color: #555;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
  right: 20px;
  bottom: 20px;
  width: 320px;
  z-index: 51;
}
.cookies.hidden {
  display: none;
}
@media (max-width: 992px) {
  .cookies {
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: auto;
    padding: 20px 30px;
  }
}
.cookies .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.cookies a {
  text-decoration: underline;
  transition: all 0.25s ease;
  color: #000;
  font-size: 16px;
}
.cookies a:hover {
  text-decoration: none;
  color: #000;
}
.cookies .btn {
  display: inline-flex;
  align-items: center;
  align-content: center;
  height: 40px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 700;
  padding: 0px 16px;
  border: 2px solid #000;
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
  justify-content: center;
  opacity: 1;
  position: relative;
  z-index: 0;
  transition: all 0.25s ease;
  box-sizing: border-box;
  letter-spacing: 0.02em;
  width: auto;
  border-radius: 10px;
  font-feature-settings: "pnum" on, "lnum" on;
  background-color: transparent;
  color: #000 !important;
}
.cookies .btn:hover {
  color: #fff !important;
  background-color: #000;
}
.cookies p {
  margin: 0;
}
.cookies .close {
  position: absolute;
  bottom: 100%;
  margin-bottom: 0px;
  right: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 2;
  display: block;
  text-indent: -9999px;
  background: none;
  padding: 0;
  border: none;
}
.cookies .close:before, .cookies .close:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #5b5b64;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookies .close:before {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.cookies .close:after {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.cookies .close:hover:before {
  transform: translate3d(-50%, -50%, 0) rotate(135deg);
}
.cookies .close:hover:after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
