#lws-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #00000099;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 999;
}

#lws-splash.active {
  display: flex;
}

.lws-splash-content,
.lws-splash-image {
  position: relative;
  
  
}
.lws-splash-image{
  max-width: 90%;
  margin: 0 auto;
}
.lws-splash-image img{
  max-width: 100%;
  height: auto;
}
.lws-splash-message {
  text-align: center;
  color: #fff;
  padding: 20px 0;
  font-size: 18px;
}

#close-lws-splash {
  position: absolute;
  top: -5px;
  right: -5px;
  color: #fff;
  fill: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 99999px;
  background-color: red;
  /* aspect-ratio: 1; */
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#close-lws-splash:hover{
  opacity: 0.5;
}
#close-lws-splash svg{
	fill:white;
	height: 15px;
	width:15px;
}	
@media screen and (max-width: 767px) {
  #close-lws-splash
  {
    padding: 5px;
    right: 9px;
    top: 9px;
  }
}