/** Плашка принятия использования Cookie */
.cookie__pop-up {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-bottom: 27px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in-out;
    z-index: 1050;
}
.cookie__pop-up .pop-up__content {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 37px 18px 29px;
  box-shadow: 0px 5px 30px rgba(137, 158, 180, 0.3);
  border-radius: 5px;
  background-color: #ffffff;
}
.cookie__pop-up .pop-up__content .content__description {
  max-width: 1100px;
  margin-right: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content__description_title {
    width: 100%;
    display: flex;
    justify-content: start;
}
.cookie-title {
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  color: #232936;
}
.cookie__pop-up .pop-up__content .content__description p {
  margin: 0;
}
.cookie__pop-up .cookie-link {
    text-decoration: underline;
}
.btn.btn_45{
    height: 45px;
}
.cookie-btn {
    margin: 0;
    min-width: 130px;
    font-size: 20px;
    line-height: 22px;
}

@media ( max-width: 1399px ) {
    .cookie__pop-up .pop-up__content {
        margin: 0 16px 0 16px;
    }
}
@media( max-width: 768px ) {
    .cookie__pop-up .pop-up__content {
        margin: 0;
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }
    .cookie__pop-up .pop-up__content .content__description {
        font-size: 14px;
        margin: 0;
    }
    .content__description_title {
        justify-content: center;
    }
    .cookie__pop-up .pop-up__content .content__description p {
        font-size: 14px;
        text-align: center;
    }
}
@media (min-width: 576px) {
  .cookie-title {
    font-size: 18px;
  }
}
@media( max-width: 500px ) {
    .cookie__pop-up .pop-up__content {
        gap: 6px;
        padding: 6px;
    }
    .cookie__pop-up .pop-up__content .content__description,
    .cookie__pop-up .pop-up__content .content__description p {
        font-size: 12px;
    }
    .btn.btn_45{
        height: 40px;
    }
    .cookie-btn {
        max-width: 200px;
        font-size: 18px;
    }
}