<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Jiotype";
  src: url("../fonts/jiotype/JioType-Light.ttf") format(opentype);
  font-weight: 100;
}
@font-face {
  font-family: "Jiotype";
  src: url("../fonts/jiotype/JioTypeW04-Medium.ttf") format(opentype);
  font-weight: 300;
}
@font-face {
  font-family: "Jiotype";
  src: url("../fonts/jiotype/JioTypeW04-Bold.ttf") format(opentype);
  font-weight: 400;
}
@font-face {
  font-family: "Jiotype";
  src: url("../fonts/jiotype/JioTypeW04-Black.ttf") format(opentype);
  font-weight: 700;
}
@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/SegoeUI-VF.ttf") format(opentype);
}
@font-face {
  font-family: "Museo Sans";
  src: url("../fonts/museo-sans/museosans-300.woff") format(woff);
  font-weight: 300;
}
@font-face {
  font-family: "Museo Sans";
  src: url("../fonts/museo-sans/museosans-500.woff") format(woff);
  font-weight: 500;
}
@font-face {
  font-family: "Museo Sans";
  src: url("../fonts/museo-sans/museosans-700.woff") format(woff);
  font-weight: 700;
}
@font-face {
  font-family: "Museo Sans";
  src: url("../fonts/museo-sans/museosans-900.woff") format(woff);
  font-weight: 900;
}
.a-header-search {
  background-color: #F2F2F2;
  height: 40px;
  padding: 0 8px;
  border-radius: 1000px;
}
.a-header-search .form-control {
  background-color: transparent;
  border: none;
}

button {
  background: none;
  border: none;
}

.icon-button {
  background-color: #F5F6FA;
  padding: 4px;
  border-radius: 1000px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

* {
  font-family: "Museo Sans", "Tahoma", "Geneva", "Verdana", "sans-serif";
}

ul,
li {
  list-style: none;
  padding-left: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.page-content {
  margin-top: 56px;
}

.bg-live {
  background-color: #ff0004;
}

.primary-btn {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  background-color: #6D17CE;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
}
.primary-btn:hover {
  background-color: hsl(268, 80%, 60%);
}

.text-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #000093;
  padding: 0;
  text-decoration: none;
}
.text-link:hover {
  color: hsl(268, 80%, 60%);
}

.img-block {
  width: 100%;
  height: 100%;
}

.form-floating &gt; .form-control, .form-floating &gt; .form-control-plaintext {
  padding: 0.65rem 0;
  border: transparent;
  border-bottom: 1px solid black;
  border-radius: 0;
}
.form-floating &gt; .form-control:hover, .form-floating &gt; .form-control-plaintext:hover {
  border-color: hsl(268, 80%, 60%);
}
.form-floating &gt; .form-control:focus, .form-floating &gt; .form-control-plaintext:focus {
  outline: 0;
  border-width: 2px;
  border-color: hsl(268, 80%, 60%);
  box-shadow: none;
}
.form-floating &gt; label {
  padding: 1.2rem 0;
}

.form-floating &gt; .form-control:not(:-moz-placeholder-shown) ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.6rem) translateX(-0.1rem);
}

.form-floating &gt; .form-control-plaintext ~ label,
.form-floating &gt; .form-control:focus ~ label,
.form-floating &gt; .form-control:not(:placeholder-shown) ~ label,
.form-floating &gt; .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-1rem) translateX(-0.1rem);
}

.form-check-input:checked {
  background-color: #6D17CE;
  border-color: #6D17CE;
}

.otp-input {
  display: flex;
  align-items: center;
  margin: 0 -8px;
}
.otp-input .form-floating {
  margin: 0 8px;
}
.otp-input .form-floating input {
  text-align: center;
}

.timer {
  --progress-value: 02;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #595959;
}
.timer .timer-progress-bar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #6D17CE;
  background: radial-gradient(closest-side, white 0%, transparent 0% 100%, white 0), conic-gradient(#6D17CE calc(var(--progress-value) * 1%), #ffffff 0);
  animation: css-progress 2s 1 forwards;
}
@keyframes css-progress {
  to {
    --progress-value: 25;
  }
}

#pre-load {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  background: #F0E8FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.hr-layout ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #eee;
}
html.hr-layout ::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
html.hr-layout ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  box-shadow: inset 0 0 3px 0px rgba(0, 0, 0, 0.25), inset 0 0 10px 2px white;
  background: #fff;
}

