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

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

.lws-splash-content,
.lws-splash-image {
  position: relative;
}

.lws-splash-message {
  text-align: center;
  color: #fff;
  padding: 20px 0;
  font-size: 18px;
}

#close-lws-splash {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  fill: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 99999px;
  background-color: red;
  aspect-ratio: 1;
  display: block;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 1.5;
  transform: translateX(50%) translateY(-50%);
}

@media screen and (max-width: 991px) {
  #close-lws-splash {
	  scale: 1.2;
      right: 20px;
	  top:15px;
  }
}
#close-lws-splash svg {
  width: 15px; height: 15px;
}
