<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.popUp.notificationPopup {
  background-color: transparent;
  width: 0;
  height: 0;
}
.popUp.notificationPopup.open .popUpBox {
  margin-bottom: 0;
}
.popUp.notificationPopup .popUpBox {
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: -100vh;
  padding: 20px 10px;
  background-color: var(--color-black);
  -webkit-box-shadow: 0 -1px 6px rgba(var(--color-rgb-black), 0.6);
  box-shadow: 0 -1px 6px rgba(var(--color-rgb-black), 0.6);
  border-radius: 0;
  -webkit-transition: margin-bottom 0.3s ease-out;
  -o-transition: margin-bottom 0.3s ease-out;
  transition: margin-bottom 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .popUp.notificationPopup .popUpBox {
    top: 0;
    bottom: auto;
    left: 50%;
    width: 376px;
    padding: 30px 21px 31px;
    margin-left: -188px;
    -webkit-box-shadow: 0 2px 6px rgba(var(--color-rgb-black), 0.6);
    box-shadow: 0 2px 6px rgba(var(--color-rgb-black), 0.6);
    border-radius: 6px;
  }
}
@media screen and (min-width: 1440px) {
  .popUp.notificationPopup .popUpBox {
    padding: 30px 24px 31px;
  }
}
.popUp.notificationPopup .notificationPopupContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .popUp.notificationPopup .notificationPopupContent {
    padding-right: 29px;
  }
}
@media screen and (min-width: 1440px) {
  .popUp.notificationPopup .notificationPopupContent {
    padding-right: 26px;
  }
}
.popUp.notificationPopup .notificationPopupContent .notificationPopupIcon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 50px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .popUp.notificationPopup .notificationPopupContent .notificationPopupIcon {
    width: 70px;
  }
}
.popUp.notificationPopup .notificationPopupContent .notificationPopupIcon img {
  vertical-align: top;
}
.popUp.notificationPopup .notificationPopupContent .notificationPopupInfo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.popUp.notificationPopup .notificationPopupContent .notificationPopupInfoTitle {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}
.popUp.notificationPopup .notificationPopupContent .notificationPopupInfoDesc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 18px;
}
.popUp.notificationPopup .setupNotificationBtn {
  width: 124px;
  margin: 20px auto 0;
}
.popUp.notificationPopup .closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  margin-top: 20px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .popUp.notificationPopup .closeBtn {
    margin-top: 30px;
    margin-right: 30px;
  }
}
.popUp.notificationPopup .closeBtn img {
  vertical-align: top;
}


/* 20220707 Bottom Banner Start */
.popUp.bottomBannerPopup.open {
  background: transparent;
}
.popUp.bottomBannerPopup.open {
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: transparent;
}
.popUp.bottomBannerPopup .popUpBox {
  width: 100%;
  max-width: 800px;
  left: 50%;
  top: initial;
  bottom: 0;
  border-radius: 0px;
  transform: translateX(-50%);
}
.popUp.bottomBannerPopup .popUpBox .bottomBanner,
.popUp.bottomBannerPopup .popUpBox .bottomBanner img {
  width: 100%;
  display: block;
  position: relative;
}
.bottomBannerPopup .popUpBox .cardCloseIcon {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  z-index: 9;
}
.bottomBannerPopup .popUpBox .cardCloseIcon:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: #333;
  box-shadow: 0px 0px 10px rgba(var(--color-rgb-black), 0.5);
  border-radius: 90px;
  background-image: url(../../images/RWD/icon_close.svg);
  -webkit-background-size: 120% 120%;
  -o-background-size: 120% 120%;
  background-size: 120% 120%;
  background-position: center center;
}
/* 20220707 Bottom Banner End */</pre></body></html>