:root {
  --font:  "Open Sans", "Roboto", Arial, "微軟正黑體", "Microsoft JhengHei", "新細明體", sans-serif;
}

/* Web Push
/*------------------------------------------------------------*/
.webpush {
  width: 100%;
  height: fit-content;
  background-color: #FFF;
  color: #333;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 20px;

  box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.2);
  
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;

  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  /*z-index: 9999;*/
  z-index: 1000301;

  display: flex;
  flex-direction: column;
  gap: 5px;

  transition: top .35s ease-in-out;
}

.webpush.on {
  top: 0;
}

.webpush--logo {
  width: 60px;
}

.webpush--msg {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.webpush .action-btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 5px;
}

@media (min-width: 576px) {
  .webpush {
    width: 480px;
    height: 170px;
    padding: 24px;

    gap: unset;
  }

  .webpush--msg {
    /*font-size: unset;*/
    font-size: 16px;
    gap: 20px;
  }

  .webpush--logo {
    width: 80px;
  }
}