#cwwb {
	text-align: center;
	position: fixed;
	right: 0px;
	bottom: -100%;
	z-index: 999;
	width: 100%;
	background: #666;
	padding: 10px 0px;
	font-size: 12pt;
	color: #ccc;
	line-height: 1.4em;
    animation-delay: .9s;
	animation: show .9s linear;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 2s;
}

#cwwb a { color: #fff; text-decoration: none; }
#cwwb a { color: orange; }
#cwwb button { background: none; border: none; }

#cwwb .text {
    color: #fff;
    float: left;
    margin-left: 20px;
    margin-top: 8px;
    padding-bottom: 10px;
    text-align: left;
    width: auto;
}
#cwwb .button { width: 100%; padding-top: 0px; color: #fff; text-align: center: }
#cwwb .button:hover { color: #eba9a7; }

@keyframes show {
  0% {
    display: block;
    bottom: -100%;
  }
  99% {
    display: block;
  }
  100% {
    display: none;
    bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
	#cwwb {
		width: 100%;
		bottom: 0px;
	}
}