
.cookies-widget .wrapper{
   position: fixed;
   bottom: 50px;
   right: -370px;
   max-width: 365px;
   background: #e2f2fe;
   padding: 25px 25px 30px 25px;
   border-radius: 15px;
   box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
   transition: right 0.3s ease;
   text-align: center;
   z-index: 100;
 }
 .cookies-widget .wrapper.hide{
   opacity: 0;
   pointer-events: none;
   transform: scale(0.8);
   transition: all 0.3s ease;
 }
 .cookies-widget  ::selection{
   color: #fff;
   background: #FCBA7F;
 }
 .cookies-widget  .wrapper img{
   max-width: 90px;
 }
 .cookies-widget  .content header{
   font-size: 25px;
   font-weight: 600;
 }
 .cookies-widget  .content{
   margin-top: 10px;
 }
 .cookies-widget  .content p{
   color: #858585;
   margin: 5px 0 10px 0;
 }
 .cookies-widget  .content a{
   text-decoration: underline;
 }
 .cookies-widget  .wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookies-widget  .buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #3498db;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
 
.cookies-widget  #declineBtn {
  border: 2px solid #3498db;
  background-color: #fff;
  color: #3498db;
}
.cookies-widget  .buttons button:hover, a:hover{
   transform: scale(0.97);
 }

 .cookies-widget  .wrapper img{
   max-width: 90px;
 }

 .cookies-widget  .wrapper.show {
   right: 10px;
 }