@charset "UTF-8";

.wrapper{
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 999;
  background: rgba(0,0,205,0.85);
  padding: 15px 15px 20px 15px;
  border-radius: 9px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
  text-align: center;
  color: white;
}
.wrapper.hide{
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
::selection{
  color: #fff;
  background: #F25C54;
}
.wrapper img{
  max-width: 90px;
}
.content header{
  font-size: 25px;
  font-weight: 600;
}
.content{
  margin-top: 10px;
}
.content p{
  color: white;
  margin: 5px 0 20px 0;
}
.content .buttons{
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons button{
  padding: 10px 20px;
  border: none;
  outline: none;
  color: black;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: lightgrey;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buttons button:hover{
  transform: scale(0.97);
}
.buttons .item{
  margin: 0 10px;
}
.buttons a{
  color: white;
}
