.cookie-modal {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 20%);
    left: 0;
    top: 0;
    backdrop-filter: blur(10px);
}

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

.cookie-modal__content {
	max-width: 600px;
	padding: 20px;
	box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
	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.8rem;
	font-weight: 700;
	margin-bottom: 25px;
	color: #000!important;
}

.cookie-modal__text {
	margin-bottom: 20px;
	line-height: 1.4;
	color: #000!important;
}

.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;
    margin-right: 10px;
}

.cookie-modal__checkbox:checked:focus {
	outline: none;
	background-color: transparent
}

.cookie-modal__checkbox:focus {
	outline: none;
	border-color: transparent
}

.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;
	border: 2px solid #000;
}

.cookie-modal__check svg {
	stroke: #fff
}

.cookie-modal__label {
	line-height: 22px;
	color:#000000;
}

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

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

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

.cookie-modal__button {
    background: transparent;
    padding: 20px 50px;
    cursor: pointer;
    transition: .5s ease-in-out;
    text-align: center;
    margin-top: 25px;
	font-family: 'Avenir', sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    min-width: 250px;
    font-weight: 600!important;
    font-variation-settings: 'wdth' 0;
    width: fit-content;
	border-radius: 100px;
}

#cookie-accept {
    border: 2px solid #000000;
	background-color: #000000;
}

  .cookie-modal__button {
    background: transparent;
    border: 1px solid #000000;
    padding: 20px 50px;
    cursor: pointer;
    transition: .5s ease-in-out;
    text-align: center;
    margin-top: 25px;
    font-family: Bandeins-Strange, sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    min-width: 33%;
    font-weight: 600!important;
    font-variation-settings: 'wdth' 0;
    width: fit-content;
	border-radius: 100px;
  }

  .cookie-modal__button span {
	color: #fff;
  }

  #cookieClose span {
	color: #000;
  }

  .cookie-modal__button:after {
    background: transparent!important;
  }

.cookie-modal__button:focus,
.cookie-modal__button:hover {
    font-variation-settings: 'wdth' 800;
}

.cookie-modal__button.hide {
	display: none
}

.primary {
    background: #000000;
    color: #000000;
    min-width: 64%;
    margin-left: 3%;
  }
  
  .primary:hover {
    color: #000000;
  }

  .cookie-modal {
      z-index: 9999999;
  }

  /* M O B I L E */

@media screen and (max-width: 500px) {
    .cookie-modal__button {
        padding: 10px 20px;
        font-size: 12px;
        line-height: 12px;
    }
    .primary {
        float: right;
    }

    .cookie-modal__content{
        padding: 50px 7.5%;
    }

    .cookie-modal__content {
        max-width: 600px;
        height: 100vh;
        margin-top: 0px;
        padding-top: 50%!important;
    }
}