:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-path-flags-1x: url("../img/flags.webp");
  --iti-path-flags-2x: url("../img/flags@2x.webp");
  --iti-path-globe-1x: url("../img/globe.webp");
  --iti-path-globe-2x: url("../img/globe@2x.webp");
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}
.iti__dial-code {
  color: var(--iti-dialcode-color);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__country-list .iti__flag, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__country-list .iti__flag, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover, .iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -16px;
}

.iti__ae {
  --iti-flag-offset: -32px;
}

.iti__af {
  --iti-flag-offset: -48px;
}

.iti__ag {
  --iti-flag-offset: -64px;
}

.iti__ai {
  --iti-flag-offset: -80px;
}

.iti__al {
  --iti-flag-offset: -96px;
}

.iti__am {
  --iti-flag-offset: -112px;
}

.iti__ao {
  --iti-flag-offset: -128px;
}

.iti__ar {
  --iti-flag-offset: -144px;
}

.iti__as {
  --iti-flag-offset: -160px;
}

.iti__at {
  --iti-flag-offset: -176px;
}

.iti__au {
  --iti-flag-offset: -192px;
}

.iti__aw {
  --iti-flag-offset: -208px;
}

.iti__ax {
  --iti-flag-offset: -224px;
}

.iti__az {
  --iti-flag-offset: -240px;
}

.iti__ba {
  --iti-flag-offset: -256px;
}

.iti__bb {
  --iti-flag-offset: -272px;
}

.iti__bd {
  --iti-flag-offset: -288px;
}

.iti__be {
  --iti-flag-offset: -304px;
}

.iti__bf {
  --iti-flag-offset: -320px;
}

.iti__bg {
  --iti-flag-offset: -336px;
}

.iti__bh {
  --iti-flag-offset: -352px;
}

.iti__bi {
  --iti-flag-offset: -368px;
}

.iti__bj {
  --iti-flag-offset: -384px;
}

.iti__bl {
  --iti-flag-offset: -400px;
}

.iti__bm {
  --iti-flag-offset: -416px;
}

.iti__bn {
  --iti-flag-offset: -432px;
}

.iti__bo {
  --iti-flag-offset: -448px;
}

.iti__bq {
  --iti-flag-offset: -464px;
}

.iti__br {
  --iti-flag-offset: -480px;
}

.iti__bs {
  --iti-flag-offset: -496px;
}

.iti__bt {
  --iti-flag-offset: -512px;
}

.iti__bw {
  --iti-flag-offset: -528px;
}

.iti__by {
  --iti-flag-offset: -544px;
}

.iti__bz {
  --iti-flag-offset: -560px;
}

.iti__ca {
  --iti-flag-offset: -576px;
}

.iti__cc {
  --iti-flag-offset: -592px;
}

.iti__cd {
  --iti-flag-offset: -608px;
}

.iti__cf {
  --iti-flag-offset: -624px;
}

.iti__cg {
  --iti-flag-offset: -640px;
}

.iti__ch {
  --iti-flag-offset: -656px;
}

.iti__ci {
  --iti-flag-offset: -672px;
}

.iti__ck {
  --iti-flag-offset: -688px;
}

.iti__cl {
  --iti-flag-offset: -704px;
}

.iti__cm {
  --iti-flag-offset: -720px;
}

.iti__cn {
  --iti-flag-offset: -736px;
}

.iti__co {
  --iti-flag-offset: -752px;
}

.iti__cr {
  --iti-flag-offset: -768px;
}

.iti__cu {
  --iti-flag-offset: -784px;
}

.iti__cv {
  --iti-flag-offset: -800px;
}

.iti__cw {
  --iti-flag-offset: -816px;
}

.iti__cx {
  --iti-flag-offset: -832px;
}

.iti__cy {
  --iti-flag-offset: -848px;
}

.iti__cz {
  --iti-flag-offset: -864px;
}

.iti__de {
  --iti-flag-offset: -880px;
}

.iti__dj {
  --iti-flag-offset: -896px;
}

.iti__dk {
  --iti-flag-offset: -912px;
}

.iti__dm {
  --iti-flag-offset: -928px;
}

.iti__do {
  --iti-flag-offset: -944px;
}

.iti__dz {
  --iti-flag-offset: -960px;
}

.iti__ec {
  --iti-flag-offset: -976px;
}

.iti__ee {
  --iti-flag-offset: -992px;
}

.iti__eg {
  --iti-flag-offset: -1008px;
}

.iti__eh {
  --iti-flag-offset: -1024px;
}

.iti__er {
  --iti-flag-offset: -1040px;
}

.iti__es {
  --iti-flag-offset: -1056px;
}

.iti__et {
  --iti-flag-offset: -1072px;
}

.iti__fi {
  --iti-flag-offset: -1088px;
}

.iti__fj {
  --iti-flag-offset: -1104px;
}

.iti__fk {
  --iti-flag-offset: -1120px;
}

.iti__fm {
  --iti-flag-offset: -1136px;
}

.iti__fo {
  --iti-flag-offset: -1152px;
}

.iti__fr {
  --iti-flag-offset: -1168px;
}

.iti__ga {
  --iti-flag-offset: -1184px;
}

.iti__gb {
  --iti-flag-offset: -1200px;
}

.iti__gd {
  --iti-flag-offset: -1216px;
}

.iti__ge {
  --iti-flag-offset: -1232px;
}

.iti__gf {
  --iti-flag-offset: -1248px;
}

.iti__gg {
  --iti-flag-offset: -1264px;
}

.iti__gh {
  --iti-flag-offset: -1280px;
}

.iti__gi {
  --iti-flag-offset: -1296px;
}

.iti__gl {
  --iti-flag-offset: -1312px;
}

.iti__gm {
  --iti-flag-offset: -1328px;
}

.iti__gn {
  --iti-flag-offset: -1344px;
}

.iti__gp {
  --iti-flag-offset: -1360px;
}

.iti__gq {
  --iti-flag-offset: -1376px;
}

.iti__gr {
  --iti-flag-offset: -1392px;
}

.iti__gt {
  --iti-flag-offset: -1408px;
}

.iti__gu {
  --iti-flag-offset: -1424px;
}

.iti__gw {
  --iti-flag-offset: -1440px;
}

.iti__gy {
  --iti-flag-offset: -1456px;
}

.iti__hk {
  --iti-flag-offset: -1472px;
}

.iti__hn {
  --iti-flag-offset: -1488px;
}

.iti__hr {
  --iti-flag-offset: -1504px;
}

.iti__ht {
  --iti-flag-offset: -1520px;
}

.iti__hu {
  --iti-flag-offset: -1536px;
}

.iti__id {
  --iti-flag-offset: -1552px;
}

.iti__ie {
  --iti-flag-offset: -1568px;
}

.iti__il {
  --iti-flag-offset: -1584px;
}

.iti__im {
  --iti-flag-offset: -1600px;
}

.iti__in {
  --iti-flag-offset: -1616px;
}

.iti__io {
  --iti-flag-offset: -1632px;
}

.iti__iq {
  --iti-flag-offset: -1648px;
}

.iti__ir {
  --iti-flag-offset: -1664px;
}

.iti__is {
  --iti-flag-offset: -1680px;
}

.iti__it {
  --iti-flag-offset: -1696px;
}

.iti__je {
  --iti-flag-offset: -1712px;
}

.iti__jm {
  --iti-flag-offset: -1728px;
}

.iti__jo {
  --iti-flag-offset: -1744px;
}

.iti__jp {
  --iti-flag-offset: -1760px;
}

.iti__ke {
  --iti-flag-offset: -1776px;
}

.iti__kg {
  --iti-flag-offset: -1792px;
}

.iti__kh {
  --iti-flag-offset: -1808px;
}

.iti__ki {
  --iti-flag-offset: -1824px;
}

.iti__km {
  --iti-flag-offset: -1840px;
}

.iti__kn {
  --iti-flag-offset: -1856px;
}

.iti__kp {
  --iti-flag-offset: -1872px;
}

.iti__kr {
  --iti-flag-offset: -1888px;
}

.iti__kw {
  --iti-flag-offset: -1904px;
}

.iti__ky {
  --iti-flag-offset: -1920px;
}

.iti__kz {
  --iti-flag-offset: -1936px;
}

.iti__la {
  --iti-flag-offset: -1952px;
}

.iti__lb {
  --iti-flag-offset: -1968px;
}

.iti__lc {
  --iti-flag-offset: -1984px;
}

.iti__li {
  --iti-flag-offset: -2000px;
}

.iti__lk {
  --iti-flag-offset: -2016px;
}

.iti__lr {
  --iti-flag-offset: -2032px;
}

.iti__ls {
  --iti-flag-offset: -2048px;
}

.iti__lt {
  --iti-flag-offset: -2064px;
}

.iti__lu {
  --iti-flag-offset: -2080px;
}

.iti__lv {
  --iti-flag-offset: -2096px;
}

.iti__ly {
  --iti-flag-offset: -2112px;
}

.iti__ma {
  --iti-flag-offset: -2128px;
}

.iti__mc {
  --iti-flag-offset: -2144px;
}

.iti__md {
  --iti-flag-offset: -2160px;
}

.iti__me {
  --iti-flag-offset: -2176px;
}

.iti__mf {
  --iti-flag-offset: -2192px;
}

.iti__mg {
  --iti-flag-offset: -2208px;
}

.iti__mh {
  --iti-flag-offset: -2224px;
}

.iti__mk {
  --iti-flag-offset: -2240px;
}

.iti__ml {
  --iti-flag-offset: -2256px;
}

.iti__mm {
  --iti-flag-offset: -2272px;
}

.iti__mn {
  --iti-flag-offset: -2288px;
}

.iti__mo {
  --iti-flag-offset: -2304px;
}

.iti__mp {
  --iti-flag-offset: -2320px;
}

.iti__mq {
  --iti-flag-offset: -2336px;
}

.iti__mr {
  --iti-flag-offset: -2352px;
}

.iti__ms {
  --iti-flag-offset: -2368px;
}

.iti__mt {
  --iti-flag-offset: -2384px;
}

.iti__mu {
  --iti-flag-offset: -2400px;
}

.iti__mv {
  --iti-flag-offset: -2416px;
}

.iti__mw {
  --iti-flag-offset: -2432px;
}

.iti__mx {
  --iti-flag-offset: -2448px;
}

.iti__my {
  --iti-flag-offset: -2464px;
}

.iti__mz {
  --iti-flag-offset: -2480px;
}

.iti__na {
  --iti-flag-offset: -2496px;
}

.iti__nc {
  --iti-flag-offset: -2512px;
}

.iti__ne {
  --iti-flag-offset: -2528px;
}

.iti__nf {
  --iti-flag-offset: -2544px;
}

.iti__ng {
  --iti-flag-offset: -2560px;
}

.iti__ni {
  --iti-flag-offset: -2576px;
}

.iti__nl {
  --iti-flag-offset: -2592px;
}

.iti__no {
  --iti-flag-offset: -2608px;
}

.iti__np {
  --iti-flag-offset: -2624px;
}

.iti__nr {
  --iti-flag-offset: -2640px;
}

.iti__nu {
  --iti-flag-offset: -2656px;
}

.iti__nz {
  --iti-flag-offset: -2672px;
}

.iti__om {
  --iti-flag-offset: -2688px;
}

.iti__pa {
  --iti-flag-offset: -2704px;
}

.iti__pe {
  --iti-flag-offset: -2720px;
}

.iti__pf {
  --iti-flag-offset: -2736px;
}

.iti__pg {
  --iti-flag-offset: -2752px;
}

.iti__ph {
  --iti-flag-offset: -2768px;
}

.iti__pk {
  --iti-flag-offset: -2784px;
}

.iti__pl {
  --iti-flag-offset: -2800px;
}

.iti__pm {
  --iti-flag-offset: -2816px;
}

.iti__pr {
  --iti-flag-offset: -2832px;
}

.iti__ps {
  --iti-flag-offset: -2848px;
}

.iti__pt {
  --iti-flag-offset: -2864px;
}

.iti__pw {
  --iti-flag-offset: -2880px;
}

.iti__py {
  --iti-flag-offset: -2896px;
}

.iti__qa {
  --iti-flag-offset: -2912px;
}

.iti__re {
  --iti-flag-offset: -2928px;
}

.iti__ro {
  --iti-flag-offset: -2944px;
}

.iti__rs {
  --iti-flag-offset: -2960px;
}

.iti__ru {
  --iti-flag-offset: -2976px;
}

.iti__rw {
  --iti-flag-offset: -2992px;
}

.iti__sa {
  --iti-flag-offset: -3008px;
}

.iti__sb {
  --iti-flag-offset: -3024px;
}

.iti__sc {
  --iti-flag-offset: -3040px;
}

.iti__sd {
  --iti-flag-offset: -3056px;
}

.iti__se {
  --iti-flag-offset: -3072px;
}

.iti__sg {
  --iti-flag-offset: -3088px;
}

.iti__sh {
  --iti-flag-offset: -3104px;
}

.iti__si {
  --iti-flag-offset: -3120px;
}

.iti__sj {
  --iti-flag-offset: -3136px;
}

.iti__sk {
  --iti-flag-offset: -3152px;
}

.iti__sl {
  --iti-flag-offset: -3168px;
}

.iti__sm {
  --iti-flag-offset: -3184px;
}

.iti__sn {
  --iti-flag-offset: -3200px;
}

.iti__so {
  --iti-flag-offset: -3216px;
}

.iti__sr {
  --iti-flag-offset: -3232px;
}

.iti__ss {
  --iti-flag-offset: -3248px;
}

.iti__st {
  --iti-flag-offset: -3264px;
}

.iti__sv {
  --iti-flag-offset: -3280px;
}

.iti__sx {
  --iti-flag-offset: -3296px;
}

.iti__sy {
  --iti-flag-offset: -3312px;
}

.iti__sz {
  --iti-flag-offset: -3328px;
}

.iti__tc {
  --iti-flag-offset: -3344px;
}

.iti__td {
  --iti-flag-offset: -3360px;
}

.iti__tg {
  --iti-flag-offset: -3376px;
}

.iti__th {
  --iti-flag-offset: -3392px;
}

.iti__tj {
  --iti-flag-offset: -3408px;
}

.iti__tk {
  --iti-flag-offset: -3424px;
}

.iti__tl {
  --iti-flag-offset: -3440px;
}

.iti__tm {
  --iti-flag-offset: -3456px;
}

.iti__tn {
  --iti-flag-offset: -3472px;
}

.iti__to {
  --iti-flag-offset: -3488px;
}

.iti__tr {
  --iti-flag-offset: -3504px;
}

.iti__tt {
  --iti-flag-offset: -3520px;
}

.iti__tv {
  --iti-flag-offset: -3536px;
}

.iti__tw {
  --iti-flag-offset: -3552px;
}

.iti__tz {
  --iti-flag-offset: -3568px;
}

.iti__ua {
  --iti-flag-offset: -3584px;
}

.iti__ug {
  --iti-flag-offset: -3600px;
}

.iti__us {
  --iti-flag-offset: -3616px;
}

.iti__uy {
  --iti-flag-offset: -3632px;
}

.iti__uz {
  --iti-flag-offset: -3648px;
}

.iti__va {
  --iti-flag-offset: -3664px;
}

.iti__vc {
  --iti-flag-offset: -3680px;
}

.iti__ve {
  --iti-flag-offset: -3696px;
}

.iti__vg {
  --iti-flag-offset: -3712px;
}

.iti__vi {
  --iti-flag-offset: -3728px;
}

.iti__vn {
  --iti-flag-offset: -3744px;
}

.iti__vu {
  --iti-flag-offset: -3760px;
}

.iti__wf {
  --iti-flag-offset: -3776px;
}

.iti__ws {
  --iti-flag-offset: -3792px;
}

.iti__xk {
  --iti-flag-offset: -3808px;
}

.iti__ye {
  --iti-flag-offset: -3824px;
}

.iti__yt {
  --iti-flag-offset: -3840px;
}

.iti__za {
  --iti-flag-offset: -3856px;
}

.iti__zm {
  --iti-flag-offset: -3872px;
}

.iti__zw {
  --iti-flag-offset: -3888px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}@charset "UTF-8";
:root {
  /* Semantic tokens */
  --color-primary: #009a7b;
  --color-primary-strong: #007069;
  --color-text: #000;
  --color-text-muted: #9e9e9e;
  --color-text-inverse: #fff;
  --color-surface: #fff;
  --color-surface-alt: #f2f2f2;
  --color-surface-soft: #edf7f2;
  --color-border: #e5e5e5;
  --color-border-strong: #9e9e9e;
  --color-warning: #f0f79b;
  --color-error: #e54343;
  --color-success: #5ce099;
  --color-cta: #ff0061;
  --color-cta-strong: #e20056;
  --color-cta-soft: #ffc9d9;
  --color-accent: #e8fa11;
  --color-accent-strong: #ffa41c;
  --color-accent-soft: #f0f79b;
  --color-button-cta-bg: var(--color-cta);
  --color-button-cta-bg-hover: var(--color-cta);
  --color-button-cta-bg-active: var(--color-cta-strong);
  --color-button-cta-border-active: var(--color-cta-strong);
  --color-button-cta-disabled-bg: var(--color-cta-soft);
  --input-focus-ring: #e1f2ea;
  --color-progress-track: var(--color-border);
  --modal-overlay-light: rgb(213 213 213 / 30%);
  --modal-overlay-strong: rgb(255 255 255 / 80%);
  --modal-overlay-dark: rgb(0 0 0 / 50%);
  --modal-shadow: 0 8px 16px 0 rgb(0 0 0 / 8%);
  --register-aside-bg: url("../img/register-bg.svg") center/cover;
  --register-feature-check-icon: url("../img/check.svg");
  --dashboard-warning-bg: var(--color-warning);
  --dashboard-page-bg: url("../img/dashboard-bg.svg") no-repeat 50% 0;
  --dashboard-warning-icon: url("../img/warning-icon.svg");
  --dashboard-success-icon: url("../img/success-icon.svg");
  --dashboard-step-icon: url("../img/main-wrapper-step-title-check.svg");
  --dashboard-step-icon-done: url("../img/main-wrapper-step-title-check-success.svg");
  --dashboard-next-step-lock-icon: url("../img/next-step-lock.svg");
  --dashboard-account-arrow-icon: url("../img/dashboard-account-arrow.svg");
  /* AB Test 64 */
  --email-link-color: #000;
  /* Funnel semantic tokens */
  --funnel-title-color: #000;
  --funnel-subtitle-color: #373737;
  --funnel-helper-text-color: #9e9e9e;
  --funnel-primary-btn-bg: #000;
  --funnel-primary-btn-hover-bg: #000;
  --funnel-primary-btn-color: #fff;
  --funnel-secondary-btn-color: #9e9e9e;
  --funnel-secondary-btn-hover-color: #000;
  --funnel-secondary-btn-accent-color: #009a7b;
  --funnel-secondary-btn-accent-hover-color: #009a7b;
  --funnel-preview-border-color: #09a989;
  --funnel-popup-success-bg: #009a7b;
  --funnel-popup-success-fg: #fff;
  --funnel-progress-active: #009a7b;
  --funnel-progress-inactive: #e5e5e5;
  --funnel-progress-dot-bg: #fff;
  --funnel-niche-bg: #edf7f2;
  --funnel-niche-border: #e1f2ea;
  --funnel-niche-color: #009a7b;
  --funnel-niche-active-bg: #009a7b;
  --funnel-niche-active-color: #fff;
  --funnel-animation-accent: #ff725e;
  --funnel-bg: #fff;
  --funnel-bg-image: url("../img/dashboard-bg.svg");
}

