#cookies-wrapper {
	position: fixed!important;
	bottom: 0;
	right: 0;
	background-color: #ffffff;
	padding: 2em 3em;
	-moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.24);
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.24);
	z-index: 150;
	border-top: 1px solid #dcdcdc;
	animation-name: cookies-wrapper-in_null;
	  animation-duration: 0.5s;
	width: 20%;
	min-width: 300px;
	animation-timing-function: ease-in-out;
	transition: 0.5s;
}

#cookies-wrapper.disappear {
	transform: translateY(100%);
	opacity: 0;
}

#cookies-wrapper-text {
	padding-bottom: 0px;
}

#cookies-wrapper-close {
	top: 1em;
	right: 1em;
	position: absolute;
	font-size: 15px;
}

#cookies-wrapper h6 {
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cookies-wrapper .btn-theme {
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.40);
	color: rgba(0, 0, 0, 0.40);
}
#cookies-wrapper .btn-theme:hover {
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.55);
	color: rgba(0, 0, 0, 0.55);
}

#cookies-wrapper .btn {
	margin-right: 10px;
}

#cookies-wrapper .btn-deny {
	opacity: 0.5;
}

#cookies-wrapper .btn-deny:hover {
	opacity: 1;
}

@keyframes cookies-wrapper-in {
  0% {
  	transform: translateY(100%);
  	opacity: 0;
  }
  100% {
  	  transform: translateY(0%);
  	  opacity: 1;
  }
}

@media only screen and (max-width: 576px) {
  #cookies-wrapper {
  	width: 100%;
  	min-width: 300px;
  	z-index: 1000000;
  }
}