.hr-layout {
  font-family: "Museo Sans", "Tahoma", "Geneva", "Verdana", "sans-serif";
  background: linear-gradient(141deg, #f0e8fa 0%, #fff0f6 100%);
  color: #080809;
}
.hr-layout .r-container {
  width: 100%;
  max-width: 1500px;
  background: #F5F6F7;
  margin: 0 auto;
  margin-top: 75px;
  padding: 0;
}
.hr-layout h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  color: #080809;
  margin: 0;
}
.hr-layout .btn {
  border: 1px solid #d0d3d7;
  border-radius: 8px;
}
.hr-layout .primary-btn {
  border-radius: 6px;
  padding: 8px;
  height: 36px;
}
.hr-layout .price_range_container {
  padding-top: 8px;
  width: 100%;
  margin: 20px auto 0;
  position: relative;
}
.hr-layout .price_slider {
  position: relative;
  width: 100%;
  height: 10px;
  background: #ddd;
  border-radius: 5px;
}
.hr-layout .price_range_track {
  position: absolute;
  height: 100%;
  background: #2B67F6;
  border-radius: 5px;
}
.hr-layout input[type=range] {
  position: absolute;
  width: 100%;
  height: 10px;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
}
.hr-layout input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2B67F6;
  border: 3px solid #fff;
  cursor: pointer;
}
.hr-layout .price_min_value,
.hr-layout .price_max_value {
  position: absolute;
  top: -30px;
  padding: 5px 0;
  border-radius: 5px;
  font-size: 12px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 600;
  font-size: 12px;
  line-height: 142%;
  color: #2b67f6;
}
.hr-layout .price_min_value {
  padding-left: 20px;
}
.hr-layout .price_max_value {
  padding-right: 20px;
}
.hr-layout .r-card {
  background-color: #ffffff;
  padding: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  height: 100%;
}
.hr-layout .dropdown {
  border: 1px solid #d0d3d7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px;
}
.hr-layout .dropdown span {
  font-weight: 400;
  font-size: 12px;
  line-height: 0.8;
  color: #606770;
  margin-top: 6px;
}
.hr-layout .dropdown .dropdown-toggle {
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hr-layout .dropdown .dropdown-toggle::after {
  top: 5px;
}
.hr-layout .header .navbar {
  background-color: #EFEAFC;
}
.hr-layout .header .nav-link {
  color: #909090;
}
.hr-layout .header .nav-link.active {
  background-color: #9175D1;
  border-radius: 8px;
}
.hr-layout .header .nav-link.active .icon {
  background-color: transparent;
}
.hr-layout .header .nav-link.active .title {
  color: white;
}
.hr-layout .header .dropdown {
  border: none;
  padding: initial;
}
.hr-layout .hr-text-input {
  border: 1px solid #d0d3d7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px;
}
.hr-layout .hr-text-input label {
  font-weight: 400;
  font-size: 12px;
  line-height: 0.8;
  color: #606770;
  margin-top: 6px;
}
.hr-layout .hr-text-input .form-control {
  border: none;
  padding: 0;
  width: 100%;
}
.hr-layout .dot-seperator {
  width: 3px;
  height: 3px;
  background-color: #080809;
  border-radius: 1000px;
  margin: 2px;
}
.hr-layout .comments-box-live ul li {
  margin-bottom: 8px;
}
.hr-layout .comments-box-live ul li .r-card {
  box-shadow: none;
}
.hr-layout .l-c-box {
  background-color: #fafafa;
  padding: 8px 16px;
  display: flex;
  align-items: center;
}
.hr-layout .l-c-box .l-c-avatar {
  width: 56px;
  height: 56px;
  margin-right: 16px;
  flex: 1 0 auto;
  border-radius: 1000px;
  overflow: hidden;
}
.hr-layout .l-c-box .l-c-avatar div {
  width: 100%;
  height: 100%;
}
.hr-layout .l-c-box .l-c-avatar div img {
  width: 100%;
  height: 100%;
}
.hr-layout .l-c-box .l-c-content {
  flex: 1 1 auto;
}
.hr-layout .l-c-box .l-c-content .title {
  font-weight: 400;
  font-size: 12px;
  color: #202020;
}
.hr-layout .l-c-box .l-c-content .l-comment {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.hr-layout .l-c-box .l-c-content .right div {
  font-weight: 400;
  font-size: 12px;
  color: #000;
}
.hr-layout .transcript-box li {
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.01em;
  color: #505b6a;
}
.hr-layout .transcript-box li .time {
  font-weight: 700;
}
.hr-layout .modal-header {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #080809;
}

.Hscroll-container {
  display: flex;
  align-items: center;
  position: relative;
}

.Hscroll-arrow {
  background-color: #ffffff;
  border: 2px solid #F5F5F5 !important;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 50%;
  visibility: hidden;
  position: absolute;
}
.Hscroll-arrow#Hleft-arrow {
  left: 0;
}
.Hscroll-arrow#Hright-arrow {
  right: 0;
}

.Hscrollable-list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar for IE 10+ */
  scroll-behavior: smooth;
  margin: 0 10px;
}

.Hscrollable-list::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

.Hscroll-item {
  margin: 0 5px;
  white-space: nowrap;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #F5F5F5;
  height: 56px;
}
.navbar .nav-link {
  display: flex;
  align-items: center;
}
.navbar .nav-link .icon {
  width: 24px;
  height: 24px;
}
.navbar .nav-link .icon .icon-box {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.navbar .nav-link .title {
  margin-left: 4px;
}
.navbar .nav-link.active .icon {
  background-color: #6D17CE;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.navbar .nav-link.active .title {
  color: #6D17CE;
  font-weight: 500;
}

.a-header-left {
  display: flex;
  align-items: center;
}
.a-header-left .navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-brand {
  margin: 0 8px;
}

.a-header-right {
  display: flex;
  align-items: center;
}
.a-header-right .user-menu-drop .dropdown-toggle .profile-picture-box {
  border-radius: 1000px;
  overflow: hidden;
}
.a-header-right .user-menu-drop .dropdown-toggle::after {
  position: absolute;
  background-color: #ffffff;
  border-radius: 1000px;
  display: none;
}

.bizruptors {
  background-image: url(../images/icons/bizruptors.svg);
}

.connect {
  background-image: url(../images/icons/connect.svg);
}

.exclusive {
  background-image: url(../images/icons/exclusive.svg);
}

.engage {
  background-image: url(../images/icons/engage.svg);
}

.grow {
  background-image: url(../images/icons/grow.svg);
}

.goals {
  background-image: url(../images/icons/goals.svg);
}

.nav-link.active .connect {
  background-image: url(../images/icons/connect-white.svg);
}
.nav-link.active .exclusive {
  background-image: url(../images/icons/exclusive-white.svg);
}
.nav-link.active .engage {
  background-image: url(../images/icons/engage-white.svg);
}
.nav-link.active .grow {
  background-image: url(../images/icons/grow-white.svg);
}
.nav-link.active .goals {
  background-image: url(../images/icons/goals-white.svg);
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 12px;
    padding-left: 12px;
  }
}
.dekstop-footer {
  background-color: #f0f6ff;
}

