.uwsLandingContainer {
  position: fixed;
  z-index: 8888;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.uwsLandingContainer .uwsLanding {
  margin: 0 auto;
  z-index: 9999;
  min-height: 100px;
  height: auto;
  width: 90%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .uwsLandingContainer .uwsLanding {
    background: rgba(255, 255, 255, 0.5);
  }
}
@media all and (-ms-high-contrast: none) {
  .uwsLandingContainer .uwsLanding {
    background: rgba(255, 255, 255, 0.9);
    margin-left: 0%;
  }
}

.uwsLandingContainer .uwsLanding .uwsLandingText {
  width: 70%;
  padding: 10px 10px;
}

.uwsLandingContainer .uwsLanding .uwsLandingText .uwsLandingClose {
  border: 0px;
  height: 46px;
  background: #14294b;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.uwsLandingContainer .uwsLanding .uwsLandingText .uwsLandingClose:hover {
  background: #314668;
}

.uwsLandingContainer .uwsLanding .uwsLandingText .uwsLandingLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.uwsLandingContainer .uwsLanding .uwsLandingText .uwsLandingLogo img {
  width: 120;
  height: 40px;
}

.uwsLandingContainer .uwsLanding .uwsLandingImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: calc(30% - 10px);
  background-image: url(/skin/images/all/structure/uws_landing_popup.png);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  margin-right: 10px;
}

@media screen and (max-width: 600px) {
  .uwsLandingContainer .uwsLanding .uwsLandingImage {
    width: 30%;
    margin-right: 0px;
  }
}

.uwsLandingContainer .uwsLanding .uwsLandingImage img {
  height: auto;
  width: 200px;
  max-width: 100%;
}
