@charset "utf-8";
/* CSS Document */
    .privacy-prompt {
	width:600px;
	padding:20px;
	position:fixed;

	background:#fff;
	z-index:10000;
	display:none;box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 5px;
  left: 10px;
  bottom: 10px;
}
    .privacy-prompt .ui.container{width:100%;}
.privacy-prompt .text {
	font-size:16px;
	line-height:1.6em;
	margin-bottom:10px;
	color:#333;
	text-align:center;width:100%;float:left; text-align:left;
}
.privacy-prompt .text a {
	text-decoration:underline;
	color:#333;
}
.privacy-prompt .text a:hover{
	color:#009b4a;}

.privacy-prompt .agree-btn {
	background:#dedede;
	color:#333;
	padding:6px 30px;
	border-radius:4px;
}
.privacy-prompt #reject-btn {
	background:#333;
	color:#fff;
}
.privacy-prompt .agree-btn:hover {
	opacity:0.7;
}
.agree-btns {
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	justify-content: right;width: 100%;
}
.privacy-close {
  text-align: right;
  position: absolute;
 top: -10px;
  right: 0;
  font-size: 16px;
  cursor: pointer;
  color: #333;
}

@media(max-width:800px){
	.privacy-prompt .text{width:100%;}
.agree-btns{width:100%;}.privacy-prompt{z-index:999999;}

}
@media (max-width: 640px) {
  .privacy-prompt {
    width: 80%;
  }
}