/* ==========================================================================
   BASE & RESET STYLES - TVSI EMBEDDABLE WIDGET
   ========================================================================== */

*, *::before, *::after {
  /*box-sizing: border-box;*/
  margin: 0;
  padding: 0;
  font-family: inherit;
}

html {
  font-size: 16px;
  /*line-height: 1.5;*/
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  background-color: transparent;
  color: var(--text-main);
  min-height: 100vh;
  /*display: flex;
  flex-direction: column;*/
  align-items: center;
  justify-content: center;
  /*padding: 24px 16px;
  position: relative;
  overflow-x: hidden;*/
}

/* Standalone container wrapper */
.tvsi-widget-wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  animation: fadeInWidget 0.4s var(--transition-smooth);
}

@keyframes fadeInWidget {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}
