: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 (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}/* THEMES */

/********** Theme: dark **********/
/* Font styles */
.flipdown.flipdown__theme-dark {
  font-family: sans-serif;
  font-weight: bold;
}
/* Rotor group headings */
.flipdown.flipdown__theme-dark .rotor-group-heading:before {
  color: #000000;
}
/* Delimeters */
.flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3):before,
.flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3):after {
  background-color: #151515;
}
/* Rotor tops */
.flipdown.flipdown__theme-dark .rotor,
.flipdown.flipdown__theme-dark .rotor-top,
.flipdown.flipdown__theme-dark .rotor-leaf-front {
  color: #FFFFFF;
  background-color: #151515;
}
/* Rotor bottoms */
.flipdown.flipdown__theme-dark .rotor-bottom,
.flipdown.flipdown__theme-dark .rotor-leaf-rear {
  color: #EFEFEF;
  background-color: #202020;
}
/* Hinge */
.flipdown.flipdown__theme-dark .rotor:after {
  border-top: solid 1px #151515;
}

/********** Theme: light **********/
/* Font styles */
.flipdown.flipdown__theme-light {
  font-family: sans-serif;
  font-weight: bold;
}
/* Rotor group headings */
.flipdown.flipdown__theme-light .rotor-group-heading:before {
  color: #EEEEEE;
}
/* Delimeters */
.flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+3):before,
.flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+3):after {
  background-color: #DDDDDD;
}
/* Rotor tops */
.flipdown.flipdown__theme-light .rotor,
.flipdown.flipdown__theme-light .rotor-top,
.flipdown.flipdown__theme-light .rotor-leaf-front {
  color: #222222;
  background-color: #DDDDDD;
}
/* Rotor bottoms */
.flipdown.flipdown__theme-light .rotor-bottom,
.flipdown.flipdown__theme-light .rotor-leaf-rear {
  color: #333333;
  background-color: #EEEEEE;
}
/* Hinge */
.flipdown.flipdown__theme-light .rotor:after {
  border-top: solid 1px #222222;
}

/* END OF THEMES */

.flipdown {
  overflow: visible;
  width: 510px;
  height: 110px;
}

.flipdown .rotor-group {
  position: relative;
  float: left;
  padding-right: 30px;
}

.flipdown .rotor-group:last-child {
  padding-right: 0;
}

