.cookie-modal {
	position: fixed;
	bottom: 40px;
	left: 10%;
  right: 10%;
  width: 80%;
  padding: 1em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.cookie-modal--hidden {
  display: none
}

.cookie-modal__content {
/*   max-width: 600px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  background-color: pink;
  margin: 15vh auto 0;
  pointer-events: auto */
}

@media (min-width:400px) {
  .cookie-modal__content {
/*     margin: 22vh auto 0;
    padding: 40px */
  }
}

.cookie-modal__title {
/*   font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px */
}

.cookie-modal__text {
/*   margin-bottom: 20px;
  line-height: 1.4 */
}

.cookie-modal__text a {
  text-decoration: underline
}

.cookie-modal__options {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap
}

.cookie-modal__options>* {
  width: calc(50% - 30px)
}

@media (min-width:400px) {
  .cookie-modal__options>* {
    width: calc(33.3333% - 30px)
  }
}

.cookie-modal__option {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  margin-right: 30px;
  margin-bottom: 10px
}

.cookie-modal__option.disabled {
  opacity: .7
}

.cookie-modal__checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 2px solid #000;
  margin-right: 6px;
  flex-shrink: 0
}

.cookie-modal__checkbox:checked {
  background-color: #000
}

.cookie-modal__checkbox:checked:focus {
  outline: none;
  background-color: #81a2be
}

.cookie-modal__checkbox:focus {
  outline: none;
  border-color: #81a2be
}

.cookie-modal__check {
  position: absolute;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.cookie-modal__check svg {
  stroke: #fff
}

.cookie-modal__label {
  line-height: 22px
}

.cookie-modal__buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start
}

.cookie-modal__button {
  display: block;
  margin-right: 8px;
  padding: 6px 20px;
  white-space: nowrap;
  border: 2px solid #000;
  text-decoration: none;
  color: #000
}

@media (min-width:400px) {
  .cookie-modal__button {
    margin-right: 10px;
    padding: 10px 24px
  }
}

.cookie-modal__button.primary {
  background-color: #000;
  color: #fff
}

.cookie-modal__button.primary:focus,
.cookie-modal__button.primary:hover {
  background-color: #81a2be
}

.cookie-modal__button:focus,
.cookie-modal__button:hover {
  outline: none;
  border-color: #81a2be
}

.cookie-modal__button.hide {
  display: none
}
