/*
  Viacol WPBookit Smart Login Switch
  Subtle "apple-like" in-panel notice styling
*/

.viacol-wpb-softnote{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  margin:10px 0 16px;
  border-radius:14px;
  border:1px solid rgba(12, 17, 46, .10);
  background:rgba(12, 17, 46, .04);
  color:#0C112E;
  font-weight:600;
  font-size:14px;
  line-height:1.35;
  box-shadow:0 10px 30px rgba(12, 17, 46, .06);

  opacity:0;
  transform:translateY(-6px);
  transition:opacity .22s ease, transform .22s cubic-bezier(.2,.9,.2,1);
}

.viacol-wpb-softnote.is-in{
  opacity:1;
  transform:translateY(0);
}

.viacol-wpb-softnote__ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(12, 17, 46, .08);
  flex:0 0 22px;
  margin-top:1px;
}

.viacol-wpb-softnote__txt{
  flex:1 1 auto;
  min-width:0;
}

@media (prefers-reduced-motion: reduce){
  .viacol-wpb-softnote{
    opacity:1;
    transform:none;
    transition:none;
  }
}
