.cookie_notification {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    align-items: flex-end;
    position: fixed;
    z-index: 9999;
    left: 50%;
    width: 900px;
    max-width: 85vw;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 20px 30px;
    background-color: #3f71ff;
    border-radius: 4px;
    border: 1px solid #3f71ff;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    bottom: -200px;
    font-size: 12px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cookie_notification .cookie_notification__close {
    width: 25px;
    height: 25px;
    background: #FFF;
    border-radius: 50%;
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    top: 10px;
    right: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    opacity: 0.8;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cookie_notification .cookie_notification__close:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cookie_notification .cookie_notification__close::before, .cookie_notification .cookie_notification__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    background: #343434;
    width: 15px;
    height: 1px;
}
.cookie_notification .cookie_notification__close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.cookie_notification .cookie_notification__close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.cookie_notification.cookie_notification__show {
    bottom: 5px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cookie_notification__buttons_container {
    text-align: center;
    padding-top: 10px;
}
.cookie_notification__button {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #FFF;
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 40px;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 4px;
    max-width: 100%;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
.cookie_notification__button:hover {
    color: #333;
	background-color: #fff;
    opacity: 0.9;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
.cookie_notification__button-secondary {
    display: inline-block;
    background-color: #FFF;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    padding: 15px 40px;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 4px;
    max-width: 100%;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear; 
}
.cookie_notification__button-secondary:hover {
    color: #FFF;
    background: #333;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
.cookie_notification p {
    font-size: 16px;
	color: #FFF;
    margin-bottom: 0;
}

.cookie_notification p a{
	opacity: 0.9;
	color: #FFF;
	font-weight: bold;
    text-decoration: underline;
}

.cookie_notification p a:hover{
    text-decoration: none;
}

@media (max-width: 991px) {
	.cookie_notification.cookie_notification__show{
		bottom: 75px;
		padding: 10px 30px;
	}
	.cookie_notification__button{
		padding: 5px 25px;
	}
	.cookie_notification p{
		font-size: 12px;
	}
}

@media (max-width: 576px) {
    .cookie_notification{
        max-width: 95vw;
        padding: 10px 10px;
    }
    .cookie_notification__button{
        padding: 5px 10px;
    }
    .cookie_notification__button-secondary {
        padding: 5px 10px;
    }
}