/* backgrounds */
.bg-teal-5 {
  background-color: var(--color-surface-soft);
}

.bg-teal-10 {
  background-color: var(--input-focus-ring);
}

.bg-teal-50 {
  background-color: #09a989;
}

.bg-teal-60 {
  background-color: var(--color-primary);
}

.bg-teal-70 {
  background-color: #008a6e;
}

.bg-teal-80 {
  background-color: var(--color-primary-strong);
}

.bg-white {
  background-color: var(--color-surface);
}

.bg-grey-20 {
  background-color: var(--color-surface-alt);
}

.bg-grey-30 {
  background-color: var(--color-border);
}

.bg-grey-40 {
  background-color: #d3d3d3;
}

.bg-grey-50 {
  background-color: #b8b8b8;
}

.bg-grey-60 {
  background-color: var(--color-border-strong);
}

.bg-grey-80 {
  background-color: #373737;
}

.bg-grey-90 {
  background-color: #2a2a2a;
}

.bg-black {
  background-color: var(--color-text);
}

.bg-turquoise {
  background-color: #4bd8e2;
}

.bg-green {
  background-color: var(--color-success);
}

.bg-lime {
  background-color: #15fa11;
}

.bg-lemon {
  background-color: var(--color-accent);
}

.bg-yellow {
  background-color: var(--color-warning);
}

.bg-sun {
  background-color: var(--color-accent-strong);
}

.bg-tangelo {
  background-color: #ff4f37;
}

.bg-red {
  background-color: var(--color-error);
}

.bg-torch-red {
  background-color: #ff004d;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: 700;
}

