/* CSS Document */
.textEditor {
  margin-top: 0;
}
.textEditor .album {
  float: right;
  width: 300px;
  padding: 0 0 35px 35px;
  list-style: none;
}
.textEditor .album li {
  float: left;
  width: 90px;
  height: 90px;
  margin: 0 10px 10px 0;
  box-shadow: 2px 2px 5px #c3c3c3;
}
.textEditor .album a {
  display: block;
}
.textEditor .album a img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .textEditor .album {
    float: none;
    margin: 20px auto;
    padding: 0;
  }
}

.cookie-preferences {
  clear: both;
  margin-top: 50px;
  padding: 30px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  background-color: #fff;
  border-left: 4px solid #9774AD;
  box-sizing: border-box;
}
.cookie-preferences h2 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #9774AD;
}
.cookie-preferences p {
  margin-bottom: 15px;
}
.cookie-preferences__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.cookie-preferences__button {
  min-width: 190px;
  min-height: 45px;
  padding: 10px 22px;
  border: 1px solid #9774AD;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #9774AD;
  letter-spacing: 0.05em;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}
.cookie-preferences__button:hover, .cookie-preferences__button.is-active {
  color: #fff;
  background-color: #9774AD;
  border-color: #9774AD;
}
.cookie-preferences__status {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: #9774AD;
}
@media (max-width: 640px) {
  .cookie-preferences {
    margin-top: 35px;
    padding: 22px;
    font-size: 15px;
  }
  .cookie-preferences__button {
    width: 100%;
  }
}
