.cookie-notification-modal{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
	color:#fff;
	padding: 32px 10px 50px 10px;
	background: linear-gradient(90deg, rgba(2, 65, 120, 0.9) 0%, rgba(2, 65, 120, 0.7) 100%);
}
.cookie-notification-modal a,
.cookie-notification-modal a:hover,
.cookie-notification-modal a:active,
.cookie-notification-modal a:visited{
	color: #fff;
	text-decoration: underline;
}
.cookie-agree{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    width:100%
}
@media (max-width:767px){
    .cookie-agree{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column
    }
	
	.cookie-notification-modal{
		padding: 1rem 1rem 50px 1rem;
	}
}
.cookie-agree__text{
    margin:0;
}
@media (min-width:768px){
    .cookie-agree__text{
        padding-right:10px
    }
}
@media (max-width:767px){
    .cookie-agree__text{
        margin-bottom:10px
    }
	.cookie-notification-modal>div{
		padding: 1rem;
	}
}
.cookie-agree__buttons{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
@media (max-width:767px){
    .cookie-agree__buttons{
        -ms-flex-item-align:center;
        align-self:center;
        -webkit-box-pack:stretch;
        -ms-flex-pack:stretch;
        justify-content:stretch;
        width:100%
    }
}
.cookie-agree__button{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    cursor:pointer;
}

/*@media (min-width:768px){
    .cookie-agree__button{
        width:140px
    }
}*/
@media (max-width:767px){
    .cookie-agree__button{
        -webkit-box-flex:1;
        -ms-flex:1 0 140px;
        flex:1 0 140px
    }
}
.cookie-agree__button:not(:last-child){
    margin-right:10px
}