.dekstop-footer .footer-tab-wrapper {
  padding: 5rem 9rem;
}

@media (max-width: 991px) {
  .dekstop-footer .footer-tab-wrapper {
    padding: 1.5rem 0 4rem;
  }
}
.dekstop-footer .footer-tab-wrapper .links-block {
  margin: 0 1rem;
}

@media (max-width: 991px) {
  .dekstop-footer .footer-tab-wrapper .links-block {
    margin: 0;
    text-align: center;
    padding: 0 1rem;
    position: relative;
  }
  .dekstop-footer .footer-tab-wrapper .links-block:after {
    content: "";
    position: absolute;
    border-bottom: 1px solid #dcdcdd;
    left: 0;
    right: 0;
    width: 70%;
    margin: auto;
  }
  .dekstop-footer .footer-tab-wrapper .links-block:last-child:after {
    border-bottom: 0;
  }
}
.dekstop-footer .footer-tab-wrapper .links-block:first-child {
  margin-left: 0;
  margin-right: 0;
}

.dekstop-footer .footer-tab-wrapper .links-block:last-child {
  margin-right: 0;
}

.dekstop-footer .footer-tab-wrapper .links-block ul li {
  list-style-type: none;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 400;
}

.dekstop-footer .footer-tab-wrapper .links-block ul li a {
  text-decoration: none;
  color: #909090;
}

@media (max-width: 991px) {
  .dekstop-footer .footer-tab-wrapper .links-block ul {
    padding: 0.8rem !important;
  }
}
.dekstop-footer .footer-tab-wrapper .links-block.contact-us ul li {
  color: #505050;
}

.dekstop-footer .footer-tab-wrapper .links-block.contact-us ul li.text-bold {
  font-weight: 600;
}

.dekstop-footer .footer-tab-wrapper .links-block.contact-us ul li span.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