.flipdown .rotor-group-heading:before {
  display: block;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.flipdown .rotor-group:nth-child(1) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(2) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(3) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(4) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 115px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 115px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.flipdown .rotor {
  position: relative;
  float: left;
  width: 50px;
  height: 80px;
  margin: 0px 5px 0px 0px;
  border-radius: 4px;
  font-size: 4rem;
  text-align: center;
  perspective: 200px;
}

.flipdown .rotor:last-child {
  margin-right: 0;
}

.flipdown .rotor-top,
.flipdown .rotor-bottom {
  overflow: hidden;
  position: absolute;
  width: 50px;
  height: 40px;
}

.flipdown .rotor-leaf {
  z-index: 1;
  position: absolute;
  width: 50px;
  height: 80px;
  transform-style: preserve-3d;
  transition: transform 0s;
}

.flipdown .rotor-leaf.flipped {
  transform: rotateX(-180deg);
  transition: all 0.5s ease-in-out;
}

.flipdown .rotor-leaf-front,
.flipdown .rotor-leaf-rear {
  overflow: hidden;
  position: absolute;
  width: 50px;
  height: 40px;
  margin: 0;
  transform: rotateX(0deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flipdown .rotor-leaf-front {
  line-height: 80px;
  border-radius: 4px 4px 0px 0px;
}

.flipdown .rotor-leaf-rear {
  line-height: 0px;
  border-radius: 0px 0px 4px 4px;
  transform: rotateX(-180deg);
}

.flipdown .rotor-top {
  line-height: 80px;
  border-radius: 4px 4px 0px 0px;
}

.flipdown .rotor-bottom {
  bottom: 0;
  line-height: 0px;
  border-radius: 0px 0px 4px 4px;
}

.flipdown .rotor:after {
  content: '';
  z-index: 2;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 50px;
  height: 40px;
  border-radius: 0px 0px 4px 4px;
}

@media (max-width: 550px) {

  .flipdown {
    width: 312px;
    height: 70px;
  }

  .flipdown .rotor {
    font-size: 2.2rem;
    margin-right: 3px;
  }

  .flipdown .rotor,
  .flipdown .rotor-leaf,
  .flipdown .rotor-leaf-front,
  .flipdown .rotor-leaf-rear,
  .flipdown .rotor-top,
  .flipdown .rotor-bottom,
  .flipdown .rotor:after {
    width: 30px;
  }

  .flipdown .rotor-group {
    padding-right: 20px;
  }

  .flipdown .rotor-group:last-child {
    padding-right: 0px;
  }

  .flipdown .rotor-group-heading:before {
    font-size: 0.8rem;
    height: 20px;
    line-height: 20px;
  }

  .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before,
  .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 69px;
  }

  .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
    bottom: 13px;
    height: 8px;
    width: 8px;
  }

  .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    bottom: 29px;
    height: 8px;
    width: 8px;
  }

  .flipdown .rotor-leaf-front,
  .flipdown .rotor-top {
    line-height: 50px;
  }

  .flipdown .rotor-leaf,
  .flipdown .rotor {
    height: 50px;
  }

  .flipdown .rotor-leaf-front,
  .flipdown .rotor-leaf-rear,
  .flipdown .rotor-top,
  .flipdown .rotor-bottom,
  .flipdown .rotor:after {
    height: 25px;
  }
}
@charset "UTF-8";
:root {
  /* TEAL */
  --teal-5: #EDF7F2;
  --teal-10: #E1F2EA;
  --teal-50: #09A989;
  --teal-60: #009A7B;
  --teal-70: #008A6E;
  --teal-80: #007069;
  /* CHROME */
  --white: #FFFFFF;
  --grey-20: #F2F2F2;
  --grey-30: #E5E5E5;
  --grey-40-alt: #D9D9D9;
  --grey-40: #D3D3D3;
  --grey-50: #B8B8B8;
  --grey-60: #9E9E9E;
  --grey-80: #373737;
  --grey-90: #2A2A2A;
  --black: #000000;
  /* ACCENT */
  --turquoise: #4BD8E2;
  --green: #5CE099;
  --lime: #15FA11;
  --lemon: #E8FA11;
  --yellow: #F0F79B;
  --sun: #FFA41C;
  --tangelo: #FF4F37;
  --red: #E54343;
  --torch-red: #FF004D;
  /* BRAND */
  --pink-80: #E20056;
  --pink-70: #FF0061;
  --pink-20: #FFC9D9;
  /* AB Test 64 */
  --email-link-color: var(--black);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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 (max-width: 1300px) {
  .container {
    width: 900px;
  }
}
@media (max-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(--black);
  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(--teal-80);
}
footer .flx .block-2 a:focus {
  color: var(--teal-80);
}
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(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  transition: color 0.3s;
}
footer .flx .block-3 a:hover {
  color: var(--teal-80);
  border-bottom: 1px solid var(--teal-80);
}
footer .flx .block-3 a:focus {
  color: #008a6e;
  border-bottom: 1px solid var(--teal-80);
}

@media (max-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: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 8px;
}
.loading .loading-description {
  text-align: center;
  color: #222;
  font-size: 16px;
  line-height: 22px;
}

@media (max-width: 1300px) {
  .loading .loading-description {
    padding-bottom: 100px;
  }
}
@media (max-width: 940px) {
  .loading .loading-description br {
    display: none;
  }
}
@media (max-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;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  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: 0px;
  height: 0px;
  margin-top: -2px;
  border: 2px solid rgba(73, 73, 73, 0.5);
  border-left-color: var(--grey-90);
  border-top-color: var(--grey-90);
  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: rgba(213, 213, 213, 0.3);
  -webkit-backdrop-filter: blur(14px) opacity(1);
          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 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  background: var(--white);
  height: auto;
  border-radius: 20px;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.0784313725);
}
@media (max-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(--black);
  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(--black);
  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(--white);
  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(--black);
  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(--teal-50);
}
.google-auth-failed .modal-content .modal-body .sign-up-mail:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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(--white);
  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(--grey-60);
  color: var(--grey-90);
  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(--pink-70);
}
.google-auth-failed .modal-content .modal-body .sign-up-google:active {
  border: 1px solid var(--pink-70);
}
.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(--white);
  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(--black);
  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(--teal-50);
}
.google-auth-failed .modal-content .modal-body .sign-up-google-black:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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: rgba(213, 213, 213, 0.3);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 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(--white);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  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(--teal-50);
  padding: 24px 44px 24px 24px;
  border-radius: 8px;
}
.input-tooltip-validator .input-tooltip-validator-message {
  color: var(--white);
  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(--teal-50);
  padding: 24px 44px 24px 24px;
  border-radius: 8px;
}
.tooltip .tooltip-message {
  color: var(--white);
  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);
  -webkit-backdrop-filter: blur(14px) opacity(0);
          backdrop-filter: blur(14px) opacity(0);
  overflow: scroll;
  align-items: stretch;
}
.modal-component .modal-content {
  margin: 0 auto;
  z-index: 123;
  position: relative;
  max-width: 580px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--white);
  height: auto;
  border-radius: 16px;
  border-radius: 16px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.0784313725);
  position: relative;
  padding: 40px;
  height: -moz-max-content;
  height: max-content;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 480px) {
  .modal-component .modal-content {
    padding: 24px;
  }
}
@media (max-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 (max-width: 480px) {
  .modal-component .modal-content .modal-body {
    row-gap: 24px;
  }
}
@media (max-width: 480px) {
  .modal-component .modal-content .modal-body svg {
    width: 40px;
    height: 40px;
  }
}
.modal-component .modal-content .modal-body h3 {
  color: var(--black);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-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(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}
@media (max-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(--white);
  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(--black);
  width: 100%;
}
.modal-component .dark-button:hover, .modal-component .dark-button:focus {
  background-color: var(--teal-50);
}
.modal-component .dark-button:active {
  background-color: var(--teal-70);
}
.modal-component .dark-button.disabled, .modal-component .dark-button:disabled {
  background-color: var(--grey-30);
  color: var(--grey-60);
  pointer-events: none;
}
.modal-component .dark-button svg {
  transition: 0.2s linear;
}
.modal-component .dark-button:hover svg {
  transform: translateX(5px);
}
@media (max-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(--white);
  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(--pink-70);
  width: 100%;
}
.modal-component .pink-button:hover, .modal-component .pink-button:focus {
  background-color: var(--pink-80);
}
.modal-component .pink-button:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.modal-component .pink-button.disabled, .modal-component .pink-button:disabled {
  background-color: var(--pink-20);
  pointer-events: none;
}
.modal-component .pink-button svg {
  transition: 0.2s linear;
}
.modal-component .pink-button:hover svg {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .modal-component .pink-button {
    color: var(--white);
    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;
  -webkit-backdrop-filter: blur(14px) opacity(1);
          backdrop-filter: blur(14px) opacity(1);
}

.stripe-upsell-payment-modal .modal-content {
  max-width: 642px;
}
@media (max-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 (max-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 (max-width: 768px) {
  .stripe-upsell-payment-modal .modal-content .modal-body {
    row-gap: 24px;
  }
}
@media (max-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 (max-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 (max-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(--black);
}
.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 (max-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(--grey-60);
  text-align: right;
  white-space: nowrap;
}
@media (max-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(--grey-80);
  text-align: left;
}
@media (max-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(--black);
  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 (max-width: 768px) {
  .stripe-upsell-payment-modal .pink-button {
    padding: 12px 16px;
    border-radius: 8px;
  }
}

.funnel-progress-bar {
  --progress-bar-active-color: var(--teal-70);
  --progress-bar-active-stroke: var(--teal-50);
  color: var(--grey-60);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-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 (max-width: 600px) {
  .funnel-progress-bar .steps-list {
    margin: 0;
  }
}
.funnel-progress-bar .steps-list .mobile-text {
  display: none;
}
@media (max-width: 600px) {
  .funnel-progress-bar .steps-list .mobile-text {
    display: initial;
  }
}
@media (max-width: 600px) {
  .funnel-progress-bar .steps-list .step-title {
    font-size: 20px;
    color: var(--black);
  }
}
.funnel-progress-bar .steps-list .separators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-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(--grey-60);
}
.funnel-progress-bar .steps-list .steps-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-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(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: var(--grey-60);
  border-radius: 50%;
}
@media (max-width: 600px) {
  .funnel-progress-bar .steps-list .steps-list-item span {
    display: none;
  }
}
@media (min-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 (max-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(--grey-40-alt);
  }
  .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 (max-width: 600px) {
  .bys-dashboard:has(.funnel-progress-bar) .bys-dashboard-wrapper {
    padding-top: 48px;
  }
}

@media (max-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;
  }
}
.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(--white);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  margin-left: 12px;
}
.bys-register .bl-1 .block-1 {
  display: flex;
  justify-content: center;
  width: 43%;
  background: url("../img/register-bg.svg") center/cover;
  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(--black);
  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(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  background: url("../img/check.svg") 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(--black);
  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(--black);
  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(--black);
  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(--yellow) url("../img/warning-icon.svg") no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: var(--black);
  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(--red);
  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(--black);
  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 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(--grey-60);
  background: var(--white);
  border-radius: 8px;
  color: var(--black);
  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(--grey-60);
}
.bys-register .bl-1 .block-2 form .field input::placeholder {
  color: var(--grey-60);
}
.bys-register .bl-1 .block-2 form .field input:hover {
  border-color: var(--teal-50);
}
.bys-register .bl-1 .block-2 form .field input:focus {
  outline: none;
  border-color: var(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.bys-register .bl-1 .block-2 form .field input:disabled, .bys-register .bl-1 .block-2 form .field input.disabled {
  border-color: var(--grey-20);
  background: var(--grey-20);
  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(--red) !important;
}
.bys-register .bl-1 .block-2 form .field input.error-valiation {
  border-color: var(--red) !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(--white);
  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(--pink-70);
  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(--pink-80);
}
.bys-register .bl-1 .block-2 form button[type=submit]:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.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(--pink-20);
  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(--white);
  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(--grey-60);
  color: var(--grey-90);
  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(--pink-70);
}
.bys-register .bl-1 .block-2 form .google-login:active {
  border: 1px solid var(--pink-70);
}
.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: 0px;
  height: 0px;
  margin-top: -2px;
  border: 2px solid rgba(73, 73, 73, 0.5);
  border-left-color: var(--grey-90);
  border-top-color: var(--grey-90);
  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(--black);
}
.bys-register .bl-1 .block-2 form p a {
  color: var(--pink-70);
  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(--pink-80);
  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(--teal-60);
  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(--teal-80);
}

.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 (max-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 (max-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-top: 40px;
    padding-bottom: 180px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .bys-register .bl-1 .block-1 .content h2 {
    text-align: center;
  }
  .bys-register .bl-1 .block-2 {
    order: 1;
    width: 100%;
    padding-top: 88px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .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 (max-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 {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 100px;
  outline: none;
}
.bys-sign-in-reset-pswd h1 {
  color: var(--black);
  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(--black);
  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(--yellow) 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(--black);
  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(--red);
  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(--black);
  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(--grey-60);
  background: var(--white);
  border-radius: 8px;
  color: var(--black);
  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(--grey-60);
}
.bys-sign-in-reset-pswd form .field input::placeholder {
  color: var(--grey-60);
}
.bys-sign-in-reset-pswd form .field input:hover {
  border-color: var(--teal-50);
}
.bys-sign-in-reset-pswd form .field input:focus {
  outline: none;
  border-color: var(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.bys-sign-in-reset-pswd form .field input:disabled, .bys-sign-in-reset-pswd form .field input.disabled {
  border-color: var(--grey-20);
  background: var(--grey-20);
  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(--red) !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(--grey-60);
  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(--black);
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox label:active::before {
  border-color: var(--teal-80);
  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='%23009A7B'/%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");
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input:checked + label::before {
  border-color: var(--black);
  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='black'/%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");
}
.bys-sign-in-reset-pswd form .form-footer-flx .checkbox input:checked + label:hover::before {
  border-color: var(--teal-80);
  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='%23009A7B'/%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");
}
.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='%23E5E5E5'/%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(--grey-30);
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--black);
  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(--grey-40);
  margin-right: 8px;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label input:checked ~ .check-area {
  background: var(--black) url("../img/remember-me-check.svg") no-repeat 50% 50%;
  border: 1px solid var(--black);
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label:hover:has(input:checked):hover .check-area {
  background: var(--teal-60) url("../img/remember-me-check.svg") no-repeat 50% 50% !important;
  border: 1px solid var(--teal-60) !important;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label:hover .check-area {
  border: 1px solid var(--black);
}
.bys-sign-in-reset-pswd form .form-footer-flx .item label:active .check-area {
  background: var(--teal-60) url("../img/remember-me-check.svg") no-repeat 50% 50% !important;
  border: 1px solid var(--teal-60) !important;
}
.bys-sign-in-reset-pswd form .form-footer-flx .item a {
  color: var(--pink-70);
  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(--pink-80);
  text-decoration: underline;
}
.bys-sign-in-reset-pswd form button[type=submit] {
  margin: 16px 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(--white);
  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(--pink-70);
  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(--pink-80);
}
.bys-sign-in-reset-pswd form button[type=submit]:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.bys-sign-in-reset-pswd form button[type=submit].disabled, .bys-sign-in-reset-pswd form button[type=submit]:disabled {
  background-color: var(--pink-20);
  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(--white);
  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(--grey-60);
  color: var(--grey-90);
  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(--pink-70);
}
.bys-sign-in-reset-pswd form .google-login:active {
  border: 1px solid var(--pink-70);
}
.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: 0px;
  height: 0px;
  margin-top: -2px;
  border: 2px solid rgba(73, 73, 73, 0.5);
  border-left-color: var(--grey-90);
  border-top-color: var(--grey-90);
  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(--pink-70);
  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(--pink-80);
  text-decoration: underline;
}

@media (max-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: url("../img/dashboard-bg.svg") no-repeat 50% 0;
  background-size: 100%;
  min-height: 100vh;
}
.bys-dashboard .bys-banner {
  background: var(--black);
  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(--white);
  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(--lemon);
  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(--white);
  box-shadow: 0px 2px 8px 0px 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(--black);
  cursor: pointer;
  background: url("../img/dashboard-account-arrow.svg") 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(--white);
  box-shadow: 0px 6px 16px 0px 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(--black);
}
.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(--grey-20);
}
.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(--white);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
  padding: 20px 20px 14px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  color: var(--grey-60);
  text-decoration: none;
  font-weight: 600;
  line-height: 24px;
  transition: color 0.3s;
}
.bys-dashboard .bys-dashboard-wrapper .free-ai-store:hover {
  color: var(--black);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper {
  position: relative;
  max-width: 696px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px 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(--black);
  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(--grey-40);
  padding-bottom: 28px;
  margin-bottom: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .warning-info {
  border-radius: 12px;
  background: var(--yellow) url("../img/warning-icon.svg") no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: var(--black);
  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(--teal-5) url("../img/success-icon.svg") no-repeat 20px 50%;
  padding: 16px 20px 16px 72px;
  font-size: 16px;
  color: var(--black);
  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(--red);
  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(--black);
  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(--grey-60);
  background: var(--white);
  border-radius: 8px;
  color: var(--black);
  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(--grey-60);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input::placeholder {
  color: var(--grey-60);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input:hover {
  border-color: var(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form .field input:focus {
  outline: none;
  border-color: var(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.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(--grey-20);
  background: var(--grey-20);
  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(--red) !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(--white);
  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(--black);
  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(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .account-settings-wrapper form button:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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(--black);
  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(--grey-40);
  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(--black);
  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(--teal-60);
  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(--teal-80);
}
.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(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  background: url("../img/main-wrapper-step-title-check.svg") no-repeat 0 50%;
  padding-left: 40px;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .step-title.done {
  background: url("../img/main-wrapper-step-title-check-success.svg") no-repeat 0 50%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .last-step-title {
  color: var(--black);
  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(--black);
  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(--white);
  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(--teal-60);
  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(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.last-step-link:active {
  background-color: var(--teal-70);
}
.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(--grey-80);
  color: var(--grey-60);
  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(--black);
  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(--black);
  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(--grey-30);
  text-decoration: none;
  background: var(--white) url("../img/next-step-lock.svg") no-repeat 24px 50%;
  color: var(--grey-60);
  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: 0px 2px 12px 0px rgba(0, 0, 0, 0.14);
  border: 1px solid transparent;
  color: var(--black);
  cursor: pointer;
  pointer-events: initial;
  background: var(--white) url("../img/main-wrapper-step-title-check.svg") no-repeat 24px 50%;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .dashboard-main-item.done {
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.14);
  border: 1px solid transparent;
  color: var(--black);
  cursor: pointer;
  pointer-events: initial;
  background: var(--white) url("../img/main-wrapper-step-title-check-success.svg") 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(--white);
  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(--teal-60);
  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(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper button.regular:active,
.bys-dashboard .bys-dashboard-wrapper .main-wrapper a.regular:active {
  background-color: var(--teal-70);
}
.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(--grey-80);
  color: var(--grey-60);
  border: 1px solid var(--grey-60);
  background: var(--white);
  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(--white) !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(--teal-50);
  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(--teal-80);
}
.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(--torch-red);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content mark {
  background: var(--lemon);
  background: linear-gradient(-1deg, transparent 10%, var(--lemon) 11%, var(--lemon) 90%, transparent 91%, transparent 100%);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content mark.mark-red {
  color: var(--white);
  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(--black);
  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(--teal-5);
  color: var(--black);
  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(--teal-60);
}
@media (min-width: 993px) {
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label:hover {
    background: #e1f2ea;
  }
}
.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(--teal-50);
  color: var(--white);
}
.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(--white);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio input:disabled ~ label {
  position: relative;
  background: var(--grey-20);
  color: var(--grey-50);
  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(--white);
  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: 0px;
  height: 0px;
  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(--red);
}
.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(--white);
  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(--teal-60);
  margin-bottom: 16px;
  height: 50px;
  background: var(--black);
  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(--teal-50);
}
.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(--teal-70);
}
.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(--grey-80);
  color: var(--grey-60);
  border: 1px solid var(--grey-60);
  background: var(--white);
  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(--black);
  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(--red);
  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(--teal60);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper span.error a:hover {
  color: var(--teal-70);
}
.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(--grey-60);
  background: var(--white);
  border-radius: 8px;
  color: var(--black);
  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(--grey-60);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input::placeholder {
  color: var(--grey-60);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input:hover {
  border-color: var(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx input:focus {
  outline: none;
  border-color: var(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.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(--grey-20);
  background: var(--grey-20);
  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(--red) !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(--white);
  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(--black);
}
.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(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .input-wrapper .flx button:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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(--teal-60);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banners .banner-item input:checked ~ label img {
  border: 2px solid var(--white);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content ul li {
  color: var(--black);
  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(--black);
  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(--white) url("../img/next-step-lock.svg") no-repeat 24px 50%;
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
  padding: 24px 24px 24px 68px;
  margin: 0 auto;
  color: var(--grey-60);
  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(--grey-60);
  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: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 48px 32px 40px;
  background: var(--white);
  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(--grey-20);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 28px;
  color: var(--black);
  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(--teal-60);
}
.bys-dashboard .modal-wrapper .modal-message a:hover {
  color: var(--teal-80);
}
.bys-dashboard .modal-wrapper ol {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 20px;
}
.bys-dashboard .modal-wrapper ol li {
  color: var(--black);
  line-height: normal;
}
.bys-dashboard .modal-wrapper ol li a {
  color: var(--teal-60);
  font-weight: 600;
}
.bys-dashboard .modal-wrapper ol li span {
  font-weight: 600;
}
.bys-dashboard .modal-wrapper ol li strike {
  color: var(--red);
  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(--white);
  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(--black);
  width: 100%;
  display: flex;
}
.bys-dashboard .modal-wrapper button.paid:hover, .bys-dashboard .modal-wrapper button.paid:focus {
  background-color: var(--teal-50);
}
.bys-dashboard .modal-wrapper button.paid:active {
  background-color: var(--teal-70);
}
.bys-dashboard .modal-wrapper button.paid.disabled, .bys-dashboard .modal-wrapper button.paid:disabled {
  background-color: var(--grey-30);
  color: var(--grey-60);
  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(--black);
  padding-left: 0;
}
.bys-dashboard .modal-wrapper .popup-1 .modal-title {
  color: var(--black);
  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(--lemon);
  padding: 0 10px;
}
.bys-dashboard .modal-wrapper .popup-1 .modal-title-2 {
  color: var(--black);
  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(--black);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  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(--black);
  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(--grey-20);
  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(--white);
  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(--black);
  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(--teal-50);
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store:active {
  background-color: var(--teal-70);
}
.bys-dashboard .modal-wrapper .popup-3 .create-new-store.disabled, .bys-dashboard .modal-wrapper .popup-3 .create-new-store:disabled {
  background-color: var(--grey-30);
  color: var(--grey-60);
  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;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  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(--white);
  box-shadow: 0px 2px 6px 0px 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(--black);
  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(--red);
  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(--grey-60);
  background: var(--white);
  border-radius: 8px;
  color: var(--black);
  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(--grey-60);
}
.bys-dashboard .account-settings-popup form .field input::placeholder {
  color: var(--grey-60);
}
.bys-dashboard .account-settings-popup form .field input:hover {
  border-color: var(--teal-50);
}
.bys-dashboard .account-settings-popup form .field input:focus {
  outline: none;
  border-color: var(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.bys-dashboard .account-settings-popup form .field input:disabled, .bys-dashboard .account-settings-popup form .field input.disabled {
  border-color: var(--grey-20);
  background: var(--grey-20);
  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(--red) !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(--teal-60);
  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(--teal-80);
}
.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(--white);
  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(--black);
  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(--teal-50);
}
.bys-dashboard .account-settings-popup form .btn-area button:active {
  background-color: var(--teal-70);
}
.bys-dashboard .account-settings-popup form .btn-area button.disabled, .bys-dashboard .account-settings-popup form .btn-area button:disabled {
  background-color: var(--grey-30);
  color: var(--grey-60);
  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 (max-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;
  }
  .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: calc(33.3333333333% - 6px);
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label {
    padding: 9px 12px;
    height: 111px;
    font-size: 12px;
    line-height: 15px;
    border-radius: 8px;
  }
  .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content form#choose-niche .flx-niche .radio label span {
    height: 31px;
  }
  .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(--black) 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;
  }
}
.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(--pink-70);
  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 (max-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(--black);
  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;
  top: 0;
  bottom: 0;
  left: 0;
  right: 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(--white);
  box-shadow: 0px 8px 16px 0px 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(--green);
}
.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(--black);
  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-direction: row;
  flex-wrap: 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-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .inputs-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: 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(--black);
  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(--black);
  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(--teal-10);
  border-color: var(--teal-10);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form.create-account .password-validator .not-valid {
  border-color: var(--red);
}
.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(--white);
  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(--black);
  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(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .submit-wrapper button:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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;
  top: 0;
  bottom: 0;
  right: 0;
  left: 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(--red);
  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(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid var(--grey-60);
  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(--grey-60);
  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(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-input-wrapper.error {
  border-color: var(--red);
  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(--teal-50);
  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(--teal-80);
}
.bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content.content.free-domain form .input-wrapper .desired-domain-selected-input-wrapper .copy {
  color: var(--teal-50);
  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(--teal-80);
}
.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(--teal-80);
}
.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 (max-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(--teal-50);
}
.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(--grey-20);
  transition: all 0.3s ease-in;
  cursor: pointer;
  color: var(--black);
  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(--teal-50);
  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(--teal-5);
}
.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(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}

@media (max-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(--black);
  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(--grey-60);
  background: var(--white);
  border-radius: 8px;
  color: var(--black);
  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(--grey-60);
}
.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(--grey-60);
}
.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(--teal-50);
}
.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(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.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(--grey-20);
  background: var(--grey-20);
  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(--red) !important;
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form .message {
  color: var(--black);
  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(--red);
}
.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(--white);
  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(--black);
  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(--teal-50);
}
.page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form button:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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 (min-width: 601px) {
  .page-template-copy-store-token .bys-dashboard .bys-dashboard-wrapper .copy-store-token-form {
    flex-direction: row;
    flex-wrap: 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(--white);
  border: 1px solid var(--black);
}
.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(--white);
  font-weight: 600;
  line-height: 1.4;
  background: var(--pink-70);
  padding-bottom: 8px;
  padding-top: 12px;
  padding-left: 26px;
  padding-right: 26px;
  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;
  background: var(--pink-70);
  position: absolute;
  bottom: -8px;
  left: 0;
  transform-origin: top right;
  transform: rotate(47.577deg);
  background: linear-gradient(132.423deg, transparent 0%, transparent 50%, var(--pink-70) 50%);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .ribbon span::after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--teal-60);
  position: absolute;
  bottom: -5px;
  right: 0;
  transform-origin: top left;
  transform: rotate(317.757deg);
  background: linear-gradient(222.423deg, transparent 0%, transparent 47%, var(--pink-70) 47%);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offers .offer .title {
  color: var(--black);
  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(--black);
  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(--grey-60);
}
.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(--black);
  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(--black);
  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(--black);
  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(--grey-60);
  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(--white);
  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(--pink-70);
  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(--pink-80);
}
.page-template-upsell .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.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(--pink-20);
  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(--white);
  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(--pink-70);
  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(--pink-80);
}
.page-template-upsell .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.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(--pink-20);
  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(--grey-60);
  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(--white);
  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(--pink-70);
  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(--pink-80);
}
.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(--pink-80);
  border: 2px solid var(--pink-20);
}
.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(--pink-20);
  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(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media (max-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 (max-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(--black);
  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(--black);
}
.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 (max-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 (max-width: 600px) {
  .page-template-create-shopify-account .tooltip\.bys-dashboard_\.header {
    width: 100%;
    max-width: 100%;
    border-radius: 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(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

@media (max-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 .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(--black);
  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(--chrome-black);
  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(--black);
  line-height: normal;
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content ol li a {
  color: var(--teal-60);
  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(--red);
  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(--grey-20);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 28px;
  color: var(--black);
  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(--teal-60);
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content .modal-message a:hover {
  color: var(--teal-80);
}
.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(--white);
  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(--black);
  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(--teal-50);
}
.page-template-install-build-your-store-app #verify-payment-popup .popup-content button.paid:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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(--black);
  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(--chrome-black);
  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(--black);
  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(--white, #FFF);
  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(--black);
  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(--white);
  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(--black);
  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(--teal-50);
}
.page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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(--black);
  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(--pink-70);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-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(--white);
    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(--black);
    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(--teal-50);
  }
  .page-template-install-build-your-store-app #non-affiliate-popup .popup .popup-content .ctas .open-store:active {
    background-color: var(--teal-70);
  }
  .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(--grey-30);
    color: var(--grey-60);
    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(--grey-60);
    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(--pink-70);
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
  }
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content mark {
  background: var(--lemon);
  background: linear-gradient(-1deg, transparent 10%, var(--lemon) 11%, var(--lemon) 90%, transparent 91%, transparent 100%);
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .label {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .code {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .code .copy {
  transition: all 0.3s ease-in;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  color: var(--teal-50);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .code .copy span svg path {
  transition: all 0.3s ease-in;
  stroke: var(--teal-50);
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .code .copy span svg rect {
  transition: all 0.3s ease-in;
  stroke: var(--teal-50);
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .code .copy:hover {
  color: var(--teal-80);
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .code .copy:hover span svg path {
  stroke: var(--teal-80);
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode .code .copy:hover span svg rect {
  stroke: var(--teal-80);
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .promocode p {
  margin: 0;
}
.page-template-grow-your-store .bys-dashboard-wrapper .main-wrapper .main-wrapper-content #access-shopify {
  margin-top: 15px;
}

.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(--black);
  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(--black);
  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(--white);
  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(--grey-60);
  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(--black);
  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(--black);
  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(--teal-60);
  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(--black);
  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(--grey-60);
  background: var(--white);
  border-radius: 8px;
  color: var(--black);
  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(--grey-60);
}
.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(--grey-60);
}
.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(--teal-50);
}
.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(--teal-50);
  box-shadow: 0px 0px 0px 4px var(--teal-10);
}
.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(--grey-20);
  background: var(--grey-20);
  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(--red) !important;
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .fieldset .message {
  color: var(--black);
  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(--red);
}
.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(--white);
  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(--black);
  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(--teal-50);
}
.page-template-open-store .bys-dashboard .page-steps .page-step .page-step-content .open-store-button:active {
  background-color: var(--teal-70);
}
.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(--grey-30);
  color: var(--grey-60);
  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(--grey-60);
}
.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 (max-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(--black);
    line-height: 140%;
    font-style: normal;
    font-size: 20px;
    font-weight: 600;
  }
  .page-template-open-store .bys-dashboard .page-header .page-subtitle {
    color: var(--black);
    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 (max-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 (max-width: 500px) {
  .page-template-create-ugc .main-wrapper-content .youtube-video-wrapper iframe {
    margin-bottom: 20px;
    height: 170px;
  }
}
@media (max-width: 410px) {
  .page-template-create-ugc .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content p {
    margin-bottom: 20px;
  }
}
@media (max-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-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(--grey-60);
                                }
                            }
                        }

                    }
                }
            }
        }
    }
} */
/* 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(--grey-60);
                                }
                            }
                        }

                    }
                }
            }
        }
    }
} */
/* 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(--grey-60);
                                }
                            }
                        }

                    }
                }
            }
        }
    }
} */
/* 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 */
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .step-title {
  text-align: center;
  background: transparent;
  padding: 0;
  margin: 0;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content {
  padding: 0;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer p {
  margin: 0;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .step-description {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0px 4px 15px 0px rgba(130, 130, 130, 0.25);
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price {
  position: absolute;
  top: -37px;
  right: -17px;
  z-index: 2;
  width: 122.23px;
  height: 122.23px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='123' height='123' viewBox='0 0 123 123' fill='none'%3E%3Cpath d='M84.2001 7.16872C88.1579 5.54756 92.3362 7.73712 93.2557 11.9141L94.9799 19.7472C95.5992 22.5608 97.76 24.6048 100.5 24.9687L108.698 26.0576C112.916 26.618 115.414 31.0192 114 35.3998L112.01 41.561C111.018 44.6313 111.935 47.8822 114.296 49.6678L119.921 53.9218C123.529 56.6509 123.488 62.4246 119.837 65.6698L116.006 69.0745C113.428 71.3657 112.533 75.0977 113.833 78.1293L115.985 83.1484C117.886 87.5828 115.037 93.02 110.309 93.9801L104.957 95.0668C101.724 95.7232 99.1654 98.5838 98.7485 102.007L98.1289 107.095C97.5384 111.944 92.8144 115.263 88.5168 113.85L81.8179 111.646C79.0061 110.721 75.8112 111.817 73.8509 114.38L69.9172 119.522C67.1203 123.178 62.0797 123.629 59.218 120.479L53.6573 114.358C51.7988 112.313 48.8884 111.699 46.2223 112.791L38.8002 115.831C34.8424 117.452 30.6641 115.263 29.7446 111.086L28.0204 103.253C27.4011 100.439 25.2403 98.3952 22.5004 98.0313L14.3028 96.9424C10.084 96.382 7.58616 91.9808 9.00078 87.6002L10.9904 81.439C11.9819 78.3687 11.0651 75.1178 8.70434 73.3322L3.0798 69.0782C-0.528599 66.3491 -0.487403 60.5754 3.16362 57.3302L6.9941 53.9255C9.57185 51.6343 10.4677 47.9023 9.16769 44.8707L7.01543 39.8516C5.1139 35.4172 7.96316 29.98 12.6915 29.0199L18.0434 27.9332C21.2761 27.2768 23.8349 24.4162 24.2518 20.9927L24.8714 15.9054C25.4619 11.0564 30.1859 7.73666 34.4836 9.1505L41.1825 11.3543C43.9942 12.2793 47.1891 11.1829 49.1494 8.62035L53.0831 3.47796C55.88 -0.178272 60.9206 -0.629199 63.7823 2.52081L69.343 8.64165C71.2015 10.6874 74.112 11.3009 76.778 10.2089L84.2001 7.16872Z' fill='%23E8FA11'/%3E%3C/svg%3E");
  background-size: contain;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price .amount {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(17.365deg);
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price .amount .sale {
  color: var(--black);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price .amount .regular {
  color: var(--black);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price .amount .regular:has(+ .sale) {
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  background: url(../img/bg.png);
  background-size: cover;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .banner p {
  color: var(--tangelo);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .banner .timer {
  color: var(--tangelo);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--white);
  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(--pink-70);
  width: 100%;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue:hover, .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue:focus {
  background-color: var(--pink-80);
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue.disabled, .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue:disabled {
  background-color: var(--pink-20);
  pointer-events: none;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue svg {
  transition: 0.2s linear;
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .continue:hover svg {
  transform: translateX(5px);
}
.page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .ctas .skip {
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.page-template-upsell_b .popup {
  gap: 28px;
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-description {
  text-align: center;
  line-height: 1.5;
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-upsell_b .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(--white);
  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(--pink-70);
  width: 100%;
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:hover, .page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:focus {
  background-color: var(--pink-80);
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no.disabled, .page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:disabled {
  background-color: var(--pink-20);
  pointer-events: none;
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no svg {
  transition: 0.2s linear;
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-no:hover svg {
  transform: translateX(5px);
}
.page-template-upsell_b .popup .popup-content .upsell-popup-skip-content .upsell-popup-skip-buttons .upsell-popup-skip-button-yes {
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.page-template-upsell_b .popup .popup-content .upsell-popup-payment-not-completed-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.page-template-upsell_b .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_b .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_b .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(--white);
  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(--pink-70);
  width: 100%;
}
.page-template-upsell_b .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_b .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(--pink-80);
}
.page-template-upsell_b .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(--pink-80);
  border: 2px solid var(--pink-20);
}
.page-template-upsell_b .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_b .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(--pink-20);
  pointer-events: none;
}
.page-template-upsell_b .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_b .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_b .popup .popup-content .upsell-popup-payment-not-completed-content .upsell-popup-payment-not-completed-buttons .upsell-popup-payment-not-completed-button-yes {
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 600px) {
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper {
    padding: 28px 24px;
    gap: 16px;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer {
    gap: 16px;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price {
    width: 101px;
    height: 101px;
    top: -29px;
    right: -20px;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price .amount .sale {
    font-size: 20px;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price .amount .regular {
    font-size: 20px;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .video-wrapper .price .amount .regular:has(+ .sale) {
    font-size: 10px;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .banner p {
    color: var(--tangelo);
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer .banner .timer {
    color: var(--tangelo);
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
  }
  .page-template-upsell_b .bys-dashboard .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .mobile-hidden {
    display: none;
  }
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/ab-test-50/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/ab-test-50/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/ab-test-50/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Anton";
  src: url("../fonts/ab-test-50/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .step-title {
  background: none;
  text-align: center;
  padding: 0;
  margin-bottom: 0;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .step-title span {
  background-image: url("data:image/svg+xml,%3Csvg width='113' height='37' viewBox='0 0 113 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.121094' y='4.49219' width='111' height='32' transform='rotate(-2 0.121094 4.49219)' fill='%23E8FA11'/%3E%3C/svg%3E%0A");
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content {
  text-align: center;
  padding: 24px 0 32px 0;
}
@media (max-width: 600px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content {
    padding-top: 16px;
    padding-bottom: 0;
  }
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content span {
  color: var(--pink-70);
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banner {
  border-radius: 8px;
  padding: 24px 16px;
  background-image: url("../../ab_tests/ab_test_50/img/banner-gradient.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banner {
    padding: 16px 16px;
    margin-bottom: 16px;
  }
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banner .banner-item {
  display: flex;
  justify-content: space-between;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banner .banner-item p {
  color: var(--tangelo);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banner .banner-item p.timer {
  word-spacing: 8px;
}
@media (max-width: 600px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .banner .banner-item p {
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
  }
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .continue-button {
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 12px;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .continue-button.continue-button-mobile {
  display: none !important;
}
@media (max-width: 600px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .continue-button {
    margin-top: 12px;
  }
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .continue-button.continue-button-mobile {
    display: inline-flex !important;
  }
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .continue-button.continue-button-desktop {
    display: none !important;
  }
}
.bys-free-webinar-step .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(--white);
  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(--pink-70);
  width: 100%;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:hover, .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:focus {
  background-color: var(--pink-80);
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit.disabled, .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:disabled {
  background-color: var(--pink-20);
  pointer-events: none;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit svg {
  transition: 0.2s linear;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit:hover svg {
  transform: translateX(5px);
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit-mobile {
  display: none !important;
}
@media (max-width: 600px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit-mobile {
    display: inline-flex !important;
  }
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .offer-submit-desktop {
    display: none !important;
  }
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .step-desription {
  margin: 0;
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .step-desription {
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
  }
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .main-wrapper-content .step-desription br {
    display: none;
  }
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .step-image-wrapper {
  position: relative;
  padding-top: 24px;
}
@media (max-width: 600px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .step-image-wrapper {
    padding-top: 16px;
  }
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .step-image-wrapper iframe {
  aspect-ratio: 16/9;
  box-shadow: 0px 4px 15px rgba(130, 130, 130, 0.25);
  border-radius: 10px;
  width: 100%;
}
.bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .step-image-wrapper:after {
  position: absolute;
  right: -12px;
  top: -16px;
  width: 123px;
  height: 123px;
  content: "";
  display: block;
  background-image: url("../../ab_tests/ab_test_50/img/sale.svg");
  transform: rotate(27.66deg);
  background-size: contain;
}
@media (max-width: 650px) {
  .bys-free-webinar-step .bys-dashboard-wrapper .main-wrapper .step-image-wrapper:after {
    width: 72px;
    height: 72px;
    right: -18px;
    top: -3px;
  }
}

.bys-free-webinar-step .header {
  position: relative;
  z-index: 101;
}

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

.bys-webinar-landing {
  background: url("../../ab_tests/ab_test_50/img/webinar-landing/bg.jpg") no-repeat 50% 0;
  background-size: 100%;
  min-height: 100vh;
  padding-top: 100px;
  color: var(--black);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .bys-webinar-landing {
    background: url("../../ab_tests/ab_test_50/img/webinar-landing/webinar-landing-mobile.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
  }
}
.bys-webinar-landing .header {
  position: relative;
  z-index: 123;
}
@media (min-width: 1171px) {
  .bys-webinar-landing .container {
    max-width: 1140px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 768px) {
  .bys-webinar-landing .container {
    padding-top: 32px;
  }
}
@media (max-width: 768px) {
  .bys-webinar-landing {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .bys-webinar-landing .header {
    display: none;
  }
}
.bys-webinar-landing h1 {
  text-align: center;
  line-height: 1.7;
  font-size: 44px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .bys-webinar-landing h1 {
    font-size: 31px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .bys-webinar-landing h1 {
    font-size: 19px;
  }
}
.bys-webinar-landing h1 span {
  position: relative;
}
.bys-webinar-landing h1 span::after {
  background: var(--lemon);
  content: "";
  display: block;
  width: calc(100% + 23px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -14px;
  z-index: -1;
  transform: rotate(-2deg);
}
@media (max-width: 768px) {
  .bys-webinar-landing h1 span::after {
    width: calc(100% + 10px);
    left: -6px;
  }
}
.bys-webinar-landing .webinar-timer {
  margin-top: 20px;
  display: flex;
  -moz-column-gap: 17px;
       column-gap: 17px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .webinar-timer {
    margin-top: 24px;
  }
}
.bys-webinar-landing .webinar-timer .expiring-text {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 375px) {
  .bys-webinar-landing .webinar-timer .expiring-text {
    font-size: 20px;
  }
}
.bys-webinar-landing .webinar-timer .timer-text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--white);
  padding: 7px 13px;
  border-radius: 6px;
  background: #ff0000;
  width: 68px;
  text-align: center;
}
.bys-webinar-landing .content-wrapper-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner {
    margin-top: 24px;
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.bys-webinar-landing .content-wrapper-inner .icons-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  width: calc(50% - 5px);
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .icons-list {
    gap: 16px;
    width: 100%;
  }
}
.bys-webinar-landing .content-wrapper-inner .icons-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 9px;
  padding: 33px 16px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.14), 0 4px 30px rgba(0, 0, 0, 0.06);
  width: calc(50% - 12px);
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .icons-list li {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .bys-webinar-landing .content-wrapper-inner .icons-list li {
    width: 100%;
    padding: 20px 16px;
  }
}
.bys-webinar-landing .content-wrapper-inner .icons-list li p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .icons-list li p {
    font-size: 12px;
  }
  .bys-webinar-landing .content-wrapper-inner .icons-list li p br {
    display: none;
  }
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner {
    width: 100%;
  }
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner {
  max-width: 432px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  background-color: var(--white);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner {
    font-size: 16px;
  }
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .webinar-banner-header {
  padding: 12px 2px;
  background: var(--teal-60);
  color: var(--white);
  text-transform: uppercase;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .webinar-banner-header {
    padding: 10px 2px;
  }
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .webinar-banner-header::after {
  content: "";
  position: absolute;
  width: 102px;
  height: 102px;
  background: url("../../ab_tests/ab_test_50/img/webinar-landing/sale.svg");
  top: -36px;
  right: -52px;
  transform: rotate(-12deg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .webinar-banner-header::after {
    width: 83px;
    height: 83px;
    top: -20px;
    right: -19px;
  }
}
@media (max-width: 378px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .webinar-banner-header::after {
    width: 70px;
    height: 70px;
  }
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .prices {
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .prices {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .prices p {
  line-height: 1.9;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .prices p {
    font-size: 20px;
  }
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .prices p:first-child span {
  text-decoration: line-through;
  color: #ff0000;
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .webinar-banner-inner .prices p:last-child span {
  color: #00b85f;
}
.bys-webinar-landing .content-wrapper-inner .webinar-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(--white);
  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(--pink-70);
  margin-top: 24px;
  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-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit:hover, .bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit:focus {
  background-color: var(--pink-80);
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit.disabled, .bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit:disabled {
  background-color: var(--pink-20);
  pointer-events: none;
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit svg {
  transition: 0.2s linear;
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit:hover svg {
  transform: translateX(5px);
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit .svg-loading svg {
  transform: none !important;
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit.in-process {
  color: transparent !important;
  pointer-events: none;
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit.in-process svg {
  opacity: 0;
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit.in-process .svg-loading {
  opacity: 1;
}
.bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit.in-process .svg-loading svg {
  opacity: 1;
}
@media (max-width: 1024px) {
  .bys-webinar-landing .content-wrapper-inner .webinar-banner .offer-submit {
    margin-top: 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;
}

.webinar-ticker {
  margin-top: 100px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .webinar-ticker {
    margin-top: 24px;
  }
}
.webinar-ticker h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: var(--teal-60);
  font-family: "Rubik", sans-serif;
}
@media (max-width: 1024px) {
  .webinar-ticker h3 {
    font-size: 16px;
  }
}
.webinar-ticker .ticker-container {
  display: flex;
  position: relative;
  justify-content: center;
}
.webinar-ticker .ticker-container .ticker-wrapper {
  display: flex;
  overflow: scroll;
}
.webinar-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;
}
.webinar-ticker .ticker-container .ticker-item img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--black);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.webinar-ticker .ticker-container .ticker-item p {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.webinar-ticker .ticker-container .ticker-item p.subscribers {
  color: #9999a9;
}
.webinar-ticker .ticker-container .ticker-item p.nickname {
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.webinar-ticker .ticker-container .ticker-item p.nickname::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 12px;
  height: 12px;
  background-size: contain;
  background: url("../../ab_tests/ab_test_50/img/webinar-landing/verified-star-blue.svg") no-repeat center center;
}

body .failed-payment-webinar .modal-content {
  padding: 20px 40px 40px 40px;
}
@media (max-width: 767px) {
  body .failed-payment-webinar .modal-content {
    padding: 20px 24px 24px 24px;
  }
}

body .failed-payment-webinar .modal-content .modal-body {
  margin-top: -8px;
}
@media (max-width: 767px) {
  body .failed-payment-webinar .modal-content .modal-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
  }
  body .failed-payment-webinar .modal-content .modal-body svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  body .failed-payment-webinar .modal-content .modal-body {
    margin-top: -22px;
  }
  body .failed-payment-webinar .modal-content .modal-body .modal-content {
    padding-top: 20px;
  }
  body .failed-payment-webinar .modal-content .modal-body .tooltip-banner {
    margin-top: 24px;
  }
}

.webinar-modal {
  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;
  z-index: 100;
}
.webinar-modal .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 213, 213, 0.3);
  -webkit-backdrop-filter: blur(14px) opacity(0);
          backdrop-filter: blur(14px) opacity(0);
  transition: 0.3s;
}
.webinar-modal .modal-content {
  margin: 0 auto;
  z-index: 123;
  position: relative;
  max-width: 580px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  background: var(--white);
  height: auto;
  border-radius: 20px;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.0784313725);
}
@media (max-width: 590px) {
  .webinar-modal .modal-content {
    max-width: 95%;
  }
}
.webinar-modal .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.webinar-modal .modal-content .modal-body h3 {
  color: var(--black);
  font-style: normal;
  font-size: 36px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .webinar-modal .modal-content .modal-body h3 {
    font-size: 28px;
  }
}
.webinar-modal .modal-content .modal-body p {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.webinar-modal .modal-content .modal-header {
  z-index: 12;
  position: relative;
}
.webinar-modal .modal-content .modal-header:hover {
  cursor: pointer;
}
.webinar-modal .pink-button {
  margin-top: 28px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--white);
  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(--pink-70);
  width: 100%;
}
.webinar-modal .pink-button:hover, .webinar-modal .pink-button:focus {
  background-color: var(--pink-80);
}
.webinar-modal .pink-button:active {
  background-color: var(--pink-80);
  border: 2px solid var(--pink-20);
}
.webinar-modal .pink-button.disabled, .webinar-modal .pink-button:disabled {
  background-color: var(--pink-20);
  pointer-events: none;
}
.webinar-modal .pink-button svg {
  transition: 0.2s linear;
}
.webinar-modal .pink-button:hover svg {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .webinar-modal .pink-button {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 24px;
    padding: 8px 5px;
    border-radius: 6px;
  }
}
.webinar-modal .modal-content {
  padding: 40px;
}
@media (max-width: 768px) {
  .webinar-modal .modal-content {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .webinar-modal .modal-content .modal-body p {
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
  }
}
.webinar-modal .modal-content .modal-body .tooltip-banner {
  padding: 16px 20px;
  border-radius: 12px;
  background: #fef6e1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.webinar-modal .modal-content .modal-body .tooltip-banner p {
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .webinar-modal .modal-content .modal-body .tooltip-banner p {
    line-height: 140%;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .webinar-modal .modal-content .modal-body h1 {
    line-height: 140%;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }
}

.success-register-webinar .success-icon {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .success-register-webinar .success-icon {
    width: 70px;
    height: 70px;
  }
}

.skip-payment-webinar h4,
.success-register-webinar h4 {
  line-height: 1.4;
  font-weight: 700;
  font-size: 24px;
  margin-top: 28px;
  margin-bottom: 28px;
  text-align: center;
}
@media (max-width: 768px) {
  .skip-payment-webinar h4,
  .success-register-webinar h4 {
    line-height: 140%;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .skip-payment-webinar .modal-content .modal-body {
    width: 100%;
  }
}
.skip-payment-webinar .modal-content .modal-body h4 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .skip-payment-webinar .modal-content .modal-body h4 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .skip-payment-webinar .modal-content .modal-body p {
    line-height: 140%;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
  }
  .skip-payment-webinar .modal-content .modal-body p br {
    display: none;
  }
}
.skip-payment-webinar .modal-content .modal-body p span {
  color: var(--pink-70);
}
.skip-payment-webinar .modal-content .modal-body .gray-button {
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .skip-payment-webinar .modal-content .modal-body .gray-button {
    line-height: 140%;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
  }
}
.skip-payment-webinar .claim-offer {
  position: relative;
}
.skip-payment-webinar .claim-offer .svg-loading {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.skip-payment-webinar .claim-offer .svg-loading svg {
  transform: none !important;
}
.skip-payment-webinar .claim-offer.in-process {
  color: transparent !important;
  pointer-events: none;
}
.skip-payment-webinar .claim-offer.in-process svg {
  opacity: 0;
}
.skip-payment-webinar .claim-offer.in-process .svg-loading {
  opacity: 1;
}
.skip-payment-webinar .claim-offer.in-process .svg-loading svg {
  opacity: 1;
}

.webinar-modal.show {
  visibility: visible;
  opacity: 1;
}

.bys-webinar-extra {
  background: none;
}
.bys-webinar-extra .content-wrapper {
  text-align: center;
}
.bys-webinar-extra .container {
  max-width: 1034px;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.bys-webinar-extra .countdown-text,
.bys-webinar-extra .warning-text {
  color: #FF0000;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.bys-webinar-extra .main-heading {
  font-weight: 700;
  font-size: 58px;
  line-height: 1.2;
  color: var(--black);
}
.bys-webinar-extra .secondary-heading {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: var(--black);
}
.bys-webinar-extra .cta-button {
  padding: 22px 118px;
  border: none;
  outline: none;
  background-color: #CACACA;
  box-shadow: 0 4px 0 0 #A6A6A6;
  color: var(--white);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  border-radius: 20px;
}
.bys-webinar-extra .webinar-ticker {
  margin-top: 120px;
}
.bys-webinar-extra .webinar-ticker h3 {
  font-family: "Poppins";
  font-size: 28px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 36px;
}
.bys-webinar-extra .webinar-ticker .ticker-container .ticker-item {
  font-family: "Poppins";
  padding-bottom: 8px;
}
.bys-webinar-extra .webinar-ticker .ticker-container .ticker-wrapper {
  overflow-y: visible;
}
.bys-webinar-extra .webinar-ticker .ticker-container .ticker-item p.subscribers {
  color: var(--grey-60);
}
.bys-webinar-extra .webinar-ticker .ticker-container .ticker-item p.nickname::after {
  background: url("../../ab_tests/ab_test_50/img/webinar-extra/verified-star-blue.svg") no-repeat center center;
}
.bys-webinar-extra .webinar-ticker .ticker-container .ticker-item img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1215686275));
  border-color: #FFFFFF;
}
.bys-webinar-extra .central-logo {
  margin-inline: auto;
  padding-bottom: 40px;
  padding-top: 29px;
  display: block;
}
.bys-webinar-extra .webinar-ticker h3 {
  text-transform: initial;
}

.bys-webinar-upcoming .content-wrapper-upcoming-webinar .countdown-text,
.bys-webinar-upcoming .content-wrapper-upcoming-webinar .main-heading {
  margin-bottom: 16px;
}
.bys-webinar-upcoming .content-wrapper-upcoming-webinar .secondary-heading,
.bys-webinar-upcoming .content-wrapper-upcoming-webinar .cta-button {
  margin-bottom: 36px;
}
.bys-webinar-upcoming .content-wrapper-upcoming-webinar .secondary-heading {
  white-space: nowrap;
}
@media (max-width: 1121px) {
  .bys-webinar-upcoming .content-wrapper-upcoming-webinar .secondary-heading {
    white-space: normal;
  }
}
.bys-webinar-upcoming .container-wrapper {
  background: url("../../ab_tests/ab_test_50/img/webinar-extra/bg.jpg") no-repeat;
  background-size: 100% 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-group:before,
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-group:after {
  display: none !important;
}
.bys-webinar-upcoming .flipdown .rotor-group:last-child {
  display: none;
}
.bys-webinar-upcoming .flipdown .rotor-group {
  padding-right: 24px;
}
.bys-webinar-upcoming .flipdown {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 28px;
}
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-top,
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-leaf-front {
  background-color: var(--teal-70);
  border-radius: 10px;
}
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-bottom,
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-leaf-rear {
  background-color: var(--teal-60);
  border-radius: 10px;
}
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor {
  background-color: transparent;
}
.bys-webinar-upcoming .flipdown .rotor:after {
  display: none;
}
.bys-webinar-upcoming .flipdown .rotor-top,
.bys-webinar-upcoming .flipdown .rotor-bottom {
  width: 111px;
  height: 60px;
  font-size: 78px;
}
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-bottom,
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-leaf-rear {
  color: var(--white);
}
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-bottom {
  box-shadow: 0 4px 0 0 var(--teal-80);
}
.bys-webinar-upcoming .flipdown .rotor-leaf {
  width: 111px;
  height: 120px;
  font-size: 78px;
}
.bys-webinar-upcoming .flipdown .rotor-leaf-front,
.bys-webinar-upcoming .flipdown .rotor-leaf-rear {
  width: 111px;
  height: 60px;
}
.bys-webinar-upcoming .flipdown .rotor-leaf-front {
  line-height: 120px;
}
.bys-webinar-upcoming .flipdown .rotor {
  width: 111px;
  height: 120px;
}
.bys-webinar-upcoming .flipdown {
  width: auto;
  height: auto;
}
.bys-webinar-upcoming .flipdown .rotor-group-heading:before {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 44px;
  font-family: "Poppins";
  font-weight: 700;
}
.bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor {
  font-family: "Anton";
  font-weight: 400;
}
.bys-webinar-upcoming .flipdown .rotor-group:last-child {
  padding-right: 0;
}
.bys-webinar-upcoming .countdown-text {
  margin-top: 64px;
}
.bys-webinar-upcoming .flipdown .rotor-top {
  line-height: 120px;
}
@media (max-width: 768px) {
  .bys-webinar-upcoming .countdown-text {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .bys-webinar-upcoming .countdown-text br {
    display: none;
  }
  .bys-webinar-upcoming .main-heading {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .bys-webinar-upcoming .secondary-heading {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .bys-webinar-upcoming .cta-button {
    font-size: 24px;
    padding: 20px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .bys-webinar-upcoming .cta-button br {
    display: none;
  }
  .bys-webinar-upcoming .warning-text {
    font-size: 20px;
  }
  .bys-webinar-upcoming .webinar-ticker {
    margin-top: 60px;
  }
  .bys-webinar-upcoming .webinar-ticker h3 {
    font-size: 20px;
    line-height: 1.2;
    padding-left: 25px;
    padding-right: 25px;
  }
  .bys-webinar-upcoming .container-wrapper {
    background: url("../../ab_tests/ab_test_50/img/webinar-extra/bg-mobile.jpg") no-repeat;
    background-size: 100% 48%;
  }
  .bys-webinar-upcoming .flipdown .rotor-group {
    padding-right: 15px;
  }
  .bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-top,
  .bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-leaf-front {
    border-radius: 6px;
  }
  .bys-webinar-upcoming .flipdown .rotor-top {
    line-height: 78px;
  }
  .bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-bottom {
    box-shadow: 0 3px 0 0 var(--teal-80);
  }
  .bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-bottom,
  .bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor-leaf-rear {
    border-radius: 6px;
  }
  .bys-webinar-upcoming .flipdown .rotor-top,
  .bys-webinar-upcoming .flipdown .rotor-bottom {
    width: 72px;
    height: 39px;
    font-size: 50px;
  }
  .bys-webinar-upcoming .flipdown .rotor-leaf {
    width: 72px;
    height: 78px;
    font-size: 50px;
  }
  .bys-webinar-upcoming .flipdown .rotor-leaf-front,
  .bys-webinar-upcoming .flipdown .rotor-leaf-rear {
    width: 72px;
    height: 39px;
  }
  .bys-webinar-upcoming .flipdown .rotor-leaf-front {
    line-height: 78px;
  }
  .bys-webinar-upcoming .flipdown .rotor {
    width: 72px;
    height: 78px;
  }
  .bys-webinar-upcoming .flipdown.flipdown__theme-dark .rotor {
    font-family: "Anton";
    font-weight: 400;
  }
  .bys-webinar-upcoming .flipdown .rotor-group:last-child {
    padding-right: 0;
  }
  .bys-webinar-upcoming .flipdown .rotor-group-heading:before {
    font-size: 13px;
    line-height: 28px;
  }
  .bys-webinar-upcoming .countdown-text {
    margin-top: 47px;
  }
}

.bys-webinar-extra-footer {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 18px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .bys-webinar-extra-footer {
    margin-top: 60px;
    margin-bottom: 47px;
  }
}
.bys-webinar-extra-footer .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.bys-webinar-extra-footer .footer-menu a {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.3s;
}
.bys-webinar-extra-footer .footer-menu a:hover {
  color: var(--teal-80);
}
.bys-webinar-extra-footer .footer-menu .copyright-text {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}

.bys-webinar-live .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.bys-webinar-live .central-logo {
  padding-top: 82px;
  padding-bottom: 51px;
}
.bys-webinar-live .container-wrapper {
  background: url("../../ab_tests/ab_test_50/img/webinar-extra/bg.jpg") no-repeat;
  background-size: 100% 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.bys-webinar-live .live-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.bys-webinar-live .live-text-wrapper h2 {
  font-weight: 800;
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FF0000;
}
.bys-webinar-live .cta-text {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.bys-webinar-live .main-heading {
  font-size: 50px;
  margin-bottom: 40px;
}
.bys-webinar-live .warning-text {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 40px;
  white-space: nowrap;
}
.bys-webinar-live .cta-button {
  box-shadow: 0 4px 0 0 #D0004F;
  background: #FF0061;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  text-decoration: none;
  transition: 0.3s all;
}
.bys-webinar-live .cta-button:hover {
  background: #e20056;
}
.bys-webinar-live .rec-component {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.08), 0px 0px 1px rgba(0, 0, 0, 0.25);
  border-radius: 60px;
  background: var(--white);
}
.bys-webinar-live .rec-component p {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
}
.bys-webinar-live .rec-component .dot {
  width: 12px;
  height: 12px;
  background: #FF0000;
  filter: drop-shadow(0 0 13px #FF0000);
  border-radius: 50%;
}
@media (max-width: 1000px) {
  .bys-webinar-live .warning-text {
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .bys-webinar-live .central-logo {
    padding-top: 29px;
    padding-bottom: 48px;
  }
  .bys-webinar-live .live-text-wrapper {
    margin-bottom: 28px;
  }
  .bys-webinar-live .live-text-wrapper h2 {
    font-size: 28px;
  }
  .bys-webinar-live .cta-text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 28px;
  }
  .bys-webinar-live .main-heading {
    margin-bottom: 8px;
  }
  .bys-webinar-live .warning-text {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 26px;
  }
  .bys-webinar-live .cta-button {
    padding: 19px 32px;
    font-size: 24px;
    line-height: 30px;
    max-width: 100%;
  }
  .bys-webinar-live .cta-button br {
    display: none;
  }
  .bys-webinar-live .rec-component {
    padding: 4px 12px;
    gap: 4px;
  }
  .bys-webinar-live .rec-component .dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 13px 0 #FF0000;
  }
  .bys-webinar-live .rec-component p {
    font-size: 18px;
  }
  .bys-webinar-live .main-heading {
    font-size: 28px;
  }
  .bys-webinar-live .webinar-ticker {
    margin-top: 60px;
  }
  .bys-webinar-live .webinar-ticker h3 {
    font-size: 20px;
    line-height: 1.2;
    padding-left: 12px;
    padding-right: 12px;
  }
  .bys-webinar-live .container-wrapper {
    background: url("../../ab_tests/ab_test_50/img/webinar-extra/bg-mobile.jpg") no-repeat;
    background-size: 100% 48%;
  }
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.bys-vwo-test-52-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
}
.bys-vwo-test-52-loader .loader {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

.bys-vwo-test-52-variation-b .bl-1 {
  min-height: 100vh;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 {
  padding: 100px 82px 56px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .logo-content {
  display: none;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content {
  max-width: 100%;
  width: 438px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .content-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-bottom: 40px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .title-subtitle h2 {
  font-family: Poppins;
  font-size: 43px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 68.8px */
  margin-bottom: 0;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .title-subtitle p {
  color: var(--teal-70);
  font-family: Poppins;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 230%; /* 46px */
  margin-bottom: 32px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 82px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black, #000);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  background: transparent;
  margin: 0;
  padding: 0;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content ul li img {
  width: 14px;
  height: auto;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes {
  --swiper-pagination-color: var(--teal-60);
  --swiper-pagination-bullet-inactive-color: var(--teal-10);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  padding-bottom: 52px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid #34A853;
  background: #FFF;
  max-width: none;
  height: auto;
  justify-content: space-between;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote .title h4 {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote .content p {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote .author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote .author .bio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote .author .bio img {
  height: auto;
  margin-bottom: 0;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  background: lightgray 50%/cover no-repeat, #D9D9D9;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote .author .bio p {
  color: var(--teal-70);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .quote .author .rate img {
  margin-bottom: 0;
  width: 68px;
  height: auto;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 {
  padding-top: 100px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 h4 {
  color: var(--black);
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 33.6px */
  margin-bottom: 16px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 .description {
  color: var(--grey-60);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 32px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 #bys-registration .google-login {
  margin-bottom: 40px;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 #bys-registration .register-divider {
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 #bys-registration .register-divider span {
  flex-grow: 1;
  position: relative;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 #bys-registration .register-divider span::before {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--grey-60);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.bys-vwo-test-52-variation-b .bl-1 .block-2 #bys-registration .stores-info {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 16px;
}

.bys-vwo-test-52-variation-c .bl-1 {
  min-height: 100vh;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 {
  padding: 100px 46px 56px;
  width: 52.5%;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .logo-content {
  display: none;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content {
  width: 590px;
  max-width: 100%;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .content-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 40px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .title-subtitle h2 {
  color: var(--black);
  font-family: Poppins;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 86.4px */
  margin-bottom: 16px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .title-subtitle p {
  color: var(--black);
  font-family: Poppins;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 230%; /* 46px */
  margin-bottom: 63px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes {
  --swiper-pagination-color: var(--teal-60);
  --swiper-pagination-bullet-inactive-color: var(--teal-10);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  max-width: 556px;
  padding-bottom: 52px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  background: #FFF;
  max-width: none;
  height: auto;
  justify-content: space-between;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote .title h4 {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote .content p {
  color: var(--black);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote .author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote .author .bio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote .author .bio img {
  height: auto;
  margin-bottom: 0;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  background: lightgray 50%/cover no-repeat, #D9D9D9;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote .author .bio p {
  color: var(--teal-70);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .quote .author .rate img {
  margin-bottom: 0;
  width: 68px;
  height: auto;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 {
  padding-top: 100px;
  width: 47.5%;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 h3 {
  font-size: 24px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 h4 {
  color: var(--black);
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 33.6px */
  margin-bottom: 16px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 .description {
  color: var(--grey-60);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 32px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 #bys-registration .google-login {
  margin-bottom: 40px;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 #bys-registration .register-divider {
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 #bys-registration .register-divider span {
  flex-grow: 1;
  position: relative;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 #bys-registration .register-divider span::before {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--grey-60);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.bys-vwo-test-52-variation-c .bl-1 .block-2 #bys-registration .stores-info {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 16px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 940px) {
  .bys-vwo-test-52-variation-c .bl-1 .block-1 {
    width: 100%;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-2 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .bys-vwo-test-52-variation-b .bl-1 .block-1 {
    padding: 43px 16px 20px;
  }
  .bys-vwo-test-52-variation-b .bl-1 .block-1 .logo-content {
    display: block;
  }
  .bys-vwo-test-52-variation-b .bl-1 .block-1 .content .content-logo {
    margin-bottom: 32px;
  }
  .bys-vwo-test-52-variation-b .bl-1 .block-1 .content .title-subtitle h2 {
    color: #222;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 56px */
    text-align: left;
  }
  .bys-vwo-test-52-variation-b .bl-1 .block-1 .content .title-subtitle p {
    color: var(--teal-teal-70, #008A6E);
    font-family: Poppins;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 230%; /* 41.4px */
    margin-bottom: 28px;
  }
  .bys-vwo-test-52-variation-b .bl-1 .block-1 .content ul {
    margin-bottom: 32px;
  }
  .bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes {
    padding-bottom: 23px;
  }
  .bys-vwo-test-52-variation-b .bl-1 .block-1 .content .quotes .swiper-pagination {
    display: none;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 {
    padding: 43px 16px 20px;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 .logo-content {
    display: block;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 .content .content-logo {
    margin-bottom: 32px;
    margin-left: 0;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 .content .title-subtitle h2 {
    color: #222;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 56px */
    text-align: left;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 .content .title-subtitle p {
    color: var(--chrome-black, #000);
    font-family: Poppins;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 230%; /* 32.2px */
    margin-bottom: 32px;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 .content ul {
    margin-bottom: 32px;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes {
    padding-bottom: 23px;
  }
  .bys-vwo-test-52-variation-c .bl-1 .block-1 .content .quotes .swiper-pagination {
    display: none;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
@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;
  }
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step {
  padding-top: 40px;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper {
  padding: 24px;
  transition: 0.3s all;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-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(--white);
  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(--teal-60);
  margin-bottom: 16px;
  height: 50px;
  background: var(--email-link-color, var(--black));
  width: 100%;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button:hover, .bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button:focus {
  background-color: var(--teal-50);
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button:active {
  background-color: var(--teal-70);
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button.disabled, .bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button:disabled {
  background-color: var(--grey-80);
  color: var(--grey-60);
  border: 1px solid var(--grey-60);
  background: var(--white);
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button svg {
  transition: 0.2s linear;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button:hover svg {
  transform: translateX(5px);
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .email-link-button.external {
  gap: 8px;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .banner {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  border-radius: 8px;
  padding: 16px;
  background-image: url(../../ab_tests/ab_test_64/img/bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  list-style-type: none;
  margin-top: 16px;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .banner .banner-item {
  color: var(--black);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 0 !important;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .main-wrapper-content .banner .banner-item strong {
  color: var(--teal-70);
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .gray {
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  display: block;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper .step-title {
  padding: 0;
  background: none;
  font-size: 20px;
  margin-bottom: 16px;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .success-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px auto;
  display: block;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .step-title {
  text-align: center;
  margin-bottom: 14px;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .main-wrapper-content .banner {
  padding: 16px 11px 16px 16px;
  margin-top: 14px;
  margin-bottom: 24px;
  background-image: url(../../ab_tests/ab_test_64/img/success-bg.png);
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .main-wrapper-content .banner .banner-item {
  text-align: center;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .btn-wrapper .description {
  color: var(--grey-60);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .btn-wrapper .resend-link {
  color: var(--pink-70);
  line-height: 140%;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  background: none;
  outline: none;
  border: none;
  pointer-events: none;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .main-wrapper.success-main-wrapper .btn-wrapper .resend-link.active {
  pointer-events: auto;
  cursor: pointer;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .success-main-wrapper {
  display: none;
  opacity: 0;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .wrapper-hidden {
  opacity: 0;
}
.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step .wrapper-shown {
  opacity: 1;
}

.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step:has(.wrapper-hidden) {
  padding: 0;
  height: calc(100vh - 53px);
  align-items: center;
  justify-content: center;
  display: flex;
}

.bys-dashboard .bys-dashboard-wrapper.bys-mobile-only-step-a .main-wrapper:not(.success-main-wrapper) .step-title {
  padding-left: 40px;
  background: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='14' cy='14' r='14' fill='%235CE099'/%3E%3Cpath d='M19.0264 10.5449L12.1161 17.4551L8.9751 14.3141' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat 0 50%;
}