:root {
  --v13-web-violet: #65558f;
  --v13-web-mint: #69a99b;
  --v13-web-line: rgba(63, 52, 73, 0.12);
}

body.v13-web .active-dialogue-turn {
  max-width: 54em;
  font-weight: 430;
  line-height: 1.82;
}

body.v13-web .web-guided-breath-program {
  display: grid;
  max-width: 720px;
  gap: 16px;
  margin: 22px 0 8px;
  padding: 20px 0 12px;
  border-top: 1px solid var(--v13-web-line);
  border-bottom: 1px solid var(--v13-web-line);
}

body.v13-web .web-guided-breath-program > header {
  display: flex;
  gap: 12px;
  align-items: center;
}

body.v13-web .web-guided-breath-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: #eeeaf5;
  color: var(--v13-web-violet);
}

body.v13-web .web-guided-breath-mark svg {
  width: 21px;
}

body.v13-web .web-guided-breath-program header small,
body.v13-web .web-guided-breath-program header h3 {
  display: block;
  margin: 0;
}

body.v13-web .web-guided-breath-program header small {
  color: #776f7d;
  font-size: 11px;
}

body.v13-web .web-guided-breath-program header h3 {
  margin-top: 3px;
  color: #342c3e;
  font-size: 19px;
  font-weight: 620;
}

body.v13-web .web-guided-breath-lead {
  margin: 0;
  color: #625a68;
  line-height: 1.75;
}

body.v13-web .web-guided-breath-stage {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

body.v13-web .web-guided-breath-orb {
  display: grid;
  width: 104px;
  height: 104px;
  place-content: center;
  border: 1px solid rgba(101, 85, 143, 0.2);
  border-radius: 50%;
  background: #eeeaf5;
  box-shadow: 0 0 0 10px rgba(105, 169, 155, 0.07);
  color: var(--v13-web-violet);
  text-align: center;
  transform: scale(0.88);
}

body.v13-web .web-guided-breath-orb strong,
body.v13-web .web-guided-breath-orb span,
body.v13-web .web-guided-breath-copy strong,
body.v13-web .web-guided-breath-copy p,
body.v13-web .web-guided-breath-copy small {
  display: block;
}

body.v13-web .web-guided-breath-orb strong {
  font-size: 31px;
  font-weight: 580;
  line-height: 1;
}

body.v13-web .web-guided-breath-orb span {
  margin-top: 5px;
  color: #7b7380;
  font-size: 10px;
}

body.v13-web .web-guided-breath-orb.inhale {
  background: #e4f1ef;
  animation: v13-web-inhale 4s linear forwards;
}

body.v13-web .web-guided-breath-orb.exhale {
  background: #eeeaf5;
  animation: v13-web-exhale 6s linear forwards;
}

@keyframes v13-web-inhale { from { transform: scale(0.88); } to { transform: scale(1); } }
@keyframes v13-web-exhale { from { transform: scale(1); } to { transform: scale(0.88); } }

body.v13-web .web-guided-breath-copy strong {
  color: #40364a;
  font-size: 18px;
  font-weight: 610;
}

body.v13-web .web-guided-breath-copy p {
  min-height: 42px;
  margin: 8px 0 4px;
  color: #675f6d;
  line-height: 1.7;
}

body.v13-web .web-guided-breath-copy small {
  color: #7a7280;
}

body.v13-web .web-guided-breath-track {
  overflow: hidden;
  height: 4px;
  border-radius: 2px;
  background: rgba(101, 85, 143, 0.1);
}

body.v13-web .web-guided-breath-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--v13-web-mint);
  transition: width 0.3s linear;
}

body.v13-web .web-guided-breath-actions,
body.v13-web .web-guided-breath-check > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.v13-web .web-guided-breath-actions button {
  min-height: 46px;
}

body.v13-web .web-guided-breath-check p {
  margin: 0 0 9px;
  color: #514858;
}

body.v13-web .web-guided-breath-check button {
  min-height: 40px;
  padding: 7px 12px;
  border: 1px solid rgba(101, 85, 143, 0.16);
  border-radius: 7px;
  background: #f8f6fa;
  color: #5f536f;
}

body.v13-web .web-guided-breath-check button.is-selected {
  border-color: rgba(105, 169, 155, 0.62);
  background: #e8f3ef;
  color: #356d63;
}

body.v13-web .web-guided-breath-dismiss {
  justify-self: start;
  min-height: 34px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: #786f7f;
}

body.v13-web .web-mood-portrait-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 18px;
  padding: 18px 0;
  border-top: 1px solid var(--v13-web-line);
  border-bottom: 1px solid var(--v13-web-line);
}

body.v13-web .web-mood-portrait-line {
  position: absolute;
  top: 25px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(101, 85, 143, 0.18);
}

body.v13-web .web-mood-portrait-node {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 20px;
}

body.v13-web .web-mood-portrait-node i {
  position: absolute;
  top: 2px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #f7f6f8;
  border-radius: 50%;
  background: var(--v13-web-violet);
  box-shadow: 0 0 0 1px rgba(101, 85, 143, 0.18);
}

body.v13-web .web-mood-portrait-node.is-protection i,
body.v13-web .web-mood-portrait-node.is-open i {
  background: var(--v13-web-mint);
}

body.v13-web .web-mood-portrait-node small,
body.v13-web .web-mood-portrait-node strong {
  display: block;
}

body.v13-web .web-mood-portrait-node small {
  color: #77707b;
  font-size: 11px;
}

body.v13-web .web-mood-portrait-node strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  color: #4b434f;
  font-size: 13px;
  font-weight: 480;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body.v13-web .web-conversation-organization .web-organization-flow > p:not(.organization-tonight):not(.organization-question) {
  display: none;
}

body.v13-web .web-organization-flow {
  display: block;
  padding-left: 0;
  border-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  body.v13-web .web-guided-breath-orb.inhale,
  body.v13-web .web-guided-breath-orb.exhale {
    animation: none;
  }
}
