@font-face {
  font-family: 'IBM Plex Sans';
  src: url('IBMPlexSans-SemiBold.ttf');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('IBMPlexSans-Medium.ttf');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('IBMPlexSans-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}

html, body{
  margin: 0;
  padding: 0;
  background: #18181b;
  color: #f3f5f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  min-height: 100vh;
  font-family: "IBM Plex Sans", -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";

}

.seoInvis{
  display: none;
}

hr{
  width: 50%;
  border: none;
  outline: none;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 32px;
}

*{
  box-sizing: border-box;
  text-decoration: none;
}
a, a:visited, a:hover, a:active {
  color: inherit;
}
img{
  user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
}
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0d0c13;
}

::-webkit-scrollbar-thumb {
  background: #313135;
}

::-webkit-scrollbar-thumb:hover {
  background: #3c3c41;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

header{
  width: 100%;
  height: 84px;
  background: #27272a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header .logo{
  background-image: url("Agency.png");
  height: 64px;
  width: 240px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 25;
}

.inlineLogo{
  background-image: url("Agency.png");
  height: 84px;
  width: 280px;
  max-width: 90%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.joinLogo{
  background-image: url("Agency.png");
  height: 84px;
  width: 280px;
  max-width: 90%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: 34px;
  margin-bottom: -44px;
}

[view="explore"] header{
  height: 100px;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.35);
}

[view="translucent"] header{
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.25);
}

[view="translucent"] header .headerContent .link{
  box-shadow: none;
}

header .headerContent{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  width: 100%;
  padding-left: 12px;
}

header .headerContent .split{
  margin: 0 auto;
  flex: 1;
  flex-grow: 1;
}

header .headerContent .link{
  border-radius: 128px;
  height: 36px;
  min-width: 36px;
  border-radius: 6px;
  margin-left: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
}

header .headerContent .link.translucent{
  background: transparent;
}

header .headerContent .link.translucent svg{
    fill: #33e985;
}

header .headerContent .link svg{
    height: 32px;
    width: 32px;
    fill: #fff;
    transition: fill 0.1s linear;
}

header .headerContent .link [data-state="1"]{
  display: none;
  fill: #33e985;
}

header .headerContent .link img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header .headerContent .link.active [data-state="0"]{
  display: none;
}

header .headerContent .link.active [data-state="1"]{
  display: block;
}

header .headerContent .link.active span{
  font-weight: 600;
  color: #33e985;
}

header .headerContent .link span{
  font-weight: 600;
  color: #eee;
  transition: color 0.1s linear;
  padding-right: 8px;
  line-height: 1.1;
  white-space: nowrap;
}

header .headerContent .link:hover{
  cursor: pointer;
}

header .headerContent .link:hover span{
  color: #33e985;
}

header .headerContent .link:hover svg{
  fill: #33e985;
}

header .headerContent .divider{
  background-color: #3b3d49;
  height: 20px;
  width: 1px;
  margin-left: 12px;
}

header .headerContent .link.reverse{
  background: var(--accent-color);
}

header .headerContent .link.reverse:hover [data-state="0"]{
  display: none;
}

header .headerContent .link.reverse:hover [data-state="1"]{
  display: block;
}

header .headerContent .link.reverse span{
  color: #000;
}

header .headerContent .link.reverse svg{
  fill: #000;
}

header .mobileHeader{
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  padding: 11px;
  padding-top: 64px;
  padding-bottom: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #303033;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.1s linear, transform 0.1s linear;
  transform: scale(0.75);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: rgba(0, 0, 0, 0.75) 0px 0px 380px 120px;
}

header .mobileHeader.visible{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

header .mobileHeader .headerContent{
  position: absolute;
  top: 15px;
  right: 9px;
}

header .mobileHeader .links{
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

header .mobileHeader .links a{
  font-size: 20px;
  font-weight: 600;
  margin: 10px;
}

header .mobileHeader .links a:hover{
  opacity: 0.75;
  cursor: pointer;
}

header .mobileHeader .action{
  width: calc(100% + 20px);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--accent-color);
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-top: 12px;
}

.contentWrapper{
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 68px;
  width: 100%;
  max-width: 100%;
}

.contentWrapper.sideMenu{
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 20px;
  padding-left: 380px;
  margin-bottom: -50px;
  min-height: 100vh;
}

.contentWrapper.helpMenu{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

[view="explore"] .contentWrapper{
  margin-top: 100px;
  align-items: center;
  justify-content: flex-start;
}

.sidebar{
  width: 100%;
  background: #27272a;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 32px;
}

.sidebar .group{
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.sidebar .group .title{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding: 12px;
  padding-left: 16px;
  background: #0d0c13;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
  position: relative;
  user-select: none;
  color: #33e985;
}

.sidebar .group .title span{
  font-weight: 600;
}
.sidebar .group .title svg{
  position: absolute;
  right: 8px;
  height: 26px;
  width: 26px;
  fill: #fff;
  opacity: 0.5;
  transition: transform 0.1s linear;
}

.sidebar .group .title:hover{
  cursor: pointer;
}

.sidebar .group.closed .title{
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.sidebar .group.closed .title svg{
  transform: rotateZ(180deg);
}

.sidebar .group .items{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #0d0c13;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-top: none;
  border-radius: 0px 0px 8px 8px;
  padding: 12px;
  padding-top: 0px;
}

.sidebar .group.closed .items{
  display: none;
}

.sidebar .group .items a{
  display: block;
  width: 100%;
  padding: 10px;
  padding-left: 28px;
  border-radius: 8px;
}

.sidebar .group .items a:hover{
  background: rgba(255, 255, 255, 0.035);
  color: #ddd;
  cursor: pointer;
}

.sidebar .group .items a.active{
  background: rgba(59, 137, 88, 0.3);
  color: #33e985;
}

.sidebar .wrap{
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 8px;
}

.helpArticle{
  width: 100%;
  max-width: 1024px;
}

.helpArticle > .title{
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: 600;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.helpArticle > .title svg{
  fill: #fff;
  height: 42px;
  width: 42px;
  opacity: 0.85;
  margin-right: 8px;
  flex-shrink: 0;
}

.helpArticle > .title span{
  font-size: 28px;
}

.helpArticle .footer{
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
}

.helpArticle .footer span{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.helpArticle .footer span a{
  color: #33e985;
  opacity: 0.85;
  transition: opacity 0.1s linear;
}

.helpArticle .footer span a:hover{
  cursor: pointer;
  opacity: 1;
}


.helpArticle span a{
  color: #33e985;
  opacity: 0.85;
  transition: opacity 0.1s linear;
}

.helpArticle span a:hover{
  cursor: pointer;
  opacity: 1;
}


.helpArticle > span{
  padding-left: 24px;
  padding-right: 24px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 18px;
}

.helpArticle .helpContent{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 20px;
  padding-right: 20px;
}

.helpArticle .helpContent > span{
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 17px;
}


.helpArticle .helpContent > h3{
  color: rgba(255, 255, 255, 0.825);
  display: block;
  font-size: 20px;
  margin: 0;
  padding: 0;
  margin-top: 12px;
}

.helpContent .bTitle{
  color: #57c97d;
  display: block;
  font-size: 22px;
  margin-top: 18px;
  margin-bottom: 4px;
}

.helpContent .bHead{
  color: #57c97d;
  display: block;
  font-size: 19px;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 4px;
  opacity: 0.95;
}

.inlineImg{
  max-width: 100%;
  height: auto;
}

.helpContent .bHead:first-child{
  margin-top: 0px;
}

.sidebar h1{
  font-size: 32px;
  color: #ddd;
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
}

.sidebar h1 b{
  color: #f5185b;
}

.navpath{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  padding-left: 32px;
  flex-wrap: wrap;
  margin-bottom: -8px;
}

.navpath a{
  padding: 8px 12px;
  --color: #343437;
  background: var(--color);
  font-size: 17px;
  font-weight: 400;
  display: block;
  margin-right: 58px;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.navpath a::after{
  content: "";
  position: absolute;
  right: -31px;
  top: 0;
  width: 32px;
  height: 100%;
  background: var(--color);
  clip-path: polygon(0% 0%, 50% 0, 100% 50%, 50% 100%, 0% 100%);
}

.navpath a::before{
  content: "";
  position: absolute;
  left: -31px;
  top: 0;
  width: 32px;
  height: 100%;
  background: var(--color);
  clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0% 100%);
}

.navpath a:hover{
  --color: #42434b;
  cursor: pointer;
    color: rgba(255, 255, 255, 0.95);
}

.navpath a:last-child{
  font-weight: 600;
  color: #33e985;
  pointer-events: none;
  --color: #42434b;
}

.helpCategories{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  margin-top: -12px;
  position: relative;
}

.helpCategories a{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 22px;
  margin: 6px;
  padding-top: 26px;
  padding-bottom: 26px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 320px;
  max-width: 320px;
  height: 190px;
  transition: background 0.1s linear, border 0.1s linear;
  position: relative;
}

.helpCategories a svg{
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 12px;
  height: 98px;
  width: 98px;
  fill: #33e985;
}

.helpCategories a b{
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: 0.3px;
  z-index: 1;
}

.helpCategories a span{
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.65);
  z-index: 1;
  padding-right: 40px;
}

.helpCategories a:hover{
  cursor: pointer;
  background: rgba(255, 255, 255, 0.01);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.helpCategories a i{
  position: absolute;
  font-size: 12px;
  text-decoration: none;
  font-style: normal;
  position: absolute;
  bottom: 18px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  background: linear-gradient(-14deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.16) 100%);
  color: rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  opacity: 0.75;
  font-weight: 500;
}

.helpTopics{
  width: calc(100% - 16px);
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.helpTopics a{
  width: 100%;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.1s linear, color 0.1s linear;
  position: relative;
  padding-right: 32px;
}

.helpTopics a:hover{
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.helpTopics a::after{
  content: ">";
  position: absolute;
  right: 12px;
  font-weight: 400;
  font-size: 20px;
  opacity: 0.5;
  top: 8px;
}

.subTitleText{
  margin-bottom: 18px;
  margin-top: -18px;
}

@media (orientation: portrait)
{
  .navpath a{
    font-size: 14px;
  }
  .helpCategories a{
    width: 100%;
    max-width: unset;
  }
}

@media (orientation: portrait)
{
  .contentWrapper.sideMenu{
    flex-direction: column;
    padding: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 75vh;
  }

  .contentWrapper.sideMenu .sidebar{
    position: relative;
    width: 100%;
    border: none;
  }

  .helpArticle{
    margin-top: 32px;
    margin-left: 12px;
    margin-right: 12px;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-bottom: 32px;
  }

}


.contentTable{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 20px;
}

.contentTable .group{
  margin-bottom: 12px;
}

.contentTable .title{
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
}

.contentTable .title svg{
  display: none;
}

.contentTable .items{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 10px;
  margin-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.contentTable .items a{
  padding: 4px 5px;
  color: #33e985;
  opacity: 0.9;
}

.contentTable .items a:hover{
  opacity: 1;
  text-decoration: underline;
  cursor: pointer;
}

.centeredContent{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow-x: clip;
  position: relative;
}

.formHeader{
  margin: 0;
  width: 100%;
  text-align: center;
  margin-top: 64px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 42px;
  background: linear-gradient(#fff, #2abd5b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formHeader::before{
  content: "";
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(42, 189, 91, 1) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  opacity: 0.1;
}

.formSteps{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.formSteps > div{
  width: auto;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.1s linear;
}

.formSteps > div > b{
  height: 42px;
  width: 42px;
  background: transparent;
  border: 3px solid #33e985;
  color: #33e985;
  color: #000;
  font-weight: 700;
  background: #33e985;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
  font-size: 20px;
  transition: background 0.1s linear, color 0.1s linear;
  line-height: 4px;
  vertical-align: middle;
}

.formSteps > div.disabled{
  opacity: 0.35;
}

.formSteps > div.disabled > b{
  background: transparent;
  color: #33e985;
  font-weight: 500;
}

.formSteps > div > span{
  display: flex;
  flex-grow: 1;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #33e985;
  line-height: 4px;
  vertical-align: middle;
  position: relative;
}

.formSteps > div > span > i{
  font-style: normal;
}

.formSteps hr{
  outline: none;
  border: none;
  width: 32px;
  height: 1px;
  background: #656565;
  margin-left: 20px;
  margin-right: 29px;
}

.formSteps .subSteps{
  position: absolute;
  bottom: -28px;
  left: 12px;
  right: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.formSteps .subSteps div{
  flex-grow: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  height: 100%;
  margin-right: 8px;
  transform: skewX(-30deg);
  transition: background 0.15s linear;
}

.formSteps .subSteps div:last-child{
  margin-right: 0;
}

.formSteps .subSteps div.done{
  background: rgba(17, 168, 85, 0.5);
}

.formSteps .subSteps div.active{
  background: rgba(255, 255, 255, 0.15);
}

.formContent{
  background: #27272a;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 26px;
  width: 100%;
  max-width: 740px;
  margin-top: 38px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 28px;
  transition: transform 0.15s linear, opacity 0.15s linear;
  margin-bottom: 45px;
  position: relative;
}

.formContentFooterLink{
  position: absolute;
  top: calc(100% + 32px);
  color: rgba(17, 168, 85, 0.75);
  text-decoration: underline;
}

.formContentFooterLink:hover{
  color: rgba(17, 168, 85, 1);
  cursor: pointer;
}

.formContent.centered{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.formContent.hidden{
  transform: translateX(-10vw);
  opacity: 0;
}

.formContent.prehidden{
  transform: translateX(10vw);
  opacity: 0;
}

.formBottomActions{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.formLoader{
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s linear;
}

.formLoader.hidden{
  opacity: 0;
}

.formLoader.prehidden{
  opacity: 0;
}

.formLoader .loader {
  width: 48px;
  height: 48px;
  border: 2px solid #33e985;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.65s linear infinite;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}


.otpBox {
    display: flex;
}

.otpBox input {
    width: 52px;
    font-size: 31px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid #ffffff29;
    background: transparent;
    font-weight: bold;
    color: #fff;
    outline: none;
    transition: all 0.1s;
    caret-color: transparent;
}

.otpBox input:hover{
  border-color: #ffffff3d;
  background: transparent;
  caret-color: transparent;
}

.otpBox input:focus {
  border: 2px solid #11a855;
  background: transparent;
  caret-color: transparent;
}

.otpBox input.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.space {
  margin-right: 16px !important;
}

.passwordStrength{
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 12px;
  color: transparent;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.passwordStrength::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  max-width: 220px;
  background: linear-gradient(to right,#31303b 0%,#31303b 100%);
  border-radius: 12px;
}

.passwordStrength[strength="1"]::after{
  background: linear-gradient(to right,#c7280c 20%, #31303b 20%, #31303b 100%);
}
.passwordStrength[strength="2"]::after{
  background: linear-gradient(to right,#c76a0c 40%, #31303b 40%, #31303b 100%);
}
.passwordStrength[strength="3"]::after{
  background: linear-gradient(to right,#c7c70c 60%, #31303b 60%, #31303b 100%);
}
.passwordStrength[strength="4"]::after{
  background: linear-gradient(to right,#82c70c 80%, #31303b 80%, #31303b 100%);
}
.passwordStrength[strength="5"]::after{
  background: #32a866;
}
.passwordStrength[strength="1"]{
  color: #c7280c;
}
.passwordStrength[strength="2"]{
  color: #c76a0c;
}
.passwordStrength[strength="3"]{
  color: #c7c70c;
}
.passwordStrength[strength="4"]{
  color: #82c70c;
}
.passwordStrength[strength="5"]{
  color: #32a866;
}

.formErrorText{
  color: #d53535;
  font-weight: 500;
}

input, select{
  width: 100%;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.0);
  background: #3a3a3f;
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  font-size: 19px;
  transition: background 0.1s linear, border 0.1s linear;
}

input:focus{
  border: 1px solid #11a855;
}

input:hover, select:hover{
  background: #3f3f45;
}

select:hover{
  cursor: pointer;
}

label{
  display: inline-block;
  position: relative;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
  margin-top: 18px;
  margin-bottom: 8px;
}

label i{
  color: #ff4444;
  font-size: 26px;
  position: absolute;
  top: -8px;
  right: -12px;
}

.formSubHeader{
  margin: 0;
  padding: 0;
  font-size: 27px;
  font-weight: 500;
  color: #fff;
}

.formSubHeader.creator{
  color: #11a855;
  margin-top: 6px;
  margin-bottom: 8px;
}

.formContent.centered > .formSubText{
  text-align: center;
}

.formSubText{
  margin: 0;
  padding: 0;
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  opacity: 0.65;
  width: 420px;
}

.formSubText.smaller{
  font-size: 16px;
  font-weight: 300;
  opacity: 0.5;
}

.abstractT{
  margin-top: 25px;
}
.abstractB{
  margin-bottom: 25px;
}

.orDivider{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.orDivider span{
  font-size: 15px;
  font-weight: 400;
  opacity: 0.65;
}

.orDivider::after, .orDivider::before{
  content: "";
  height: 1px;
  width: 80px;
  background: rgba(255, 255, 255, 0.25);
  margin-left: 12px;
  margin-right: 12px;
}

.orLoginBox{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttLoginButton{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: #fff;
  color: #161823;
  font-weight: 500;
  border-radius: 4px;
  height: 48px;
  position: relative;
  padding-left: 74px;
  padding-right: 64px;
  line-height: 1.1;
}

.ttLoginButton svg{
  position: absolute;
  left: 0;
  top: 1px;
  fill: #161823;
}

.ttLoginButton:hover{
  background: #33e985;
  cursor: pointer;
  color: #161823;
}

.smallerForm{
  width: 340px;
  position: relative;
}

.formSubmit{
  display: inline-block;
  padding-left: 14px;
  padding-right: 14px;
  height: 38px;
  border-radius: 8px;
  line-height: 1.1;
  text-align: center;
  position: relative;
  background: #33e985;
  color: #161823;
  cursor: pointer;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.1s linear;
}

.formSubmit span{
  font-weight: 700;
  color: #000;
}

.formSubmit:hover{
  opacity: 0.75;
}

.formSubmit.back{
  background: #3a3a3f;
  color: #33e985;
}

.formSubmit.back span{
  color: #33e985;
}

.formSubmit.disabled{
  opacity: 0.5;
  background: #18181a;
  pointer-events: none;
}

.formSubmit.disabled span{
  color: #33e985;
}

.formBottomActions .formSubmit{
  display: flex;
}

.mobileSteps{
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #31303b;
}

.formTable{
  width: 120%;
  margin-left: -10%;
  border-collapse:collapse;
}

.formTable tr td{
  vertical-align: text-top;
  padding: 8px;
}

.formTable tr{
  margin: 0;
}

.formTable tr:nth-child(even){
  background: rgba(255,255,255,0.02);
}

.formTable tr td:first-child{
  text-align: left;
  font-size: 16px;
  opacity: 0.75;
  font-weight: 300;
}

.formTable tr td:last-child{
  text-align: right;
  color: #33e985;

}

@media (max-width: 320px) {
  .formTable tr {display: block; }
  .formTable td {display: inline-block; word-break: break-all; }
  .formTable tr td:last-child{
    text-align: left;
  }
}

.tableFadeout{
  margin-top: -200px;
  min-height: 264px;
  background: rgb(24 24 27);
  background: linear-gradient(180deg, rgba(13, 12, 19, 0) 0%, rgb(24 24 27) 70%);
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.checkbox-wrapper-4{
  display: flex;
  flex-direction: row;
}

.checkbox-wrapper-4 * {
  box-sizing: border-box;
}
.checkbox-wrapper-4 .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 0px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: row;
}
.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 6px;
}

.checkbox-wrapper-4 .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
}
.checkbox-wrapper-4 .cbx span:first-child {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #3a3a3f;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.checkbox-wrapper-4 .cbx span:first-child svg {
  position: absolute;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 22px;
  stroke-dashoffset: 22px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
}
.checkbox-wrapper-4 .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}
.checkbox-wrapper-4 .cbx:hover span:first-child {
  border-color: #33e985;
}
.checkbox-wrapper-4 .inp-cbx {
  position: absolute;
  visibility: hidden;
}
.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
  background: #33e985;
  border-color: #33e985;
  animation: wave-4 0.4s ease;
}
.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-wrapper-4 .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}
@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

.formHr{
  outline: none;
  border: none;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255, 0.3);
  margin-top: 12px;
}

.submission{
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 16px;
  padding-right: 48px;
  position: relative;
}

.submission b{
  font-weight: 300;
  font-size: 15px;
  opacity: 0.65;
}

.submission span{
  font-size: 16px;
}

.submission::after{
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  height: 9px;
  width: 9px;
  border-radius: 50px;
  background: rgba(17, 168, 85, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.submission.error::after{
  background: rgba(168, 17, 17, 0.5);
}

.intro{
  width: 100%;
  min-height: 100vh;
  padding-bottom: 75px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.decoBox{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  filter: blur(4px);
  z-index: 1;
  pointer-events: none;
}

.decoBox > div{
  position: absolute;
  opacity: 0.5;
}

.intro .hero{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 128px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.intro .hero::before{
  content: "";
  position: absolute;
  width: 130%;
  height: 120%;;
  background: radial-gradient(ellipse at center, #ed0c3d 0%, rgba(0,0,0,0) 70%);
  opacity: 0.2;
  top: 0;
}

.intro .hero h1{
  text-transform: uppercase;
  font-size: 60px;
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
}

.intro .hero h1 b{
  color: #fff;
  position: relative;
}

.glitchText {
	 position: relative;
	 padding: 0px 3px;
	 outline: 0px;
	 overflow: hidden;
	 z-index: 0;
}
 .glitchText::before, .glitchText::after {
	 position: absolute;
	 top: 0;
	 left: 0;
	 content: attr(data-txt);
	 width: 100%;
	 height: 100%;
	 opacity: 0;
	 overflow: hidden;
	 animation-duration: 2000ms;
	 animation-delay: 0ms;
	 animation-timing-function: linear;
	 animation-iteration-count: infinite;
	 animation-direction: reverse-alternate;
	 z-index: 1;
}
 .glitchText::before {
	 padding-right: 2px;
	 text-shadow: -2px 0 #f5185b;
	 animation-name: glitch-text-animation-red;
}
 .glitchText::after {
	 padding-left: 2px;
	 text-shadow: -2px 0 #13e1f0;
	 animation-name: glitch-text-animation-blue;
}
 @keyframes glitch-text-animation-blue {
	 0% {
		 opacity: 1;
		 clip-path: inset(37% 0% 2% 0%);
	}
	 10% {
		 opacity: 1;
		 clip-path: inset(21% 0% 13% 0%);
	}
	 20% {
		 opacity: 1;
		 clip-path: inset(2% 0% 33% 0%);
	}
	 30% {
		 opacity: 1;
		 clip-path: inset(23% 0% 24% 0%);
	}
	 40% {
		 opacity: 1;
		 clip-path: inset(46% 0% 28% 0%);
	}
	 50% {
		 opacity: 1;
		 clip-path: inset(76% 0% 96% 0%);
	}
	 60% {
		 opacity: 1;
		 clip-path: inset(54% 0% 25% 0%);
	}
	 70% {
		 opacity: 1;
		 clip-path: inset(77% 0% 57% 0%);
	}
	 80% {
		 opacity: 1;
		 clip-path: inset(42% 0% 98% 0%);
	}
	 90% {
		 opacity: 1;
		 clip-path: inset(35% 0% 10% 0%);
	}
	 100% {
		 opacity: 1;
		 clip-path: inset(41% 0% 88% 0%);
	}
}
 @keyframes glitch-text-animation-red {
	 0% {
		 opacity: 1;
		 clip-path: inset(97% 0% 4% 0%);
	}
	 10% {
		 opacity: 1;
		 clip-path: inset(62% 0% 42% 0%);
	}
	 20% {
		 opacity: 1;
		 clip-path: inset(10% 0% 93% 0%);
	}
	 30% {
		 opacity: 1;
		 clip-path: inset(28% 0% 67% 0%);
	}
	 40% {
		 opacity: 1;
		 clip-path: inset(4% 0% 20% 0%);
	}
	 50% {
		 opacity: 1;
		 clip-path: inset(32% 0% 33% 0%);
	}
	 60% {
		 opacity: 1;
		 clip-path: inset(36% 0% 1% 0%);
	}
	 70% {
		 opacity: 1;
		 clip-path: inset(97% 0% 33% 0%);
	}
	 80% {
		 opacity: 1;
		 clip-path: inset(8% 0% 18% 0%);
	}
	 90% {
		 opacity: 1;
		 clip-path: inset(30% 0% 74% 0%);
	}
	 100% {
		 opacity: 1;
		 clip-path: inset(83% 0% 40% 0%);
	}
}

@keyframes glitch-1 {
  0% {
    clip: rect(40px, 800px, 70px, 0px);
 }
  15% {
    clip: rect(130px, 800px, 131px, 0px);
 }
  50% {
    clip: rect(90px, 800px, 96px, 0px);
 }
  75% {
    clip: rect(125px, 800px, 185px, 0px);
 }
  87% {
    clip: rect(70px, 800px, 100px, 0px);
 }
  100% {
    clip: rect(130px, 800px, 130px, 0px);
 }
}
@keyframes glitch-2 {
  0% {
    clip: rect(20px, 800px, 80px, 0px);
 }
  15% {
    clip: rect(100px, 800px, 105px, 0px);
 }
  50% {
    clip: rect(100px, 800px, 95px, 0px);
 }
  75% {
    clip: rect(60px, 800px, 60px, 0px);
 }
  87% {
    clip: rect(145px, 800px, 160px, 0px);
 }
  100% {
    clip: rect(185px, 800px, 185px, 0px);
 }
}

.intro .hero h1 span{
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
}

.intro .hero h2{
  font-size: 22px;
  margin: 0;
  padding: 0;
  text-align: center;
  opacity: 0.725;
  font-weight: 700;
  font-family: "IBM Plex Sans", sans-serif;
  background: -webkit-linear-gradient(#eee, #787878);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.intro .hero h2 b{
    background: -webkit-linear-gradient(#fff, #13e1f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro .hero h2 i{
  font-style: normal;
  background: -webkit-linear-gradient(#fff, #ed0c3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro .hero h3{
  display: inline-block;
  font-size: 24px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 9px 49px;
  text-align: center;
  border-left: 10px solid #13e1f0;
  border-right: 10px solid #ed0c3d;
  backdrop-filter: blur(5px);
  font-family: "IBM Plex Sans", sans-serif;
}

.intro .hero h3 span{
  display: block;
}

.intro .hero h3 span b{
  display: inline-block;
  background: #ed0c3d;
  color: #fff;
  padding: 0px 8px;
  border-radius: 5px;
  position: relative;
}

.liveDot{
  height: 22px;
  width: 22px;
  margin-top: 34px;
  border-radius: 100px;
  background: #ed0c3d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.liveDot .pulsating{
  border: 2px solid #ed0c3d;
  border-radius: 30px;
  display: block;
  height: 40px;
  width: 40px;
  -webkit-animation: pulsate 0.9s ease-out;
-webkit-animation-iteration-count: infinite;
  opacity: 0.0;
  flex-shrink: 0;
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.6, 1.6); opacity: 0.0;}
}

.intro .actionButtons{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.intro .actionButtons a{
 background-color: #2c2d35;
 border-radius: 128px;
 height: 42px;
 min-width: 36px;
 border-radius: 4px;
 margin-left: 12px;
 margin-right: 12px;
 font-size: 19px;
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: center;
 padding: 6px 3px;
 position: relative;
 box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
 transition: opacity 0.1s linear;
 width: 230px;
 font-weight: 500;
}

.intro .actionButtons a svg{
  height: 32px;
  width: 32px;
  fill: #fff;
  transition: fill 0.1s linear;
  margin-right: 4px;
}

.intro .actionButtons a.reverse{
  background: var(--accent-color);
  color: #000;
}

.intro .actionButtons a.reverse svg{
  fill: #000;
}

.intro .actionButtons a:hover{
  cursor: pointer;
  opacity: 0.8;
}

.contentWrap{
  width: 100%;
  height: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.invitePic{
  width: 96px;
  height: 96px;
  border-radius: 120px;
  background: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.backgroundImageFull{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  opacity: 0.5;
}

footer{
  width: 100%;
  display: flex;
  background: #27272a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 50px;
}

[view="explore"] footer{
  margin-top: 0;
}

footer > div{
  padding: 24px;
  padding-top: 38px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1024px;
}

footer > div.light{
  background: rgba(0, 0, 0, 0.1);
  padding-bottom: 38px;
  padding: 24px;
  flex-direction: column;
  max-width: unset;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(250, 250, 250, 0.075);
}

footer > div.light > .wrap::before{
  content: "";
  position: absolute;
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(42, 189, 91, 1) 0%, rgba(0,0,0,0) 70%);
  opacity: 0.075;
  top: 0;
}


footer > div.light .wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 1024px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  overflow: clip;
}

footer > div.light .links{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

footer > div.light .links b{
  padding-right: 12px;
  opacity: 0.5;
}

footer > div.light .links a{
  margin-right: 22px;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  opacity: 0.7;
}

footer > div.light .links a:hover{
  cursor: pointer;
  opacity: 0.9;
}

footer > div.light hr{
  margin: 0;
  outline: none;
  border: none;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 26px;
  margin-bottom: 26px;
}

footer .logo{
  background-image: url("Agency.png");
  height: 64px;
  width: 225px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  margin-right: auto;
}

footer .row{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

footer .row{
  margin-left: 110px;
}

footer .row:first-child{
  margin-left: 0px;
}

footer .row b{
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  opacity: 0.65;
  margin-bottom: 16px;
  margin-top: 32px;
}

footer .row a{
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

footer .row a:hover{
  text-decoration: underline;
  opacity: 0.65;
  cursor: pointer;
}


footer .row a.spec{
  padding: 4px 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 64px;
  color: rgba(255, 255, 255, 0.65);
}

footer .row a.spec:hover{
  text-decoration: none;
}

footer .row b:first-child{
  margin-top: 0px;
}

footer .copyright{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

footer .copyright .logo{
  margin: 0;
  padding: 0;
  height: 34px;
}

footer .copyright span{
  display: block;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.65;
}

footer .copyright span a{
  color: #42f593;
}

footer .copyright span a:hover{
  color: #05ffee;
  cursor: pointer;
}

footer > div.light .copyright .links{
  width: auto;
}

footer > div.light .copyright .links a{
  margin-right: 0;
  font-size: 14px;
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.65);
}

footer > div.light .copyright .links .dot{
  margin-left: 14px;
  height: 6px;
  width: 6px;
  background: #fff;
  opacity: 0.25;
  border-radius: 10px;
}

#contentFrame{
  width: 100%;
  min-height: 100vh;
}

.contentSection{
  padding: 12px;
  padding-top: 38px;
  padding-bottom: 38px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sectionTitle{
  margin: 0;
  padding: 0;
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
  text-align: center;
  font-size: 38px;
  letter-spacing: 1px;
  overflow-wrap: break-word;
  position: relative;
  display: block;
}

.sectionText{
  width: 100%;
  padding: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: #c1c1c1;
  text-align: center;
  overflow-wrap: break-word;
}

.sectionText b{
  color: #f5185b;
}

.sectionText a{
  color: #42f593;
  opacity: 0.5;
}

.sectionText a:hover{
  opacity: 1;
  text-decoration: underline;
}

.sectionText.flowText{
  text-align: left;
  width: 100%;
}

.sectionText.flowText > *{
  text-align: left;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.sectionText.flowText > h1{
  margin-top: 24px;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.sectionText.flowText > h2{
  margin-top: 16px;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 8px;
}

.sectionText.flowText > h3{
  margin-top: 12px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 16px;
}

.sectionText.flowText p{
  padding-left: 24px;
}

.actionButton{
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--accent-color);
  font-weight: 500;
  color: var(--accent-color);
  font-size: 16px;
  transition: background 0.1s linear, color 0.1s linear;
}

.actionButton:hover{
  cursor: pointer;
  color: #000;
  background: var(--accent-color);
}

.footerFAQ{
  width: 100%;
  margin-bottom: -50px;
  margin-top: 50px;
  background: #303033;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  padding-bottom: 32px;
}

.footerFAQ h2{
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  font-size: 38px;
  letter-spacing: 1px;
  margin-bottom: 28px;
  margin-top: 22px;
}

.footerFAQ .entryFaq{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 4px;
}

.footerFAQ .entryFaq > button{
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.1s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerFAQ .entryFaq > button > h3{
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1px;
  width: 100%;
  text-align: left;
  padding-right: 32px;
}

.footerFAQ .entryFaq > button > svg{
  position: absolute;
  right: 12px;
  height: 28px;
  width: 28px;
  fill: #fff;
  transition: transform 0.1s linear;
}

.footerFAQ .entryFaq > button:hover{
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}

.footerFAQ .entryFaq > div{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .15s;
  width: 100%;
}

.footerFAQ .entryFaq > div > div i{
  font-weight: 700;
  font-style: normal;
}

.footerFAQ .entryFaq > div > div{
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity .15s;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: #c1c1c1;
}

.footerFAQ .entryFaq.visible > div{
  grid-template-rows: 1fr;
}

.footerFAQ .entryFaq.visible > div > div{
  opacity: 1;
  visibility: inherit;
}

.footerFAQ .entryFaq.visible > button > svg{
  transform: rotateX(180deg);
}

.footerFAQ .entryFaq.job{
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  margin-bottom: 18px;
}

.footerFAQ .entryFaq.job.visible{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footerFAQ .entryFaq.job button{
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footerFAQ .entryFaq.job button h3{
  color: #f5185b;
}

.footerFAQ .entryFaq.job button:hover{
  background: rgba(0, 0, 0, 0.5);
}

.footerFAQ .entryFaq.job.visible button{
  background: rgba(0, 0, 0, 0.5);
}


.footerFAQ .entryFaq.job > div > div{
  padding: 0px;
}

.footerFAQ .entryFaq.job > div > div > div{
  padding: 12px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footerFAQ .entryFaq.job > div > div > div b{
  color: #f5185b;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  opacity: 0.9;
  text-align: left;
}

.footerFAQ .entryFaq.job > div > div > div ul{
  margin-top: 6px;
  padding-left: 24px;
}

.footerFAQ .entryFaq.job > div > div > div a.actionButton:hover{
  text-decoration: none;
  color: #000;
}

.footerFAQ b{
  font-size: 14px;
  font-weight: 400;
  color: #ddd;
  margin-top: 12px;
  opacity: 0.8;
}

.footerFAQ a{
  color: #50c77b;
  margin-left: 3px;
  margin-right: 3px;
}

.footerFAQ a:hover{
  cursor: pointer;
  color: #55d483;
  text-decoration: underline;
}

.footerFAQ a.btn{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #50c77b;
  border-radius: 6px;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  transition: background 0.1s linear, color 0.1s linear, opacity 0.1s linear;
  opacity: 0.95;
}

.footerFAQ a.btn:hover{
  background: #50c77b;
  color: #000;
  opacity: 1;
  text-decoration: none;
}

.contactBtn{
  height: 44px;
  padding-left: 8px;
  padding-right: 14px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.1s linear, color 0.1s linear;
  margin-bottom: 16px;
  user-select: none;
}

.contactBtn span{
  color: #000;
}

.contactBtn.disabled{
  opacity: 0.3;
  pointer-events: none;
}

.contactBtn svg{
  height: 32px;
  width: 32px;
  margin-right: 6px;
  fill: #000;
  transition: fill 0.1s linear;
}

.contactBtn:hover{
  background: #000;
  color: #fff;
  cursor: pointer;
}

.contactBtn:hover span{
  color: #fff;
}

.contactBtn:hover svg{
  fill: #fff;
}

.contactSvg{
  opacity: 1;
  transition: opacity 0.1s linear;
  margin-bottom: 12px;
}

.contactSvg:hover{
  cursor: pointer;
  opacity: 0.8;
}

@media screen and (max-width: 800px), (orientation: portrait)
{
  .mobileOnly{
    display: flex !important;
  }
.intro .hero{
  width: 100%;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 20px;
}

.intro .hero h1{
  font-size: 70px;
  text-align: center;
  margin-bottom: 24px;
  margin-top: -12px;
}

.intro .hero h3{
  padding-left: 15px;
  padding-right: 15px;
  min-width: 90%;
}

.intro .actionButtons{
  flex-direction: column-reverse;
  margin-top: 32px;
}

.intro .actionButtons a{
  margin-bottom: 22px;
  width: 100%;
  padding: 32px 22px;
  font-size: 20px;
}

.intro .actionButtons a svg{
  width: 38px;
  height: 38px;
}

  footer > div{
    flex-direction: column;
    padding-left: 42px;
  }
  footer .row{
    margin-left: 0;
    margin-bottom: 25px;
  }
  footer > div.light .links{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  footer > div.light .wrap{
    padding-left: 18px;
  }
  footer > div.light .links a{
    margin-right: 0;
    margin-bottom: 8px;
  }
  footer > div.light .links a:last-child{
    margin-bottom: 0;
  }
  footer .copyright{
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
  }
  footer > div.light .copyright .links .dot{
    display: none;
  }
  footer > div.light .copyright .links a{
    margin-left: 0;
  }
  footer .copyright span{
    margin-top: 22px;
  }

  footer > div.light > .wrap::before{
    content: "";
    position: absolute;
    width: 150%;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(42, 189, 91, 1) 0%, rgba(0,0,0,0) 70%);
    opacity: 0.1;
    top: 0;
  }
  footer .copyright.reverse{
    flex-direction: column;
  }
  footer .copyright .logo{
    margin-bottom: 12px;
  }
  footer .copyright.reverse span{
    margin-bottom: 12px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 1080px), (orientation: portrait)
{
  .mobileSteps{
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 0;
  }
  .formHeader{
    margin-bottom: 0px;
  }
  .mobileHiddenSteps{
    display: none;
  }
  .link span{
    display: none;
  }

  .centeredContent{
    min-height: 100vh;
    justify-content: flex-start;
  }

  .formContent.centered > .formSubHeader{
    text-align: center;
  }

  .formContent{
    width: 100%;
    max-width: unset;
    border-radius: 12px;
    padding: 28px;
    box-shadow: none;
    margin-bottom: 25px;
  }

  .smallerForm, .formSubText, .formSubHeader{
    width: 100%;
  }
  .formTable{
    width: 100%;
    margin-left: 0%;
  }
}

@media (orientation: portrait)
{

  .mobileHidden{
    display: none !important;
  }

  header .headerContent .link{
    width: 36px;
    height: 36px;
    border-radius: 128px;
    padding: 0;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }

  header .headerContent .link span{
    display: none;
  }

}


.sectionWrap{
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-left: 12px;
  padding-right: 12px;
}

.sectionWrapSmaller{
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.sectionWrapMiddle{
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.stepSection{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.stepSection .num{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 220px;
  background: red;
  position: relative;
  clip-path: polygon(0 0, 50% 20%, 100% 0, 100% 34%, 100% 78%, 50% 100%, 0 78%, 0 34%);
  background: rgb(73,73,73);
  background: linear-gradient(0deg, #ffd642 0%, #fff2c2 100%);
  flex-shrink: 0;
}

.stepSection .num .bg{
  position: absolute;
  top: 6px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  clip-path: polygon(0 0, 50% 20%, 100% 0, 100% 34%, 100% 78%, 50% 100%, 0 78%, 0 34%);
  background: #18181b;
  background: linear-gradient(180deg, #18181b 0%, #262629 100%);
}

.stepSection .num > b{
  font-size: 68px;
background: linear-gradient(#fff2c2, #ffd642);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
z-index: 1;
}

.stepSection.reverse .num{
  background: linear-gradient(180deg, #ffd642 0%, #fff2c2 100%);
}

.stepSection .txt{
  flex-grow: 1;
  padding-left: 12px;
  margin-left: 32px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 8px;
}

.stepSection .txt label{
  padding: 0;
  margin: 0;
  opacity: 0.45;
  font-size: 14px;
  overflow-wrap: break-word;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 4px;
}

.stepSection .txt h1{
  padding: 0;
  margin: 0;
  font-size: 28px;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}

.stepSection .txt p{
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #ddd;
  overflow-wrap: break-word;
}

.stepSection .txt p a{
  color: #3ed683;
}

.stepSection .txt p a:hover{
  color: #42f593;
  text-decoration: underline;
}

.stepEnd{
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffd642 0%, #fff2c2 50%, #18181b 70%);
  position: relative;
  padding: 28px;
  margin-top: 18px;
}

.stepEnd.start{
  margin-bottom: 18px;
  background: linear-gradient(0deg, #fff2c2 0%, #18181b 80%);
}

.stepEnd .bg{
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 10px;
  background: #18181b;
  z-index: 0;
}

.stepEnd > h1, .stepEnd > p{
  z-index: 5;
  display: block;
  position: relative;
}

.stepEnd h1{
  padding: 0;
  margin: 0;
  font-size: 28px;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}

.stepEnd p{
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #ddd;
  overflow-wrap: break-word;
}

.contentWrapper > .hero{
  width: 100%;
  height: 520px;
  background: #111112;
  margin-top: -22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-wrap: break-word;
  margin-bottom: 18px;
}

.contentWrapper > .hero h1{
  margin: 0;
  padding: 0;
  font-size: 54px;
  text-align: center;
  font-weight: 800;
  line-height: 1;
}

.contentWrapper > .hero h1 b{
  display: block;
  color: #f5185b;
}

.contentWrapper > .hero p{
  width: 550px;
  max-width: 550px;
  text-align: center;
  margin-top: 42px;
  color: #fff;
  opacity: 0.8;
  font-size: 23px;
}

.contentWrapper > .hero p b{
  color: #13e1f0;
}

.requirements{
  padding: 32px;
  padding-top: 26px;
  padding-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background: rgb(27 27 28);
  background: linear-gradient(0deg, rgb(27 27 28) 0%, rgb(33 33 37) 100%);
}

.requirements span{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.requirements > div{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}

.requirements ul{
  margin: 0;
  padding: 0;
  margin-left: 16px;
}

.requirements ul li {
  padding-left: 0;
  vertical-align: middle;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 8px;
  background: rgb(0 247 112 / 24%);
  background: linear-gradient(145deg, rgb(0 247 112 / 8%) 20%, #2d2d2f 100%);
  padding: 2px 8px;
  border-radius: 6px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.requirements ul li::marker {
	content: "👉 ";
}

.requirements.check ul li::marker {
	content: "✔️ ";
}

.requirements.steps ul li::marker {
	content: "*️⃣ ";
}

.requirements.steps ul li:nth-child(1)::marker {
	content: "1️⃣ ";
}
.requirements.steps ul li:nth-child(2)::marker {
	content: "2️⃣ ";
}
.requirements.steps ul li:nth-child(3)::marker {
	content: "3️⃣ ";
}
.requirements.steps ul li:nth-child(4)::marker {
	content: "4️⃣ ";
}
.requirements.steps ul li:nth-child(5)::marker {
	content: "5️⃣ ";
}
.requirements.steps ul li:nth-child(6)::marker {
	content: "6️⃣ ";
}
.requirements.steps ul li:nth-child(7)::marker {
	content: "7️⃣ ";
}
.requirements.steps ul li:nth-child(8)::marker {
	content: "8️⃣ ";
}
.requirements.steps ul li:nth-child(9)::marker {
	content: "9️⃣ ";
}
.requirements.steps ul li:nth-child(10)::marker {
	content: "🔟 ";
}

@media (max-width:400px) {
  .stepSection{
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .stepSection .txt{
    margin-left: 0px;
    padding-left: 0px;
    padding-top: 12px;
  }

  .stepSection .txt > *{
    text-align: center;
    width: 100%;
  }

  .contentWrapper > .hero{
    padding: 12px;
    height: auto;
    min-height: 400px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contentWrapper > .hero h1{
    width: 100%;
    text-align: left;
    font-size: 42px;
  }

  .contentWrapper > .hero p{
    width: 100%;
    text-align: left;
    font-size: 20px;
  }

}

.scrollToTopBtn{
  position: fixed;
  bottom: 18px;
  right: 18px;
  height: 38px;
  width: 38px;
  background: #1c1b24;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0;
  transition: opacity 0.1s linear;
  pointer-events: none;
}

.scrollToTopBtn.visible{
  opacity: 0.75;
  pointer-events: auto;
}

.scrollToTopBtn svg{
  height: 100%;
  width: 100%;
  fill: #fff;
}

.scrollToTopBtn:hover{
  opacity: 1;
  cursor: pointer;
}

.benefits{
  width: 100%;
}

.benefits .fix{
  width: 180px;
}

.benefits .txt{
  text-align: left;
  opacity: 0.5;
}

.benefits th{
  text-align: center;
  padding: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits tr th:first-child{
  border-left: none;
}

.benefits tr:nth-child(2n){
  background: rgba(0,0,0,0.15);
}

.benefits td:nth-child(2), .benefits th:nth-child(2){
  background: #33e96c05;
}

.benefits tr:nth-child(2n) {
  background: rgba(0,0,0,0.15);
}

.benefits th .block{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  background: linear-gradient(310deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.15) 100%);
  color: rgba(255, 255, 255, 0.3);
  padding: 10px 2px;
  border-radius: 4px;
}

.benefits th .block.chaos{
  background: #9b123c;
  background: linear-gradient(310deg, #9b123c 0%, rgba(252,70,107,1) 100%);
  color: #fff;
  font-weight: 700;
}

.benefits tr td{
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits tr td:first-child{
  border-left: none;
}

.benefits tr td b{
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.benefits tr td span{
  opacity: 0.75;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
}

.benefits tr td svg{
  height: 32px;
  width: 32px;
}

.benefits tr td > div{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#checkPath{
  fill: #0fdb6b;
}

#crossPath{
  fill: rgba(255, 255, 255, 0.3);
}

.signCanvas{
  width: 100%;
  aspect-ratio: 1 / 0.3;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #31303b;
  overflow: hidden;
  position: relative;
}

.signCanvas > canvas{
  width: 100%;
  height: 100%;
}

.desktopOnly{
  display: flex !important;
}

.mobileOnly{
  display: none !important;
}

@media (orientation: portrait)
{

  .desktopOnly{
    display: none !important;
  }

  .mobileOnly{
    display: flex !important;
  }

  .scrollToTopBtn, .scrollToTopBtn.visible{
    display: none;
  }

  .sectionWrapSmaller, .sectionWrap, .sectionWrapMiddle{
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .stepSection .txt label{
    display: none;
  }

  .contentWrapper > .hero{
    padding: 12px;
    height: auto;
    min-height: 400px;
    padding-top: 100px;
    padding-bottom: 58px;
  }

  .contentWrapper > .hero h1{
    width: 100%;
    font-size: 42px;
  }

  .contentWrapper > .hero p{
    width: 100%;
    font-size: 20px;
  }

  .sectionTitle{
    text-align: left;
    font-size: 28px;
    display: block;
    width: 100%;
  }
  .sectionText{
    text-align: left;
    display: block;
    width: 100%;
  }

  .footerFAQ h2{
    font-size: 28px;
  }

}


.actionBtn{
  height: 38px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 8px;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: #000;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: background 0.1s linear, color 0.1s linear;
  margin-bottom: 12px;
  margin-top: 12px;
}

.actionBtn span{
  color: #000;
  font-size: 18px;
}

.actionBtn svg{
  height: 28px;
  width: 28px;
  margin-right: 6px;
  fill: #000;
  transition: fill 0.1s linear;
}

.actionBtn:hover{
  background: #000;
  color: var(--accent-color);
  cursor: pointer;
}

.actionBtn:hover span{
  color: var(--accent-color);
}

.actionBtn:hover svg{
  fill: var(--accent-color);
}


.specialBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 48px;
  background: #12629b;
  background: linear-gradient(310deg, #12629b 0%, rgb(70 225 252) 100%);
  transition: background 0.1s linear, color 0.1s linear;
  position: relative;
  color: #eee;
}

.specialBtn::before{
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #27272a;
  border-radius: 48px;
  transition: background 0.1s linear;
}

.specialBtn:hover{
  cursor: pointer;
  color: #000;
}

.specialBtn:hover::before{
  cursor: pointer;
  background: transparent;
}

.specialBtn span{
  z-index: 2;
  line-height: 1.2;
}

.specialBtn svg{
  height: 21px;
  width: 21px;
  fill: #eee;
  z-index: 2;
  transition: fill 0.1s linear;
}

.specialBtn:hover svg{
  fill: #000;
}

.specialBtn svg:first-child{
  margin-right: 6px;
}

.specialBtn svg:last-child{
  margin-left: 6px;
}

.calculator{
  padding: 32px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-radius: 18px;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(0deg, #454545 20%, #313135 100%);
  position: relative;
  min-height: 100px;
  padding-right: 120px;
}

.calculator b{
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
  margin: 0;
  padding: 0px;
  margin-bottom: 12px;
}

.calculator p{
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  opacity: 0.5;
  margin: 0;
  padding: 0px;
  margin-top: 6px;
  padding-top: 6px;
  text-align: center;
}

.calculator .result{
  background: #29292d;
  padding-left: 32px;
  padding-right: 32px;
  min-width: 220px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator label{
  font-size: 39px;
  font-weight: 700;
  background: -webkit-linear-gradient(#fff, #a8a8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 0px;
}

.calculator > svg{
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 120px;
  width: 120px;
  filter: drop-shadow(0px 0px 12px rgb(0 0 0 / 0.5));
  opacity: 0.25;
}

.calculator .row{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}

.numberqty {
  position: relative;
  background-color: #656565;
  border: 5px solid #656565;
  border-left: 0px;
  border-right: 0px;
  display: flex;
  flex-direction: row;
  padding-left: 6px;
  border-radius: 18px;
}


.numberqty::after{
  content: "";
  position: absolute;
  right: -16px;
  top: -5px;
  width: 32px;
  height: calc(100% + 10px);
  background: #656565;
  clip-path: polygon(0% 0%, 50% 0, 100% 50%, 50% 100%, 0% 100%);
}

.numberqty input, .numberqty .qty-btn {
  position: relative;
  display: block;
  float: left;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0px;
  text-align: center;
  line-height: 40px;
  outline: 0;
  box-shadow: 0px;
}
.numberqty .qty-btn {
  width: 45px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
  user-select: none;
  transition: all 250ms ease;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  margin-right: 4px;
}

.numberqty .qty-btn svg{
  width: 22px;
  height: 22px;
}

.numberqty .qty-btn:hover svg{
  fill: #33e985;
}

.numberqty .qty-btn.disabled {
  cursor: default;
  color: rgba(116, 116, 116, 0.5);
}
.numberqty input {
  width: 130px;
  border-left: 0;
  border-right: 0;
  font-size: 18px;
  font-weight: 500;
  border-radius: 120px;
}


@media screen and (max-width: 800px), (orientation: portrait)
{

  .calculator{
    padding-right: 32px;
    align-items: center;
    justify-content: center;
  }

  .calculator > svg{
    display: none;
  }

  .calculator p{
    text-align: center;
  }

  .calculator .row {
    flex-direction: column;
  }

  .calculator .result {
    border-radius: 32px;
  }

  .numberqty{
    padding-right: 6px;
  }

  .numberqty::after {
    display: none;
  }

  .benefits .fix{
    width: 140px;
  }

  .benefits .fix .block{
    font-size: 14px;
  }

  .specialBtn{
    width: 100%;
    font-size: 21px;
    padding: 14px 22px;
    border-radius: 4px;
  }

  .specialBtn::before{
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 3px;
  }

  .specialBtn svg{
    height: 28px;
    width: 28px;
  }
}

[View="Alone"] .contentWrapper{
  margin-top: 0px;
  min-height: 100vh;
  background: transparent;
}

[View="Alone"] .contentWrapper .hero{
  margin-top: 0px;
  min-height: 100vh;
  margin-bottom: 0px;
  border: none;
}

[View="Alone"] footer{
  border-top: none;
}

[View="Alone"] .contentWrapper .hero h1{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 12px;
  margin-top: 64px;
}

[View="Alone"] .contentWrapper .hero h1 span{
  display: block;
  margin-top: -20px;
}

[View="Alone"] .contentWrapper .hero h3{
  width: 100%;
  backdrop-filter: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

[View="Alone"] .specialBtn{
  width: 100%;
  font-size: 21px;
  padding: 18px 22px;
  border-radius: 12px;
  margin-top: 16px;
}

[View="Alone"] .specialBtn::before{
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 11px;
}

[View="Alone"] .specialBtn svg{
  height: 28px;
  width: 28px;
}

[View="Alone"]{
  background: linear-gradient(0deg, rgba(37,0,0,1) 0%, #0d0c13 16%, #0d0c13 79%, rgba(0,33,15,1) 100%)
}

[View="Alone"] .intro{
background: transparent;
}

[View="Alone"] .intro .hero::before{
  display: none;
}

[View="Alone"] .intro .hero{
  padding-bottom: 64px;
  justify-content: flex-start;
  padding-top: 64px;
}

[View="Alone"] footer{
  background: transparent;
  padding-bottom: 112px;
}

[View="Alone"] footer .logo{
  margin-right: unset;
  height: 48px;
  width: 180px;
}

[View="Alone"] footer > div{
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

[View="Alone"] footer > div .links{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

[View="Alone"] footer > div .links a{
  opacity: 0.5;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 14px;
}

.fixedJoin{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0px 0px;
  z-index: 10;
}

.fixedJoin > a{
  background: #9b123c;
  background: linear-gradient(310deg, #9b123c 0%, rgba(252,70,107,1) 100%);
  color: #fff;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 2px;
  font-size: 19px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.fixedJoin > a span{
  text-transform: uppercase;
}

.fixedJoin > a b{
  width: 48px;
  font-size: 20px;
  text-align: center;
}

.fixedJoin > a::before {
	 content: "";
	 position: absolute;
	 top: 0;
	 width: 100%;
	 height: 100%;
	 background: linear-gradient(-40deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
   animation: shine 1.75s linear infinite;
}

.fixedJoin > a:hover{
  background: #a31742;
  background: linear-gradient(310deg, #a31742 0%, rgba(252, 83, 118,1) 100%);
  cursor: pointer;
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
 }
  40%, 100% {
    left: 100%;
    transition-property: left;
 }
}


.promoBtn{
  position: relative;
  width: 100%;
  padding: 16px;
  background: #1c1b24;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.1s linear;
}

.promoBtn span{
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.75px;
  color: #ededed;
}

.promoBtn:hover{
  cursor: pointer;
  background: #24232e;
}

.svgIntroBackground{
  z-index: 0;
  position: absolute;
  opacity: 0.15;
}

.lockView{
  background: rgba(0,0,0, 0.325);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 420px;
  max-width: 100%;
  margin: 12px;
}

.lockView > svg{
  height: 48px;
  width: 48px;
  margin-bottom: 12px;
}

.lockView > b{
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
  font-size: 18px;
  opacity: 0.9;
}

.lockView > span{
  margin: 0;
  padding: 0;
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.65;
}

.lockView .altLink{
  margin: 0;
  padding: 0;
  color: #4bbde3;
  font-size: 15px;
  opacity: 0.75;
  margin-top: 12px;
  text-align: center;
}

.lockView .altLink:hover{
  opacity: 0.95;
}

@media screen and (max-width: 800px), (orientation: portrait)
{
  .lockView{
    width: 100%;
    margin: 0;
  }

}
