/* Utama */
.messagebleft-container {
  transition: all 500ms ease;
  transition-property: top, right, bottom, left, opacity;
  font-family: Roboto, sans-serif;
  font-size: 11px;
  min-height: 11px;
  background-color: #070b0e;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  line-height: 18px;
  padding: 18px 20px;
  bottom: -150px;
  top: auto;
  opacity: 0;
  z-index: 9999;
}

/* Aksi */
.messagebleft-container .action {
  background: inherit;
  display: inline-block;
  font-size: inherit;
  text-transform: uppercase;
  color: #4caf50;
  margin-left: 24px;
  padding: 0;
  min-width: min-content;
  cursor: pointer;
}

/* Desktop */
@media (min-width: 600px) {
  .messagebleft-container {
    min-width: 250px;
    max-width: 530px;
    display: inline-flex;
    border-radius: 2px;
    margin: 24px;
  }
}

/* Mobile: SEMBUNYIKAN */
@media (max-width: 600px) {
  .messagebleft-container {
    display: none !important;
  }
}

/* POSISI BOTTOM – DINAIKKAN PAKAI CALC */
.messagebleft-pos.bottom-center {
  top: auto !important;
  bottom: calc(20%);
  left: 50%;
  transform: translateX(-50%);
}
.messagebleft-pos.bottom-left {
  top: auto !important;
  bottom: calc(20%);
  left: 0;
}
.messagebleft-pos.bottom-right {
  top: auto !important;
  bottom: calc(20%);
  right: 0;
}

/* POSISI ATAS */
.messagebleft-pos.top-left {
  bottom: auto !important;
  top: 20px;
  left: 0;
}
.messagebleft-pos.top-center {
  bottom: auto !important;
  top: 20px;
  left: 30%;
  transform: translate(-50%, 0);
}
.messagebleft-pos.top-right {
  bottom: auto !important;
  top: 20px;
  right: 0;
}

/* CENTER RESPONSIF */
@media (max-width: 600px) {
  .messagebleft-pos.bottom-center,
  .messagebleft-pos.top-center {
    left: 50%;
    transform: translateX(-50%);
  }
}