.dekstop-footer .footer-tab-wrapper .links-block.contact-us ul li a {
  color: #505050;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons {
  padding-top: 0.5rem;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li:last-child {
  padding-right: 0;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li span {
  background: url(/assets/images/icons/css_sprites_social.png);
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: bottom;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li span.footer-twitter-icon {
  background-position: -10px -10px;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li span.footer-fb-icon {
  background-position: -54px -10px;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li span.footer-instagram-icon {
  background-position: -98px -10px;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li span.footer-youtube-icon {
  background-position: -142px -10px;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li span.footer-linkedin-icon {
  background-position: -186px -10px;
}

.dekstop-footer .footer-tab-wrapper .links-block .social-media-icons ul li span.footer-pinterest-icon {
  background-position: -230px -10px;
}

.onboarding-page {
  width: 100vw;
  height: 100vh;
  background: #F0E8FA;
}
.onboarding-page .page-content {
  margin: 0;
  width: 100%;
  height: 100%;
}
.onboarding-page .page-content .container {
  height: 100%;
}
@media (max-width: 991.99px) {
  .onboarding-page .page-content .container {
    max-width: 100%;
  }
}
.onboarding-page .onb-col {
  height: 100%;
}
@media (max-width: 767.99px) {
  .onboarding-page .onb-col {
    height: auto;
  }
}

.onboarding-illustration-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 56px;
}
.onboarding-illustration-block .logo {
  width: auto;
  height: 64px;
}
.onboarding-illustration-block .logo img {
  height: 100%;
  width: auto;
}
.onboarding-illustration-block .tagline {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #000;
}
.onboarding-illustration-block .picture {
  height: 500px;
  width: auto;
  max-height: 70vh;
}
.onboarding-illustration-block .picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 767.99px) {
  .onboarding-illustration-block .picture {
    display: none;
  }
}
@media (max-width: 767.99px) {
  .onboarding-illustration-block {
    text-align: center;
  }
}

.onboarding-card-block {
  display: flex;
  height: 100%;
  align-items: center;
  width: 100%;
}
.onboarding-card-block .onboarding-card {
  width: 100%;
  border: 1px solid #F5F5F5;
  border-radius: 40px;
  padding: 48px 32px;
  background: #ffffff;
  max-width: 520px;
  margin: 0 auto;
}
.onboarding-card-block .onboarding-card .onboard-heading {
  font-weight: 900;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #000;
  margin: 16px auto;
}
.onboarding-card-block .onboarding-card .onboarding-support-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #191919;
  margin-bottom: 0;
}
    .onboarding-card-block .onboarding-card .onboarding-support-text span {
        font-weight: 400;
        color: #000000;
        word-break: break-word;
    }

.onboarding-stepper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.onboarding-stepper .step {
  display: flex;
  align-items: center;
  justify-content: center;
}
.onboarding-stepper .step span {
  width: 24px;
  height: 24px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  background-color: #F5F5F5;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.onboarding-stepper .step .line {
  height: 1px;
  width: 40px;
  flex: 1 0 auto;
  background-color: #F5F5F5;
}
.onboarding-stepper .step.active span {
  background-color: #6D17CE;
}
.onboarding-stepper .step.active .line {
  background-color: #6D17CE;
}

.or-divider {
  display: flex;
  align-items: center;
  width: 100%;
}
.or-divider div {
  height: 1px;
  flex: 1 0 auto;
  background: #D6D6D6;
}
.or-divider span {
  padding: 0 4px;
  font-weight: 300;
  font-size: 14px;
  color: #191919;
}

.social-media-options ul {
  display: flex;
  align-items: center;
  margin: 16px -8px 0;
  width: 100%;
  justify-content: center;
}
.social-media-options ul li {
  margin: 0 8px;
}
.social-media-options ul li button {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 1000px;
  border: 1px solid #F5F5F5;
}
.social-media-options ul li button .img-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media-options ul li button:hover {
  background-color: #F5F5F5;
}

.community-selection-block ul {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
}
.community-selection-block ul li {
  margin: 4px;
}
.community-selection-block .chip .btn-check + .btn {
  border: 1px solid #e9e7e7;
  border-radius: 1000px;
  color: #191919;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-selection-block .chip .btn-check + .btn .icon {
  width: 24px;
  height: 24px;
  background-image: url(/assets-v2/images/icons/ic-add.svg);
}
.community-selection-block .chip .btn-check:checked + .btn {
  border: 1px solid #6D17CE;
  color: #6D17CE;
  background-color: #F0E8FA;
}
.community-selection-block .chip .btn-check:checked + .btn .icon {
  background-image: url(/assets-v2/images/icons/ic-check-primary.svg);
}
.community-selection-block .chip .btn-check:disabled + .btn, .community-selection-block .chip .btn-check[disabled] + .btn {
  border: 1px solid #310a5d;
  color: #ffffff;
  background-color: #310a5d;
  opacity: 1;
}

.face-scan-donts-block ul {
  display: flex;
  justify-content: center;
}
.face-scan-donts-block ul .icon {
  margin-top: 4px;
}

.create-live-video-page .creation-container {
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.create-live-video-page .creation-container .collapse-side {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 16px;
  top: 20px;
}
.create-live-video-page .creation-container .collapse-side a {
  display: block;
  width: 100%;
  height: 100%;
}
.create-live-video-page .creation-container .collapse-side a .icon {
  width: 100%;
  height: 100%;
}
.create-live-video-page .creation-container .collapse-side a .icon div {
  width: 100%;
  height: 100%;
  background-image: url(/Build/assets/images/icons/r-qp.png);
  background-position: center;
  background-repeat: no-repeat;
}
.create-live-video-page .creation-container .collapse-side a.collapsed div {
  background-image: url(/Build/assets/images/icons/);
}
.create-live-video-page .creation-container .collapse-side:has(a.collapsed) {
  right: auto;
  left: 0;
}
.create-live-video-page .creation-container .header {
  padding: 16px;
}
.create-live-video-page .creation-container .header .icon {
  width: 32px;
  height: 32px;
}
.create-live-video-page .creation-container .form-content {
  padding: 16px;
}
.create-live-video-page .creation-container .form-content .progress-container {
  width: 100%;
}
.create-live-video-page .creation-container .form-content .progress-container .progress {
  height: 8px;
  background-color: #e7f3ff;
  border-radius: 16px;
  flex: 1 0 auto;
}
.create-live-video-page .creation-container .form-content .progress-container .progress .progress-bar {
  background-color: #9175D1;
}
.create-live-video-page .creation-container .form-content h5 {
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
  color: #080809;
  margin: 0;
}
.create-live-video-page .creation-container .form-content .user-box .subhead {
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: #080809;
}
.create-live-video-page .creation-container .form-content .tl-drop .dropdown-toggle {
  position: relative;
}
.create-live-video-page .creation-container .form-content .tl-drop .dropdown-toggle::after {
  position: absolute;
  top: 4px;
  right: 4px;
}
.create-live-video-page .creation-container .form-content .btn {
  display: flex;
  align-items: center;
  background: #e2e5e9;
  border: none;
}
.create-live-video-page .creation-container .form-content .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.create-live-video-page .creation-container .form-content .actions .primary-btn {
  display: flex;
  align-items: center;
  color: white;
  flex: 1 0 auto;
  justify-content: center;
  max-width: 210px;
}
.create-live-video-page .creation-controls {
  height: 100%;
}
.create-live-video-page .creation-controls h4 {
  font-weight: 600;
  font-size: 17px;
  line-height: 118%;
  color: #080809;
  margin: 0;
}
.create-live-video-page .creation-controls p {
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: #606770;
}
.create-live-video-page .creation-controls .camera-button {
  border-radius: 8px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border: 1px solid #9175d1;
  width: 100%;
  height: 91px;
  padding: 24px 80px;
  margin: 8px auto;
}
.create-live-video-page .creation-controls .r-ccontrol {
  flex: 1 0 auto;
}
.create-live-video-page .creation-controls .r-ccontrol .dropdown {
  width: 100%;
  background: #e2e5e9;
  border-radius: 6px;
  padding: 0 16px;
}
.create-live-video-page .creation-controls .r-ccontrol .dropdown .dropdown-toggle {
  width: 100%;
  height: 36px;
}
.create-live-video-page .creation-controls .r-ccontrol button {
  width: 100%;
  background: #e2e5e9;
  border-radius: 6px;
  padding: 8px 16px;
  height: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.create-live-video-page .creation-controls .video-pre-box img {
  width: 100%;
}
.create-live-video-page .creation-controls .video-pre-box .live-tag {
  position: absolute;
  top: 12px;
  left: 12px;
}
.create-live-video-page .creation-controls .btn {
  width: 100%;
}

.create-live-video-page.go-live-page .creation-controls h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  color: #080809;
}
.create-live-video-page.go-live-page .creation-controls .r-card {
  height: auto;
}

.recorded-live-page .post-content-card {
  height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
}
.recorded-live-page .vid-tags {
  position: absolute;
  top: 16px;
  left: 16px;
}
.recorded-live-page .vid-tags .person-tag {
  border-radius: 4px;
  padding: 2px 6px 3px 6px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}
.recorded-live-page .post-reactions-box {
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: #65686c;
}
.recorded-live-page .post-reactions-box .left .reaction-btns button {
  border: 1px solid white;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
  margin-right: -2px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
}
.recorded-live-page .post-reactions-box .left .reaction-btns button.heart-btn {
  z-index: 1;
}
.recorded-live-page .post-reactions-box .left .reaction-btns button.like-btn {
  z-index: 2;
}
.recorded-live-page .post-reactions-box .left .reaction-btns button div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.recorded-live-page .post-reactions-box .left .reaction-btns button div img {
  width: 100%;
  height: 100%;
}
.recorded-live-page .c-filter-btn {
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
  color: #080809;
  background: #e2e5e9;
  border-radius: 24px;
  padding: 8px 12px;
}
.recorded-live-page .c-filter-btn.active {
  background: #ebf5ff;
  color: #0064d1;
}
.recorded-live-page .comments-box-live {
  position: relative;
  overflow-y: auto;
}
.recorded-live-page .comments-box-live ul {
  background-color: #fafafa;
}
.recorded-live-page .comments-box-live ul .l-c-box {
  align-items: flex-start;
}
.recorded-live-page .comments-box-live ul .l-c-box .l-c-avatar {
  width: 32px;
  height: 32px;
}
.recorded-live-page .user-comment-field-box {
  background: #fff;
  border-top: 1px solid #dbdbdb;
  padding: 16px 16px 0;
  position: sticky;
  bottom: 0;
  z-index: 2;
}
.recorded-live-page .user-comment-field-box .l-c-box {
  padding: 8px 0;
  background-color: #fff;
  align-items: flex-start;
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-avatar {
  width: 40px;
  height: 40px;
  flex: 1 0 auto;
  margin-right: 0;
  align-self: flex-start;
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .comment {
  background: #fafafa;
  height: 100%;
  min-height: 70px;
  border-radius: 16px;
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .comment .form-control {
  border: none;
  background: transparent;
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .actions button {
  width: 40px;
  height: 40px;
  background: white;
  padding: 8px;
  border-radius: 1000px;
  border: 1px solid #F5F5F5;
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .actions button div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .actions button.like-btn div {
  background-image: url(../images/icons/like-icon.png);
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .actions button.like-btn.active div {
  background-image: url(../images/icons/liked-icon.svg);
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .actions button.share-btn div {
  background-image: url(../images/icons/share-icon.png);
}
.recorded-live-page .user-comment-field-box .l-c-box .l-c-content .actions button.share-btn.active div {
  background-image: url(../images/icons/share-filled.png);
}

.marketplace-page .r-container {
  max-width: 750px;
  margin: 0 auto;
  background-color: transparent !important;
}
.marketplace-page .r-container .page-header {
  font-weight: 900;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #1b0633;
  margin: 48px 0 32px;
}
.marketplace-page .r-container .page-header div {
  font-weight: 400;
  font-size: 13px;
  line-height: 123%;
  color: #65686c;
}
.marketplace-page .r-container .items-container {
  margin-bottom: 32px;
}

.marketplace-header {
  background-color: #ffffff;
  padding: 8px;
  height: 50px;
}
.marketplace-header .container {
  max-width: 750px;
  height: 100%;
}
.marketplace-header .container .a-header-search {
  background-color: rgba(50, 55, 85, 0.12);
}
.marketplace-header .container .a-header-search .icon {
  opacity: 0.6;
}
.marketplace-header .container .market-header-nav {
  margin-left: 16px;
  margin-bottom: 0;
}
.marketplace-header .container .market-header-nav .secondary-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.01em;
  color: #909090;
  text-decoration: none;
  background: rgba(50, 55, 85, 0.12);
  border-radius: 50px;
  padding: 8px;
}

.market-item-card {
  background: white;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 8px;
  text-decoration: none;
}
.market-item-card .img-block {
  position: relative;
  display: flex;
}
.market-item-card .img-block .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.market-item-card .img-block .img-box img {
  width: 100%;
  height: 100%;
}
.market-item-card .img-block .items-status-tag {
  border-radius: 1000px;
  padding: 4px 16px;
  height: 32px;
  position: absolute;
  left: 6px;
  top: 6px;
  color: white;
}
.market-item-card .img-block .items-status-tag.sold-out {
  background: #ff3b30;
}
.market-item-card .img-block .items-status-tag.hidden-post {
  background: #747474;
}
.market-item-card .img-block .ratings {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: 16px;
  padding: 2px;
  border-radius: 2px;
  position: absolute;
  bottom: -8px;
  left: 8px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.5);
}
.market-item-card .img-block .ratings div {
  width: 100%;
  height: 100%;
  display: flex;
}
.market-item-card .img-block .ratings div img {
  width: 100%;
  height: 100%;
}
.market-item-card .content-block {
  margin-top: 16px;
}
.market-item-card .content-block .seller {
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  letter-spacing: -0.02em;
  color: #8d8a8a;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.market-item-card .content-block .seller div {
  width: 24px;
  height: 24px;
}
.market-item-card .content-block .seller div img {
  width: 100%;
  height: 100%;
}
.market-item-card .content-block h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  color: #111;
  margin: 0;
}
.market-item-card .content-block .price {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  color: #612ef7;
}

.marketplace-filters-modal .modal-header .secondary-btn {
  width: 36px;
  height: 36px;
  display: flex;
  background-color: #f2f4f7;
  border-radius: 100px;
  padding: 8px;
}
.marketplace-filters-modal .modal-header h1 {
  margin-right: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #080809;
}
.marketplace-filters-modal label {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #98a0b4;
}
.marketplace-filters-modal .categories ul {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.marketplace-filters-modal .categories ul li .filter-chips {
  margin: 8px;
  background-color: #f2f4f7;
  border-radius: 16px;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 14px;
  color: #4b4b4b;
}
.marketplace-filters-modal .categories ul li .filter-chips.active {
  background-color: #2B67F6;
  color: #fff;
}

.images-input-col .title {
  font-weight: 600;
  font-size: 13px;
  line-height: 123%;
  color: #65686c;
}
.images-input-col.uploaded .w-uploaded {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.images-input-col.uploaded .w-uploaded &gt; * {
  margin: 8px;
  height: auto;
  width: calc(33.3333333333% - 16px);
  height: 120px;
}
.images-input-col.uploaded .w-uploaded .img-box {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.images-input-col.uploaded .w-uploaded .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.images-input-col.uploaded .w-uploaded .img-box .close-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  padding: 6px;
  background: white;
  width: 24px;
  height: 24px;
  display: flex;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
}

.images-input-container {
  height: 160px;
}

.add-listing-btn {
  width: 100%;
  border: 1px dashed #1877f2;
  border-radius: 8px;
  padding: 6px;
  background-color: white;
  font-weight: 400;
  font-size: 16px;
  color: #1877f2;
}

.location-col .location-text {
  flex: 1 0 auto;
}
.location-col .location-text .address input {
  border: none;
  padding: 8px 0;
}
.location-col .location-text .address input:focus {
  border: 1px solid #dee2e6;
  padding: 8px;
  outline: none;
  box-shadow: none;
}
.location-col .title {
  font-weight: 600;
  font-size: 17px;
  line-height: 118%;
  color: #080809;
}
.location-col .address {
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: #65686c;
}

.sell-footer span {
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
  color: #080809;
}
.sell-footer .form-check {
  height: 25px;
}
.sell-footer .form-check .form-check-input {
  width: 44px;
  height: 100%;
  background-color: #8f9297;
  box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.1);
  background-image: url(/assets/images/icons/switch-circle.svg);
}
.sell-footer .form-check .form-check-input:checked {
  background-color: #1877f2;
}
.sell-footer .primary-btn {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #1877f2;
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin: 8px 0;
}
.sell-footer .form-text {
  font-weight: 600;
  font-size: 13px;
  color: #000;
  text-align: center;
}
.sell-footer .form-text a {
  text-decoration: none;
}

.marketplace-prod-details-page {
  box-shadow: none;
}

.prod-images-box {
  height: calc(100vh - 75px);
  margin-right: 16px;
}
.prod-images-box .prod-images-carousal {
  height: 100%;
}
.prod-images-box .prod-images-carousal .carousel-inner {
  width: 100%;
  height: calc(100% - (36px + 2rem));
  border-radius: 16px;
  overflow: hidden;
}
.prod-images-box .prod-images-carousal .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}
.prod-images-box .prod-images-carousal .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prod-images-box .prod-images-carousal .carousel-indicators {
  position: relative;
  margin-top: 1rem;
}
.prod-images-box .prod-images-carousal .carousel-indicators button {
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  overflow: hidden;
}
.prod-images-box .prod-images-carousal .carousel-indicators button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prod-images-box .prod-images-carousal .carousel-control-next,
.prod-images-box .prod-images-carousal .carousel-control-prev {
  height: 40px;
  top: 50%;
  bottom: auto;
  width: 40px;
  transform: translatey(-50%);
  border: 1px solid #f5f5f5;
  border-radius: 500px;
  background: white;
  opacity: 1;
}
.prod-images-box .prod-images-carousal .carousel-control-prev {
  left: -20px;
}
.prod-images-box .prod-images-carousal .carousel-control-next {
  right: -20px;
}

.market-details-block {
  padding: 16px;
  background: white;
  height: calc(100vh - 75px);
  overflow: auto;
  overflow-x: hidden;
}
.market-details-block .market-header .title {
  font-weight: 900;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.03em;
  color: #141414;
  margin-right: 8px;
}
.market-details-block .market-header .ratings {
  display: flex;
  align-items: center;
}
.market-details-block .market-header .ratings .stars {
  display: flex;
  align-items: center;
}
.market-details-block .market-header .ratings .rate-text {
  display: flex;
  align-items: center;
  margin-left: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #8d8a8a;
}
.market-details-block .market-header .ratings .rate-text .vr {
  margin: 0 8px;
  background-color: #8d8a8a;
}
.market-details-block .market-header .price {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #612ef7;
}
.market-details-block .market-description {
  border: 0.5px solid #b1b1b1;
  border-radius: 16px;
  padding: 16px;
  background-color: white;
  margin: 16px 0;
}
.market-details-block .market-description .title {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  color: #111;
  margin-bottom: 8px;
}
.market-details-block .market-description p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  color: #8d8a8a;
}
.market-details-block .market-description .web-chips {
  display: flex;
  align-items: center;
  margin: -4px;
  flex-wrap: wrap;
}
.market-details-block .market-description .web-chips li {
  margin: 4px;
  background: #612ef7;
  padding: 2px 8px;
  color: white;
  border-radius: 100px;
  font-size: 12px;
  line-height: 167%;
  letter-spacing: -0.02em;
  color: #fff;
}
.market-details-block .market-actions .primary-btn {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #1877f2;
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin: 8px 0;
}
.market-details-block .market-actions .text {
  font-weight: 600;
  font-size: 13px;
  line-height: 123%;
  text-align: center;
  color: #000;
  text-align: center;
}
.market-details-block .market-actions .text a {
  text-decoration: none;
}
.market-details-block .market-interested ul {
  padding-left: 6px;
}
.market-details-block .market-interested ul li {
  width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 100px;
  position: relative;
  margin: 0 -6px;
}
.market-details-block .market-interested ul li .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100px;
}
.market-details-block .market-interested ul li .badge {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 8px;
  right: 0;
  bottom: 0;
  background-color: lightgreen;
}
.market-details-block .market-interested ul li.total {
  background-color: white;
  z-index: 0;
}
.market-details-block .market-interested ul li:nth-child(2) {
  z-index: 1;
}
.market-details-block .market-interested ul li:nth-child(1) {
  z-index: 2;
}
.market-details-block .market-reviews .title {
  font-weight: 600;
  font-size: 17px;
  line-height: 118%;
  color: #080809;
}
.market-details-block .market-reviews .reviews {
  padding: 0 8px;
}
.market-details-block .market-reviews .review-card {
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.5);
}
.market-details-block .market-reviews .review-card .username {
  font-weight: 700;
  font-size: 16px;
  color: #909090;
}
.market-details-block .market-reviews .review-card .ratings .stars .icon {
  width: 18px;
  height: 18px;
}
.market-details-block .market-reviews .review-card .ratings .stars .icon img {
  width: 100%;
}
.market-details-block .market-reviews .review-card p {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.03em;
  color: #909090;
}
.market-details-block .market-reviews .actions {
  font-weight: 500;
  font-size: 14px;
  color: rgba(144, 144, 144, 0.9);
}
.market-details-block .market-reviews .actions button {
  font-weight: 500;
  font-size: 14px;
  color: rgba(144, 144, 144, 0.9);
}
.market-details-block .market-reviews .actions button:hover {
  color: rgb(131, 131, 131);
}
.market-details-block .market-reviews .write-review-box .write {
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.8);
}
.market-details-block .market-reviews .write-review-box .write textarea {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.6);
  border: none;
  flex: 1 0 auto;
  resize: none;
  outline: none;
}
.market-details-block .market-reviews .write-review-box .write textarea :placeholder {
  color: rgba(144, 144, 144, 0.6);
}
.market-details-block .market-reviews .write-review-box .write textarea :focus,
.market-details-block .market-reviews .write-review-box .write textarea :focus-within {
  outline: none;
  border: none;
}
.market-details-block .market-reviews .write-review-box .write button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  background-color: rgba(144, 144, 144, 0.3);
}
.market-details-block .market-reviews .write-review-box .write button:hover {
  background-color: rgba(113, 113, 113, 0.9);
}/*# sourceMappingURL=main.css.map */


.step {
    position: relative;
    width: 25px;
    height: 25px;
    /*border: 5px solid #fff;*/
    border-radius: 50%;
    cursor: pointer;
    box-shadow: inset 0 0 0 2px #4A11BD, inset 0 0 0 1em #4A11BD, inset 0 0 0 1em #4A11BD;
    transition: box-shadow 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px !important;
    transform: none !important;
    opacity: 1 !important;
    left: auto !important;
    margin-bottom: auto;
    z-index: 1;
    padding-top: 2px;
}

input:checked + .step {
    box-shadow: inset 0 0 0 2px #4A11BD, inset 0 0 0 0 #4A11BD, inset 0 0 0 1em #4A11BD;
}

    input:checked + .step + input + .step,
    input:checked + .step + input + .step + input + .step,
    input:checked + .step + input + .step + input + .step + input + .step,
    input:checked + .step + input + .step + input + .step + input + .step + input + .step {
        box-shadow: inset 0 0 0 2px #C4C4C4, inset 0 0 0 0 #C4C4C4, inset 0 0 0 1em #C4C4C4;
    }

.stepbox {
    position: relative;
    max-width: 30em;
    margin: 0px auto 0px;
    display: flex;
    justify-content: space-between;
    width: 240px;
}

    .stepbox hr {
        margin: 0;
        border: none;
        color: #C4C4C4;
        height: 26px;
        background-color: transparent;
        opacity: 1;
    }

        .stepbox hr,
        .stepbox hr:before,
        .stepbox hr::after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

            .stepbox hr::before,
            .stepbox hr::after {
                content: "";
                background-image: linear-gradient(transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px));
            }

            .stepbox hr::after {
                color: #4A11BD;
                transform: scaleX(0);
                transform-origin: 0 50%;
                transition: transform 0.5s linear;
            }

    .stepbox[data-max="2"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="2"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(1);
    }

    .stepbox[data-max="3"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="3"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(0.5);
    }

    .stepbox[data-max="3"] input:nth-of-type(3):checked ~ hr::after {
        transform: scaleX(1);
    }

    .stepbox[data-max="4"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="4"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(0.3333333333);
    }

    .stepbox[data-max="4"] input:nth-of-type(3):checked ~ hr::after {
        transform: scaleX(0.6666666667);
    }

    .stepbox[data-max="4"] input:nth-of-type(4):checked ~ hr::after {
        transform: scaleX(1);
    }

    .stepbox[data-max="5"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="5"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(0.25);
    }

    .stepbox[data-max="5"] input:nth-of-type(3):checked ~ hr::after {
        transform: scaleX(0.5);
    }

    .stepbox[data-max="5"] input:nth-of-type(4):checked ~ hr::after {
        transform: scaleX(0.75);
    }

    .stepbox[data-max="5"] input:nth-of-type(5):checked ~ hr::after {
        transform: scaleX(1);
    }

    .stepbox[data-max="6"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="6"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(0.2);
    }

    .stepbox[data-max="6"] input:nth-of-type(3):checked ~ hr::after {
        transform: scaleX(0.4);
    }

    .stepbox[data-max="6"] input:nth-of-type(4):checked ~ hr::after {
        transform: scaleX(0.6);
    }

    .stepbox[data-max="6"] input:nth-of-type(5):checked ~ hr::after {
        transform: scaleX(0.8);
    }

    .stepbox[data-max="6"] input:nth-of-type(6):checked ~ hr::after {
        transform: scaleX(1);
    }

    .stepbox[data-max="7"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="7"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(0.1666666667);
    }

    .stepbox[data-max="7"] input:nth-of-type(3):checked ~ hr::after {
        transform: scaleX(0.3333333333);
    }

    .stepbox[data-max="7"] input:nth-of-type(4):checked ~ hr::after {
        transform: scaleX(0.5);
    }

    .stepbox[data-max="7"] input:nth-of-type(5):checked ~ hr::after {
        transform: scaleX(0.6666666667);
    }

    .stepbox[data-max="7"] input:nth-of-type(6):checked ~ hr::after {
        transform: scaleX(0.8333333333);
    }

    .stepbox[data-max="7"] input:nth-of-type(7):checked ~ hr::after {
        transform: scaleX(1);
    }

    .stepbox[data-max="8"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="8"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(0.1428571429);
    }

    .stepbox[data-max="8"] input:nth-of-type(3):checked ~ hr::after {
        transform: scaleX(0.2857142857);
    }

    .stepbox[data-max="8"] input:nth-of-type(4):checked ~ hr::after {
        transform: scaleX(0.4285714286);
    }

    .stepbox[data-max="8"] input:nth-of-type(5):checked ~ hr::after {
        transform: scaleX(0.5714285714);
    }

    .stepbox[data-max="8"] input:nth-of-type(6):checked ~ hr::after {
        transform: scaleX(0.7142857143);
    }

    .stepbox[data-max="8"] input:nth-of-type(7):checked ~ hr::after {
        transform: scaleX(0.8571428571);
    }

    .stepbox[data-max="8"] input:nth-of-type(8):checked ~ hr::after {
        transform: scaleX(1);
    }

    .stepbox[data-max="9"] input:nth-of-type(1):checked ~ hr::after {
        transform: scaleX(0);
    }

    .stepbox[data-max="9"] input:nth-of-type(2):checked ~ hr::after {
        transform: scaleX(0.125);
    }

    .stepbox[data-max="9"] input:nth-of-type(3):checked ~ hr::after {
        transform: scaleX(0.25);
    }

    .stepbox[data-max="9"] input:nth-of-type(4):checked ~ hr::after {
        transform: scaleX(0.375);
    }

    .stepbox[data-max="9"] input:nth-of-type(5):checked ~ hr::after {
        transform: scaleX(0.5);
    }

    .stepbox[data-max="9"] input:nth-of-type(6):checked ~ hr::after {
        transform: scaleX(0.625);
    }

    .stepbox[data-max="9"] input:nth-of-type(7):checked ~ hr::after {
        transform: scaleX(0.75);
    }

    .stepbox[data-max="9"] input:nth-of-type(8):checked ~ hr::after {
        transform: scaleX(0.875);
    }

    .stepbox[data-max="9"] input:nth-of-type(9):checked ~ hr::after {
        transform: scaleX(1);
    }

.sronly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
form {
    height: 100%;
    width: 100%;
}
* {
    text-transform: lowercase;
}
#resend_otp_in {
    color: #94909d;
    font-weight: 300;
}</pre></body></html>