.cookie-modal {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none
}

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

.cookie-modal__content {
	width: calc(100vw - 70px);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    background-color: #fff;
    pointer-events: auto;
    display: block;
    position: fixed;
	bottom: 15px;
	left: 15px;
}

@media (min-width:400px) {
    .cookie-modal__content {
        
    }
}

@media (min-width:800px) {
    .cookie-modal__content {
    	width: calc(100vw - 160px);
    	display: grid;
    	grid-gap: 30px;
    	grid-template-columns: 3fr 1fr;
    	padding: 30px 30px 35px 30px;
    	bottom: 30px;
    	left: 50px;
    }
}

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

.cookie-modal__text {
	margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.4
}

.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:800px) {
    p.cookie-modal__text {
    margin-bottom: 0px;
}
    .cookie-modal__options {
    margin-bottom: 10px;
    margin-top: 10px;
}
}

@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 #00102D;
    margin-right: 6px;
    flex-shrink: 0
}

.cookie-modal__checkbox:checked {
    background-color: #00102D
}

.cookie-modal__checkbox:checked:focus {
    outline: none;
    background-color: #00102D
}

.cookie-modal__checkbox:focus {
    outline: none;
    border-color:#00102D
}

.cookie-modal__check {
    position: absolute;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    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 #00102D;
    text-decoration: none;
    color: #000
}

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

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

.cookie-modal__button.primary:focus,
.cookie-modal__button.primary:hover {
    background-color: #656BD1
}

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

.cookie-modal__button.hide {
    display: none
}