/* 스플래시 알림 */
.cart-splash .notifications-alert {
  border-left: 0;
  right: unset;
  left: 50%;
  top: unset;
  bottom: 30px;
  transform: translateX(-50%);
  padding: 18px 30px;
  border-radius: 100px;
  background-color: var(--color-primary);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.07);
}

.cart-splash .notifications-alert.show {
  opacity: 0.98;
  animation: show 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes show {
  0% {
    transform: translateX(-50%) translateY(100%);
  }

  100% {
    transform: translateX(-50%) translateY(0%);
  }
}

.cart-splash .notifications-alert .icon-area {
  display: none;
}

/*  */

.cart-splash .notifications-alert .text p {
  margin-left: 0;
  font-size: 16px;
}

.cart-splash .notifications-alert .text p span {
  margin-right: 0;
}

.cart-splash .notifications-alert .close-btn {
  margin-left: 0;
}

/* 스플래시 알림 */
