.modal__cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  background-color: rgb(183,159, 127);
  justify-content: flex-start;
  align-items: stretch;
  max-width: 370px;
  width: 100%;
  font-size: 15px;
  padding: 10px 16px;
  color:rgb(236, 228, 218);
  z-index: 99999;
  border-radius: 12px;
}
@media (max-width: 450px) {
  .modal__cookie {
    right: 1%;
    width: 98%;
    max-width: none;
  }
}
.modal__cookie p {
  max-width: 290px;
  margin: 0;
}
.close-cookie {
  position: absolute;
  right: 8px;
  top: 6px;
}
.close-cookie svg path{
  fill: rgb(236, 228, 218);
}
.modal__cookie p a {
  color: black;
  border-bottom: 1px solid black;
}
.modal__cookie.hidden {
  display: none;
}
button:disabled {
  opacity: 0.5;
}
.form-checked {
    display: flex
;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.form-checked-label {
    display: flex
;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    max-width: 365px;
}
.form-checked-input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}
.form-checked-label span {
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: rgb(69, 64, 64);
    padding-top: 2px;
}
.custom-checkbox__checkmark {
    position: relative;
    height: 25px;
    min-width: 25px;
    background-color: transparent;
    border: 2px solid rgb(69, 64, 64);
    transition: all 0.3s;
    border-radius: 8px;
    margin-top: 2px;
}
.custom-checkbox__checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 30%;
    top: 45%;
    width: 6px;
    height: 12px;
    border: solid rgb(69, 64, 64);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-50%, -50%);
}
.form-checked-input:checked + .custom-checkbox__checkmark:after, .form-checked-input-modal:checked + .custom-checkbox__checkmark:after {
    display: block;
}