


.pwa_overlay{
  visibility: hidden ;
opacity: 0;
}
.pwa_overlay_active{
visibility: visible !important;
opacity: 1 !important;
background: red;
} 
.pwa_overlay button{
  background: transparent;
  border: 0;
}

.sticky .pwa_overlay.pwa_overlay_active.pwa_sticky_off {
  bottom: 1vh !important;
}
.sticky .pwa_overlay.pwa_overlay_active.pwa_sticky_on {
  bottom: 5vh !important;
}

.pwa_overlay {
  position: fixed;
  /* top: 0; */
  bottom: 5vh;
  left: 0;
  right: 0;
  height: 0%;
  transition: opacity 500ms;
  z-index: 99999;

}


.pwa_popup {
  margin: auto;
  margin-left: 1%;
  background: linear-gradient( 90deg, rgba(19,154,176,1) 0%, rgba(58,76,142,1) 50%, rgba(177,31,105,1) 100%);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0%;
  padding-right: 0%;
  border-radius: 5px;
  width: 98%;
  position: absolute;
  transition: all 5s ease-in-out;
  bottom: 0;
}
.pwa_popup:hover {
  background: linear-gradient( 90deg, rgba(177,31,105,1) 0%, rgba(58,76,142,1) 50%, rgba(19,154,176,1) 100%);
}


.pwa_popup .close {
  position: absolute;
  top: 30%;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}
.pwa_popup .close:hover {
  color: #06D85F;
} 
.pwa_popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .pwa_box{
    width: 94%;
  }
  .pwa_popup{
    width: 94%;
  }
}
