.cookie__content p{
  margin-top: 10px;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%;
    color: #333333;
    word-wrap: break-word;
}
.cookie__content a{
  color: #333333;
}

.cookie {
  position: fixed;
  z-index: 10;
  display: none;
  align-items: center;
  width: 344px;
  max-width: 90vw;
  bottom: 0;
  flex-direction: column-reverse;
  left: 50%;
  transform: translateX(-50%);
}

.cookie_body {
  background-color: rgb(24 23 23);


  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1.17px 2px rgba(0, 0, 0, 0.0196802), 0 1.4px 5px rgba(0, 0, 0, 0.03), 0 2px 10px rgba(0, 0, 0, 0.03), 0 2px 18px rgba(0, 0, 0, 0.04), 0 9px 33px rgba(0, 0, 0, 0.03);

  will-change: opacity, padding, height, margin;
}

.cookie_content {
  display: flex;
  width: 100%;
}

.cookie__img {
  height: 32px;
  padding: 4px;
}

.cookie__img-wrap {
  position: relative;
  display: inline-block;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0;
}

.cookie__img-wrap svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
}

.cookie__text {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  overflow: hidden;
}

.cookie__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 2px 0 0;
  overflow: hidden;
  word-break: break-word;
  color: #fff;
}

.cookie__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie__btn {
  display: flex;
  gap: 8px;
  align-self: start;
  margin-left: 8px;
}

.cookie__btn button {
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  appearance: none !important;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--button-color);
  touch-action: manipulation;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: color .2s ease-out, background-color .2s ease-out, opacity .2s ease-out, border-color .2s ease-out;

  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 4px 10px;

  --button-color: #21282b;

  --button-bg: #fff;
  --button-hover-bg: hsla(0, 0%, 100%, 0.7490196078431373);

}

/* Планшеты */
@media screen and (max-width: 768px) {
  .cookie {
    width: 90%;
    max-width: 500px;
  }
  
  .cookie_body {
    padding: 16px;
  }
  
  .cookie__text p {
    font-size: 15px;
    line-height: 22px;
  }
}

@media screen and (max-width: 430px) {
  .cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    transform: none;
    border-radius: 0;
    z-index: 1000;
    box-sizing: border-box;
  }
  
  .cookie_body {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  .cookie_content {
    width: 100%;
    box-sizing: border-box;
  }
  
  .cookie__text {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .cookie__text p {
    font-size: 13px;
    line-height: 18px;
  }
  
  .cookie__btn {
    margin-left: 0;
    margin-top: 12px;
    flex-shrink: 0;
  }
  
  .cookie__btn button {
    padding: 8px 16px;
    font-size: 14px;
    min-height: 36px;
    white-space: nowrap;
  }
}