.cookie-modal {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  left: 0;
  top: 0;
  pointer-events: none
}
.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: #fff;
  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: none;
}
.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: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 10px 25px 10px 25px;
  border-radius: 50px;
  font-size: 20px;
  line-height: 30px;
  font-family: urbanist700;
  margin: 10px 10px 10px 0px;
  background-color: #c6c6c6;
  color: #ffffff;	
}
@media (min-width:400px) {
  .cookie-modal__button {
  }
}
.cookie-modal__button.primary {  
  color: #ffffff;
  background-color: #516a98; 
}
.cookie-modal__button.primary:focus, .cookie-modal__button.primary:hover {
  color: #ffffff;
  background-color: #7584ab;  
}
.cookie-modal__button:focus, .cookie-modal__button:hover {
  color: #ffffff;
  background-color: #aaaaaa;
}
.cookie-modal__button.hide {
  display: none;
}