.modal-cookies {
  display: none;
}
.modal-cookies-wrapper {
  position: fixed;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 16px 40px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  width: 750px;
  z-index: 100;
  background: #ffff;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  font-size: 13px;
}
.modal-cookies-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-content-text {
  text-align: left;
  margin: 0;
}

.modal-cookies-accept {
  padding: 10px 60px;
  color: #ffff;
  background-color: #F79320;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0;
  overflow: visible;
  width: auto;
}

.modal-content-text a {
  text-decoration: underline;
  color: #000000;
  transition: 0.2s;
}

@media screen and (max-width: 766px) {
  .modal-cookies-wrapper {
    flex-direction: column;
    font-size: 10px;
    padding: 10px;
    width: 95%;
    gap: 25px;
    align-items: center;
  }
}