.wrapper{
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 480px;
  background: #111;
  padding: 25px 25px 30px 25px;
  border: 1px solid #222;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 10000;
}
.wrapper.hide{
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0s ease;
  z-index: 0;
}
.wrapper.static{
  opacity: 1;
  z-index: 1;
}
::selection{
  color: #000;
  background: #ffbd97;
}
.wrapper img{
  max-width: 90px;
}
.contents headers{
  font-size: 25px;
  font-weight: 600;
}
.contents{
  margin-top: 10px;
}
.contents p{
  color: #858585;
  margin: 15px 0 0 0;
}
.contents .buttons{
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons button{
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: #ffbd97;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buttons button:hover{
  transform: scale(0.97);
}
.buttons .item{
  margin: 0 10px;
}
.buttons a{
  color: #ffbd97;
}

@media (max-width: 576px) {
	.wrapper {
        zoom: 0.6;
		max-width: 350px;
		line-height: 1.2;
    }
	.contents p {
		color: #858585;
		margin: 15px 0 0 0;
	}
}