#cookie-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  width: 100%;
  z-index: 30;
}

.cookies-modal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  width: 1100px;
  border-radius: 32px;
  background-color: var(--grey-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cookies-modal.visible {
  opacity: 1;
  visibility: visible;
}

.cookies-modal .cookies-modal__management {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
}

.cookies-modal .cookies-modal__content {
  display: flex;
  flex-direction: row;
}

.cookies-modal .cookies-modal__content .text_cookie {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}

.cookies-modal .cookies-modal__content .text_desktop {
  display: block;
}

.cookies-modal .cookies-modal__content .text_mobile {
  display: none;
}

.cookies-modal .cookies-modal__content .text_cookie a {
  text-decoration: none;
  transition: 0.5s ease;
  color: var(--green-1);
}

.cookies-modal .cookies-modal__content .text_cookie a:hover {
  color: var(--green-2);
  text-decoration: underline;
}

.cookies-modal .cookies-modal__management button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--green-1);
  cursor: pointer;
  transition: 0.5s ease;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--grey-2);
}

.cookies-modal .cookies-modal__management button:hover {
  background-color: var(--green-2);
}

@media all and (max-width: 1440px) {
  .cookies-modal {
    padding: 32px;
    width: calc(1100px - 64px);
    border-radius: 28px;
  }

  .cookies-modal .cookies-modal__content .text_cookie {
    font-size: 16px;
  }

  .cookies-modal .cookies-modal__management {
    margin-left: 28px;
  }

  .cookies-modal .cookies-modal__management button {
    width: 160px;
    height: 52px;
    border-radius: 14px;
    font-size: 16px;
  }
}

@media all and (max-width: 1160px) {
  .cookies-modal {
    width: calc(900px - 64px);
  }
}

@media all and (max-width: 960px) {
  .cookies-modal {
    padding: 24px;
    width: calc(720px - 48px);
    border-radius: 24px;
  }
}

@media all and (max-width: 720px) {
  #cookie-content {
    bottom: 16px;
  }

  .cookies-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    width: calc(100% - 32px - 32px);
    border-radius: 24px;
    bottom: 16px;
  }

  .cookies-modal .cookies-modal__content .text_cookie {
    font-size: 15px;
  }

  .cookies-modal .cookies-modal__management {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .cookies-modal .cookies-modal__management button {
    width: 100%;
    height: 39px;
    border-radius: 8px;
    font-size: 14px;
  }
}
