#sf-announcement {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  position: fixed;
  max-height: 100%;
  width: 100%;
  max-height: 100vh;
  width: 100vw;
  -webkit-box-align:center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items:center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  overflow-y: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#sf-announcement .content  {
	display: block;
	background: #fff;
}

#sf-announcement .site-inner {
	max-width: 600px;
	display: block;
}

#sf-announcement input[type="checkbox"] {
	width: auto;
}



@media screen and (max-width:850px){
	#sf-announcement {
	  -webkit-box-align: flex-start;
	  -webkit-align-items: flex-start;
	  -ms-flex-align: flex-start;
	  align-items:flex-start;		
	}
	#sf-announcement .site-inner {
    padding: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
	}	
}

@media screen and (max-width:500px){
	#sf-announcement img {
		max-width: 90%;
		margin: 0 auto;
	}
}