.cookie_popup {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 35px;
  background: #FFFFFF;
  box-shadow: 0 0 15px #04335845;
  padding: 20px 25px;
  border-radius: 14px;
  z-index: 999;
  bottom: 50px;
  right: 50px;
}

.button_cookie_accept {
  background: linear-gradient(135deg, #43a9f2 -50%, #0879d8 150%);
  border-radius: 100px;
  border-style: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 25px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.text_cookie_popup {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.5em;
}

.link_text_cookie_popup {
  color: #333333;
  text-decoration: underline;
}

@media (max-width: 750px) {
  .cookie_popup {
    border-radius: 0;
    gap: 20px;
    right: 0;
    left: 0;
    bottom: 0;
    justify-content: space-between;
    padding: 20px 25px;
  }
}

@media (max-width: 550px) {
  .button_cookie_accept {
    font-size: 14px;
  }

  .text_cookie_popup {
    font-size: 12px;
  }
}


