/* cookies */
.cookies {
  position: fixed;
  z-index: 1000;
  width: fit-content;
  z-index: 4444;
  border-bottom: 0;
  bottom: 20px;
  right: 20px;
  transform: translateY(120%);
  transition: transform 300ms ease-in-out;
}

.cookies.--show {
  transform: translateY(0);
}

.cookies__container {
  width: 100%;
  max-width: 350px;
  padding: 16px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
  background: #ffffff;
  border-radius: 6px;
  transition: box-shadow 400ms ease-in-out;
}

.cookies__container:hover {
  box-shadow: 0 4px 24px rgba(60,60,60,.4)
}

.cookies__wrapper {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  text-wrap: balance;
  font-size: 14px;
  line-height: 1.4;
}

.cookies__wrapper a {
  text-decoration: underline;
}

.cookies__wrapper a:hover {
  text-decoration: none;
}

.cookies__button--accept {
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 4px;
  background: #000000;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
  cursor: pointer;
  border: none;;
  transition: background 300ms ease-in-out, box-shadow 300ms ease-in-out;
}

.cookies__button--accept:hover {
  background: #333333;
  box-shadow: none;
}

@media (max-width: 500px) {
  .cookies {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
  }

  .cookies__container {
    max-width: 100%;
  }
}
/* /cookies */