html .cookie-container {
	position: fixed;
        left: 0;
        right: 0;
        bottom: -400px;
        z-index: 1000;
        padding: 20px 0;
        background: rgba(0,0,0,0.75);
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
}
html .cookie-container .container {
	width: 100%;
	max-width: 980px;
	margin: auto;
	padding: 0 20px;
	box-sizing: border-box;
}
html .cookie-container .color1{
	color: #ffffff !important;
}
html .cookie-container.show{
	bottom: 0px;
}
html .cookie-container .caption{
	display: table;
    height: 100%;
    min-height: 40px;
}
html .cookie-container .btn{
	float: right;
	padding: 7px 15px;
	font-size: 15px;
	background: #37843d;
	border: none;
	color: #fff;
}
html .cookie-container .text{
	width: 80%;
	float: left;
    font-size: 13px;
	line-height: 1.5;
}
html .cookie-container .text a{
	color: #fff;
    text-decoration: underline;
	font-size: 13px;
}
html .cookie-container .text a:hover{
	color: #fff;
    text-decoration: none;
}
@media(max-width: 767px) {
	html .cookie-container .container{
		padding-left: 20px;
        padding-right: 20px;
	}
	html .cookie-container .btn.pull-right{
		margin-top: 20px;
	}
}
