.cookie-bubble {
	position: fixed;
	width: 100%;
	max-width: 350px;
	min-height: 100px;
	border-radius: 10px;
	background-color: #fff;
	-webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 15px rgba(0, 0, 0, .2);
	z-index: 9999;
	font-family: sans-serif
}

.cookie-bubble.bottom-left {
	bottom: 10px;
	left: 10px
}

.cookie-bubble.bottom-right {
	bottom: 10px;
	right: 0
}

.cookie-bubble.bottom-center {
	bottom: 10px;
	left: calc(100vw - 100vw/2 - 400px/2)
}

.cookie-bubble.show.top-center,
.cookie-bubble.show.top-left,
.cookie-bubble.show.top-right {
	-webkit-animation-name: popInTop;
	animation-name: popInTop;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: cubic-bezier(.19, 1, .22, 1);
	animation-timing-function: cubic-bezier(.19, 1, .22, 1);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.cookie-bubble.show.bottom-center,
.cookie-bubble.show.bottom-left,
.cookie-bubble.show.bottom-right {
	-webkit-animation-name: popInBottom;
	animation-name: popInBottom;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: cubic-bezier(.19, 1, .22, 1);
	animation-timing-function: cubic-bezier(.19, 1, .22, 1);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.cookie-bubble.hide {
	display: none
}

.cookie-bubble .row {
	position: relative;
	display: inline-block;
    padding: 0;
    margin: 0;
    width: 100%;
}

.cookie-bubble .cb-wrapper{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: left
}

.cookie-bubble .cb-wrapper .cb-row-content {
    display: block;
}

.cookie-bubble .message {
	position: relative;
	width: 100%;
	color: #000;
	font-size: 14px;
    margin-top: 0;
    text-align: justify;    
    line-height: 1.1em;
}

.cookie-bubble .cb-wrapper .cb-row-content .message .head {
    font-size: 18px;
    display: block;
    font-weight: bold;
}

.cookie-bubble .cb-wrapper .cb-row-content .cb-controls {
	position: relative;
	width: 100%;
	float: left;
	margin-top: 10px
}

.cookie-bubble img {
	float: left;
	margin-right: 1em;	
}

.cookie-bubble .col-acepto {
	margin-bottom: .5em;
}

.cookie-bubble  .agreement-btn {
	margin: 0 .5em 0 0;
/*		
	text-decoration: none;
	color: #fff;
	background: #00a4ff;
	padding: 10px 20px;
	border-radius: 100px;
	font-size: 14px;
	opacity: 1;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 600;
*/	
}

.cookie-bubble .cb-wrapper .agreement-btn:hover {
	background-color: #0083cc
}

.cookie-bubble .cb-wrapper.cookie-policy-btn {
	margin: 0;
	color: #000;
	padding: 10px 0;
	border-radius: 100px;
	font-size: 14px;
	opacity: .95;
	border: none;
	cursor: pointer;
	font-weight: 400;
	float: left
}

.cookie-bubble .cb-wrapper.cookie-policy-btn:hover {
	opacity: 1;
	text-decoration: underline
}

.cookieBubble .copyright-wrapper {
	margin-top: 20px
}

.cookieBubble .copyright-wrapper a.copyright {
	position: absolute;
	width: 80px;
	height: 16px;
	bottom: 8px;
	right: 7px;
	margin-top: 30px;
	background: url(../img/cb_copyright.svg);
	background-size: cover
}

@-webkit-keyframes popInBottom {
	0% {
		-webkit-transform: translateY(120%);
		transform: translateY(120%)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes popInBottom {
	0% {
		-webkit-transform: translateY(120%);
		transform: translateY(120%)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes popInTop {
	0% {
		-webkit-transform: translateY(-120%);
		transform: translateY(-120%)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes popInTop {
	0% {
		-webkit-transform: translateY(-120%);
		transform: translateY(-120%)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@media screen and (max-width: 420px) {
	.cookie-bubble {
		max-width: 300px !important;
	}
	.cookie-bubble h5 {
		font-size: 1.5rem;
	}	
	.cookie-bubble img {	
		margin: 0;
	}
	.cookie-bubble a {	
		letter-spacing: -1px;
	}	
	.cookieBubble .cb-image {
		display: none
	}
}