:root {
  --brand: rgba(45, 102, 230, 1);
  --background: rgba(255, 255, 255, 1);
  --background-blur: rgba(255, 255, 255, 0.3);
  --header: rgba(240, 244, 248, 1);
  --header-text: rgba(45, 102, 230, 1);
  --text-color: rgba(51, 51, 51, 1);
  --text-05-color: rgba(51, 51, 51, 0.5);
  --back-background: rgba(51, 51, 51, 0.1);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  margin: 0;
}

body p {
  padding: 0;
  margin: 0;
}

.baner-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  min-width: 320px;
  height: 100%;
  overflow: hidden;
}

.baner-wrapper__sheet {
  background-color: var(--background);
  overflow: auto;
  height: 100%;
}

.notification-sheet {
  min-width: 320px;
  max-width: 600px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.notification-sheet__banner {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.notification-sheet__banner img {
  height: 100%;
  width: 100%;
}

.notification-sheet__advertising {
  position: absolute;
  z-index: 200;
  top: 5px;
  right: 5px;
}

.advertising-box__label {
  height: 24px;
  width: 80px;
  padding: 0 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  background-color: rgba(85, 85, 85, 0.5);
  box-sizing: border-box;
}

.advertising-box {
  position: relative;
}

.advertising-box.show-info .advertising-box__label {
  display: none;
}

.advertising-box.show-info .advertising-box__info {
  display: block;
}

.advertising-box__info {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 1);
  width: 220px;
  display: none;
  padding: 5px 20px 5px 5px;
  box-sizing: border-box;
}

.advertising-box__close {
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
}

#banner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999999;
  background-color: rgba(124, 129, 135, 1);
}

#banner-container {
  position: relative;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#banner-iframe {
  border-radius: 12px;
  border: none;
}

#close-banner {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#close-banner:hover {
  background: #f0f0f0;
}

