:root{
  --tei-demo-blue:#1769e0;
  --tei-demo-blue-dark:#0f56be;
  --tei-demo-border:#d9e4f5;
  --tei-demo-text:#17304d;
}

.tei-demo-actions{
  width:100%;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:12px;
  margin-bottom:8px;
}

.tei-demo-actions--two{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.tei-demo-btn{
  min-height:48px;
  width:100%;
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:12px 16px !important;
  border-radius:8px !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  text-align:center;
  text-decoration:none !important;
  box-shadow:none !important;
  transition:transform .18s ease,background-color .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease;
}

.tei-demo-btn i{
  font-size:15px;
  line-height:1;
}

.tei-demo-btn--demo{
  background:#fff !important;
  color:var(--tei-demo-blue) !important;
  border:1px solid var(--tei-demo-blue) !important;
}

.tei-demo-btn--demo:hover,
.tei-demo-btn--demo:focus{
  background:#f3f7ff !important;
  color:var(--tei-demo-blue-dark) !important;
  border-color:var(--tei-demo-blue-dark) !important;
  transform:translateY(-1px);
}

.tei-demo-btn--trial{
  background:var(--tei-demo-blue) !important;
  color:#fff !important;
  border:1px solid var(--tei-demo-blue) !important;
}

.tei-demo-btn--trial:hover,
.tei-demo-btn--trial:focus{
  background:var(--tei-demo-blue-dark) !important;
  color:#fff !important;
  border-color:var(--tei-demo-blue-dark) !important;
  transform:translateY(-1px);
}

@media(max-width:600px){
  .tei-demo-actions--two{
    grid-template-columns:1fr;
  }
  .tei-demo-btn{
    min-height:46px;
  }
}
