.listreset {
  margin: 0;
  padding: 0;
  list-style: none;
}
.customRadio [type="radio"]:checked,
.customRadio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.customRadio [type="radio"]:checked + label,
.customRadio [type="radio"]:not(:checked) + label {
  position: relative;
  display: inline-block;
  color: #666;
}
.customRadio [type="radio"]:checked + label:before,
.customRadio [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 100%;
  background: #fff;
  margin-top: 0.25em;
  box-sizing: border-box;
}
.customRadio [type="radio"]:not(:checked) + label:before {
  border-color: #999;
}
.customRadio [type="radio"]:checked + label:after,
.customRadio [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fc0;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  transition: all 0.2s ease;
  margin-top: 0.25em;
}
.customRadio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.customRadio [type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.customCheckbox [type="checkbox"]:checked,
.customCheckbox [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.customCheckbox [type="checkbox"]:checked + label,
.customCheckbox [type="checkbox"]:not(:checked) + label {
  position: relative;
  display: inline-block;
  color: #666;
}
.customCheckbox [type="checkbox"]:checked + label:before,
.customCheckbox [type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #fc0;
  background: #fc0;
  margin-top: 0.25em;
  box-sizing: border-box;
}
.customCheckbox [type="checkbox"]:not(:checked) + label:before {
  border-color: #989898;
  background: #f2f2f2;
}
.customCheckbox [type="checkbox"]:checked + label:after,
.customCheckbox [type="checkbox"]:not(:checked) + label:after {
  content: "\e801";
  font-family: 'picsioIcons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 5px;
  left: 3px;
  font-size: 11px;
  color: #000;
  margin-top: 0.225em;
}
.customCheckbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
}
.customCheckbox [type="checkbox"]:checked + label:after {
  opacity: 1;
}
.dots {
  display: inline-block;
}
.dots::after {
  content: '';
  animation: dots 2s steps(4, end) infinite;
}
@keyframes dots {
  0%,
  20% {
    content: '';
  }
  40% {
    content: '.';
  }
  60% {
    content: '..';
  }
  80%,
  100% {
    content: '...';
  }
}
.picsioSpinner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
  color: #fff;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.picsioSpinner .innerPicsioSpinner {
  width: 20px;
  height: 20px;
}
.picsioSpinner .innerPicsioSpinner .spinner {
  width: inherit;
  height: inherit;
  margin: 0 auto;
  -webkit-animation: rotate 2.0s infinite linear;
  animation: rotate 2.0s infinite linear;
}
.picsioSpinner .innerPicsioSpinner .spinner div,
.picsioSpinner .innerPicsioSpinner .spinner span {
  width: 50%;
  height: 50%;
  display: inline-block;
  position: absolute;
  top: 0;
  background: #fff;
  border-radius: 100%;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.picsioSpinner .innerPicsioSpinner .spinner span {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.picsioSpinner .innerPicsioSpinner .titleSpinner {
  display: none;
  font-size: 16px;
  padding: 20px 14px 5px 14px;
  vertical-align: middle;
  font-weight: 300;
}
.picsioSpinner .innerPicsioSpinner .titleSpinner.show {
  display: inline-block;
}
.picsioSpinner .innerPicsioSpinner .spinnerProgress {
  display: block;
  margin-top: 10px;
}
.picsioSpinner .innerPicsioSpinner .textSpinner {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 20px;
  padding-top: 20px;
  text-align: left;
}
.picsioSpinner .innerPicsioSpinner .textSpinner.show {
  display: block;
}
.picsioSpinner.center .innerPicsioSpinner .textSpinner {
  text-align: center;
}
.preferences {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background: #373737;
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
}
.preferencesTop {
  background: #fc0;
  flex: 0 0 248px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 414px) {
  .preferencesTop {
    flex: 0 0 180px;
  }
}
@media only screen and (max-width: 375px) {
  .preferencesTop {
    padding: 0 15px;
  }
}
.preferencesBoxCenter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .preferencesBoxCenter {
    padding-top: 0px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.preferencesBoxCenter__item {
  position: relative;
  border: 1px solid #D9D9D9;
  padding: 24px;
  padding-left: 40px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .preferencesBoxCenter__item {
    padding-left: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .preferencesBoxCenter__item:nth-child(odd) {
    border-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .preferencesBoxCenter__item:nth-child(-n + 2) {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .preferencesBoxCenter__item:not(:last-child) {
    border-bottom: 0;
  }
}
.preferencesBoxCenter__link {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  scale: 1.01;
}
.preferencesBoxCenter__link:hover {
  border: 3px solid #FFCC00;
}
.preferencesBoxCenter__text {
  margin-left: 25px;
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #3C3C3C;
  text-align: start;
}
@media only screen and (max-width: 767px) {
  .preferencesBoxCenter__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .preferencesBoxCenter__text {
    font-size: 14px;
  }
}
.preferencesTopBar {
  width: 100%;
  box-sizing: border-box;
  height: 50px;
  display: flex;
  align-items: center;
}
.preferencesLogo {
  height: 100%;
}
.preferencesLogo a {
  width: 50px;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.preferencesUserInfo {
  margin-left: auto;
  margin-right: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: right;
}
.preferencesUserInfo a {
  color: black;
  margin-left: 12px;
  text-decoration: none;
}
.preferencesUserInfo a:hover {
  text-decoration: underline;
}
.preferencesUserInfo > * {
  display: inline-block;
}
.preferencesBottom {
  text-align: center;
  padding: 0 25px 25px;
}
@media only screen and (max-width: 375px) {
  .preferencesBottom {
    padding: 0 15px 15px;
  }
}
.preferenceBoxEmail {
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  max-width: 930px;
  margin: -148px auto 0;
  font-weight: 300;
  box-sizing: border-box;
  color: #494949;
  font-size: 18px;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}
.preferenceBoxEmail .emailIcon {
  width: 100%;
}
.preferenceBoxEmail .emailIcon svg {
  width: inherit;
  height: inherit;
}
@media only screen and (max-width: 479px) {
  .preferenceBoxEmail {
    font-size: 16px;
  }
}
@media only screen and (max-width: 414px) {
  .preferenceBoxEmail {
    margin-top: -128px;
  }
}
@media only screen and (max-width: 375px) {
  .preferenceBoxEmail {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .preferenceBoxEmail.wide {
    padding: 0 50px 70px;
  }
  .preferenceBoxEmail.statusBox {
    padding: 0 50px 70px;
  }
}
@media only screen and (min-width: 768px) {
  .preferenceBoxEmailMessage {
    padding: 0 100px 48px;
  }
}
@media only screen and (max-width: 767px) {
  .preferenceBoxEmailMessage {
    font-size: 15px;
    padding: 0 30px 30px;
  }
}
.preferencesBox {
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  max-width: 1050px;
  margin: -148px auto 0;
  padding: 0 50px 50px;
  font-weight: 300;
  box-sizing: border-box;
  color: #494949;
  font-size: 18px;
  line-height: 1.5;
  overflow: hidden;
}
.preferencesBox.emailValidation {
  background: none;
  box-shadow: none;
}
.preferencesBox.connectS3 .inputsWrapper .codeInputWrapper {
  margin-top: 30px;
}
.preferencesBox.connectS3 .preferencesTextBody {
  margin-top: 20px;
}
.preferencesBox.selectBucketBox .preferencesOption {
  display: flex;
  flex-flow: column;
}
.preferencesBox.selectBucketBox .preferencesOption[data-tooltip] {
  position: relative;
}
.preferencesBox.selectBucketBox .preferencesOption[data-tooltip]:after {
  content: attr(data-tooltip);
  position: absolute;
  left: 5%;
  font-size: 12px;
  padding: 5px;
  bottom: 80%;
  background-color: #373737;
  color: #fff;
  width: max-content;
  opacity: 0;
  -webkit-transition: opacity 0.75s ease-in-out;
  /* 👈 Change the time to meet your requirements. */
}
.preferencesBox.selectBucketBox .preferencesOption[data-tooltip]:hover:after {
  opacity: 1;
}
.preferencesBox.selectBucketBox .s3bucketSelect.is-select {
  overflow: visible;
  margin-top: 20px;
}
.preferencesBox.selectBucketBox .s3bucketSelect .s3bucketSelectLabel {
  position: absolute;
  top: -20px;
  color: #666;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  margin: 0;
}
@media only screen and (max-width: 479px) {
  .preferencesBox {
    font-size: 16px;
    padding: 0 30px 30px;
  }
}
@media only screen and (max-width: 414px) {
  .preferencesBox {
    margin-top: -128px;
  }
}
@media only screen and (max-width: 375px) {
  .preferencesBox {
    font-size: 15px;
    padding: 0 20px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .preferencesBox {
    padding: 0 100px 70px;
  }
  .preferencesBox.wide {
    padding: 0 50px 70px;
  }
  .preferencesBox.statusBox {
    padding: 0 50px 70px;
  }
}
.preferencesBox p {
  margin: 0 0 1em;
}
.preferencesBox .radioList ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.preferencesBox .radioList li + li {
  margin-top: 15px;
}
.preferencesBox .radioList label {
  padding-left: 30px;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}
@media only screen and (max-width: 375px) {
  .preferencesBox .radioList label {
    padding-left: 25px;
  }
}
.preferencesBox .radioList .otherInput {
  background: #F4F4F4;
  border: 0;
  border-top: 1px solid #cecece;
  color: #000;
  box-sizing: border-box;
  height: 33px;
  font: inherit;
  padding-left: 16px;
  margin-left: 15px;
}
.preferencesBox .radioList .otherInput[disabled='true'] {
  color: #d1d1d1;
}
.labelInput {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.labelInput .otherInput {
  width: auto;
  min-width: 0;
  flex: 1;
}
.preferencesBoxTop {
  min-height: 148px;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}
.preferencesBoxTop.email {
  flex-direction: column;
}
@media only screen and (max-width: 414px) {
  .preferencesBoxTop {
    min-height: 128px;
    padding: 15px 0;
  }
}
.preferencesBoxBottom {
  padding-top: 41px;
  text-align: left;
}
.preferencesBoxBottom.withVisual {
  display: flex;
}
.preferencesBoxBottom.withVisual > div {
  position: relative;
  flex-grow: 1;
}
.preferencesBoxBottom.withVisual figure {
  display: none;
  width: 50%;
  margin: 0;
  text-align: right;
}
@media only screen and (min-width: 960px) {
  .preferencesBoxBottom.withVisual figure {
    display: block;
  }
}
.preferencesBoxBottom.withVisual figure img {
  margin: 0 0 -35px -15px;
}
.preferencesBoxBottom .errString {
  width: 100%;
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #c00;
}
.preferencesBoxTop + .preferencesBoxBottom {
  padding-top: 0;
}
.line + .preferencesBoxBottom {
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .preferencesBoxBottom {
    padding-top: 30px;
  }
}
.preferencesBoxBottom .picsioLink {
  color: inherit;
  text-decoration: none;
}
.preferencesBoxBottom .picsioLink:hover {
  text-decoration: underline;
}
.preferencesBoxBottom .picsioStoragePackageIcon {
  width: 100%;
  display: flex;
  justify-content: center;
}
.preferencesBoxBottom .picsioStoragePackageIcon img {
  width: 300px;
}
.preferencesBoxBottom > label {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #666666;
}
.preferencesOptions label {
  display: inline-block;
  color: #494949;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 6px;
}
.preferencesOptions input {
  margin: 0;
}
.preferencesOptions span {
  margin-left: 19px;
}
.preferencesOptions .s3bucketSelect {
  position: relative;
  margin-top: 0;
  margin-left: 36px;
  margin-bottom: 30px;
}
.preferencesOptions .s3SelectRegion label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
}
.preferencesOptions .s3SelectRegion .s3bucketSelect {
  margin: 0;
}
@media only screen and (max-width: 479px) {
  .preferencesOptions label {
    line-height: 1.5em;
  }
  .preferencesOptions span {
    margin-left: 0;
  }
  .preferencesOptions .s3bucketSelect {
    max-width: 100%;
    margin: 0 0 10px 0;
  }
}
.preferencesBoxLine {
  background-color: #D1D1D1;
  height: 1px;
  width: 100%;
}
.preferencesBoxLine.is-success {
  background: #9BFC02;
}
.preferencesBoxLine.is-error {
  background: #c00;
}
.preferencesBoxTitle {
  font-weight: 200;
  font-size: 2em;
  line-height: 1.2;
  text-align: left;
  color: #333;
}
.preferencesBoxTitle.email {
  width: 100%;
  font-family: Fira Sans;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  text-align: start;
  color: #333;
  padding-top: 60px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .preferencesBoxTitle.email {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .preferencesBoxTitle.email {
    font-size: 24px;
  }
}
@media only screen and (max-width: 479px) {
  .preferencesBoxTitle.email {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .preferencesBoxTitle {
    margin-right: -50px;
  }
}
.preferencesBoxTitle a {
  text-decoration: none;
  color: #000;
}
.preferencesBoxTitle a:hover {
  border-bottom: 1px solid;
}
@media only screen and (max-width: 414px) {
  .preferencesBoxTitle {
    font-size: 1.6em;
    line-height: 1.2;
  }
}
.preferencesBoxDescription.email {
  width: 100%;
  font-family: Fira Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  text-align: start;
  color: #333;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .preferencesBoxDescription.email {
    font-size: 18px;
  }
}
@media only screen and (max-width: 479px) {
  .preferencesBoxDescription.email {
    font-size: 16px;
    line-height: 20px;
  }
}
.highlight {
  font-weight: 500;
}
.preferencesText {
  font-weight: 200;
}
.preferencesText.email {
  color: #999999;
  text-align: center;
}
.preferencesText.email #btnResend {
  color: #1E90FF;
}
.preferencesText.chooseBucketText {
  width: 100%;
  max-width: 430px;
  margin-bottom: 26px;
}
.preferencesText.summary p {
  display: inline-flex;
  flex-flow: row nowrap;
}
.preferencesText.summary p span {
  display: inline-flex;
  align-items: flex-start;
}
.preferencesText.summary p span:first-child {
  flex: 0;
  font-weight: bold;
  white-space: nowrap;
  margin-right: 5px;
}
.preferencesText.summary p span:last-child {
  flex: 1 auto;
}
.preferencesText.selectBucket {
  margin-left: 36px;
}
.preferencesText.selectBucket .s3bucketSelect {
  margin: 0;
}
.preferencesText.selectBucket .selectBucket__description {
  position: relative;
  top: -10px;
  color: #999;
  font-family: "Fira Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 2px;
}
.preferencesText.selectBucket .selectBucket__input {
  box-sizing: border-box;
  width: 100%;
  max-width: 290px;
  border: none;
  outline: none;
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 6px 8px;
  border-top: 1px solid #dadada;
  background: #F4F4F4;
  box-shadow: 0px -1px 0px #DFDEDE, 0px 1px 0px #F4F4F4;
}
.preferencesText h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 20px;
}
.preferencesText strong {
  font-weight: 400;
}
.preferencesText b {
  font-weight: 600;
}
.preferencesText a {
  color: inherit;
  text-decoration: underline;
}
.loader {
  width: 22px;
  height: 22px;
  border: 3px solid #FFC000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.importingStatus {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#firstImportingStatus,
#fullImportingStatus {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
}
.helpText {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  color: #999999;
}
.fs16 {
  font-size: 16px;
}
.preferencesList {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
}
.preferencesList li {
  position: relative;
  padding-left: 30px;
  margin: 0 0 14px;
}
.preferencesList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fc0;
}
.preferencesTextError {
  position: relative;
  color: #FF2428;
  margin: 20px 0;
  border: 1px solid #FF2428;
  background-color: rgba(255, 36, 40, 0.1);
  padding: 10px 35px;
}
.preferencesTextError:first-child {
  margin-top: 0;
}
.preferencesTextError.withIcon {
  padding-left: 59px;
  padding-top: 14px;
  padding-bottom: -14px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  min-height: 24px;
}
.preferencesTextError.withIcon::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 20px;
  top: 12px;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 21H23L12 2L1 21ZM13 18H11V16H13V18ZM13 14H11V10H13V14Z' fill='%23CC0000'/%3E%3C/svg%3E%0A");
}
.preferencesInfo {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 30px 14px 59px;
  border: 1px solid #ffca00;
  background: #FFC6001A;
  margin: 20px 0;
}
.preferencesInfo::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 20px;
  top: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4C7.58 4 4 7.58 4 12C4 16.42 7.58 20 12 20C16.42 20 20 16.42 20 12C20 7.58 16.42 4 12 4ZM12 6.67C12.74 6.67 13.33 7.27 13.33 8C13.33 8.73 12.73 9.33 12 9.33C11.27 9.33 10.67 8.73 10.67 8C10.67 7.27 11.26 6.67 12 6.67ZM14.67 16H9.34V14.67H10.99V12H9.33V10.67H13.33V14.67H14.66V16H14.67Z' fill='%23FFC000'/%3E%3C/svg%3E%0A");
}
.preferencesTeamsContainer {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}
.preferencesTeamItem {
  padding: 15px;
  border-bottom: 1px solid #eee;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.preferencesTextShopify {
  display: flex;
  flex-direction: column;
}
.preferencesTeamItem:hover {
  background-color: #efefef;
}
.preferencesTeamItem:last-child {
  border-bottom: none;
}
.preferencesBoxButtons {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
}
.preferencesBoxButtons.preferencesBoxButtonsRight {
  justify-content: flex-end;
}
@media only screen and (max-width: 479px) {
  .preferencesBoxButtons.preferencesBoxButtonsWrap {
    flex-wrap: wrap;
  }
  .preferencesBoxButtons.preferencesBoxButtonsWrap .infoText {
    flex: 1 0 100%;
    margin-bottom: 30px;
  }
}
.preferencesBoxButtons .infoText {
  width: 100%;
  flex: 1;
  padding-right: 30px;
  align-self: center;
}
.preferencesBoxButtons .infoText a {
  color: inherit;
  text-decoration: underline;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.preferencesBoxButtons .infoText a.colour {
  color: #0075FF;
  text-decoration: none;
}
.preferencesBoxButtons .infoText a.colour:hover {
  text-decoration: underline;
}
.preferencesBoxButtons .infoText a:hover {
  text-decoration: none;
}
.preferencesBoxButtons .right-btns {
  margin-left: auto;
}
.preferencesBoxButtons .next {
  margin-left: auto;
}
.preferencesBoxButtons .btnConfirm {
  order: 2;
}
.preferencesBoxButtons button,
.preferencesBoxButtons a {
  margin-right: 9px;
  margin-top: 9px;
}
.preferencesBoxButtons button:only-child,
.preferencesBoxButtons a:only-child {
  margin-top: 0;
}
@media only screen and (max-width: 479px) {
  .preferencesBoxButtons {
    margin-top: 30px;
  }
}
.formRequestDemo__inputs,
.formRequestSupport__inputs {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 30px 0 38px;
  gap: 15px;
}
.formRequestDemo__inputs.hidden,
.formRequestSupport__inputs.hidden {
  display: none;
}
@media only screen and (max-width: 479px) {
  .formRequestDemo__inputs,
  .formRequestSupport__inputs {
    flex-direction: column;
  }
}
.formRequestDemo__input,
.formRequestSupport__input {
  border: none;
  outline: none;
  width: 50%;
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 6px 8px;
  border-top: 1px solid #dadada;
  background: #F4F4F4;
  box-shadow: 0px -1px 0px #DFDEDE, 0px 1px 0px #F4F4F4;
  box-sizing: border-box;
}
.formRequestDemo__input.error,
.formRequestSupport__input.error {
  background-color: #fee;
}
.formRequestDemo__input::placeholder,
.formRequestSupport__input::placeholder {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #999;
}
@media only screen and (max-width: 479px) {
  .formRequestDemo__input,
  .formRequestSupport__input {
    width: 100%;
  }
}
.formRequestDemo__errorMessage,
.formRequestSupport__errorMessage {
  display: none;
  font-size: 12px;
  font-weight: 400;
  color: #c00;
  margin: -34px 0 16px;
}
.formRequestDemo.hasError .formRequestDemo__errorMessage,
.formRequestSupport.hasError .formRequestDemo__errorMessage {
  display: block;
}
.formRequestDemo .mask,
.formRequestSupport .mask {
  cursor: pointer;
}
.joinAnExistingTeamScreen .preferencesBox {
  max-width: 930px;
}
.joinAnExistingTeamScreen .preferencesBoxButtons,
.joinAnExistingTeamScreen .preferencesBoxBottom {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .joinAnExistingTeamScreen .preferencesBoxButtons {
    flex-direction: column;
  }
}
.joinAnExistingTeamScreen .formDescription {
  margin: 20px 0;
  font-family: Fira Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .joinAnExistingTeamScreen .formDescription {
    font-size: 14px;
  }
}
.joinAnExistingTeamScreen #btnRequestDemo,
.joinAnExistingTeamScreen #btnRequestSupport,
.joinAnExistingTeamScreen #btnBack {
  margin: 0;
}
.bookADemoScreen .btnConfirm {
  margin-left: auto;
  margin-right: 0;
}
.joinAnExistingTeamScreen .formRequestSupport {
  width: 100%;
}
.joinAnExistingTeamScreen .formRequestSupport__input {
  box-sizing: border-box;
  width: 100%;
  line-height: 20px;
  margin: 0 !important;
}
.joinAnExistingTeamScreen .formRequestSupport__description {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 0;
  font-family: Fira Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #999;
}
@media only screen and (max-width: 767px) {
  .joinAnExistingTeamScreen .formRequestSupport #btnRequestSupport {
    margin-top: 20px;
  }
}
.lastStepToJoinUsScreen .preferencesBoxButtons {
  margin-top: 35px;
  justify-content: flex-end;
}
.preferencesBoxRow {
  display: flex;
  justify-content: space-between;
}
.preferencesBoxColumn {
  padding: 15px;
}
.btnCancel,
.btnNext,
.btnConfirm {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  text-decoration: none;
  line-height: 28px;
  height: 30px;
  font-weight: 400;
  font-size: 14px;
  min-width: 90px;
  padding: 0 15px;
  text-align: center;
  cursor: pointer;
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
}
.btnCancel .picsioSpinner,
.btnNext .picsioSpinner,
.btnConfirm .picsioSpinner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: 1;
  visibility: hidden;
}
.btnCancel.spinner .picsioSpinner,
.btnNext.spinner .picsioSpinner,
.btnConfirm.spinner .picsioSpinner {
  visibility: visible;
}
.btnCancel:hover,
.btnNext:hover,
.btnConfirm:hover {
  opacity: 0.9;
  color: #000;
}
.btnCancel[disabled],
.btnNext[disabled],
.btnConfirm[disabled] {
  opacity: 0.3;
  cursor: default;
}
@media only screen and (max-width: 767px) {
  #btnBack + .btnConfirm {
    width: 100%;
  }
}
#btnResend {
  min-width: 130px;
  color: #000;
  font-weight: 300;
}
.btnCancel {
  border: 1px solid #D1D1D1;
  color: #000;
  background-image: linear-gradient(180deg, #fbfbfb 0%, #e8e8e8 100%);
}
.btnConfirm {
  border: 1px solid #feae12;
  border-top-color: #feb800;
  border-bottom-color: #ffa300;
  color: #000;
  background-image: linear-gradient(180deg, #ffcc00 0%, #ffbc00 100%);
}
.btnLarge {
  min-height: 44px;
  height: auto;
  width: 100%;
  margin: 0 0 20px;
  background: #fc0;
  border-radius: 6px;
  border: 1px solid #fc0;
  font-size: 18px;
}
.btnLink {
  min-height: 44px;
  height: auto;
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 20px;
  color: #333;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .full-width {
    width: 100%;
  }
}
.rawPopupHolder {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.rawPopupHolder.active {
  display: flex;
}
.rawPopup {
  margin: auto;
  max-width: 500px;
  width: 100%;
  font-size: 0;
  border: 1px solid #333;
}
.rawPopupTitle {
  height: 50px;
  line-height: 50px;
  display: block;
  padding-left: 15px;
  font-size: 30px;
  color: #fff;
  font-family: 'fira_sansultralight';
  background-color: #000;
  position: relative;
}
.rawPopupBody {
  padding: 15px 15px 15px 15px;
  font-family: 'fira_sansregular';
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
  background: #1c1c1c;
  display: block;
  max-height: calc(100vh - 200px);
  box-sizing: border-box;
  line-height: 26px;
  text-align: center;
}
.okBtn,
.cancelBtn {
  height: 50px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-family: 'fira_sansregular';
  font-weight: 600;
  vertical-align: middle;
  line-height: 50px;
  display: inline-block;
  width: 50%;
  background-color: #000;
  text-decoration: none;
}
.okBtn {
  border-left: 1px solid #333;
  box-sizing: border-box;
}
.rawPopupClose {
  position: absolute;
  right: 15px;
  top: 17px;
  font-size: 16px;
  cursor: pointer;
}
.otherInput {
  background: #000;
  border: none;
  outline: none;
  border-bottom: 1px solid #ccc;
  font-size: 15px;
  color: #fff;
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
  line-height: 16px;
  display: inline-block;
  margin-left: 10px;
  width: calc(100% - 155px);
}
.picsioInput {
  border: 0;
  background: #f4f4f4;
  color: #666;
  border-top: 1px solid #dfdede;
  border-bottom: 1px solid#f4f4f4;
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 5px 10px;
  line-height: 20px;
  height: 30px;
  box-sizing: border-box;
  -webkit-appearance: initial;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.codeInput {
  width: 66px;
}
.codeInputFullWidth {
  width: 100%;
}
.codeInputWrapper {
  margin-top: 10px;
}
.storageSelectBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.storageSelectBox > div {
  flex: 0 24%;
  min-width: 150px;
}
.storageItemWraper {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 0;
  color: #999;
  border: 1px solid transparent;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  transition: .15s ease;
  overflow: hidden;
}
.storageItemWraper .discount {
  width: 150px;
  height: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: bold;
  background-color: #CC0000;
  border: none;
  border-radius: 0;
  transform: rotate(-45deg) translate(-26%, -70%);
  opacity: 0;
  box-sizing: content-box;
}
.storageItemWraper:hover,
.storageItemWraper.active {
  color: #000;
  background: #f3f3f3;
}
.storageItemWraper:hover .discount,
.storageItemWraper.active .discount {
  opacity: 1;
}
.storageItemWraper.active {
  background: #fff;
  border: 1px solid #EAEAEA;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
.storageSelectItem {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}
.storageSelectTitle {
  color: inherit;
  font-size: 1em;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  min-height: 42px;
}
.storageSelectTitle span {
  font-weight: normal;
  font-size: 0.875em;
}
.storageDescription {
  margin-top: 74px;
  display: none;
}
.storageDescription.active {
  display: block;
}
.storageDescription ul {
  margin: 0;
  padding-left: 20px;
}
.storageDescription ul li {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 300;
  color: #333;
  margin-bottom: 4px;
}
.steps {
  position: relative;
  margin: 0 -10px;
}
.steps i {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
}
@media only screen and (max-width: 479px) {
  .steps {
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 768px) {
  .steps {
    margin: 0 -100px;
  }
  .steps:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
  }
}
.steps-holder {
  display: flex;
  justify-content: space-between;
}
.steps .step {
  text-align: center;
  color: #a1a1a1;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}
.steps .step::after {
  content: none;
}
@media only screen and (max-width: 767px) {
  .steps .step.current {
    z-index: 1;
  }
  .steps .step.current::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    height: 200px;
    width: 1px;
    background-color: #fc0;
  }
  .steps .step:first-child {
    z-index: 2;
  }
  .steps .step:first-child::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    height: 200px;
    width: 1px;
    background-color: #fff;
  }
}
@media only screen and (min-width: 768px) {
  .steps .step {
    flex: 1;
  }
  .steps .step.current {
    z-index: 1;
  }
  .steps .step.current::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 900px;
    height: 1px;
    background-color: #fc0;
    z-index: -1;
  }
  .steps .step:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 50%;
    height: 1px;
    background-color: #fff;
  }
  .steps .step:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 1px;
    background-color: #fff;
  }
}
.steps .step-num {
  font-size: 14px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  font-weight: bold;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  margin: -9px auto 12px;
  position: relative;
  z-index: 1;
}
.steps .step-text {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
@media only screen and (max-width: 479px) {
  .steps .step-text {
    font-size: 11px;
  }
}
.steps .complete .step-num {
  background: #fc0;
  color: #000;
}
.steps .current .step-num {
  background: #fc0;
  color: #000;
}
.steps .current .step-text {
  color: #000;
}
h2 {
  font-weight: 300;
  font-size: 1.5em;
}
.preferencesBoxBottom h2:first-child {
  margin-top: 0;
}
.responsiveTable {
  width: 100%;
  overflow-x: auto;
}
.cookiesTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 1em;
}
.cookiesTable th {
  font-size: 14px;
}
.cookiesTable th,
.cookiesTable td {
  text-align: left;
  padding: 7px;
  border: 1px solid #ccc;
  vertical-align: top;
}
.cookieSource {
  width: 20%;
}
.cookieName {
  width: 20%;
}
.cookieFunction {
  width: 35%;
}
.cookieDate {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .titleLockingScreen-step {
    display: block;
  }
  h2 {
    font-weight: 300;
    font-size: 1.3em;
  }
  .steps-holder {
    flex-wrap: wrap;
  }
  .steps-holder > .step {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
  }
  .steps-holder > .step:last-child {
    margin-bottom: 0;
  }
  .steps-holder > .step::before {
    content: none !important;
  }
  .steps-holder > .step .step-num {
    margin: 0 10px 0 0;
    min-width: 20px;
  }
  .steps-holder > .step .step-text {
    flex: 1;
    font-size: 14px;
  }
  .steps {
    margin: 0;
    height: auto;
    background: transparent;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 10px !important;
    left: 10px !important;
    bottom: 10px;
    height: auto !important;
    width: 1px !important;
    background-color: #e6e6e6 !important;
  }
}
.radios label {
  width: 100%;
  box-sizing: border-box;
  padding-left: 35px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.radios [type='radio'] {
  position: absolute;
  top: 4px;
  left: 0;
}
@media only screen and (max-width: 479px) {
  .radios [type='radio'] {
    top: 2px;
  }
}
.radios .radio {
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  padding: 30px 50px 30px 100px;
  transition: all ease 250ms;
  margin-bottom: 10px;
}
@media only screen and (max-width: 479px) {
  .radios .radio {
    padding: 20px 20px 20px 52px;
  }
}
.radios .radio:hover,
.radios .radio:focus,
.radios .radio.checked {
  border-radius: 4px;
  border: 1px solid #3B94FB;
  box-shadow: 0px 0px 8px 0px rgba(59, 148, 251, 0.3);
}
.radios .radio [type='radio'] {
  position: absolute;
  top: 35px;
  left: 50px;
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 479px) {
  .radios .radio [type='radio'] {
    top: 23px;
    left: 14px;
  }
}
.radios .radio__label {
  font-family: Fira Sans;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #4c4c4c;
}
@media only screen and (max-width: 479px) {
  .radios .radio__label {
    font-size: 18px;
  }
}
.radios .radio__description {
  display: inline !important;
  margin: 0;
  padding-top: 10px;
  font-family: Fira Sans;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
}
@media only screen and (max-width: 479px) {
  .radios .radio__description {
    font-size: 14px;
  }
}
.radios .button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 35px;
}
@media only screen and (max-width: 479px) {
  .radios .button-container #btnNext {
    width: 100%;
  }
}
.isAcceptedConsent {
  margin: 0 4px 0 0;
  padding: 0;
  vertical-align: baseline;
  width: 16px;
  height: 16px;
}
.labelAcceptConsent {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.labelAcceptConsent input {
  cursor: pointer;
}
.btnAcceptConsent a {
  color: currentColor;
}
.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.line {
  height: 1px;
  width: 100%;
}
.line.error {
  background-color: #c00;
}
.line.success {
  background-color: #9BFC02;
}
.linkMail {
  color: inherit;
  text-decoration: underline;
}
.teamRadioItem [type='radio']:disabled + .teamName {
  opacity: 0.5;
}
.teamName {
  display: block;
  margin-bottom: 5px;
}
.teamDescription {
  display: block;
  margin-bottom: 13px;
}
.teamButtons .next {
  text-align: center;
}
.teamButtons .next a,
.teamButtons .next button {
  margin: 0 0 5px;
}
.teamButtons .next .btnConfirm {
  padding: 0 25px;
}
.teamButtons .next a {
  font-size: 12px;
  text-decoration: underline;
}
.teamButtons .next a:hover {
  text-decoration: none;
}
.tag {
  height: 20px;
  font-size: 12px;
  border-radius: 10px;
  padding: 0 6px 0 2px;
  margin-bottom: 5px;
  background-color: #e2e2e2;
  color: #333;
  display: inline-flex;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
  max-width: calc(100% - 25px);
  align-items: center;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tag:hover {
  background-color: #ccc;
}
.tag .avatar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: inherit;
  height: inherit;
  background-color: #fff;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  overflow: hidden;
  color: #e2e2e2;
}
.tag .avatar img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.inputsWrapper {
  width: 100%;
  height: auto;
  display: inline-flex;
  justify-content: space-between;
}
.inputsWrapper .codeInputWrapper {
  width: 47%;
}
.inputsWrapper .codeInputWrapper label {
  font-size: 14px;
  color: #666666;
}
.inputsWrapper .codeInputWrapper input {
  width: 93%;
  height: 28px;
  padding-left: 10px;
  font-size: 14px;
  background: #f4f4f4;
  color: #666666;
  outline: none;
  border: none;
  border-top: 1px solid #dedede;
}
.inputsWrapper .codeInputWrapper input::placeholder {
  color: #b5b5b5;
}
.s3bucketSelect {
  width: 100%;
  max-width: 290px;
  height: 32px;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #f4f4f4;
  border-left: 1px solid #f4f4f4;
  border-right: 1px solid #f4f4f4;
  position: relative;
  overflow: hidden;
}
.s3bucketSelect:after {
  content: '';
  position: absolute;
  top: 14px;
  bottom: 13px;
  right: 15px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  box-sizing: border-box;
}
.s3bucketSelect select {
  width: 100%;
  height: 100%;
  padding-left: 8px;
  padding-right: 25px;
  font-size: 14px;
  color: #666666;
  background-color: #F4F4F4;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: none;
  outline: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-indent: .01px;
  appearance: none;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.prev {
  width: 100%;
  display: inherit;
}
.prev .btnConfirm {
  margin-left: auto;
  margin-right: 0;
}
.icon_folderFull {
  opacity: 0.2;
}
.inviteTeammatesBox .preferencesBoxButtons {
  display: flex;
  justify-content: space-between;
}
.inviteTeammatesBox .preferencesBoxButtons a {
  font-size: 12px;
  font-weight: normal;
  color: #000;
}
.inviteTeammatesBox .preferencesBoxButtons .right-btns {
  margin-left: auto;
}
.inviteTeammateInput {
  height: auto;
  min-width: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  line-height: 30px;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}
.inviteTeammateInput.is-error {
  outline: 2px solid #c00 !important;
}
.inviteTeammateInput.is-error .errorText {
  visibility: visible;
}
.inviteTeammateInput:focus-within {
  background: #fff;
  outline: 2px solid #36f;
}
.inviteTeammateInput .errorText {
  position: absolute;
  left: 0;
  color: #c00;
  font-size: 14px;
  line-height: 1em;
  bottom: -20px;
  visibility: hidden;
}
.inviteTeammateInput .icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inviteTeammateInput .inputWrapper {
  flex: 1 auto;
  display: inline-flex;
  flex-flow: wrap;
  cursor: text;
}
.inviteTeammateInput .inputWrapper input {
  flex: 1 auto;
  min-width: 200px;
  padding: 0;
  margin-left: 5px;
  font: inherit;
  border: none !important;
  outline: none !important;
  background: inherit !important;
}
span.email {
  display: inline-flex;
  align-items: center;
  padding: 2px 5px 2px 2px;
  color: #666;
  font-size: 14px;
  line-height: 16px;
  background: #EBEBEB;
  border-radius: 10px;
}
span.email:not(span.email:last-child) {
  margin-right: 5px;
}
span.email i {
  width: 16px;
  height: 12px;
  display: inline-block;
  position: relative;
  bottom: 2px;
  margin-right: 5px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE2IDEyIiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTQuMyAxMC43NDE5QzUuOSAxMC4xNjEzIDYuMiA5Ljg3MDk3IDYuMiA5Ljg3MDk3VjguNDE5MzZDNi4yIDguNDE5MzYgNS42IDcuOTM1NDggNS40IDYuNTgwNjVDNS4xIDYuNzc0MTkgNSA2LjI5MDMyIDUgNS45MDMyM0M1IDUuNjEyOSA0LjggNC42NDUxNiA1LjIgNC43NDE5NEM1LjEgNC4wNjQ1MiA1LjEgMy40ODM4NyA1LjEgMy4wOTY3N0M1LjIgMi4wMzIyNiA2LjMgMC44NzA5NjggOCAwLjc3NDE5NEMxMCAwLjg3MDk2OCAxMC44IDIuMDMyMjYgMTEgMy4wOTY3N0MxMSAzLjM4NzEgMTEgNC4wNjQ1MiAxMC45IDQuNjQ1MTZDMTEuMyA0LjU0ODM5IDExLjEgNS41MTYxMyAxMS4xIDUuOTAzMjNDMTEuMSA2LjE5MzU1IDExIDYuNzc0MTkgMTAuNiA2LjY3NzQyQzEwLjQgOC4wMzIyNiA5LjggOC41MTYxMyA5LjggOC41MTYxM1Y5Ljk2Nzc0QzkuOCA5Ljk2Nzc0IDEwLjIgMTAuMTYxMyAxMS43IDEwLjgzODdDMTMuMyAxMS40MTk0IDEyLjggMTEuMDMyMyAxNC4xIDExLjYxMjlDMTQuMyAxMS43MDk3IDE0LjUgMTEuODA2NSAxNC43IDEyQzE1LjUgMTAuNzQxOSAxNiA5LjI5MDMyIDE2IDcuNzQxOTRDMTYgMy40ODM4NyAxMi40IDAgOCAwQzMuNiAwIDAgMy40ODM4NyAwIDcuNzQxOTRDMCA5LjI5MDMyIDAuNSAxMC44Mzg3IDEuMyAxMkMxLjUgMTEuODA2NSAxLjcgMTEuNjEyOSAyIDExLjUxNjFDMy4yIDEwLjkzNTUgMi43IDExLjQxOTQgNC4zIDEwLjc0MTlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=');
}
.digits {
  display: flex;
  flex-wrap: nowrap;
}
.digitsRight {
  justify-content: flex-end;
}
.digits input[type='number'] {
  border: 1px solid transparent;
  border-top: 1px solid #dfdede;
  border-bottom: 1px solid #f4f4f4;
  background: #f4f4f4;
  width: 50px;
  height: 66px;
  margin: 4px;
  padding: 0;
  font-size: 24px;
  text-align: center;
  appearance: textfield;
  -webkit-appearance: textfield;
  border-radius: 4px;
  box-sizing: border-box;
}
.digits input[type='number']:focus {
  background: #fff;
  color: #000;
  border-color: #fff;
}
@media only screen and (max-width: 479px) {
  .digits input[type='number'] {
    width: 36px;
    min-width: 36px;
    height: 48px;
  }
}
.digits input::-webkit-outer-spin-button,
.digits input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.digits.error input[type='number'] {
  color: #c00;
  border: 1px solid currentColor;
}
.twoFactorAuthSection {
  margin-bottom: 30px;
}
.twoFactorAuthSection .radios {
  margin-top: 5px;
  margin-left: -3px;
}
.twoFactorAuthSection .digits {
  margin: 5px -4px 0;
}
.qrCodeImage {
  margin: 0 0 -10px -10px;
}
.qrCodeImageHolder {
  position: relative;
  display: inline-block;
}
/* SVG spinner icon animation */
.qrSpinner {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.qrSpinner .path {
  stroke: #aaa;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.twoFactorAuthLinks {
  font-size: 14px;
  margin-top: 5px;
}
.twoFactorAuthLinks a {
  color: #0075FF;
  text-decoration: none;
}
.twoFactorAuthLinks a:hover {
  text-decoration: underline;
}
.screenStep {
  display: flex;
  align-items: flex-start;
}
.screenStepNum {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background-color: #FFCC00;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  margin-top: 1px;
  margin-right: 12px;
  border-radius: 50%;
}
.screenStepContent {
  flex: 1;
}
@media only screen and (max-width: 479px) {
  .screenStep {
    flex-wrap: wrap;
  }
  .screenStepContent {
    flex: 1 0 100%;
    margin-top: 5px;
  }
}
.enterCompanyEmailInput {
  margin-top: 10px;
}
.enterCompanyEmailInput .error {
  font-family: Fira Sans;
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  color: #CC0000;
}
.enterCompanyEmailInput .error .preferencesTextError {
  font-weight: 400;
  padding: 6px 11px;
}
.enterCompanyEmailInput .error .preferencesTextError:first-child {
  margin-top: 12px;
  margin-bottom: 0px;
}
.enterCompanyEmailInput form {
  display: flex;
  width: 100%;
}
.enterCompanyEmailInput #email,
.enterCompanyEmailInput #storeName {
  width: 100%;
  height: 32px;
  background: #F4F4F4;
  border: 0;
  padding: 5px 10px;
  box-sizing: border-box;
  margin-right: 21px;
  font-family: Fira Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.enterCompanyEmailInput #submitCompanyEmail {
  width: 100%;
  max-width: 280px;
}
.copyInput {
  display: flex;
  max-width: 470px;
  margin-top: 10px;
}
.copyInput [type='text'] {
  width: 100%;
  height: 32px;
  background: #F4F4F4;
  border: 0;
  padding: 5px 10px;
  box-sizing: border-box;
  font-size: 17px;
  font-family: 'fira_monoregular', 'Fira Sans', Helvetica, Arial, sans-serif;
}
.copyInput button {
  height: 32px;
}
.copyInput button:active {
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.14);
}
.copyInput .statusSuccess {
  margin: 5px 0 0 8px;
}
@media only screen and (max-width: 479px) {
  .copyInput {
    flex-wrap: wrap;
    position: relative;
  }
  .copyInput [type='text'] {
    font-size: 13px;
    padding: 5px 3px;
    text-align: center;
  }
  .copyInput button {
    flex: 0 0 100%;
  }
  .copyInput .statusSuccess {
    margin: 0;
    position: absolute;
    bottom: 6px;
    left: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .copyInput [type='text'] {
    font-size: 14px;
  }
}
.digitsWrapper {
  display: flex;
  align-items: center;
}
.digitsWrapper .statusSuccess {
  margin-left: 14px;
}
@media only screen and (max-width: 479px) {
  .digitsWrapper .statusSuccess {
    display: none;
  }
}
.digitsWrapper .digitsLabel {
  align-self: flex-start;
  flex: 1;
  padding-right: 15px;
  font-size: 14px;
  margin-top: 6px;
}
@media only screen and (max-width: 767px) {
  .digitsWrapper {
    flex-wrap: wrap;
  }
  .digitsWrapper .digitsLabel {
    flex: 1 0 100%;
    max-width: 300px;
  }
}
.digitsWrapper .clearButton {
  color: #3B94FB;
  display: flex;
  align-items: center;
  padding-right: 10px;
  cursor: pointer;
}
.digitsWrapper .clearButton[notVisible='true'] {
  display: none;
}
.statusSuccess {
  display: inline-block;
  height: 20px;
}
.statusSuccess svg {
  vertical-align: top;
}
.twoFactorAuthLogin {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .twoFactorAuthLogin .digits {
    justify-content: flex-start;
    margin: 10px 0 0 -4px;
  }
}
@media only screen and (min-width: 768px) {
  .twoFactorAuthLogin .digitsWrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .twoFactorAuthLogin .digits {
    margin-left: auto;
  }
  .twoFactorAuthLogin .digitsLabel {
    padding-right: 30px;
    max-width: 300px;
  }
}
.overlaidBtnWrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.65);
}
.overlaidBtnWrapper button {
  box-sizing: content-box;
}
.requestMsg {
  margin-top: 30px;
  text-align: center;
  font-size: 1.125em;
  color: #00be4c;
}
.googleMsg {
  margin-top: 30px;
  display: flex;
}
.googleMsg svg {
  margin-right: 10px;
  flex-shrink: 0;
}
.googleMsg p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #999;
}
.hidden {
  display: none;
}
.demoTeamList {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}
.timeToBookCalendly {
  display: flex;
  align-items: center;
  margin: 30px 0;
  font-family: "Fira Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  color: #AAA;
}
.timeToBookCalendly svg {
  margin-right: 5px;
}
.textCalendlyLabel {
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: #4C4C4C;
  font-family: "Fira Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.textCalendlyLabel__extra {
  display: none;
}
@media only screen and (max-width: 767px) {
  .textCalendlyLabel__extra {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  .textCalendlyLabel {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
  }
  .textCalendlyLabel svg {
    margin-top: 10px;
    transform: rotate(90deg);
  }
}
.calendly-inline-widget {
  min-width: 360px;
  height: 550px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 1px 1px 11px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 1px 11px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 11px 2px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767px) {
  .calendly-inline-widget {
    min-width: unset;
    border-radius: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
  }
}
.bookADemoPage .preferencesBoxBottom.withVisual {
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .preferencesBoxBottom.withVisual {
    gap: unset;
  }
}
.bookADemoPage .btnLockingScreen {
  padding: 0;
  text-align: left;
}
.bookADemoPage #btnGo {
  position: absolute;
  bottom: 0;
  display: none;
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .preferencesTop {
    flex: 0 0 200px;
  }
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .preferencesText h3 {
    font-size: 18px;
  }
}
.bookADemoPage .demoDivider {
  display: none;
  width: 100%;
  margin: 0 -50px;
  height: 20px;
  background: #373737;
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .demoDivider {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .preferencesBoxTitle {
    font-size: 30px;
    font-weight: 300;
  }
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .demoLeftBox {
    width: 100%;
  }
  .bookADemoPage .demoLeftBox .demoTeamList {
    width: 100%;
  }
  .bookADemoPage .demoLeftBox .demoTeamList img {
    width: calc(30%);
    height: auto;
    object-fit: contain;
  }
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .demoRightBox {
    padding: 0;
    margin: 0 -30px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .btnNext--desktop {
    display: none;
  }
}
.bookADemoPage .btnNext--mobile {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
  display: none;
  height: auto;
  padding: 5px 10px;
  border-radius: 6px;
  background: transparent;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  color: #FFC000;
  border: 1px solid #FFC000;
}
@media only screen and (max-width: 767px) {
  .bookADemoPage .btnNext--mobile {
    display: block;
  }
}
.bookADemoPage.success .demoTeamList,
.bookADemoPage.success .textCalendlyLabel,
.bookADemoPage.success .btnLockingScreen {
  display: none;
}
.bookADemoPage.success .calendly-inline-widget {
  border: none;
  border-radius: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.bookADemoPage.success #btnGo {
  padding: 12px 26px;
  display: block;
  font-size: 18px;
  border-radius: 6px;
}