@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
body,
html {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

button,
input,
textarea {
  font-family: Poppins, sans-serif;
}

.container {
  width: 1276px;
  position: relative;
  display: block;
  margin: auto;
}

@media (width <= 1300px) {
  .container {
    width: 900px;
  }
}
@media (width <= 940px) {
  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.pointer-events-none {
  pointer-events: none;
}

footer {
  position: relative;
}
footer .flx {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 0 30px;
  display: flex;
  justify-content: space-between;
}
footer .flx .block-1 {
  width: 33.3333333333%;
  font-size: 14px;
}
footer .flx .block-2 {
  width: 33.3333333333%;
}
footer .flx .block-2 a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  background: url("../img/footer-mail.svg") no-repeat 0 50%;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 28px;
  transition: color 0.3s;
}
footer .flx .block-2 a:hover {
  color: var(--color-primary-strong);
}
footer .flx .block-2 a:focus {
  color: var(--color-primary-strong);
}
footer .flx .block-3 {
  width: 33.3333333333%;
  display: flex;
  justify-content: flex-end;
  gap: 0 20px;
}
footer .flx .block-3 a {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  transition: color 0.3s;
}
footer .flx .block-3 a:hover {
  color: var(--color-primary-strong);
  border-bottom: 1px solid var(--color-primary-strong);
}
footer .flx .block-3 a:focus {
  color: var(--color-primary-strong);
  border-bottom: 1px solid var(--color-primary-strong);
}

@media (width <= 940px) {
  footer .flx {
    flex-direction: column;
  }
  footer .flx .block-1,
  footer .flx .block-2,
  footer .flx .block-3 {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  footer .flx .block-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.loading {
  padding: 20px 12px;
}
.loading.hidden {
  display: none;
}
.loading .anim-wrapper {
  display: flex;
  justify-content: center;
}
.loading .loading-title {
  text-align: center;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 8px;
}
.loading .loading-description {
  text-align: center;
  color: var(--color-text);
  font-size: 16px;
  line-height: 22px;
}

@media (width <= 1300px) {
  .loading .loading-description {
    padding-bottom: 100px;
  }
}
@media (width <= 940px) {
  .loading .loading-description br {
    display: none;
  }
}
@media (width <= 600px) {
  .loading .loading-title {
    font-size: 32px;
    line-height: 41px;
    margin-bottom: 12px;
  }
  .loading .loading-description {
    font-size: 18px;
    padding-bottom: 80px;
  }
  .loading .footer-loading {
    padding-bottom: 55px;
  }
}
.success-step-wrapper .success-step-player {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.success-step-wrapper .success-step-overlay {
  position: fixed;
  inset: 0;
  background: var(--modal-overlay-strong);
  z-index: 999;
}
.success-step-wrapper.hidden {
  display: none;
}

.last-step-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.google-auth-failed {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.google-auth-failed .google-auth-button.in-proccess {
  position: relative;
  pointer-events: none;
}
.google-auth-failed .google-auth-button.in-proccess::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  right: 6px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -2px;
  border: 2px solid rgba(73, 73, 73, 0.5);
  border-left-color: var(--color-text);
  border-top-color: var(--color-text);
  animation: spin 0.6s infinite linear, grow 0.3s forwards ease-out;
}
@keyframes spin {
  to {
    transform: rotate(359deg);
  }
}
@keyframes grow {
  to {
    width: 14px;
    height: 14px;
    margin-top: -8px;
    right: 13px;
  }
}
.google-auth-failed .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--modal-overlay-light);
  backdrop-filter: blur(14px) opacity(1);
  transition: 0.3s;
}
.google-auth-failed .modal-content {
  margin: 0 auto;
  z-index: 123;
  position: relative;
  max-width: 580px;
  width: 100%;
  padding: 20px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  background: var(--color-surface);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.0784313725);
}
@media (width <= 590px) {
  .google-auth-failed .modal-content {
    max-width: 95%;
  }
}
.google-auth-failed .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.google-auth-failed .modal-content .modal-body h3 {
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .google-auth-failed .modal-content .modal-body h3 {
    font-size: 28px;
  }
}
.google-auth-failed .modal-content .modal-body p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.google-auth-failed .modal-content .modal-body .sign-up-mail {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-text);
  width: 100%;
  margin-top: 28px;
}
.google-auth-failed .modal-content .modal-body .sign-up-mail:hover, .google-auth-failed .modal-content .modal-body .sign-up-mail:focus {
  background-color: var(--color-primary);
}
.google-auth-failed .modal-content .modal-body .sign-up-mail:active {
  background-color: var(--color-primary-strong);
}
.google-auth-failed .modal-content .modal-body .sign-up-mail.disabled, .google-auth-failed .modal-content .modal-body .sign-up-mail:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.google-auth-failed .modal-content .modal-body .sign-up-mail svg {
  transition: 0.2s linear;
}
.google-auth-failed .modal-content .modal-body .sign-up-mail:hover svg {
  transform: translateX(5px);
}
.google-auth-failed .modal-content .modal-body .sign-up-google {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
  width: 100%;
  margin-top: 16px;
}
.google-auth-failed .modal-content .modal-body .sign-up-google:hover, .google-auth-failed .modal-content .modal-body .sign-up-google:focus {
  border: 1px solid var(--color-cta);
}
.google-auth-failed .modal-content .modal-body .sign-up-google:active {
  border: 1px solid var(--color-cta);
}
.google-auth-failed .modal-content .modal-body .sign-up-google.disabled, .google-auth-failed .modal-content .modal-body .sign-up-google:disabled {
  pointer-events: none;
}
.google-auth-failed .modal-content .modal-body .sign-up-google svg {
  transition: 0.2s linear;
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-text);
  width: 100%;
  margin-top: 28px;
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black:hover, .google-auth-failed .modal-content .modal-body .sign-up-google-black:focus {
  background-color: var(--color-primary);
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black:active {
  background-color: var(--color-primary-strong);
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black.disabled, .google-auth-failed .modal-content .modal-body .sign-up-google-black:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black svg {
  transition: 0.2s linear;
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black:hover svg {
  transform: translateX(5px);
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black:hover svg {
  transform: translateX(0);
}
.google-auth-failed .modal-content .modal-header:hover {
  cursor: pointer;
}

.google-auth-failed.show {
  visibility: visible;
  opacity: 1;
}

html.popup-opened {
  overflow: hidden;
}

.popup-wrapper {
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--modal-overlay-light);
  backdrop-filter: blur(7px);
  position: fixed;
  inset: 0;
  transition: all 0.3s linear;
  padding: 40px;
}
.popup-wrapper.active {
  opacity: 100;
  z-index: 98;
  pointer-events: auto;
}
.popup-wrapper .popup {
  position: relative;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  max-width: 608px;
  border-radius: 20px;
  background-color: var(--color-surface);
  box-shadow: var(--modal-shadow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.popup-wrapper .popup .popup-close {
  position: absolute;
  cursor: pointer;
  top: 40px;
  right: 40px;
}
.popup-wrapper .popup .popup-header .popup-title {
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.input-tooltip-validator {
  background-color: var(--color-primary);
  padding: 24px 44px 24px 24px;
  border-radius: 8px;
}
.input-tooltip-validator .input-tooltip-validator-message {
  color: var(--color-text-inverse);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.input-tooltip-validator .input-tooltip-validator-close {
  position: absolute;
  padding: 0;
  border: none;
  background: transparent;
  right: 24px;
  top: 24px;
}

.tooltip {
  background-color: var(--color-primary);
  padding: 24px 44px 24px 24px;
  border-radius: 8px;
}
.tooltip .tooltip-message {
  color: var(--color-text-inverse);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.tooltip .tooltip-close {
  position: absolute;
  padding: 0;
  border: none;
  background: transparent;
  right: 24px;
  top: 25px;
}

.modal-component {
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s all;
  z-index: 100;
  pointer-events: none;
  background-color: rgba(213, 213, 213, 0.3);
  backdrop-filter: blur(14px) opacity(0);
  overflow: scroll;
  align-items: stretch;
}
.modal-component .modal-content {
  margin: 0 auto;
  z-index: 123;
  max-width: 580px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.0784313725);
  position: relative;
  padding: 40px;
  height: -moz-max-content;
  height: max-content;
  margin-top: auto;
  margin-bottom: auto;
}
@media (width <= 480px) {
  .modal-component .modal-content {
    padding: 24px;
  }
}
@media (width <= 590px) {
  .modal-component .modal-content {
    max-width: 95%;
  }
}
.modal-component .modal-content .modal-header {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-component .modal-content .modal-header:hover {
  cursor: pointer;
}
.modal-component .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 28px;
  width: 100%;
}
@media (width <= 480px) {
  .modal-component .modal-content .modal-body {
    row-gap: 24px;
  }
}
@media (width <= 480px) {
  .modal-component .modal-content .modal-body svg {
    width: 40px;
    height: 40px;
  }
}
.modal-component .modal-content .modal-body h3 {
  color: var(--color-text);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (width <= 480px) {
  .modal-component .modal-content .modal-body h3 {
    line-height: 140%;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
  }
}
.modal-component .modal-content .modal-body p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}
@media (width <= 480px) {
  .modal-component .modal-content .modal-body p {
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
  }
}
.modal-component .dark-button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-text);
  width: 100%;
}
.modal-component .dark-button:hover, .modal-component .dark-button:focus {
  background-color: var(--color-primary);
}
.modal-component .dark-button:active {
  background-color: var(--color-primary-strong);
}
.modal-component .dark-button.disabled, .modal-component .dark-button:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.modal-component .dark-button svg {
  transition: 0.2s linear;
}
.modal-component .dark-button:hover svg {
  transform: translateX(5px);
}
@media (width <= 480px) {
  .modal-component .dark-button {
    padding: 8px 5px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
  }
}
.modal-component .pink-button {
  margin-top: 32px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
.modal-component .pink-button:hover, .modal-component .pink-button:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.modal-component .pink-button:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.modal-component .pink-button.disabled, .modal-component .pink-button:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.modal-component .pink-button svg {
  transition: 0.2s linear;
}
.modal-component .pink-button:hover svg {
  transform: translateX(5px);
}
@media (width <= 768px) {
  .modal-component .pink-button {
    color: var(--color-text-inverse);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 24px;
    padding: 8px 5px;
    border-radius: 6px;
  }
}

.modal-component.show {
  pointer-events: auto;
  opacity: 1;
  backdrop-filter: blur(14px) opacity(1);
}

.stripe-upsell-payment-modal .modal-content {
  max-width: 642px;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content {
    width: 100%;
    min-height: 100%;
    max-width: 768px;
    border-radius: 0;
    padding: 18px 16px;
    justify-content: flex-start;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-header {
  top: 40px;
  right: 40px;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-header {
    top: 20px;
    right: 16px;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-body {
  row-gap: 32px;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body {
    row-gap: 24px;
  }
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
  background: rgba(242, 242, 242, 0.6);
  border-radius: 8px;
  padding: 24px;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body .product-banner {
    flex-direction: column;
    justify-content: center;
    padding: 24px 16px;
    row-gap: 16px;
    margin-top: 18px;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner img {
  max-width: 152px;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body .product-banner img {
    max-width: 118px;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner .top-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner .top-text-wrapper h5 {
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body .product-banner .top-text-wrapper h5 {
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner .top-text-wrapper .price-wrapper {
  display: flex;
  flex-direction: column;
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner .top-text-wrapper .price-wrapper .price {
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner .top-text-wrapper .price-wrapper .duration {
  font-weight: 400;
  font-size: 8px;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-align: right;
  white-space: nowrap;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body .product-banner .top-text-wrapper .price-wrapper .duration {
    display: none;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-body .product-banner .description {
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
  padding-right: 20px;
  color: var(--color-border-strong);
  text-align: left;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body .product-banner .description {
    margin-top: 14px;
  }
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form {
  width: 100%;
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form .secure-payment {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  margin-top: 14px;
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form button {
  position: relative;
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form button .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form button .svg-loading svg {
  transform: none !important;
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form button.in-process {
  color: transparent !important;
  pointer-events: none;
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form button.in-process svg {
  opacity: 0;
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form button.in-process .svg-loading {
  opacity: 1;
}
.stripe-upsell-payment-modal .modal-content .modal-body .payment-form button.in-process .svg-loading svg {
  opacity: 1;
}
@media (width <= 768px) {
  .stripe-upsell-payment-modal .pink-button {
    padding: 12px 16px;
    border-radius: 8px;
  }
}

body.vibe_api_flow .funnel-progress-bar {
  display: none;
}

.funnel-progress-bar {
  --progress-bar-active-color: var(--color-primary-strong);
  --progress-bar-active-stroke: var(--color-primary);
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (width >= 576px) {
  .funnel-progress-bar {
    display: none;
  }
}
.funnel-progress-bar .steps-list {
  max-width: 696px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (width <= 600px) {
  .funnel-progress-bar .steps-list {
    margin: 0;
  }
}
.funnel-progress-bar .steps-list .mobile-text {
  display: none;
}
@media (width <= 600px) {
  .funnel-progress-bar .steps-list .mobile-text {
    display: initial;
  }
}
@media (width <= 600px) {
  .funnel-progress-bar .steps-list .step-title {
    font-size: 20px;
    color: var(--color-text);
  }
}
.funnel-progress-bar .steps-list .separators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (width <= 600px) {
  .funnel-progress-bar .steps-list .separators {
    display: none;
  }
}
.funnel-progress-bar .steps-list .separators .separators-item {
  width: 16px;
  height: 2px;
  border-radius: 16px;
  background: var(--color-text-muted);
}
.funnel-progress-bar .steps-list .steps-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (width <= 600px) {
  .funnel-progress-bar .steps-list .steps-list-item {
    display: none;
    align-items: flex-start;
  }
  .funnel-progress-bar .steps-list .steps-list-item.mobile-active {
    display: flex;
  }
}
.funnel-progress-bar .steps-list .steps-list-item .step-title {
  text-align: center;
}
.funnel-progress-bar .steps-list .steps-list-item span {
  font-size: 9px;
  line-height: 1.6;
  color: var(--color-text-inverse);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: var(--color-text-muted);
  border-radius: 50%;
}
@media (width <= 600px) {
  .funnel-progress-bar .steps-list .steps-list-item span {
    display: none;
  }
}
@media (width >= 601px) {
  .funnel-progress-bar .steps-list li.active {
    color: var(--progress-bar-active-color);
  }
  .funnel-progress-bar .steps-list li.active span {
    background: var(--progress-bar-active-color);
  }
  .funnel-progress-bar .steps-list li.current-step-heading-wrapper {
    font-weight: 700;
  }
}
.funnel-progress-bar .steps-list .separators-item.active {
  background: var(--progress-bar-active-color);
}
.funnel-progress-bar .circular-progress {
  display: none;
}
@media (width <= 600px) {
  .funnel-progress-bar .circular-progress {
    position: relative;
    display: inline-block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
  }
  .funnel-progress-bar .circular-progress svg {
    transform: rotate(270deg);
  }
  .funnel-progress-bar .circular-progress circle {
    stroke-width: 6;
    fill: none;
  }
  .funnel-progress-bar .circular-progress circle:nth-of-type(1) {
    stroke: var(--color-progress-track);
  }
  .funnel-progress-bar .circular-progress circle:nth-of-type(2) {
    stroke: var(--progress-bar-active-stroke);
    stroke-dasharray: 251.3274122872;
    stroke-dashoffset: 165.8760921095;
  }
  .funnel-progress-bar .circular-progress .pct {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
  }
}

.bys-dashboard:has(.funnel-progress-bar) .bys-dashboard-wrapper {
  padding-top: 96px;
  transition: padding 0.3s;
}
@media (width <= 600px) {
  .bys-dashboard:has(.funnel-progress-bar) .bys-dashboard-wrapper {
    padding-top: 48px;
  }
}

@media (width <= 600px) {
  body:has(.tooltip\.bys-dashboard_\.header) .bys-dashboard:has(.funnel-progress-bar) .bys-dashboard-wrapper,
  body:has(.input-tooltip-validator) .bys-dashboard:has(.funnel-progress-bar) .bys-dashboard-wrapper {
    padding-top: 111px;
  }
  body:has(.funnel-progress-bar) .tooltip\.bys-dashboard_\.header,
  body:has(.funnel-progress-bar) .input-tooltip-validator {
    min-height: 88px;
    display: flex;
    align-items: center;
  }
}
.help-bubble {
  --help-bubble-fab-bg: var(--help-bubble-ink, #521100);
  --help-bubble-fab-color: #fff;
  --help-bubble-surface: #fff;
  --help-bubble-title-color: var(--help-bubble-ink, #521100);
  --help-bubble-text-color: var(--help-bubble-muted, #8a5a4c);
  --help-bubble-phone-color: var(--help-bubble-link, #ff2900);
  --help-bubble-cta-bg: var(--help-bubble-accent, #ff2c00);
  --help-bubble-cta-color: #fff;
  --help-bubble-shadow:
    0 2px 4px -2px rgb(82 17 0 / 6%),
    0 4px 8px -2px rgb(82 17 0 / 10%);
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
@media (width <= 767px) {
  .help-bubble {
    right: 16px;
    bottom: 16px;
  }
}

.help-bubble-toggle {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--help-bubble-fab-bg);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), var(--help-bubble-shadow);
  color: var(--help-bubble-fab-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.help-bubble-toggle:hover {
  transform: scale(1.05);
}
.help-bubble-toggle:focus-visible {
  outline: 2px solid var(--help-bubble-cta-bg);
  outline-offset: 2px;
}
.help-bubble-toggle svg {
  display: block;
}

.help-bubble-panel {
  position: relative;
  box-sizing: border-box;
  width: 323px;
  max-width: calc(100vw - 32px);
  padding: 20px;
  border-radius: 12px;
  background: var(--help-bubble-surface);
  box-shadow: var(--help-bubble-shadow);
}
.help-bubble-panel[hidden] {
  display: none;
}

.help-bubble-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--help-bubble-text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-bubble-close:focus-visible {
  outline: 2px solid var(--help-bubble-cta-bg);
  outline-offset: 2px;
}
.help-bubble-close svg {
  display: block;
}

.help-bubble-title {
  margin: 0 32px 15px 0;
  color: var(--help-bubble-title-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.help-bubble-text {
  margin: 0 0 17px;
  color: var(--help-bubble-text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.help-bubble-phone {
  color: var(--help-bubble-phone-color);
  font-weight: 700;
  text-decoration: none;
}
.help-bubble-phone:hover, .help-bubble-phone:focus {
  color: var(--help-bubble-phone-color);
  text-decoration: underline;
}

.help-bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  background: var(--help-bubble-cta-bg);
  color: var(--help-bubble-cta-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.help-bubble-cta:hover, .help-bubble-cta:focus {
  color: var(--help-bubble-cta-color);
  opacity: 0.9;
}
.help-bubble-cta:focus-visible {
  outline: 2px solid var(--help-bubble-title-color);
  outline-offset: 2px;
}

.iti {
  --iti-path-flags-1x: url("../img/flags/flags.webp");
  --iti-path-flags-2x: url("../img/flags/flags@2x.webp");
  --iti-path-globe-1x: url("../img/flags/globe.webp");
  --iti-path-globe-2x: url("../img/flags/globe@2x.webp");
}

.bys-register .bl-1 {
  display: flex;
}
.bys-register .bl-1 .logo-content {
  position: absolute;
  top: 32px;
  left: 40px;
  display: flex;
  z-index: 2;
}
.bys-register .bl-1 .logo-content .logo {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  outline: none;
}
.bys-register .bl-1 .logo-content .partner {
  display: block;
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-text-inverse);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  margin-left: 12px;
}
.bys-register .bl-1 .block-1 {
  display: flex;
  justify-content: center;
  width: 43%;
  background: var(--register-aside-bg);
  padding-top: 127px;
  padding-bottom: 293px;
}
.bys-register .bl-1 .block-1 .content {
  max-width: 421px;
}
.bys-register .bl-1 .block-1 .content h2 {
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .bys-register .bl-1 .block-1 .content h2 {
    font-size: 28px;
  }
}
.bys-register .bl-1 .block-1 .content ul {
  margin-bottom: 28px;
}
.bys-register .bl-1 .block-1 .content ul li {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  background: var(--register-feature-check-icon) no-repeat 0 50%;
  padding-left: 32px;
  margin-bottom: 12px;
}
.bys-register .bl-1 .block-1 .content .flx-logos {
  display: flex;
  align-items: center;
  gap: 0 36px;
  margin-bottom: 33px;
}
.bys-register .bl-1 .block-1 .content .flx-logos img {
  display: block;
}
.bys-register .bl-1 .block-1 .content .flx-logos img.s1 {
  width: 255px;
}
.bys-register .bl-1 .block-1 .content .flx-logos img.s2 {
  width: 80px;
}
.bys-register .bl-1 .block-1 .content .quote {
  max-width: 410px;
}
.bys-register .bl-1 .block-1 .content .quote img {
  display: block;
  margin-bottom: 9px;
}
.bys-register .bl-1 .block-1 .content .quote p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.bys-register .bl-1 .block-1 .content .quote p span {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-top: 9px;
}
.bys-register .bl-1 .block-2 {
  width: 57%;
  padding-top: 127px;
}
.bys-register .bl-1 .block-2 h3 {
  text-align: center;
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .bys-register .bl-1 .block-2 h3 {
    font-size: 28px;
  }
}
.bys-register .bl-1 .block-2 form {
  max-width: 436px;
  display: block;
  margin: auto;
}
.bys-register .bl-1 .block-2 form .warning-info {
  border-radius: 12px;
  background: var(--color-warning) url("../img/warning-icon.svg") no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: var(--color-text);
  line-height: normal;
  margin-bottom: 32px;
}
.bys-register .bl-1 .block-2 form .warning-info strong {
  font-weight: 700;
}
.bys-register .bl-1 .block-2 form span.error,
.bys-register .bl-1 .block-2 form .tel-error.active {
  display: block;
  font-size: 12px;
  color: var(--color-error);
  margin-top: 8px;
}
.bys-register .bl-1 .block-2 form .field {
  margin-bottom: 16px;
}
.bys-register .bl-1 .block-2 form .field label {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.bys-register .bl-1 .block-2 form .field .login-password-wrapper {
  position: relative;
}
.bys-register .bl-1 .block-2 form .field .iti {
  width: 100%;
}
.bys-register .bl-1 .block-2 form .field .iti .iti__search-input {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
}
.bys-register .bl-1 .block-2 form .field .iti .iti__search-input::-moz-placeholder {
  color: var(--color-text-muted);
}
.bys-register .bl-1 .block-2 form .field .iti .iti__search-input::placeholder {
  color: var(--color-text-muted);
}
.bys-register .bl-1 .block-2 form .field .iti .iti__search-input:hover {
  border-color: var(--color-primary);
}
.bys-register .bl-1 .block-2 form .field .iti .iti__search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.bys-register .bl-1 .block-2 form .field .iti .iti__search-input:disabled, .bys-register .bl-1 .block-2 form .field .iti .iti__search-input.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.bys-register .bl-1 .block-2 form .field .iti .iti__search-input.not-valid, .bys-register .bl-1 .block-2 form .field .iti .iti__search-input.error {
  border-color: var(--color-error) !important;
}
.bys-register .bl-1 .block-2 form .field img.pswd-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  cursor: pointer;
}
.bys-register .bl-1 .block-2 form .field input {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
  width: 100%;
}
.bys-register .bl-1 .block-2 form .field input::-moz-placeholder {
  color: var(--color-text-muted);
}
.bys-register .bl-1 .block-2 form .field input::placeholder {
  color: var(--color-text-muted);
}
.bys-register .bl-1 .block-2 form .field input:hover {
  border-color: var(--color-primary);
}
.bys-register .bl-1 .block-2 form .field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.bys-register .bl-1 .block-2 form .field input:disabled, .bys-register .bl-1 .block-2 form .field input.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.bys-register .bl-1 .block-2 form .field input.not-valid, .bys-register .bl-1 .block-2 form .field input.error {
  border-color: var(--color-error) !important;
}
.bys-register .bl-1 .block-2 form .field input.error-valiation {
  border-color: var(--color-error) !important;
}
.bys-register .bl-1 .block-2 form .field .register-password-wrapper {
  position: relative;
}
.bys-register .bl-1 .block-2 form button[type=submit] {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-button-cta-bg);
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.bys-register .bl-1 .block-2 form button[type=submit]:hover, .bys-register .bl-1 .block-2 form button[type=submit]:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.bys-register .bl-1 .block-2 form button[type=submit]:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.bys-register .bl-1 .block-2 form button[type=submit].disabled, .bys-register .bl-1 .block-2 form button[type=submit]:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.bys-register .bl-1 .block-2 form button[type=submit] svg {
  transition: 0.2s linear;
}
.bys-register .bl-1 .block-2 form button[type=submit]:hover svg {
  transform: translateX(5px);
}
.bys-register .bl-1 .block-2 form .google-login {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
  width: 100%;
  margin-bottom: 16px;
}
.bys-register .bl-1 .block-2 form .google-login:hover, .bys-register .bl-1 .block-2 form .google-login:focus {
  border: 1px solid var(--color-cta);
}
.bys-register .bl-1 .block-2 form .google-login:active {
  border: 1px solid var(--color-cta);
}
.bys-register .bl-1 .block-2 form .google-login.disabled, .bys-register .bl-1 .block-2 form .google-login:disabled {
  pointer-events: none;
}
.bys-register .bl-1 .block-2 form .google-login svg {
  transition: 0.2s linear;
}
.bys-register .bl-1 .block-2 form .google-login.in-proccess {
  position: relative;
  pointer-events: none;
}
.bys-register .bl-1 .block-2 form .google-login.in-proccess::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  right: 6px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -2px;
  border: 2px solid rgba(73, 73, 73, 0.5);
  border-left-color: var(--color-text);
  border-top-color: var(--color-text);
  animation: spin 0.6s infinite linear, grow 0.3s forwards ease-out;
}
@keyframes spin {
  to {
    transform: rotate(359deg);
  }
}
@keyframes grow {
  to {
    width: 14px;
    height: 14px;
    margin-top: -8px;
    right: 13px;
  }
}
.bys-register .bl-1 .block-2 form p {
  text-align: center;
  font-size: 16px;
  color: var(--color-text);
}
.bys-register .bl-1 .block-2 form p a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 16px;
  margin-left: 4px;
  transition: 0.3s;
  text-decoration: none;
}
.bys-register .bl-1 .block-2 form p a:hover {
  color: var(--color-primary-strong);
  text-decoration: underline;
}
.bys-register .bl-1 .block-2 form .logout-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  font-size: 16px;
  color: #5a5859;
}
.bys-register .bl-1 .block-2 form .logout-area a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  margin-left: 4px;
  transition: 0.3s;
}
.bys-register .bl-1 .block-2 form .logout-area a:hover {
  color: var(--color-primary-strong);
}

.auth-footer .flx {
  justify-content: initial;
}
.auth-footer .flx .flx-wrapper {
  width: 43%;
}
.auth-footer .flx .flx-wrapper .content {
  display: flex;
  margin: auto;
  max-width: 421px;
}
.auth-footer .flx .block-1 {
  width: auto;
  white-space: nowrap;
  margin-right: 20px;
}
.auth-footer .flx .block-3 {
  width: auto;
  white-space: nowrap;
}
.auth-footer .flx .block-2 {
  width: 57%;
}

@media (width <= 1300px) {
  .bys-register .bl-1 .block-1 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .bys-register .bl-1 .block-2 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .auth-footer .flx .flx-wrapper {
    width: 50%;
  }
  .auth-footer .flx .block-2 {
    width: 50%;
  }
}
@media (width <= 940px) {
  .bys-register {
    background: transparent;
  }
  .bys-register .bl-1 {
    flex-direction: column;
  }
  .bys-register .bl-1 .logo-content {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .bys-register .bl-1 .block-1 {
    order: 2;
    width: 100%;
    padding: 40px 16px 180px;
  }
  .bys-register .bl-1 .block-1 .content h2 {
    text-align: center;
  }
  .bys-register .bl-1 .block-2 {
    order: 1;
    width: 100%;
    padding: 88px 16px 40px;
  }
  .bys-register .bl-1 .block-2 h2 {
    text-align: center;
  }
  .bys-register .bl-1 .block-2 form {
    max-width: 100%;
  }
  .auth-footer .flx .flx-wrapper {
    width: 100%;
    order: 2;
  }
  .auth-footer .flx .flx-wrapper .content {
    max-width: 100%;
    flex-direction: column;
  }
  .auth-footer .flx .block-1 {
    margin-bottom: 12px;
  }
  .auth-footer .flx .block-2 {
    width: 100%;
    order: 1;
  }
}
@media (width <= 600px) {
  .bys-register .bl-1 .block-1 .content {
    width: 100%;
  }
  .bys-register .bl-1 .block-1 .content h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  }
  .bys-register .bl-1 .block-1 .content ul {
    margin-bottom: 32px;
  }
  .bys-register .bl-1 .block-1 .content ul li {
    font-size: 18px;
    line-height: 25px;
    background-position: 0 3px;
    margin-bottom: 12px;
  }
  .bys-register .bl-1 .block-1 .content ul li:nth-last-child(1) {
    margin-bottom: 0;
  }
  .bys-register .bl-1 .block-1 .content .quote {
    max-width: 100%;
  }
  .bys-register .bl-1 .block-1 .content .flx-logos {
    gap: 0 28px;
    margin-bottom: 36px;
  }
  .bys-register .bl-1 .block-1 .content .flx-logos img.s1 {
    width: 224px;
  }
  .bys-register .bl-1 .block-1 .content .flx-logos img.s2 {
    width: 74px;
  }
  .bys-register .bl-1 .block-2 h3 {
    font-size: 28px;
    line-height: 33px;
    margin-bottom: 32px;
  }
  .bys-register .bl-1 .block-2 form button[type=submit] {
    margin-bottom: 20px;
    margin-top: 12px;
  }
}
.bys-sign-in-reset-pswd {
  padding-top: 28px;
  padding-bottom: 500px;
}
.bys-sign-in-reset-pswd .logo-content {
  margin-bottom: 100px;
}
.bys-sign-in-reset-pswd .logo-content .logo {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  outline: none;
}
.bys-sign-in-reset-pswd h1 {
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .bys-sign-in-reset-pswd h1 {
    font-size: 28px;
  }
}
.bys-sign-in-reset-pswd h6 {
  margin: 0 auto 24px;
  max-width: 438px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 24px;
}
.bys-sign-in-reset-pswd form {
  width: 438px;
  display: block;
  margin: auto;
}
.bys-sign-in-reset-pswd form .warning-info {
  border-radius: 12px;
  background: var(--color-warning) url("../img/warning-icon.svg") no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: #000;
  line-height: normal;
  margin-bottom: 32px;
}
.bys-sign-in-reset-pswd form .warning-info strong {
  font-weight: 700;
}
.bys-sign-in-reset-pswd form .success-info {
  border-radius: 12px;
  background: #edf7f2 url("../img/success-icon.svg") no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: var(--color-text);
  line-height: normal;
  margin-bottom: 32px;
}
.bys-sign-in-reset-pswd form .success-info strong {
  font-weight: 700;
}
.bys-sign-in-reset-pswd form span.error {
  display: block;
  font-size: 12px;
  color: var(--color-error);
  margin-top: 8px;
}
.bys-sign-in-reset-pswd form .field {
  margin-bottom: 16px;
  position: relative;
}
.bys-sign-in-reset-pswd form .field label {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.bys-sign-in-reset-pswd form .field .login-password-wrapper {
  position: relative;
}
.bys-sign-in-reset-pswd form .field img.pswd-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  cursor: pointer;
}
.bys-sign-in-reset-pswd form .field input {
  width: 100%;
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
}
.bys-sign-in-reset-pswd form .field input::-moz-placeholder {
  color: var(--color-text-muted);
}
.bys-sign-in-reset-pswd form .field input::placeholder {
  color: var(--color-text-muted);
}
.bys-sign-in-reset-pswd form .field input:hover {
  border-color: var(--color-primary);
}
.bys-sign-in-reset-pswd form .field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.bys-sign-in-reset-pswd form .field input:disabled, .bys-sign-in-reset-pswd form .field input.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.bys-sign-in-reset-pswd form .field input.not-valid, .bys-sign-in-reset-pswd form .field input.error {
  border-color: var(--color-error) !important;
}
.bys-sign-in-reset-pswd form .form-footer-flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 40px;
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input {
  display: none;
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 4px;
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox label::before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1px solid var(--color-border-strong);
  padding: 0;
  background-size: cover;
  background-position: center;
  transition: 0.2s linear;
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox label:hover::before {
  border-color: var(--color-text);
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox label:active::before {
  border-color: var(--color-primary-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' fill='currentColor'/%3E%3Cpath d='M18 8L9.75 16.25L6 12.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  color: var(--color-primary);
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input:checked + label::before {
  border-color: var(--color-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' fill='currentColor'/%3E%3Cpath d='M18 8L9.75 16.25L6 12.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  color: var(--color-text);
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input:checked + label:hover::before {
  border-color: var(--color-primary-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' fill='currentColor'/%3E%3Cpath d='M18 8L9.75 16.25L6 12.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  color: var(--color-primary);
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input.disabled + label,
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input:disabled + label {
  pointer-events: none;
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input.disabled + label::before,
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input:disabled + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' fill='currentColor'/%3E%3Cpath d='M18 8L9.75 16.25L6 12.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-color: var(--color-border);
  color: var(--color-border);
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label input {
  display: none;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label .check-area {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  margin-right: 8px;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label input:checked ~ .check-area {
  background: var(--color-text) url("../img/remember-me-check.svg") no-repeat 50% 50%;
  border: 1px solid var(--color-text);
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label:hover:has(input:checked):hover .check-area {
  background: var(--color-primary) url("../img/remember-me-check.svg") no-repeat 50% 50% !important;
  border: 1px solid var(--color-primary) !important;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label:hover .check-area {
  border: 1px solid var(--color-text);
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label:active .check-area {
  background: var(--color-primary) url("../img/remember-me-check.svg") no-repeat 50% 50% !important;
  border: 1px solid var(--color-primary) !important;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item a {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item a:hover {
  color: var(--color-primary-strong);
  text-decoration: underline;
}
.bys-sign-in-reset-pswd form button[type=submit] {
  margin: 16px auto;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
}
.bys-sign-in-reset-pswd form button[type=submit]:hover, .bys-sign-in-reset-pswd form button[type=submit]:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.bys-sign-in-reset-pswd form button[type=submit]:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.bys-sign-in-reset-pswd form button[type=submit].disabled, .bys-sign-in-reset-pswd form button[type=submit]:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.bys-sign-in-reset-pswd form button[type=submit] svg {
  transition: 0.2s linear;
}
.bys-sign-in-reset-pswd form button[type=submit]:hover svg {
  transform: translateX(5px);
}
.bys-sign-in-reset-pswd form .google-login {
  margin: 0 auto 16px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
}
.bys-sign-in-reset-pswd form .google-login:hover, .bys-sign-in-reset-pswd form .google-login:focus {
  border: 1px solid var(--color-cta);
}
.bys-sign-in-reset-pswd form .google-login:active {
  border: 1px solid var(--color-cta);
}
.bys-sign-in-reset-pswd form .google-login.disabled, .bys-sign-in-reset-pswd form .google-login:disabled {
  pointer-events: none;
}
.bys-sign-in-reset-pswd form .google-login svg {
  transition: 0.2s linear;
}
.bys-sign-in-reset-pswd form .google-login.in-proccess {
  position: relative;
  pointer-events: none;
}
.bys-sign-in-reset-pswd form .google-login.in-proccess::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  right: 6px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -2px;
  border: 2px solid rgba(73, 73, 73, 0.5);
  border-left-color: var(--color-text);
  border-top-color: var(--color-text);
  animation: spin 0.6s infinite linear, grow 0.3s forwards ease-out;
}
@keyframes spin {
  to {
    transform: rotate(359deg);
  }
}
@keyframes grow {
  to {
    width: 14px;
    height: 14px;
    margin-top: -8px;
    right: 13px;
  }
}
.bys-sign-in-reset-pswd form p {
  text-align: center;
  font-size: 16px;
}
.bys-sign-in-reset-pswd form p a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 16px;
  margin-left: 4px;
  transition: 0.3s;
  text-decoration: none;
}
.bys-sign-in-reset-pswd form p a:hover {
  color: var(--color-primary-strong);
  text-decoration: underline;
}

@media (width <= 600px) {
  .bys-sign-in-reset-pswd {
    padding-bottom: 324px;
  }
  .bys-sign-in-reset-pswd .logo {
    margin-bottom: 60px;
  }
  .bys-sign-in-reset-pswd h1 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .bys-sign-in-reset-pswd h6 {
    margin-bottom: 20px;
  }
  .bys-sign-in-reset-pswd form {
    width: 100%;
  }
  .bys-sign-in-reset-pswd form button {
    margin-bottom: 20px;
  }
}
.bys-dashboard {
  background: var(--dashboard-page-bg);
  background-size: 100%;
  min-height: 100vh;
}
.bys-dashboard .bys-banner {
  background: var(--color-text);
  padding: 0 85px;
  position: relative;
  max-height: 0;
  transition: all 0.3s ease-in;
  overflow: hidden;
}
.bys-dashboard .bys-banner.opened {
  max-height: 100px;
  padding: 8px 85px;
}
.bys-dashboard .bys-banner .bys-banner-content p {
  text-align: center;
  line-height: 1.4;
  color: var(--color-text-inverse);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-dashboard .bys-banner .bys-banner-content p mark {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  vertical-align: middle;
  background-color: var(--color-accent);
  padding: 0 6px;
  margin-right: 4px;
  border-radius: 4px;
}
.bys-dashboard .bys-banner .bys-banner-content .close {
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.bys-dashboard .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 28px 0 40px;
}
.bys-dashboard .header .logo-content {
  display: flex;
}
.bys-dashboard .header .logo-content .logo {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  outline: none;
}
.bys-dashboard .header .logo-content .partner {
  display: block;
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-text-inverse);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  margin-left: 12px;
}
.bys-dashboard .header .account-wrapper .account-block {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  background: var(--dashboard-account-arrow-icon) no-repeat 100% 50%;
  padding-right: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 6px;
  /* img {
  	display: block;
  	margin-right: 6px;
  } */
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu {
  width: 192px;
  position: absolute;
  top: 30px;
  right: 28px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08);
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: 0.3s;
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li {
  border-radius: 8px;
  margin-bottom: 6px;
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 6px 6px 12px;
  text-decoration: none;
  color: var(--color-text);
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li img {
  display: block;
  margin-right: 8px;
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li.active {
  background-color: #edf7f2;
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li.active img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(85%) saturate(1672%) hue-rotate(148deg) brightness(94%) contrast(105%);
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li:hover {
  background-color: var(--color-surface-alt);
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li.logout-btn {
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  cursor: pointer;
}
.bys-dashboard .header .account-wrapper ul.dropdown-menu li:nth-last-child(1) {
  margin-bottom: 0;
}
.bys-dashboard .header .account-wrapper.active ul.dropdown-menu {
  top: 70px;
  visibility: visible;
  opacity: 1;
}
.bys-dashboard .bys-dashboard-wrapper {
  padding-top: 64px;
  padding-bottom: 329px;
}
.bys-dashboard .bys-dashboard-wrapper.hidden .free-ai-store {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper.hidden .main-wrapper .step-title {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper.hidden .main-wrapper .main-wrapper-content {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper.hidden .next-step-wrapper {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper .free-ai-store {
  display: block;
  max-width: 578px;
  width: 85%;
  background: var(--color-surface);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  padding: 20px 20px 14px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  line-height: 24px;
  transition: color 0.3s;
}
.bys-dashboard .bys-dashboard-wrapper .free-ai-store:hover {
  color: var(--color-text);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper {
  position: relative;
  max-width: 696px;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  padding: 28px 24px;
  margin: 0 auto 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper {
  padding: 20px 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .account-settings-title {
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .account-settings-title {
    font-size: 28px;
  }
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form {
  display: block;
  width: 100%;
  border-bottom: 1px dashed var(--color-border-strong);
  padding-bottom: 28px;
  margin-bottom: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .warning-info {
  border-radius: 12px;
  background: var(--dashboard-warning-bg) var(--dashboard-warning-icon) no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: var(--color-text);
  line-height: normal;
  margin-bottom: 32px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .warning-info strong {
  font-weight: 700;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .success-info {
  border-radius: 12px;
  background: var(--color-surface-soft) var(--dashboard-success-icon) no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: var(--color-text);
  line-height: normal;
  margin-bottom: 32px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .success-info strong {
  font-weight: 700;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form span.error {
  display: block;
  color: var(--color-error);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  margin-top: -20px;
  margin-bottom: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field label {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 4px;
  display: block;
  margin-bottom: 8px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
  width: 100%;
  margin-bottom: 28px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input::-moz-placeholder {
  color: var(--color-text-muted);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input::placeholder {
  color: var(--color-text-muted);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input:hover {
  border-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input:disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input.not-valid, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input.error {
  border-color: var(--color-error) !important;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 268px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button:hover, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button.disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button svg {
  transition: 0.2s linear;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area .email-pswd-area-label {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 4px;
  margin-bottom: 8px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--color-border-strong);
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area .flx .email-pswd-item {
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area .flx .email-pswd-update {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area .flx .email-pswd-update:hover {
  color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area:nth-last-child(1) .flx {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .step-title {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  background: var(--dashboard-step-icon) no-repeat 0 50%;
  padding-left: 40px;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .step-title.done {
  background: var(--dashboard-step-icon-done) no-repeat 0 50%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .last-step-title {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .last-step-description {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-primary);
  width: 100%;
  display: flex;
  max-width: 568px;
  margin: 0 auto;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link:hover, .bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link.disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link:disabled {
  background-color: var(--color-border-strong);
  color: var(--color-text-muted);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link svg {
  transition: 0.2s linear;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-title {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-description {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-item {
  display: block;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  background: var(--color-surface) var(--dashboard-next-step-lock-icon) no-repeat 24px 50%;
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  padding: 24px 24px 24px 68px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-item.current {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.14);
  border: 1px solid transparent;
  color: var(--color-text);
  cursor: pointer;
  pointer-events: initial;
  background: var(--color-surface) var(--dashboard-step-icon) no-repeat 24px 50%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-item.done {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.14);
  border: 1px solid transparent;
  color: var(--color-text);
  cursor: pointer;
  pointer-events: initial;
  background: var(--color-surface) var(--dashboard-step-icon-done) no-repeat 24px 50%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-primary);
  width: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular:hover, .bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular:focus,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular:hover,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular:active,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular.disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular:disabled,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular.disabled,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular:disabled {
  background-color: var(--color-border-strong);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular svg,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular svg {
  transition: 0.2s linear;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular:hover svg,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular:not(.disabled) svg path,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular:not(.disabled) svg path {
  stroke: var(--color-text-inverse) !important;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular.update,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular.update {
  background-position: calc(50% - 35px) 50%;
  padding-left: 28px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.submit-step-button,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.submit-step-button {
  position: relative;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.submit-step-button .svg-loading,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.submit-step-button .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.submit-step-button .svg-loading svg,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.submit-step-button .svg-loading svg {
  transform: none !important;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.submit-step-button.in-process,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.submit-step-button.in-process {
  color: transparent !important;
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.submit-step-button.in-process svg,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.submit-step-button.in-process svg {
  opacity: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.submit-step-button.in-process .svg-loading,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.submit-step-button.in-process .svg-loading {
  opacity: 1;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.submit-step-button.in-process .svg-loading svg,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.submit-step-button.in-process .svg-loading svg {
  opacity: 1;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content {
  padding: 0 40px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a {
  transition: 0.2s linear;
  font-style: normal;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  display: inline-block;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a:hover {
  color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content strong {
  font-weight: 600;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content img {
  max-width: 100%;
  height: auto;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .customize-my-store-premium-animation {
  width: 100%;
  max-width: 348px;
  margin: 0 auto;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.4;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content iframe {
  aspect-ratio: 568/318;
  border-radius: 8px;
  width: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content strong {
  font-weight: 600;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content .color-torch-red {
  color: var(--color-error);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content mark {
  background: var(--color-accent);
  background: linear-gradient(-1deg, transparent 10%, var(--color-accent) 11%, var(--color-accent) 90%, transparent 91%, transparent 100%);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content mark.mark-red {
  color: var(--color-text-inverse);
  background: #ff0061;
  background: linear-gradient(-1deg, transparent 10%, #ff0061 11%, #ff0061 90%, transparent 91%, transparent 100%);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content ul {
  list-style-type: disc;
  list-style-position: inside;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content ul li {
  margin: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content a.dark {
  margin-bottom: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content button.dark {
  margin-bottom: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .step-description {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .step-description span {
  font-weight: 600;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .step-description.single {
  margin-bottom: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio {
  width: calc(33.3333333333% - 10px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio span.error {
  display: none !important;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label {
  display: block;
  height: 136px;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  background: var(--color-surface-soft);
  color: var(--color-text);
  border: 1px solid transparent;
  cursor: pointer;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label img {
  display: block;
  margin: 11px auto 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label svg {
  display: block;
  margin: 11px auto 12px;
  fill: var(--color-primary);
}
@media (width >= 993px) {
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label:hover {
    background: var(--color-surface-soft);
  }
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:checked ~ label {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:checked ~ label img {
  filter: brightness(100);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:checked ~ label svg {
  fill: var(--color-text-inverse);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:disabled ~ label {
  position: relative;
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
  border: 1px solid transparent !important;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:disabled ~ label img {
  filter: grayscale(100%) brightness(70%);
  opacity: 0.38;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:disabled ~ label:hover::before {
  position: absolute;
  left: 50%;
  top: -45px;
  transform: translateX(-50%);
  width: 179px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  content: "Unavailable at the moment \1F614";
  text-align: center;
  font-size: 12px;
  color: var(--color-text-inverse);
  line-height: 15px;
  padding: 8px;
  box-sizing: border-box;
  z-index: 1;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:disabled ~ label:hover::after {
  position: absolute;
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input.error ~ label {
  border: 1px solid var(--color-error);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-primary);
  margin-bottom: 16px;
  height: 50px;
  background: var(--color-text);
  width: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark:hover, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark:focus,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark:hover,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark:active,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark.disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark:disabled,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark.disabled,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark:disabled {
  background-color: var(--color-border-strong);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark svg,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark svg {
  transition: 0.2s linear;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark:hover svg,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark.external,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark.external {
  gap: 8px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper label {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 4px;
  display: block;
  margin-bottom: 4px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper.error span.error {
  display: block;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper span.error {
  display: none;
  font-size: 12px;
  color: var(--color-error);
  line-height: 16px;
  margin-top: -10px;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper span.error a {
  color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper span.error a:hover {
  color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
  display: block;
  width: calc(100% - 108px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input::-moz-placeholder {
  color: var(--color-text-muted);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input::placeholder {
  color: var(--color-text-muted);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input:hover {
  border-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input:disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input.not-valid, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input.error {
  border-color: var(--color-error) !important;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input:disabled {
  width: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button:hover, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button.disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button svg {
  transition: 0.2s linear;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item {
  width: calc(50% - 7px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item label {
  display: block;
  border-radius: 8px;
  border: 3px solid transparent;
  cursor: pointer;
  overflow: hidden;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item label img {
  display: block;
  width: 100%;
  height: 162px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item input {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item input:checked ~ label {
  border: 3px solid var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item input:checked ~ label img {
  border: 2px solid var(--color-text-inverse);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content ul li {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content ul li span {
  font-weight: 600;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content img.create-shopify-account {
  display: block;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
  height: auto;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content img.create-shopify-account.mobile {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper .next-step-wrapper {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 696px;
  background: var(--color-surface) var(--dashboard-next-step-lock-icon) no-repeat 24px 50%;
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  padding: 24px 24px 24px 68px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
}
.bys-dashboard .bys-dashboard-wrapper .next-step-wrapper span {
  display: block;
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-dashboard .modal-wrapper {
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 48px 32px 40px;
  background: var(--color-surface);
  display: none;
  z-index: 99;
}
.bys-dashboard .modal-wrapper img.modal-close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.bys-dashboard .modal-wrapper .modal-message {
  background: var(--color-surface-alt);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 28px;
  color: var(--color-text);
  line-height: normal;
}
.bys-dashboard .modal-wrapper .modal-message span {
  font-weight: 600;
  display: block;
}
.bys-dashboard .modal-wrapper .modal-message a {
  font-weight: 600;
  color: var(--color-primary);
}
.bys-dashboard .modal-wrapper .modal-message a:hover {
  color: var(--color-primary-strong);
}
.bys-dashboard .modal-wrapper ol {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 20px;
}
.bys-dashboard .modal-wrapper ol li {
  color: var(--color-text);
  line-height: normal;
}
.bys-dashboard .modal-wrapper ol li a {
  color: var(--color-primary);
  font-weight: 600;
}
.bys-dashboard .modal-wrapper ol li span {
  font-weight: 600;
}
.bys-dashboard .modal-wrapper ol li strike {
  color: var(--color-error);
  font-weight: 600;
  text-decoration: line-through;
}
.bys-dashboard .modal-wrapper ol li strong {
  font-weight: 600;
}
.bys-dashboard .modal-wrapper button.paid {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 100%;
  display: flex;
}
.bys-dashboard .modal-wrapper button.paid:hover, .bys-dashboard .modal-wrapper button.paid:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .modal-wrapper button.paid:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .modal-wrapper button.paid.disabled, .bys-dashboard .modal-wrapper button.paid:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.bys-dashboard .modal-wrapper button.paid svg {
  transition: 0.2s linear;
}
.bys-dashboard .modal-wrapper button.paid:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .modal-wrapper button.paid.verify {
  background: var(--color-text);
  padding-left: 0;
}
.bys-dashboard .modal-wrapper .popup-1 .modal-title {
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 46px;
}
@media (max-width: 767px) {
  .bys-dashboard .modal-wrapper .popup-1 .modal-title {
    font-size: 28px;
  }
}
.bys-dashboard .modal-wrapper .popup-1 .modal-title span {
  background: var(--color-accent);
  padding: 0 10px;
}
.bys-dashboard .modal-wrapper .popup-1 .modal-title-2 {
  color: var(--color-text);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .bys-dashboard .modal-wrapper .popup-1 .modal-title-2 {
    font-size: 20px;
  }
}
.bys-dashboard .modal-wrapper .popup-2 {
  display: none;
}
.bys-dashboard .modal-wrapper .popup-2 img.error-img {
  display: block;
  margin: 0 auto 20px;
}
.bys-dashboard .modal-wrapper .popup-2 .modal-title-1 {
  text-align: center;
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .bys-dashboard .modal-wrapper .popup-2 .modal-title-1 {
    font-size: 28px;
  }
}
.bys-dashboard .modal-wrapper .popup-2 .modal-title-2 {
  font-size: 24px;
  color: var(--color-text);
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: normal;
}
.bys-dashboard .modal-wrapper .popup-3 {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.bys-dashboard .modal-wrapper .popup-3 img.error-img {
  width: 52px;
  margin: 0 auto;
}
.bys-dashboard .modal-wrapper .popup-3 h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.bys-dashboard .modal-wrapper .popup-3 h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.bys-dashboard .modal-wrapper .popup-3 .modal-description {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  background: var(--color-surface-alt);
  border-radius: 8px;
  padding: 12px;
  line-height: 1.25;
}
.bys-dashboard .modal-wrapper .popup-3 .modal-description ol {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 100%;
  display: flex;
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store:hover, .bys-dashboard .modal-wrapper .popup-3 .create-new-store:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store.disabled, .bys-dashboard .modal-wrapper .popup-3 .create-new-store:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store svg {
  transition: 0.2s linear;
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .modal-wrapper.modal-active {
  display: flex;
  flex-direction: column;
}
.bys-dashboard .modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--modal-overlay-dark);
  z-index: 98;
  display: none;
}
.bys-dashboard .modal-overlay.modal-active {
  display: block;
}
.bys-dashboard .account-settings-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 52px;
  max-width: 540px;
  width: 100%;
  background: var(--color-surface);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  z-index: 100;
  display: none;
}
.bys-dashboard .account-settings-popup img.modal-close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.bys-dashboard .account-settings-popup .title {
  text-align: center;
  color: var(--color-text);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .bys-dashboard .account-settings-popup .title {
    font-size: 28px;
  }
}
.bys-dashboard .account-settings-popup form {
  display: block;
  width: 100%;
}
.bys-dashboard .account-settings-popup form span.error {
  display: block;
  font-size: 12px;
  color: var(--color-error);
  margin-top: 5px;
  margin-bottom: 24px;
}
.bys-dashboard .account-settings-popup form .field {
  position: relative;
  margin-bottom: 24px;
}
.bys-dashboard .account-settings-popup form .field img.pswd-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  cursor: pointer;
}
.bys-dashboard .account-settings-popup form .field input {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
  width: 100%;
}
.bys-dashboard .account-settings-popup form .field input::-moz-placeholder {
  color: var(--color-text-muted);
}
.bys-dashboard .account-settings-popup form .field input::placeholder {
  color: var(--color-text-muted);
}
.bys-dashboard .account-settings-popup form .field input:hover {
  border-color: var(--color-primary);
}
.bys-dashboard .account-settings-popup form .field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.bys-dashboard .account-settings-popup form .field input:disabled, .bys-dashboard .account-settings-popup form .field input.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.bys-dashboard .account-settings-popup form .field input.not-valid, .bys-dashboard .account-settings-popup form .field input.error {
  border-color: var(--color-error) !important;
}
.bys-dashboard .account-settings-popup form .btn-area {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.bys-dashboard .account-settings-popup form .btn-area .cancel {
  color: var(--color-primary);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  order: 2;
}
.bys-dashboard .account-settings-popup form .btn-area .cancel:hover {
  color: var(--color-primary-strong);
}
.bys-dashboard .account-settings-popup form .btn-area button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 100%;
  order: 1;
}
.bys-dashboard .account-settings-popup form .btn-area button:hover, .bys-dashboard .account-settings-popup form .btn-area button:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .account-settings-popup form .btn-area button:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .account-settings-popup form .btn-area button.disabled, .bys-dashboard .account-settings-popup form .btn-area button:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.bys-dashboard .account-settings-popup form .btn-area button svg {
  transition: 0.2s linear;
}
.bys-dashboard .account-settings-popup form .btn-area button:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .account-settings-popup.change-email-wrapper.active, .bys-dashboard .account-settings-popup.change-password-wrapper.active {
  display: block;
}
.bys-dashboard .desktop-only {
  display: initial;
}
.bys-dashboard .mobile-only {
  display: none;
}

@media (width <= 600px) {
  .bys-dashboard .bys-banner .bys-banner-content .close {
    right: 20px;
  }
  .bys-dashboard .header {
    padding: 21px 16px 0;
  }
  .bys-dashboard .header .account-wrapper ul.dropdown-menu {
    right: 16px;
  }
  .bys-dashboard .header .account-wrapper .account-block {
    background: transparent;
    padding-right: 0;
    /* img {
    	margin-right: 0;
    } */
  }
  .bys-dashboard .header .account-wrapper .account-block span {
    display: none;
  }
  .bys-dashboard .header .account-wrapper.active ul.dropdown-menu {
    top: 62px;
    z-index: 10;
  }
  .bys-dashboard .bys-dashboard-wrapper {
    padding-top: 33px;
    padding-bottom: 50px;
  }
  .bys-dashboard .bys-dashboard-wrapper .free-ai-store {
    font-size: 14px;
    line-height: 19px;
    padding: 16px 23px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .bys-dashboard .bys-dashboard-wrapper .next-step-wrapper {
    border-radius: 8px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper {
    border-radius: 8px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .step-title {
    font-size: 18px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper {
    padding: 0;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .account-settings-title {
    font-size: 28px;
    line-height: 33px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form {
    margin-bottom: 12px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button {
    width: 100%;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area .flx {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper .email-pswd-area .flx .email-pswd-item {
    word-break: break-word;
    padding-right: 10px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .last-step-description br {
    display: none;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-item {
    font-size: 18px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content {
    padding: 0;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content iframe {
    aspect-ratio: 304/170;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche {
    gap: 8px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio {
    width: 100%;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    height: auto;
    font-size: 16px;
    line-height: 15px;
    border-radius: 8px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label span {
    flex: 1;
    justify-content: left;
    padding-left: 16px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label img {
    margin-top: 5px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners {
    flex-direction: column;
    gap: 16px 0;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item {
    width: 100%;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark.disabled,
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark.disabled {
    font-size: 14px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx {
    flex-direction: column;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input {
    width: 100%;
    margin-bottom: 8px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button {
    width: 100%;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content img.create-shopify-account.desktop {
    display: none;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content img.create-shopify-account.mobile {
    display: block;
  }
  .bys-dashboard .modal-wrapper {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    padding: 40px 26px 26px;
    overflow-y: auto;
  }
  .bys-dashboard .modal-wrapper img.modal-close {
    top: 16px;
    right: 16px;
  }
  .bys-dashboard .modal-wrapper .modal-message {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .bys-dashboard .modal-wrapper ol {
    margin-bottom: 12px;
  }
  .bys-dashboard .modal-wrapper ol li {
    font-size: 16px;
  }
  .bys-dashboard .modal-wrapper .popup-1 .modal-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .bys-dashboard .modal-wrapper .popup-1 .modal-title br {
    display: none;
  }
  .bys-dashboard .modal-wrapper .popup-1 .modal-title-2 {
    text-align: center;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 12px;
  }
  .bys-dashboard .modal-wrapper .popup-2 .modal-title-1 {
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .bys-dashboard .modal-wrapper .popup-2 .modal-title-2 {
    font-size: 18px;
  }
  .bys-dashboard .modal-wrapper .popup-2 ol {
    margin-bottom: 20px;
  }
  .bys-dashboard .account-settings-popup {
    top: initial;
    left: initial;
    transform: initial;
    bottom: -100%;
    display: block;
    border-radius: 0;
    padding: 24px 16px;
    transition: 0.3s;
  }
  .bys-dashboard .account-settings-popup img.modal-close {
    top: 16px;
    right: 16px;
  }
  .bys-dashboard .account-settings-popup .title {
    text-align: left;
    font-size: 20px;
  }
  .bys-dashboard .account-settings-popup form .btn-area {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .bys-dashboard .account-settings-popup form .btn-area .cancel {
    order: 1;
    margin-top: 0;
    margin-right: 32px;
  }
  .bys-dashboard .account-settings-popup form .btn-area button {
    order: 2;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 28px 0 52px;
    background: var(--color-text) url("../img/account-settings-popup-check.svg") no-repeat 28px 50%;
  }
  .bys-dashboard .account-settings-popup.active {
    bottom: 0;
  }
  .bys-dashboard .desktop-only {
    display: none;
  }
  .bys-dashboard .mobile-only {
    display: initial;
  }
}
.page-template-vibe-claim-store {
  color: var(--color-text);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper {
  padding: 32px 24px;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-description {
  color: #373737;
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  max-width: 648px;
  margin: 0;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-description p:last-child {
  margin-bottom: 0;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-media {
  width: 100%;
  max-width: 552px;
  border-radius: 16px;
  overflow: hidden;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-media picture,
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-media img,
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-media video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-media img,
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-media video {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary {
  width: 100%;
  max-width: 568px;
  padding: 0;
  align-self: flex-start;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-title {
  font-weight: 600;
  margin: 0 0 20px;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 2px;
  background: var(--color-cta);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list li {
  position: relative;
  padding-left: 32px;
  margin: 0;
  font-size: 14px;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list li:first-child::before {
  margin-top: 0;
  top: 0;
  bottom: auto;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list li:last-child::before {
  margin-top: 0;
  top: auto;
  bottom: 0;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-cta);
  margin-top: -5px;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions {
  width: 100%;
  max-width: 568px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  gap: 8px;
  background: var(--color-cta);
  border-radius: 8px;
  overflow: hidden;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:hover, .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button.disabled, .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button svg {
  transition: 0.2s linear;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:hover svg {
  transform: translateX(5px);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:hover, .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:focus {
  background: var(--color-cta);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:active {
  background: var(--color-cta-strong);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button.disabled {
  background: var(--color-cta);
  color: var(--color-text-inverse);
  opacity: 0.5;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button.in-process {
  opacity: 1;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button .claim-store-button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button svg {
  flex: 0 0 20px;
  transition: transform 0.2s linear;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:hover svg, .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:focus svg {
  transform: translateX(8px);
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button.disabled svg, .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button:disabled svg {
  transform: none;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .claim-store-actions-note {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .claim-store-actions-note a {
  font-size: 12px;
}

@media (width <= 600px) {
  .page-template-claim-store .bys-dashboard-wrapper .main-wrapper,
  .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper {
    padding: 32px 24px 24px;
  }
  .page-template-claim-store .bys-dashboard-wrapper .main-wrapper .step-title,
  .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .step-title {
    font-size: 20px;
  }
  .page-template-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store,
  .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store {
    gap: 20px;
  }
  .page-template-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-description p,
  .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-description p {
    font-size: 15px;
  }
  .page-template-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list,
  .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-summary .claim-store-summary-list {
    gap: 16px;
  }
  .page-template-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button,
  .page-template-vibe-claim-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.claim-store .claim-store-actions .submit-step-button {
    max-width: 100%;
  }
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain {
  row-gap: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .dot-store-instruction {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .dot-store-instruction .skip {
  text-align: center;
  color: var(--color-primary);
  transition: all 0.3s ease-in;
  font-weight: 600;
  display: block;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .dot-store-instruction .skip:hover {
  text-decoration: underline;
}
@media (width <= 600px) {
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .dot-store-instruction .skip {
    font-size: 14px;
  }
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .dot-store-instruction .notification {
  padding: 16px 20px;
  background-color: #FEF6E1;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .dot-store-instruction .notification .description {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .popup-success-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .popup-success-wrapper .popup-success {
  border-radius: 20px;
  background: var(--color-surface);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
  padding: 40px;
  position: relative;
  max-width: 580px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .popup-success-wrapper .popup-success .close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .popup-success-wrapper .popup-success .popup-success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .popup-success-wrapper .popup-success .popup-success-content .icon svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 100%;
  background-color: var(--color-success);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .popup-success-wrapper .popup-success .popup-success-content h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .popup-success-wrapper .popup-success .popup-success-content p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .benefits {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .benefits .benefit {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .benefits .benefit .icon {
  flex-basis: 44px;
  border-radius: 8px;
  padding: 10px;
  height: 44px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .benefits .benefit .description {
  flex-basis: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .banner {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  border-radius: 8px;
  padding: 16px;
  background: url("../img/bg.png");
  list-style-type: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .banner .banner-item {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain .input-wrapper {
  flex-grow: 1;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain .submit-wrapper {
  align-self: end;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain .errors-list {
  flex-basis: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain-selected {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account {
  display: flex;
  flex-flow: column wrap;
  gap: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .notification {
  padding: 16px 20px;
  background-color: #FEF6E1;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .notification .description {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .notification .description p {
  margin-bottom: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .input-wrapper {
  gap: 12px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .input-wrapper.full {
  flex-basis: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .input-wrapper.half {
  flex-basis: calc(50% - 8px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .input-wrapper .password-wrapper {
  position: relative;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .input-wrapper .password-wrapper svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .input-wrapper .password-wrapper svg.active {
  cursor: pointer;
  pointer-events: auto;
  opacity: 1;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .password-validator {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style-type: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .password-validator li {
  border-radius: 32px;
  padding: 3px 11px;
  border: 1px solid transparent;
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .password-validator .valid {
  background-color: var(--input-focus-ring);
  border-color: var(--input-focus-ring);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .password-validator .not-valid {
  border-color: var(--color-error);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account-created .email-created-input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: space-between;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account-created .email-created-input-wrapper input {
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  padding: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.proceeding .submit-wrapper button {
  color: transparent;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.proceeding .submit-wrapper button svg {
  opacity: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.proceeding .submit-wrapper button span {
  opacity: 100;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.proceeding .submit-wrapper button span svg {
  opacity: 100;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  transition: all 0.3s ease-in;
  width: 100%;
  position: relative;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button:hover, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button:focus {
  background-color: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button:active {
  background-color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button.disabled, .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button svg {
  transition: 0.2s linear;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button span {
  transition: all 0.3s ease-in;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .errors-list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  color: var(--color-error);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper input {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  padding: 12px;
  width: 100%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper {
  position: relative;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--color-border-strong);
  display: flex;
  font-size: 16px;
  line-height: 1.5;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper.focused {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper.error {
  border-color: var(--color-error);
  box-shadow: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper input {
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  padding: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper input:-moz-placeholder-shown ~ span {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper input:placeholder-shown ~ span {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper span {
  font-size: 16px;
  line-height: 1.5;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper .sizer {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: space-between;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper input {
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  padding: 0;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .edit {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .edit:hover {
  color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .copy {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease-in;
  display: flex;
  gap: 8px;
  font-weight: 400;
  align-items: flex-start;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .copy:hover {
  color: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .copy:hover span svg g {
  stroke: var(--color-primary-strong);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .copy span {
  display: flex;
}
@media (width <= 600px) {
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .copy span {
    display: none;
  }
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .copy span svg g {
  stroke: var(--color-primary);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .available-domains {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .available-domains .available-domains-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  height: 317px;
  overflow-y: scroll;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .available-domains .available-domains-list .available-domain {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 8px;
  border-radius: 8px;
  border-bottom: 1px solid var(--color-surface-alt);
  transition: all 0.3s ease-in;
  cursor: pointer;
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .available-domains .available-domains-list .available-domain span {
  transition: all 0.3s ease-in;
  color: var(--color-primary);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .available-domains .available-domains-list .available-domain:hover {
  background-color: var(--color-surface-soft);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .available-domains .available-domains-list .available-domain:hover span {
  opacity: 100;
  pointer-events: auto;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .notification {
  padding: 16px 20px;
  background-color: #FEF6E1;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .notification .description {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}

@media (width <= 600px) {
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain .benefits .benefit .description {
    font-size: 14px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper .input-wrapper.half {
    flex-basis: 100%;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain .input-wrapper {
    order: 1;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain .submit-wrapper {
    flex-basis: 100%;
    order: 3;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.desired-domain .errors-list {
    order: 2;
  }
}
.page-template-copy-store-token .bys-dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper {
  padding: 0;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form label {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 4px;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input::-moz-placeholder, .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea::-moz-placeholder {
  color: var(--color-text-muted);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input::placeholder,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea::placeholder {
  color: var(--color-text-muted);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input:hover,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea:hover {
  border-color: var(--color-primary);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input:focus,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input:disabled, .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input.disabled,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea:disabled,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input.not-valid, .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input.error,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea.not-valid,
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form textarea.error {
  border-color: var(--color-error) !important;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form .message {
  color: var(--color-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-top: 4px;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form .message.error {
  color: var(--color-error);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form .input-container {
  position: relative;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form .input-container .clear {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L16 16' stroke='%239E9E9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 8L8 16' stroke='%239E9E9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  border: none;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form label {
  margin: 0;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 100%;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button:hover, .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button:focus {
  background-color: var(--color-primary);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button:active {
  background-color: var(--color-primary-strong);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button.disabled, .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button svg {
  transition: 0.2s linear;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button:hover svg {
  transform: translateX(5px);
}
@media (width >= 601px) {
  .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form {
    flex-flow: row wrap;
  }
  .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form label {
    width: 100%;
  }
  .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form input {
    flex-grow: 1;
  }
  .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button {
    width: auto;
    flex-grow: 1;
  }
}

.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content {
  padding: 0;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  border-radius: 16px;
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
  flex-basis: 50%;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer.active {
  background-color: var(--color-surface);
  border: 1px solid var(--color-text);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer.paid {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='316' height='133' viewBox='0 0 316 133' fill='none'><path d='M235.074 23.3896C247.331 19.0057 260.718 26.0214 264.089 38.5944L270.41 62.1725C272.681 70.6419 279.709 76.9911 288.365 78.3923L314.263 82.5846C327.59 84.7421 335.949 98.166 332.005 111.078L326.458 129.239C323.694 138.29 326.95 148.098 334.577 153.699L352.749 167.043C364.408 175.604 364.942 192.832 353.836 202.098L342.185 211.82C334.344 218.363 331.957 229.399 336.392 238.597L343.736 253.826C350.224 267.28 341.891 283.181 327.136 285.503L310.435 288.132C300.347 289.719 292.631 297.963 291.714 308.134L290.351 323.247C289.052 337.652 274.582 347.018 260.908 342.304L239.594 334.956C230.648 331.872 220.729 334.777 214.861 342.2L203.085 357.097C194.712 367.689 178.917 368.455 169.558 358.724L151.372 339.816C145.294 333.496 136.073 331.33 127.817 334.283L104.832 342.504C92.5756 346.888 79.1876 339.872 75.8169 327.299L69.4957 303.721C67.2251 295.252 60.1968 288.903 51.541 287.502L25.6436 283.309C12.3158 281.152 3.95682 267.728 7.90068 254.815L13.4476 236.654C16.2118 227.604 12.956 217.795 5.32862 212.195L-12.8433 198.851C-24.5015 190.29 -25.0356 173.062 -13.9302 163.795L-2.27897 154.073C5.56183 147.531 7.94931 136.495 3.51372 127.297L-3.82971 112.068C-10.3176 98.6141 -1.98487 82.7128 12.7703 80.3906L29.4711 77.7622C39.5588 76.1745 47.2747 67.9305 48.1919 57.76L49.555 42.6467C50.8542 28.2415 65.3243 18.8759 78.9982 23.5899L100.312 30.9378C109.258 34.0219 119.177 31.1168 125.045 23.6933L136.821 8.79664C145.194 -1.79489 160.989 -2.5614 170.348 7.16962L188.534 26.0781C194.612 32.398 203.833 34.5636 212.089 31.6106L235.074 23.3896Z' fill='black'/></svg>");
  background-position: center 100%;
  background-size: 101%;
  background-repeat: no-repeat;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .ribbon {
  position: absolute;
  aspect-ratio: 106/97;
  overflow: hidden;
  top: -8px;
  right: -6px;
  display: flex;
  align-items: center;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .ribbon span {
  transform-origin: center bottom;
  transform: translateY(-50%) rotate(42.423deg) scale(1.35);
  font-size: 7.4074074074px;
  color: var(--color-text-inverse);
  font-weight: 600;
  line-height: 1.4;
  background: var(--color-cta);
  padding: 12px 26px 8px;
  white-space: nowrap;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .ribbon span::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: -8px;
  left: 0;
  transform-origin: top right;
  transform: rotate(47.577deg);
  background: linear-gradient(132.423deg, transparent 0%, transparent 50%, var(--color-cta) 50%);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .ribbon span::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  right: 0;
  transform-origin: top left;
  transform: rotate(317.757deg);
  background: linear-gradient(222.423deg, transparent 0%, transparent 47%, var(--color-cta) 47%);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .title {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .pros-cons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .pros-cons li {
  margin: 0;
  display: flex;
  gap: 8px;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .pros-cons li p {
  margin: 0;
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .pros-cons li.cons p {
  color: var(--color-text-muted);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .price .label {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .price .amount {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .price .amount .sale {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .price .amount .regular {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .price .amount .regular:has(+ .sale) {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .preview {
  display: flex;
  justify-content: center;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .preview img {
  position: relative;
  z-index: 2;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .preview svg {
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 100%;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:hover, .page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit.disabled, .page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit svg {
  transition: 0.2s linear;
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:hover svg {
  transform: translateX(5px);
}
.page-template-upsell .popup {
  gap: 28px;
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-description {
  text-align: center;
  line-height: 1.5;
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:hover, .page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no.disabled, .page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no svg {
  transition: 0.2s linear;
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:hover svg {
  transform: translateX(5px);
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-yes {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-description {
  text-align: center;
  line-height: 1.5;
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no:hover, .page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no.disabled, .page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no svg {
  transition: 0.2s linear;
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-no:hover svg {
  transform: translateX(5px);
}
.page-template-upsell .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-yes {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media (width <= 600px) {
  .page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers {
    flex-direction: column;
  }
  .page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer.paid {
    background-image: none;
  }
  .page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .preview {
    display: none;
  }
}
.page-template-link-your-shopify-store .input-tooltip-validator_store-url {
  width: 100%;
  max-width: 696px;
}

@media (width <= 600px) {
  .page-template-link-your-shopify-store .input-tooltip-validator_store-url {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 20px;
  line-height: 1.4;
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content p {
  margin: 0;
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .tip {
  display: flex;
  padding: 16px 20px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
  background: url("../../dist/img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .tip p {
  font-size: 14px;
  line-height: 1.8;
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .tip a {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  text-decoration: underline;
  font-weight: 400;
  cursor: pointer;
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .tip a:hover {
  color: var(--color-text);
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark {
  margin: 0;
}
.page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark {
  margin: 0;
}
@media (width <= 600px) {
  .page-template-store-published .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .mobile-hidden {
    display: none;
  }
}

.page-template-create-shopify-account .tooltip\.bys-dashboard_\.header {
  width: 100%;
  max-width: 696px;
}

@media (width <= 600px) {
  .page-template-create-shopify-account .tooltip\.bys-dashboard_\.header {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}
body.vibe_api_flow.page-template-shopify-discount #access-shopify {
  background: #FF0061;
}
body.vibe_api_flow.page-template-shopify-discount #complete-instructions.regular {
  background: #000;
}
body.vibe_api_flow.page-template-shopify-discount #shopify-discount-trial-popup a {
  color: #FF0061 !important;
}

.page-template-shopify-discount .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .shopify-store-url-error {
  color: var(--color-error);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-top: 12px;
  text-align: center;
}
.page-template-shopify-discount .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .shopify-store-url-error a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-style: inherit;
  text-decoration: underline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  display: inline;
  gap: 0;
}
.page-template-shopify-discount video {
  height: 0;
}
.page-template-shopify-discount .wp-video {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
.page-template-shopify-discount .paid {
  position: relative;
}
.page-template-shopify-discount .paid .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-shopify-discount .paid .svg-loading svg {
  transform: none !important;
}
.page-template-shopify-discount .paid.in-process {
  color: transparent !important;
  pointer-events: none;
}
.page-template-shopify-discount .paid.in-process svg {
  opacity: 0;
}
.page-template-shopify-discount .paid.in-process .svg-loading {
  opacity: 1;
}
.page-template-shopify-discount .paid.in-process .svg-loading svg {
  opacity: 1;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-before-header {
  display: flex;
  justify-content: center;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content h4 {
  color: var(--color-text);
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content ol {
  list-style: decimal;
  padding-left: 22px;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content ol li {
  color: var(--color-text);
  line-height: normal;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content ol li a {
  color: var(--color-primary);
  font-weight: 600;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content ol li span {
  font-weight: 600;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content ol li strike {
  color: var(--color-error);
  font-weight: 600;
  text-decoration: line-through;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content ol li strong {
  font-weight: 600;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content .modal-message {
  background: var(--color-surface-alt);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 28px;
  color: var(--color-text);
  line-height: normal;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content .modal-message span {
  display: block;
  font-weight: 600;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content .modal-message a {
  font-weight: 600;
  color: var(--color-primary);
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content .modal-message a:hover {
  color: var(--color-primary-strong);
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 100%;
  display: flex;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid:hover, .page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid:focus {
  background-color: var(--color-primary);
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid:active {
  background-color: var(--color-primary-strong);
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid.disabled, .page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid svg {
  transition: 0.2s linear;
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid:hover svg {
  transform: translateX(5px);
}
.page-template-shopify-discount #shopify-discount-trial-popup .popup-content button.paid.verify {
  background: var(--color-text);
  padding-left: 0;
}

@media (width <= 600px) {
  .page-template-shopify-discount #shopify-discount-trial-popup {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-template-shopify-discount #shopify-discount-trial-popup .popup {
    padding: 24px;
    gap: 24px;
  }
  .page-template-shopify-discount #shopify-discount-trial-popup .popup .popup-title {
    font-size: 26px;
  }
  .page-template-shopify-discount #shopify-discount-trial-popup .popup .popup-content h4 {
    font-size: 18px;
  }
}
.page-template-customize-my-store .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .shopify-store-url-error {
  color: var(--color-error);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-top: 12px;
  text-align: center;
}
.page-template-customize-my-store .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .shopify-store-url-error a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-style: inherit;
  text-decoration: underline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  display: inline;
  gap: 0;
}

.page-template-add-products .bys-dashboard-wrapper .main-wrapper .main-wrapper-content ul.default-list {
  margin-bottom: 16px;
  list-style-type: disc;
  list-style-position: inside;
}
.page-template-add-products .bys-dashboard-wrapper .main-wrapper .main-wrapper-content ul.default-list li {
  margin-bottom: 0;
}
.page-template-add-products .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .note {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .step-title {
  margin-bottom: 40px;
  color: #000;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content > p {
  color: #595959;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify {
  position: relative;
  margin-bottom: 0;
  background: #fe0161;
  border-color: #fe0161;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify .svg-loading svg {
  transform: none !important;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify.in-process {
  color: transparent !important;
  pointer-events: none;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify.in-process svg {
  opacity: 0;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify.in-process .svg-loading {
  opacity: 1;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify.in-process .svg-loading svg {
  opacity: 1;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify .autods-start-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify .autods-start-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify.in-process {
  background: #fe0161;
  border-color: #fe0161;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefits {
  margin: 24px 0;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefit {
  margin-bottom: 14px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefit:last-child {
  margin-bottom: 0;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefit p {
  margin: 0;
  color: #595959;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefit-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefit-title strong {
  display: block;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-benefit-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-approval-flow-video {
  margin: 20px 0 16px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-approval-flow-video video {
  display: block;
  width: 100%;
  border-radius: 24px;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .autods-products-note {
  margin: 0 0 24px;
  color: #595959;
}
.page-template-add-products.ab-test-91-autods .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #complete-instructions {
  display: none;
}

@media (width <= 600px) {
  .page-template-add-products .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .desktop-only {
    display: none;
  }
}
.page-template-install-build-your-store-app .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .shopify-store-url-error {
  color: var(--color-error);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-top: 12px;
  text-align: center;
}
.page-template-install-build-your-store-app .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .shopify-store-url-error a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-style: inherit;
  text-decoration: underline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  display: inline;
  gap: 0;
}
.page-template-install-build-your-store-app .paid {
  position: relative;
}
.page-template-install-build-your-store-app .paid .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-install-build-your-store-app .paid .svg-loading svg {
  transform: none !important;
}
.page-template-install-build-your-store-app .paid.in-process {
  color: transparent !important;
  pointer-events: none;
}
.page-template-install-build-your-store-app .paid.in-process svg {
  opacity: 0;
}
.page-template-install-build-your-store-app .paid.in-process .svg-loading {
  opacity: 1;
}
.page-template-install-build-your-store-app .paid.in-process .svg-loading svg {
  opacity: 1;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-before-header {
  display: flex;
  justify-content: center;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content h4 {
  color: var(--color-text);
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content ol {
  list-style: decimal;
  padding-left: 22px;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content ol li {
  color: var(--color-text);
  line-height: normal;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content ol li a {
  color: var(--color-primary);
  font-weight: 600;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content ol li span {
  font-weight: 600;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content ol li strike {
  color: var(--color-error);
  font-weight: 600;
  text-decoration: line-through;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content ol li strong {
  font-weight: 600;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content .modal-message {
  background: var(--color-surface-alt);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 28px;
  color: var(--color-text);
  line-height: normal;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content .modal-message span {
  font-weight: 600;
  display: block;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content .modal-message a {
  font-weight: 600;
  color: var(--color-primary);
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content .modal-message a:hover {
  color: var(--color-primary-strong);
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 100%;
  display: flex;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid:hover, .page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid:focus {
  background-color: var(--color-primary);
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid:active {
  background-color: var(--color-primary-strong);
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid.disabled, .page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid svg {
  transition: 0.2s linear;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid:hover svg {
  transform: translateX(5px);
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid.verify {
  background: var(--color-text);
  padding-left: 0;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup {
  gap: 28px;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-header .popup-title {
  color: var(--color-text);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
@media (max-width: 767px) {
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-header .popup-title {
    font-size: 20px;
  }
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .description {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .profits {
  display: flex;
  gap: 24px;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .profits .profit {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  flex: 1 0 0;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14), 0 4px 30px 0 rgba(0, 0, 0, 0.06);
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .profits .profit img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .profits .profit p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-text);
  width: 100%;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:hover, .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:focus {
  background-color: var(--color-primary);
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:active {
  background-color: var(--color-primary-strong);
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store.disabled, .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store svg {
  transition: 0.2s linear;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:hover svg {
  transform: translateX(5px);
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .contact-us {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .contact-us a {
  color: var(--color-cta);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup {
  max-width: 728px;
  gap: 24px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-title {
  color: var(--color-text);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 767px) {
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-title {
    font-size: 20px;
  }
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card {
  position: relative;
  border: 2px solid var(--color-cta);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__ribbon {
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 16px 6px 24px;
  border-radius: 0 12px 0 50px;
  background: linear-gradient(90deg, var(--color-cta) 0%, var(--color-cta-strong) 60%), linear-gradient(90deg, #ffb838 0%, #e21e09 100%);
  color: var(--color-text-inverse);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__header {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__title {
  color: var(--color-text);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
}
@media (max-width: 767px) {
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__title {
    font-size: 20px;
  }
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__price {
  color: var(--color-text);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__price {
    font-size: 20px;
  }
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__price-old {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  font-weight: 500;
  text-decoration: line-through;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__subtitle {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__lifetime {
  white-space: nowrap;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__feature-emoji {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__feature-text {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__feature-text strong {
  color: var(--color-cta);
  font-weight: 600;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-button-cta-bg);
  width: 100%;
  margin-top: 8px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:hover, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta.disabled, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta svg {
  transition: 0.2s linear;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:hover svg {
  transform: translateX(5px);
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta--desktop {
  display: inline;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta--mobile {
  display: none;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__divider::before, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__divider span {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-text);
  width: 100%;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:hover, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:focus {
  background-color: var(--color-primary);
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:active {
  background-color: var(--color-primary-strong);
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store.disabled, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store svg {
  transition: 0.2s linear;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:hover svg {
  transform: translateX(5px);
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .profits {
  width: 100%;
  display: flex;
  gap: 24px;
}
@media (width >= 600px) {
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .profits .profit {
    display: flex;
    flex: 1 0 0;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    border-radius: 8px;
    background: var(--color-surface);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14), 0 4px 30px 0 rgba(0, 0, 0, 0.06);
  }
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .profits .profit img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .profits .profit p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

@media (width <= 600px) {
  .page-template-install-build-your-store-app #non-affiliate-popup {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup {
    padding: 24px;
    gap: 24px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .profits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .profits .profit {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 0;
    box-shadow: none;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas {
    padding-top: 4px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--color-text-inverse);
    text-align: center;
    font-style: normal;
    transition: 0.2s linear;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    background-color: var(--color-text);
    width: 100%;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:hover, .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:focus {
    background-color: var(--color-primary);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:active {
    background-color: var(--color-primary-strong);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store.disabled, .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:disabled {
    background-color: var(--color-border);
    color: var(--color-text-muted);
    pointer-events: none;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store svg {
    transition: 0.2s linear;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:hover svg {
    transform: translateX(5px);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .contact-us {
    color: var(--color-text-muted);
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .contact-us a {
    color: var(--color-cta);
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup {
    padding: 24px;
    gap: 24px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card {
    padding: 32px 16px 16px;
    gap: 16px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__header {
    flex-direction: column;
    gap: 8px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__title {
    color: var(--color-text);
    line-height: 140%;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__lifetime {
    display: none;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__price {
    display: none;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__subtitle {
    color: var(--color-text-muted);
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__feature-emoji {
    font-size: 17px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__feature-text {
    color: var(--color-text);
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--color-text-inverse);
    text-align: center;
    font-style: normal;
    transition: 0.2s linear;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    background-color: var(--color-button-cta-bg);
    width: 100%;
    padding: 12px 18px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:hover, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:focus {
    background-color: var(--color-button-cta-bg-hover);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:active {
    background-color: var(--color-button-cta-bg-active);
    border: 2px solid var(--color-button-cta-border-active);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta.disabled, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:disabled {
    background-color: var(--color-button-cta-disabled-bg);
    pointer-events: none;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta svg {
    transition: 0.2s linear;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta:hover svg {
    transform: translateX(5px);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta--desktop {
    display: none;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .product-card__cta--mobile {
    display: inline;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--color-text-inverse);
    text-align: center;
    font-style: normal;
    transition: 0.2s linear;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    background-color: var(--color-text);
    width: 100%;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:hover, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:focus {
    background-color: var(--color-primary);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:active {
    background-color: var(--color-primary-strong);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store.disabled, .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:disabled {
    background-color: var(--color-border);
    color: var(--color-text-muted);
    pointer-events: none;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store svg {
    transition: 0.2s linear;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .ctas .open-store:hover svg {
    transform: translateX(5px);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .profits {
    flex-direction: column;
    gap: 16px;
  }
  .page-template-install-build-your-store-app #non-affiliate-popup-product .popup .popup-content .profits .profit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    box-shadow: none;
  }
}
.page-template-open-store .bys-dashboard {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-template-open-store .bys-dashboard .page-header {
  padding-inline: 16px;
  margin-inline: auto;
  width: 100%;
  max-width: 696px;
}
.page-template-open-store .bys-dashboard .page-header .page-title {
  color: var(--color-text);
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 43.2px */
}
.page-template-open-store .bys-dashboard .page-header .page-subtitle {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  font-weight: 400;
}
.page-template-open-store .bys-dashboard .page-steps {
  padding-inline: 16px;
  margin-inline: auto;
  width: 100%;
  max-width: 728px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.page-template-open-store .bys-dashboard .page-steps .page-step {
  display: flex;
  width: 100%;
  padding: 28px 24px;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-icon {
  width: 28px;
  height: 28px;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-header-content {
  display: flex;
  flex-direction: column;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-header-content .page-step-next-label {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  transition: all 0.3s ease;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-header-content .page-step-title {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content {
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content p a {
  color: var(--color-primary);
  text-decoration: underline;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset label {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 4px;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input::-moz-placeholder, .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea::-moz-placeholder {
  color: var(--color-text-muted);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input::placeholder,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea::placeholder {
  color: var(--color-text-muted);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input:hover,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea:hover {
  border-color: var(--color-primary);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input:focus,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input:disabled, .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input.disabled,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea:disabled,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input.not-valid, .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset input.error,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea.not-valid,
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset textarea.error {
  border-color: var(--color-error) !important;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset .message {
  color: var(--color-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-top: 4px;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset .message.error {
  color: var(--color-error);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset .input-container {
  position: relative;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset .input-container .clear {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L16 16' stroke='%239E9E9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 8L8 16' stroke='%239E9E9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  border: none;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-text);
  width: 100%;
  position: relative;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button:hover, .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button:focus {
  background-color: var(--color-primary);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button:active {
  background-color: var(--color-primary-strong);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button.disabled, .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  pointer-events: none;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button svg {
  transition: 0.2s linear;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button:hover svg {
  transform: translateX(5px);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button .svg-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.active .page-step-header .page-step-icon {
  background: url("../img/main-wrapper-step-title-check.svg");
  background-size: cover;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.active .page-step-header .page-step-header-content .page-step-next-label {
  max-height: 0;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.active .page-step-content {
  max-height: 100vh;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.done {
  gap: 0;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.done .page-step-header .page-step-icon {
  background: url("../img/main-wrapper-step-title-check-success.svg");
  background-size: cover;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.done .page-step-header .page-step-header-content .page-step-next-label {
  max-height: 0;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.done .page-step-content {
  max-height: 0;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.locked {
  gap: 0;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.locked .page-step-header .page-step-icon {
  background: url("../img/next-step-lock.svg");
  background-size: cover;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.locked .page-step-header .page-step-header-content .page-step-next-label {
  max-height: 22px;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.locked .page-step-header .page-step-header-content .page-step-title {
  color: var(--color-text-muted);
}
.page-template-open-store .bys-dashboard .page-steps .page-step.locked .page-step-content {
  max-height: 0;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.loading .open-store-button {
  color: transparent;
  pointer-events: none;
}
.page-template-open-store .bys-dashboard .page-steps .page-step.loading .open-store-button .svg-loading {
  opacity: 1;
}

@media (width <= 600px) {
  .page-template-open-store .bys-dashboard {
    gap: 16px;
    padding-bottom: 16px;
  }
  .page-template-open-store .bys-dashboard .page-header {
    gap: 12px;
  }
  .page-template-open-store .bys-dashboard .page-header .page-title {
    color: var(--color-text);
    line-height: 140%;
    font-style: normal;
    font-size: 20px;
    font-weight: 600;
  }
  .page-template-open-store .bys-dashboard .page-header .page-subtitle {
    color: var(--color-text);
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
  }
  .page-template-open-store .bys-dashboard .page-steps .page-step {
    padding: 24px;
  }
  .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header {
    gap: 16px;
  }
  .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-icon {
    width: 24px;
    height: 24px;
  }
  .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-header-content .page-step-next-label {
    font-size: 12px;
  }
  .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-header-content .page-step-title {
    font-size: 16px;
  }
  .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content {
    padding: 0;
  }
}
@media (width <= 390px) {
  .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-header .page-step-header-content .page-step-title {
    font-size: 14px;
  }
  .page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button {
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-template-create-ugc .main-wrapper-content .youtube-video-wrapper iframe {
  max-width: 100%;
  width: 100%;
  height: 317px;
  border-radius: 8px;
  margin-bottom: 16px;
}
@media (width <= 500px) {
  .page-template-create-ugc .main-wrapper-content .youtube-video-wrapper iframe {
    margin-bottom: 20px;
    height: 170px;
  }
}
@media (width <= 410px) {
  .page-template-create-ugc .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content p {
    margin-bottom: 20px;
  }
}
@media (width <= 500px) {
  .page-template-create-ugc .bys-dashboard .bys-dashboard-wrapper .main-wrapper .step-title {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .page-template-create-ugc .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .page-template-create-ugc .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content button.dark:not(.submit-step-button), .page-template-create-ugc .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content a.dark:not(.submit-step-button) {
    margin-bottom: 12px;
  }
}

.bys-downsell {
  background: url("../img/bg.jpg") no-repeat 50% 0;
  background-size: 100%;
  min-height: 100vh;
  padding-top: 100px;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .bys-downsell {
    background: url("../img/downsell-mobile.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
  }
}
.bys-downsell .header {
  position: relative;
  z-index: 123;
}
@media (width >= 1171px) {
  .bys-downsell .container {
    max-width: 1140px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (width <= 768px) {
  .bys-downsell .container {
    padding-top: 32px;
  }
}
@media (width <= 768px) {
  .bys-downsell {
    padding-top: 0;
  }
}
@media (width >= 768px) {
  .bys-downsell .header {
    display: none;
  }
}
.bys-downsell h1 {
  text-align: center;
  line-height: 1.7;
  font-size: 44px;
  font-weight: 700;
}
@media (width <= 1024px) {
  .bys-downsell h1 {
    font-size: 31px;
    font-weight: 600;
  }
}
@media (width <= 768px) {
  .bys-downsell h1 {
    font-size: 19px;
  }
}
.bys-downsell h1 span {
  position: relative;
}
.bys-downsell h1 span::after {
  background: var(--color-accent);
  content: "";
  display: block;
  width: calc(100% + 23px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -14px;
  z-index: -1;
  transform: rotate(-1deg);
}
@media (width <= 768px) {
  .bys-downsell h1 span::after {
    width: calc(100% + 10px);
    left: -6px;
  }
}
.bys-downsell .downsell-timer {
  margin-top: 20px;
  display: flex;
  -moz-column-gap: 17px;
       column-gap: 17px;
  justify-content: center;
  align-items: center;
}
@media (width <= 1024px) {
  .bys-downsell .downsell-timer {
    margin-top: 24px;
  }
}
.bys-downsell .downsell-timer .expiring-text {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
@media (width <= 1024px) {
  .bys-downsell .downsell-timer .expiring-text {
    font-size: 20px;
  }
}
.bys-downsell .downsell-timer .timer-text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-text-inverse);
  padding: 7px 13px;
  border-radius: 6px;
  background: #f00;
  width: 68px;
  text-align: center;
}
.bys-downsell .content-wrapper-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner {
    margin-top: 24px;
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner {
    width: 100%;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner .no-thanks-button {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner .no-thanks-button {
    margin-top: 16px;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner {
  max-width: 432px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  background-color: var(--color-surface);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner {
    font-size: 16px;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .downsell-banner-header {
  padding: 12px 2px;
  background: #FF0061;
  color: var(--color-text-inverse);
  text-transform: uppercase;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .downsell-banner-header {
    padding: 10px 2px;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices p {
  line-height: 1.9;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices p {
    font-size: 20px;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices p:first-of-type span {
  text-decoration: line-through;
}
.bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices p:last-of-type span {
  color: #00B85F;
}
.bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices .features-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 24px;
  gap: 16px;
  padding-left: 40px;
  padding-right: 40px;
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner .downsell-banner-inner .prices .features-list {
    gap: 8px;
    margin-top: 12px;
    padding-left: 27px;
    padding-right: 27px;
  }
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit {
  max-width: 432px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  margin-top: 30px;
  width: 100%;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 24px;
  padding: 24px 28px;
  border-radius: 12px;
  font-family: Rubik, sans-serif;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.5019607843);
  position: relative;
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit:hover, .bys-downsell .content-wrapper-inner .downsell-banner .offer-submit:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit.disabled, .bys-downsell .content-wrapper-inner .downsell-banner .offer-submit:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit svg {
  transition: 0.2s linear;
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit:hover svg {
  transform: translateX(5px);
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit .svg-loading svg {
  transform: none !important;
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit.in-process {
  color: transparent !important;
  pointer-events: none;
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit.in-process svg {
  opacity: 0;
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit.in-process .svg-loading {
  opacity: 1;
}
.bys-downsell .content-wrapper-inner .downsell-banner .offer-submit.in-process .svg-loading svg {
  opacity: 1;
}
@media (width <= 1024px) {
  .bys-downsell .content-wrapper-inner .downsell-banner .offer-submit {
    margin-top: 24px;
    padding: 20px;
    font-size: 15px;
    line-height: 20px;
  }
}

.offer-submit-try-again {
  position: relative;
}
.offer-submit-try-again .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.offer-submit-try-again .svg-loading svg {
  transform: none !important;
}
.offer-submit-try-again.in-process {
  color: transparent !important;
  pointer-events: none;
}
.offer-submit-try-again.in-process svg {
  opacity: 0;
}
.offer-submit-try-again.in-process .svg-loading {
  opacity: 1;
}
.offer-submit-try-again.in-process .svg-loading svg {
  opacity: 1;
}

.downsell-ticker {
  margin-top: 20px;
  margin-bottom: 15px;
}
@media (width <= 1024px) {
  .downsell-ticker {
    margin-top: 24px;
  }
}
.downsell-ticker h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: var(--color-primary);
  font-family: Rubik, sans-serif;
}
@media (width <= 1024px) {
  .downsell-ticker h3 {
    font-size: 16px;
  }
}
.downsell-ticker .ticker-container {
  display: flex;
  position: relative;
  justify-content: center;
}
.downsell-ticker .ticker-container .downsell-ticker-wrapper {
  display: flex;
  overflow: hidden;
  justify-content: center;
}
.downsell-ticker .ticker-container .ticker-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  margin-left: 14px;
  margin-right: 14px;
  font-family: Rubik, sans-serif;
  white-space: nowrap;
}
.downsell-ticker .ticker-container .ticker-item img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--color-text);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.downsell-ticker .ticker-container .ticker-item p {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.downsell-ticker .ticker-container .ticker-item p.subscribers {
  color: #9999a9;
}
.downsell-ticker .ticker-container .ticker-item p.nickname {
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.downsell-ticker .ticker-container .ticker-item p.nickname::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 12px;
  height: 12px;
  background-size: contain;
  background: url("../img/verified-star.svg") no-repeat center center;
}

.referral-wrapper {
  max-width: 854px;
  margin: 0 auto;
}

.referral-title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
@media (min-width: 601px) {
  .referral-title {
    font-size: 36px;
    line-height: 120%;
  }
}

.referral-sources-grid {
  display: grid;
  margin: 32px 0;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
}
@media (min-width: 601px) {
  .referral-sources-grid {
    gap: 12px;
  }
}

.referral-source-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 601px) {
  .referral-source-card {
    height: 120px;
    padding: 18px 28px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .referral-source-card:hover {
    border-color: var(--color-primary);
  }
}

.source-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.referral-source-card .referral-source-header {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  justify-content: flex-start;
}

.icon-wrapper {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.source-title {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}

.input-field-wrapper {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 0;
}

.youtube-extra-fields {
  margin-bottom: 12px;
}

.youtube-format-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.youtube-format-option {
  position: relative;
  min-width: 0;
}

.youtube-format-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.youtube-format-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.youtube-format-input:checked + .youtube-format-label {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, white);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px var(--color-primary);
}

.additional-input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--color-surface);
}
.additional-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 14%, white);
}
.additional-input::-moz-placeholder {
  color: var(--color-text-muted);
}
.additional-input::placeholder {
  color: var(--color-text-muted);
}

.referral-source-card.selected {
  border-color: var(--color-primary);
  height: auto;
  min-height: 120px;
  padding-bottom: 18px;
}
.referral-source-card.selected .input-field-wrapper {
  opacity: 1;
  max-height: 140px;
  margin-top: 10px;
}

.referral-buttons {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 601px) {
  .referral-buttons {
    max-width: 272px;
  }
}

.referral-submit-btn {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 28px;
  background: var(--color-cta);
  color: var(--color-text-inverse);
  border: none;
  border-radius: 12px;
  color: var(--color-text-inverse);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.referral-submit-btn:hover {
  background: var(--color-cta-strong);
  transform: translateY(-1px);
}
.referral-submit-btn:active {
  transform: translateY(0);
}
.referral-submit-btn:disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}
.referral-submit-btn:disabled:hover {
  background: var(--color-text-muted);
  transform: none;
}
@media (min-width: 601px) {
  .referral-submit-btn {
    padding: 16px 32px;
  }
}

.referral-skip-btn {
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: var(--color-text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.referral-skip-btn:hover {
  color: var(--color-border-strong);
}

#mentorship-popup.popup-wrapper .popup {
  max-width: 580px;
  gap: 24px;
}
#mentorship-popup.popup-wrapper .popup .popup-close {
  top: 20px;
  right: 20px;
}
#mentorship-popup.popup-wrapper .popup .popup-header .popup-title {
  font-size: 24px;
  line-height: 1.4;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-description {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-description p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-description img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:hover, #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:focus {
  background-color: var(--color-button-cta-bg-hover);
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit.disabled, #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit svg {
  transition: 0.2s linear;
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:hover svg {
  transform: translateX(5px);
}
#mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-skip {
  color: var(--color-text-muted);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 12px 28px;
}

.parent-mentorship-offer .iti {
  width: 100%;
}
.parent-mentorship-offer .iti.iti--fullscreen-popup.iti--container {
  z-index: 99999;
  padding: 0;
}
.parent-mentorship-offer .iti .iti__search-input {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
}
.parent-mentorship-offer .iti .iti__search-input::-moz-placeholder {
  color: var(--color-text-muted);
}
.parent-mentorship-offer .iti .iti__search-input::placeholder {
  color: var(--color-text-muted);
}
.parent-mentorship-offer .iti .iti__search-input:hover {
  border-color: var(--color-primary);
}
.parent-mentorship-offer .iti .iti__search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.parent-mentorship-offer .iti .iti__search-input:disabled, .parent-mentorship-offer .iti .iti__search-input.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.parent-mentorship-offer .iti .iti__search-input.not-valid, .parent-mentorship-offer .iti .iti__search-input.error {
  border-color: var(--color-error) !important;
}
.parent-mentorship-offer .bys-dashboard {
  display: flex;
  flex-direction: column;
}
.parent-mentorship-offer .bys-dashboard .back-nav {
  padding: 24px 40px;
}
.parent-mentorship-offer .bys-dashboard .back-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  text-decoration: none;
}
.parent-mentorship-offer .bys-dashboard .container {
  padding-bottom: 128px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-title {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-experience-choices {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-experience-choices .mentorship-experience-choice {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-experience-choices .mentorship-experience-choice label {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  padding: 24px;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 1px 1px 9px 0 rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: all 0.3s ease;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-experience-choices .mentorship-experience-choice label:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-experience-choices .mentorship-experience-choice label:has(input:checked) {
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-experience-choices .mentorship-experience-choice label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-choices {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-choices .mentorship-age-choice {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-choices .mentorship-age-choice label {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  padding: 24px;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 1px 1px 9px 0 rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: all 0.3s ease;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-choices .mentorship-age-choice label:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-choices .mentorship-age-choice label:has(input:checked) {
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-choices .mentorship-age-choice label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-budget-choices {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-budget-choices .mentorship-budget-choice {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-budget-choices .mentorship-budget-choice label {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  padding: 24px;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 1px 1px 9px 0 rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: all 0.3s ease;
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-budget-choices .mentorship-budget-choice label:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-budget-choices .mentorship-budget-choice label:has(input:checked) {
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
.parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-budget-choices .mentorship-budget-choice label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 600px) {
  .parent-mentorship-offer .bys-dashboard .back-nav {
    display: none;
  }
  .parent-mentorship-offer .bys-dashboard .container {
    padding-top: 64px;
  }
  .parent-mentorship-offer .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-title {
    color: var(--color-text);
    line-height: 140%;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
  }
}

.page-template-mentorship-offer-experience .bys-dashboard .container .bys-mentorship-wrapper {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  max-width: 582px;
  width: 100%;
}

.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  max-width: 582px;
  width: 100%;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form label {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 4px;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input::-moz-placeholder, .page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea::-moz-placeholder {
  color: var(--color-text-muted);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input::placeholder,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea::placeholder {
  color: var(--color-text-muted);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input:hover,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea:hover {
  border-color: var(--color-primary);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input:focus,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input:disabled, .page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input.disabled,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea:disabled,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea.disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input.not-valid, .page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form input.error,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea.not-valid,
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form textarea.error {
  border-color: var(--color-error) !important;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .message {
  color: var(--color-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-top: 4px;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .message.error {
  color: var(--color-error);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .input-container {
  position: relative;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .input-container .clear {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L16 16' stroke='%239E9E9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 8L8 16' stroke='%239E9E9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  border: none;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  align-self: stretch;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel] {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
  width: 100%;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel]::-moz-placeholder {
  color: var(--color-text-muted);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel]::placeholder {
  color: var(--color-text-muted);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel]:hover {
  border-color: var(--color-primary);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel]:disabled, .page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel].disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel].not-valid, .page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone input[type=tel].error {
  border-color: var(--color-error) !important;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-input--phone .tel-error.active {
  display: block;
  font-size: 12px;
  color: var(--color-error);
  margin-top: 8px;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-age-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-age-confirmation__label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-age-confirmation input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border: none;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-age-confirmation input[type=checkbox]::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' viewBox='0 0 14 11' fill='none'%3E%3Cpath d='M12.8999 0.899902L4.6499 9.1499L0.899902 5.3999' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-cta);
  border-radius: 4px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-age-confirmation input[type=checkbox]:checked::before {
  background-color: var(--color-cta);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-age-confirmation__text {
  color: #000;
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form span.error {
  display: block;
  font-size: 12px;
  color: var(--color-error);
  margin-top: 8px;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit:hover, .page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit.disabled, .page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit svg {
  transition: 0.2s linear;
}
.page-template-mentorship-offer-contacts .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-contacts-form .mentorship-contacts-submit:hover svg {
  transform: translateX(5px);
}

.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  max-width: 582px;
  width: 100%;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  align-self: stretch;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input label {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel] {
  resize: none;
  padding: 11px 46px 11px 12px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: 0.2s linear;
  width: 100%;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel]::-moz-placeholder {
  color: var(--color-text-muted);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel]::placeholder {
  color: var(--color-text-muted);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel]:hover {
  border-color: var(--color-primary);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--input-focus-ring);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel]:disabled, .page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel].disabled {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  pointer-events: none;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel].not-valid, .page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input input[type=tel].error {
  border-color: var(--color-error) !important;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input #mentorship-phone-error {
  font-size: 12px;
  color: var(--color-error);
  margin-top: 16px;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-input .tel-error.active {
  display: block;
  font-size: 12px;
  color: var(--color-error);
  margin-top: 8px;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-checkbox input[type=checkbox]::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' viewBox='0 0 14 11' fill='none'%3E%3Cpath d='M12.8999 0.899902L4.6499 9.1499L0.899902 5.3999' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-cta);
  border-radius: 4px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-checkbox input[type=checkbox]:hover::before {
  border-width: 2px;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-checkbox input[type=checkbox]:checked::before {
  background-color: var(--color-cta);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-checkbox input[type=checkbox]:disabled::before {
  background-color: var(--color-cta-soft);
  border-color: var(--color-cta-soft);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-checkbox label {
  color: var(--color-border-strong);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  white-space: pre-line;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit:hover, .page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit.disabled, .page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit svg {
  transition: 0.2s linear;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-form .mentorship-phone-submit:hover svg {
  transform: translateX(5px);
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-privacy {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-privacy a {
  color: var(--color-border-strong);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.page-template-mentorship-offer-phone .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-phone-privacy span {
  color: var(--color-border-strong);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}

.page-template-mentorship-offer-age .bys-dashboard .container .bys-mentorship-wrapper {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  max-width: 582px;
  width: 100%;
}

.page-template-mentorship-offer-budget .bys-dashboard .container .bys-mentorship-wrapper {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  max-width: 582px;
  width: 100%;
}

.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  max-width: 716px;
  width: 100%;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-title {
  color: var(--color-text);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
@media (max-width: 601px) {
  .page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-title {
    font-size: 20px;
  }
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  align-self: stretch;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description p:not([class]) {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description iframe {
  background: var(--color-text);
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 668/317;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description h4:not([class]) {
  color: #e20056;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  width: 100%;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit:hover, .page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit.disabled, .page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit svg {
  transition: 0.2s linear;
}
.page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-submit:hover svg {
  transform: translateX(5px);
}

.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  max-width: 600px;
  width: 100%;
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-out-of-spots-description p {
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 28px */
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-out-of-spots-description img {
  max-width: 100%;
  height: auto;
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  width: 100%;
  max-width: 366px;
  align-self: center;
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit:hover, .page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit.disabled, .page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit svg {
  transition: 0.2s linear;
}
.page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-out-of-spots-submit:hover svg {
  transform: translateX(5px);
}

.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container {
  flex-grow: 1;
  padding: 0 40px 128px;
  width: 100%;
  max-width: 1276px;
  align-self: center;
  display: flex;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content {
  flex-grow: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  padding: 24px 0;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-title {
  color: var(--color-text);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-title mark {
  position: relative;
  background: transparent;
  z-index: 1;
  white-space: nowrap;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-title mark::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -15px;
  top: 0;
  bottom: 0;
  background: var(--color-accent);
  transform: rotate(-2deg);
  z-index: -1;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-content strong {
  font-size: 19.319px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 38.637px */
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-widget {
  flex-grow: 1;
  align-self: center;
  width: 100%;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-widget #mentorship-leadconnector-widget {
  background: var(--color-surface);
  width: 100%;
  border-radius: 16px;
}
.page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-widget #mentorship-leadconnector-widget iframe {
  width: 100%;
  height: 585px;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-widget #mentorship-leadconnector-widget iframe {
    height: 1100px;
  }
}

@media (max-width: 900px) {
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  #mentorship-popup.popup-wrapper {
    padding: 40px 16px;
  }
  #mentorship-popup.popup-wrapper .popup {
    padding: 24px;
    gap: 16px;
  }
  #mentorship-popup.popup-wrapper .popup .popup-header .popup-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content {
    gap: 16px;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-description {
    gap: 16px;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-description p {
    font-size: 14px;
    line-height: 1.4;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons {
    gap: 8px;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--color-text-inverse);
    text-align: center;
    font-style: normal;
    transition: 0.2s linear;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    background-color: var(--color-button-cta-bg);
    padding: 8px 20px;
    width: 100%;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:hover, #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:focus {
    background-color: var(--color-button-cta-bg-hover);
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:active {
    background-color: var(--color-button-cta-bg-active);
    border: 2px solid var(--color-button-cta-border-active);
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit.disabled, #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:disabled {
    background-color: var(--color-button-cta-disabled-bg);
    pointer-events: none;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit svg {
    transition: 0.2s linear;
  }
  #mentorship-popup.popup-wrapper .popup .popup-content .mentorship-popup-content .mentorship-popup-buttons .mentorship-popup-button-submit:hover svg {
    transform: translateX(5px);
  }
  .page-template-mentorship-offer-age .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-form .mentorship-age-choices {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page-template-mentorship-offer-age .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-age-form .mentorship-age-choices .mentorship-age-choice {
    flex: 1 0 calc(50% - 8px);
  }
  .page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description {
    gap: 12px;
  }
  .page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description p:not([class]) {
    color: var(--color-text);
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
  }
  .page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description iframe {
    aspect-ratio: 45/46;
  }
  .page-template-mentorship-offer-thank-you .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-thank-you-description h4:not([class]) {
    font-size: 20px;
  }
  .page-template-mentorship-offer-out-of-spots .bys-dashboard .container .bys-mentorship-wrapper .mentorship-step-content .mentorship-out-of-spots-description p {
    font-size: 16px;
  }
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container {
    padding: 0 14px 128px;
  }
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content {
    padding: 32px 30px 0;
  }
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-title {
    color: var(--color-text);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
  }
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-title mark::before {
    left: -4px;
    right: -6px;
  }
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-content {
    color: var(--color-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-content strong {
    color: var(--color-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
  }
  .page-template-mentorship-offer-calendar .bys-dashboard .mentorship-calendar-container .bys-mentorship-wrapper .mentorship-calendar-content .mentorship-step-content ul {
    gap: 6px;
  }
}
.bys-mentorship-promo-video {
  max-width: 700px;
  margin: 0 auto;
  padding: 12px 24px 24px;
  text-align: center;
}
.bys-mentorship-promo-video__title {
  font: 700 24px/1.4 "Poppins", sans-serif;
  color: #000;
  margin-bottom: 16px;
}
.bys-mentorship-promo-video__subtitle {
  font: 400 16px/1.4 "Poppins", sans-serif;
  color: #000;
  margin-bottom: 24px;
}
.bys-mentorship-promo-video__subtitle span {
  color: var(--color-cta-strong);
  font-weight: 700;
}
.bys-mentorship-promo-video__player {
  position: relative;
  height: 317px;
  margin: 0 0 24px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .bys-mentorship-promo-video__player {
    height: 200px;
  }
}
.bys-mentorship-promo-video__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bys-mentorship-promo-video__cta {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  text-align: center;
  font-style: normal;
  transition: 0.2s linear;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
  background-color: var(--color-button-cta-bg);
  width: 100%;
  max-width: 670px;
  margin-bottom: 32px;
}
.bys-mentorship-promo-video__cta:hover, .bys-mentorship-promo-video__cta:focus {
  background-color: var(--color-button-cta-bg-hover);
}
.bys-mentorship-promo-video__cta:active {
  background-color: var(--color-button-cta-bg-active);
  border: 2px solid var(--color-button-cta-border-active);
}
.bys-mentorship-promo-video__cta.disabled, .bys-mentorship-promo-video__cta:disabled {
  background-color: var(--color-button-cta-disabled-bg);
  pointer-events: none;
}
.bys-mentorship-promo-video__cta svg {
  transition: 0.2s linear;
}
.bys-mentorship-promo-video__cta:hover svg {
  transform: translateX(5px);
}
@media (max-width: 600px) {
  .bys-mentorship-promo-video__cta {
    width: auto;
  }
}

.bys-mentorship-promo-testimonials {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.bys-mentorship-promo-testimonials__viewport {
  overflow: hidden;
  width: 100%;
}
.bys-mentorship-promo-testimonials__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.bys-mentorship-promo-testimonials__card {
  flex: 0 0 auto;
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: clamp(290px, 80vw, 652px);
  padding: 44px 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.bys-mentorship-promo-testimonials__card.is-active {
  opacity: 1;
  background: #fff;
}
.bys-mentorship-promo-testimonials__stars {
  display: inline-flex;
  gap: 1px;
  margin-bottom: 16px;
}
.bys-mentorship-promo-testimonials__title {
  font: 500 20px/1.4 "Poppins", sans-serif;
  color: #000;
  margin: 0 0 10px;
}
.bys-mentorship-promo-testimonials__body {
  font: 400 16px/1.4 "Poppins", sans-serif;
  color: #000;
  margin: 0 0 16px;
}
.bys-mentorship-promo-testimonials__client {
  font: 400 12px/1.4 "Poppins", sans-serif;
  color: #000;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0;
}
.bys-mentorship-promo-testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 75px;
  height: 150px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
}
.bys-mentorship-promo-testimonials__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  backdrop-filter: blur(2px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='150' viewBox='0 0 75 150' fill='none'%3E%3Cpath d='M75 150C55.1088 150 36.0322 142.098 21.967 128.033C7.90176 113.968 0 94.8912 0 75C0 55.1088 7.90176 36.0322 21.967 21.967C36.0322 7.90176 55.1088 0 75 0V75V150Z' fill='%23D9D9D9' fill-opacity='0.15'/%3E%3C/svg%3E");
}
.bys-mentorship-promo-testimonials__nav svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}
.bys-mentorship-promo-testimonials__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.bys-mentorship-promo-testimonials__nav--prev {
  left: 16px;
}
.bys-mentorship-promo-testimonials__nav--prev svg {
  transform: scaleX(-1);
}
.bys-mentorship-promo-testimonials__nav--prev::before {
  transform: scaleX(-1);
}
.bys-mentorship-promo-testimonials__nav--next {
  right: 16px;
}

.bys-mentorship-what-holding-you {
  position: relative;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
  max-width: 590px;
  margin: 0 auto;
}
.bys-mentorship-what-holding-you .mentorship-step-title {
  font: 600 20px/1.4 "Poppins", sans-serif;
  color: #000;
  margin: 0 0 16px;
}
.bys-mentorship-what-holding-you__choices {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bys-mentorship-what-holding-you__choice input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.bys-mentorship-what-holding-you__chip {
  display: block;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 4.5px rgba(0, 0, 0, 0.14);
  font: 400 16px/1.4 "Poppins", sans-serif;
  color: #222426;
  text-align: left;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.05s;
}
.bys-mentorship-what-holding-you__chip:hover {
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
input[type=radio]:focus-visible + .bys-mentorship-what-holding-you__chip {
  outline: 2px solid #009a7b;
  outline-offset: 2px;
}
input[type=radio]:active + .bys-mentorship-what-holding-you__chip, input[type=radio]:checked + .bys-mentorship-what-holding-you__chip {
  transform: scale(0.99);
}

.bys-bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.bys-bullet-list li {
  color: var(--color-text);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}
.bys-bullet-list li:last-child {
  margin-bottom: 0;
}

.bys-subheading {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-align: left;
  margin: 0;
}

.bys-quote {
  color: var(--color-cta);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  margin: 0;
}

@media (max-width: 600px) {
  .bys-mentorship-promo-testimonials__nav {
    width: 45px;
    height: 90px;
  }
  .bys-mentorship-promo-testimonials__nav svg {
    width: 16px;
    height: 16px;
  }
  .bys-quote {
    font-size: 20px;
  }
}
.funnel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  font-family: "Poppins", sans-serif;
  background-color: var(--funnel-bg);
  background-image: var(--funnel-bg-image);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
}

body.partner-ezstore-ai-framework .funnel {
  background-image: none;
}

body.partner-ezstore-ai-systems .funnel {
  background-image: none;
}

body.partner-ezstore-ai-blueprint .funnel {
  background-image: none;
}

.funnel__logo {
  margin-bottom: 40px;
}
.funnel__logo img {
  height: 40px;
}

.funnel__notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: -28px;
  left: 52px;
  right: 52px;
  background-color: var(--funnel-popup-success-bg);
  color: var(--funnel-popup-success-fg);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 400;
  animation: notificationSlideIn 0.25s ease-out;
}

@keyframes notificationSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.funnel__notification-close {
  background: transparent;
  border: 0;
  color: var(--funnel-popup-success-fg);
  cursor: pointer;
  padding: 0;
  margin-left: 16px;
}

.funnel__card {
  background-color: var(--color-surface);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}

.funnel-progress {
  position: relative;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.funnel-progress__track {
  position: absolute;
  top: 3px;
  left: 41px;
  right: 41px;
  height: 1px;
  background-color: var(--funnel-progress-inactive);
}

.funnel-progress__track-fill {
  height: 100%;
  background-color: var(--funnel-progress-active);
  transition: width 0.3s ease;
}

.funnel-progress__steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.funnel-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 82px;
}

.funnel-progress__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--funnel-progress-dot-bg);
  border: 1px solid var(--funnel-progress-active);
  margin-bottom: 8px;
  z-index: 1;
  box-sizing: border-box;
}
.funnel-progress__dot--active {
  background-color: var(--funnel-progress-active);
  border-color: var(--funnel-progress-active);
}

.funnel-progress__label {
  font-size: 12px;
  white-space: nowrap;
  color: var(--funnel-progress-active);
}
.funnel-progress__label--active {
  font-weight: 600;
}

.funnel-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--funnel-title-color);
  text-align: center;
  margin-top: 0;
  margin-bottom: 32px;
  line-height: 140%;
}
.funnel-title--compact {
  margin-bottom: 8px;
}
.funnel-title--medium {
  margin-bottom: 16px;
}

.funnel-subtitle {
  font-size: 16px;
  color: var(--funnel-subtitle-color);
  text-align: center;
  margin-bottom: 32px;
}
.funnel-subtitle--padded {
  padding-left: 16px;
  padding-right: 16px;
}
.funnel-subtitle--left {
  text-align: left;
}
.funnel-subtitle--dark {
  color: var(--funnel-helper-text-color);
}

.funnel-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  border: 0;
  transition: all 0.3s ease;
  background-color: var(--funnel-primary-btn-bg);
  color: var(--funnel-primary-btn-color);
  cursor: pointer;
}
.funnel-btn-primary:hover {
  background-color: var(--funnel-primary-btn-hover-bg);
}
.funnel-btn-primary--disabled, .funnel-btn-primary:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  cursor: not-allowed;
}
.funnel-btn-primary--link {
  text-decoration: none;
}
.funnel-btn-primary--spaced {
  margin-bottom: 16px;
}
.funnel-btn-primary--inline {
  flex: 1;
  width: auto;
}
.funnel-btn-primary--black {
  background-color: #000;
  color: var(--color-text-inverse);
}
.funnel-btn-primary--black:hover {
  background-color: #000;
  opacity: 0.9;
}

.funnel-btn-secondary {
  background: transparent;
  border: 0;
  color: var(--funnel-secondary-btn-color);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}
.funnel-btn-secondary:hover {
  color: var(--funnel-secondary-btn-hover-color);
}
.funnel-btn-secondary--full {
  width: 100%;
  padding: 12px 0;
}

.funnel-media {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-surface-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.funnel-media--tall {
  height: 337px;
  aspect-ratio: auto;
}

.funnel-media__text {
  color: var(--funnel-helper-text-color);
  font-size: 16px;
}

.funnel-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background-color: #808080;
  margin-bottom: 32px;
}
.funnel-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.funnel-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.funnel-video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
}
.funnel-video__play-btn svg {
  width: 100%;
  height: 100%;
}

.funnel-create {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.funnel-create .funnel-create__title-group {
  max-width: 602px;
  margin: 0 auto;
}
.funnel-create .funnel-create__title-group .funnel-title {
  margin-bottom: 8px;
}
.funnel-create .funnel-create__title-group .funnel-subtitle {
  margin-bottom: 0;
}
.funnel-create .funnel-media,
.funnel-create .funnel-video {
  margin-bottom: 0;
}

.funnel-create__ctas {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.funnel-create__cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.funnel-create__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.funnel-create__info svg {
  flex-shrink: 0;
}
.funnel-create__info span {
  font-size: 16px;
  color: var(--funnel-helper-text-color);
}

.funnel-create__divider {
  border-top: 1px solid var(--color-border);
  width: 100%;
}

.funnel-create__note {
  font-size: 16px;
  color: var(--funnel-helper-text-color);
  text-align: center;
  margin: 0;
}

@media (width <= 768px) {
  .funnel__logo {
    margin-bottom: 0;
  }
  .funnel__notification {
    top: -50px;
    left: -24px;
    right: -24px;
    border-radius: 0;
    padding: 12px 16px;
  }
  .funnel__card {
    padding: 28px 24px;
    border-radius: 8px;
    margin-top: auto;
    margin-bottom: auto;
  }
  .funnel-progress {
    margin-bottom: 16px;
  }
  .funnel-title {
    font-size: 24px;
  }
  .funnel-title--medium {
    margin-bottom: 8px;
  }
  .funnel-media--tall {
    height: 256px;
  }
  .funnel-btn-primary {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
  }
  .funnel-create__ctas {
    gap: 24px;
  }
  .funnel-create__cta-group {
    align-items: flex-start;
  }
  .funnel-create__info span {
    font-size: 14px;
  }
  .funnel-create__note {
    font-size: 14px;
    text-align: left;
  }
  .funnel-trial__image-wrapper {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .funnel-trial__title-group {
    gap: 8px;
  }
  .funnel-trial__title-group .funnel-subtitle {
    font-size: 14px;
  }
  .funnel-subtitle--dark {
    font-size: 14px;
  }
  .funnel-ready .funnel-subtitle {
    font-size: 16px;
  }
  .funnel-connect__actions {
    gap: 24px;
  }
  .funnel-building__image {
    max-width: 310px;
  }
}
.funnel-niches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 16px;
  margin-bottom: 32px;
}

.funnel-niches__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 16px;
  height: 156px;
  border-radius: 10px;
  border: 1px solid var(--funnel-niche-border);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  background-color: var(--funnel-niche-bg);
  color: var(--funnel-niche-color);
}
.funnel-niches__item:hover {
  background-color: var(--funnel-niche-bg);
  opacity: 0.85;
}
.funnel-niches__item--selected {
  background-color: var(--funnel-niche-active-bg);
  color: var(--funnel-niche-active-color);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(130, 130, 130, 0.25);
}
.funnel-niches__item--selected:hover {
  background-color: var(--funnel-niche-active-bg);
  opacity: 1;
}

.funnel-niches__icon {
  fill: var(--funnel-niche-color);
}
.funnel-niches__item--selected .funnel-niches__icon {
  fill: var(--funnel-niche-active-color);
}

.funnel-niches__label {
  font-size: 16px;
  font-weight: 400;
}

@media (width <= 768px) {
  .funnel-niches {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .funnel-niches__item {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    padding: 16px 24px;
  }
}
.funnel-connect__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.funnel-trial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.funnel-trial__image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 370px;
  height: 370px;
}

.funnel-trial__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.funnel-trial__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.funnel-trial__title-group .funnel-title {
  margin-bottom: 0;
}
.funnel-trial__title-group .funnel-subtitle {
  margin-bottom: 0;
}

.funnel-trial__btns-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.funnel-building {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.funnel-building__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--funnel-title-color);
  text-align: center;
  margin: 0;
  line-height: 140%;
}

.funnel-building__image {
  width: 100%;
  max-width: 570px;
  color: var(--funnel-animation-accent);
}
.funnel-building__image svg {
  width: 100%;
  height: auto;
}

.funnel-building__svg-bar {
  clip-path: inset(0 100% 0 0);
  animation: buildingBarReveal 7s cubic-bezier(0.25, 0.8, 0.25, 1) infinite alternate;
}

.funnel-building__svg-bar--slow {
  clip-path: inset(0 100% 0 0);
  animation: buildingBarReveal 90s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes buildingBarReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 5% 0 0);
  }
}
.funnel-ready {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.funnel-ready .funnel-title {
  margin-bottom: 0;
}
.funnel-ready .funnel-subtitle {
  margin-bottom: 0;
}

.funnel-ready__preview {
  position: relative;
  width: 100%;
  height: 337px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--funnel-preview-border-color);
}
.funnel-ready__preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  display: block;
}

.funnel-ready__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funnel-ready__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: var(--funnel-secondary-btn-accent-color);
  color: var(--funnel-primary-btn-color);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.funnel-ready__overlay-btn:hover {
  background-color: var(--funnel-secondary-btn-accent-hover-color);
}

.funnel-ready__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}
.funnel-videos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.funnel-videos .funnel-title {
  margin-bottom: 0;
}
.funnel-videos .funnel-subtitle {
  margin-bottom: 0;
}
.funnel-videos .funnel-media,
.funnel-videos .funnel-video {
  margin-bottom: 0;
}

.funnel-videos__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.funnel-scope-wrapper {
  display: flex;
  justify-content: space-between;
}

.funnel-scope-loading {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  color: var(--funnel-animation-accent);
}
.funnel-scope-loading svg {
  width: 100%;
  height: auto;
}

.funnel-scope-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
}

.funnel-scope-error__heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--funnel-title-color);
  margin: 24px 0 12px;
}

.funnel-scope-error__text {
  font-size: 16px;
  color: var(--funnel-helper-text-color);
  line-height: 1.5;
  max-width: 400px;
}

.funnel-not-affiliate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.funnel-not-affiliate__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.funnel-not-affiliate__title-group .funnel-title {
  margin-bottom: 0;
}
.funnel-not-affiliate__title-group .funnel-subtitle {
  margin-bottom: 0;
  color: var(--funnel-helper-text-color);
}

.funnel-not-affiliate__link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.funnel-not-affiliate__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.funnel-not-affiliate__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.funnel-not-affiliate__feature-icon {
  font-size: 22px;
  line-height: 1;
}

.funnel-not-affiliate__feature-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--funnel-helper-text-color);
  text-align: center;
}

.funnel-not-affiliate__btns-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (width <= 768px) {
  .funnel-not-affiliate__features {
    gap: 12px;
  }
  .funnel-not-affiliate__feature {
    padding: 16px 8px;
  }
  .funnel-not-affiliate__feature-icon {
    font-size: 24px;
  }
  .funnel-not-affiliate__feature-label {
    font-size: 12px;
  }
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-item.app-ab-b {
  display: none;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-item.steps-merged-ab-b {
  display: none;
}

/* A/B Test: One main CTA instead of Two CTA's Default */
.one-instead-two-cta-ab-b {
  display: none !important;
}

/* A/B Test: One main CTA instead of Two CTA's B Start */
/* @media(min-width: 601px) {

    .one-instead-two-cta-ab-a {
        display: none !important;
    }

    .one-instead-two-cta-ab-b {
        display: block !important;
    }

    .page-template-link-your-shopify-store {
        #complete-instructions {
            &.disabled {
                display: none !important;
            }
        }
    }

    .bys-dashboard {
        .bys-dashboard-wrapper {
            .main-wrapper {
                button,
                a {
                    &.regular,
                    &#complete-instructions {
                        @include button("primary", "medium", false);
                        width: 100%;

                        svg.icon-arrow {
                            path {
                                fill: white;
                                stroke: none !important;
                            }
                        }

                        &.disabled,
                        &:disabled {
                            svg.icon-arrow {
                                path {
                                    fill: var(--color-text-muted);
                                }
                            }
                        }

                    }
                }
            }
        }
    }
} */
/* A/B Test: One main CTA instead of Two CTA's B Finish */
/* A/B Test: One main CTA instead of Two CTA's mobile B Start */
/* @media(max-width: 600px) {
    .one-instead-two-cta-ab-a {
        display: none !important;
    }

    .one-instead-two-cta-ab-b {
        display: block !important;
    }

    .page-template-link-your-shopify-store {
        #complete-instructions {
            &.disabled {
                display: none !important;
            }
        }
    }

    .bys-dashboard {
        .bys-dashboard-wrapper {
            .free-ai-store {
                display: none;
            }

            .main-wrapper {
                button,
                a {
                    &.regular,
                    &#complete-instructions {
                        @include button("primary", "medium", false);
                        width: 100%;

                        svg.icon-arrow {
                            path {
                                fill: white;
                                stroke: none !important;
                            }
                        }

                        &.disabled,
                        &:disabled {
                            svg.icon-arrow {
                                path {
                                    fill: var(--color-text-muted);
                                }
                            }
                        }

                    }
                }
            }
        }
    }
} */
/* A/B Test: One main CTA instead of Two CTA's mobile B Finish */
/* A/B Test: One main CTA instead of Two CTA's mobile C Start */
/* @media(max-width: 600px) {
    .one-instead-two-cta-ab-a {
        display: none !important;
    }

    .one-instead-two-cta-ab-b {
        display: block !important;
    }

    .page-template-link-your-shopify-store {
        #complete-instructions {
            &.disabled {
                display: none !important;
            }
        }
    }

    .bys-dashboard {
        .bys-dashboard-wrapper {
            .free-ai-store {
                display: none;
            }

            .main-wrapper {
                button,
                a {
                    &.regular,
                    &#complete-instructions {
                        @include button("primary", "medium", false);
                        width: 100%;

                        svg.icon-arrow {
                            path {
                                fill: white;
                                stroke: none !important;
                            }
                        }

                        &.disabled,
                        &:disabled {
                            svg.icon-arrow {
                                path {
                                    fill: var(--color-text-muted);
                                }
                            }
                        }

                    }
                }
            }
        }
    }
} */
/* A/B Test: One main CTA instead of Two CTA's mobile C Finish */
/* A/B/C/D Test: Preselected plan Default Styles START */
.pre-selected-plan-abcd-b,
.pre-selected-plan-abcd-c,
.pre-selected-plan-abcd-d {
  display: none !important;
}

/* A/B/C/D Test: Preselected plan Default Styles END */
.bys-vwo-test-75-loader,
.bys-vwo-test-79-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-surface);
  z-index: 9999;
}
.bys-vwo-test-75-loader .loader,
.bys-vwo-test-79-loader .loader {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}