@import "https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,600;9..40,700;9..40,800&family=Pacifico&display=swap";

/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --rv-orange: #f58220;
  --rv-navy: #1a3558;
  --rv-blue: #2c6fba;
  --rv-blue-soft: #557ac7;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: #1f2533;
  background: #fff;
}
button,
input,
textarea {
  font: inherit;
}
.rv-container {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 24px);
}
.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 120ms ease, transform 120ms ease;
}
.rv-btn:active {
  transform: scale(0.98);
}
.rv-btn--filled {
  background: var(--rv-orange);
  color: #fff;
  border-color: var(--rv-orange);
}
.rv-btn--filled:hover {
  opacity: 0.92;
}
.rv-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 4px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--rv-orange);
  color: var(--rv-orange);
  font-weight: 700;
  text-decoration: none;
  transition: background 120ms ease;
}
.rv-btn-outline:hover {
  background: #fff8f0;
}
.rv-more {
  font-weight: 700;
  color: var(--rv-orange);
  text-decoration: none;
}
.rv-more:hover {
  text-decoration: underline;
}
.rv-note {
  margin: 0;
  padding: 8px 0 12px;
  color: rgb(104, 113, 132);
}
.rv-note--error {
  color: #b42318;
}
.rv-media-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 14px 12px;
  box-sizing: border-box;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(232, 238, 250, 0.92) 0%,
      rgb(245, 248, 252) 48%,
      rgba(250, 236, 224, 0.45) 100%),
    radial-gradient(
      ellipse 70% 55% at 50% 18%,
      rgba(255, 255, 255, 0.85),
      transparent);
  border: 1px dashed rgb(202, 212, 232);
  color: rgb(124, 134, 158);
}
.rv-media-ph__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgb(228, 235, 248));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 3px 10px rgba(44, 71, 134, 0.07);
  position: relative;
}
.rv-media-ph__icon::before,
.rv-media-ph__icon::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background: rgb(178, 192, 218);
}
.rv-media-ph__icon::before {
  inset: 9px 10px 17px;
  opacity: 0.42;
}
.rv-media-ph__icon::after {
  inset: 17px 10px 9px;
  opacity: 0.26;
}
.rv-media-ph__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  max-width: 22ch;
}
.rv-media-ph--compact {
  gap: 6px;
  padding: 10px 8px;
  min-height: 64px;
}
.rv-media-ph--compact .rv-media-ph__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.rv-media-ph--compact .rv-media-ph__icon::before {
  inset: 7px 8px 13px;
}
.rv-media-ph--compact .rv-media-ph__icon::after {
  inset: 13px 8px 7px;
}
.rv-media-ph--compact .rv-media-ph__label {
  font-size: 0.62rem;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
