#cookiesBanner {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    bottom: 0;
    left: 0;
    width: calc(100% - 10px);
    box-sizing: border-box;
    padding: 5px 20px;
    text-align: center;
    z-index: 100000000;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
    margin: 5px;
    font-size: 14px;
}

#cookiesBanner .message {
    text-align: left;
	padding: 5px 0;
}

#cookiesBanner b {
    font-weight: 600;
}

#cookiesBanner .btn {
    padding: 10px 30px;

	--duration: .3s;
	align-items: center;
	background-color: #000;
	border: 2px solid #000;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	justify-content: center;
	line-height: 1.1;
	padding: 16px 24px;
	text-align: center;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
	transition: var(--duration) all ease-in-out;
}

#cookiesBanner a {
	text-decoration: underline;
}


@media screen and (max-width: 600px) {

	#cookiesBanner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 10px;
    }
	
    #cookiesBanner .message {
        text-align: center;
    }
	#cookiesBanner .message {
        text-align: center;
    }
}
