@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Global zoom of 0.9 (90%) */
html {
  transform: scale(0.9);
  transform-origin: top left;
  width: 111.11%; /* Compensate for the scale (100/0.9) */
  height: 111.11%; /* Compensate for the scale (100/0.9) */
}
body {
  margin: 0;
  overflow-x: hidden;
}
.auto-container {
  width: 100%;
  max-width: 2200px;
  margin: 0 auto;
  padding: 0 65px;
}

.card-container {
  display: flex;
  flex-direction: column;
  padding: 35px 35px 70px;
  gap: 20px;
  box-shadow: 1px 2px 10px #dce8f4;
  border-radius: 12px;
}

.screenwrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}
/* Fix for white gap below footer on tester-facing pages */
.screenwrapper.screenwrapper--tester-fixed {
  height: calc(100vh / 0.9);
  height: calc(100dvh / 0.9);
}
.screenwrapper__header {
  margin-bottom: auto;
  background: #592f91;
}
.screenwrapper__footer {
  margin-top: auto;
  background: #592f91;
}
.screenwrapper__placeholder {
  min-height: 4vh;
}
.screenwrapper__container {
  display: flex;
  flex-grow: 1;
  margin-top: 5vh;
  margin-bottom: 5vh;
}
.screenwrapper__container .card-container {
  width: 100%;
}

@media (max-width: 1024px) {
  .auto-container {
    padding: 0 35px;
  }
  .card-container {
    padding: 35px 25px 50px;
  }
}
@media (max-width: 768px) {
  .auto-container {
    padding: 0 25px;
  }
  .card-container {
    padding: 35px 20px 50px;
  }
  .screenwrapper__container {
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
  .screenwrapper.screenwrapper--tester-fixed {
    height: calc(100vh / 0.9);
    height: calc(100dvh / 0.9);
  }
}
@media (max-width: 640px) {
  .auto-container {
    padding: 0 15px;
  }
  .card-container {
    padding: 30px 20px 40px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpN {
  from {
    opacity: 0.6;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpN {
  animation: fadeInUpN 0.3s ease-out;
}

.circlebadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #313033;
  border-radius: 50%;
  border: 1px solid currentColor;
  width: 2.2em;
  height: 2.2em;
  transition: 0.2s ease-out;
}
.circlebadge strong {
  color: inherit;
  font-size: inherit;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.circlebadge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.circlebadge._sm {
  font-size: 10px;
}
.circlebadge--orange {
  color: #ff7f51 !important;
}
.circlebadge--red {
  color: #f90473 !important;
}
.circlebadge--green {
  color: #93e088 !important;
}
.circlebadge--white {
  color: #fff !important;
}
.circlebadge--noaction {
  cursor: default;
}
.circlebadge:hover {
  color: #313033 !important;
}
.circlebadge-text {
  color: #313033;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
}
.circlebadge__wrapper {
  display: flex;
  align-items: center;
  padding-left: 0.3em;
}
.circlebadge__wrapper .circlebadge {
  margin-left: -0.3em;
  background: #fff;
}
.circlebadge__wrapper._gap {
  padding-left: 0;
  gap: 0.3em;
}
.circlebadge__wrapper._gap .circlebadge {
  margin-left: 0;
}

.tip {
  position: absolute;
  top: calc(100% + 0.5em);
  left: 50%;
  z-index: 1;
  width: max-content;
  display: none;
  animation: tipAnimation 0.3s ease 0.2s both;
  padding: 0.6em 0.75em;
  border-radius: 0.4em;
  background: rgba(0, 0, 0, 0.4);
  transform: translate(-50%);
  color: #fff;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
@keyframes tipAnimation {
  from {
    transform: translate(-50%, 0.6em);
    opacity: 0;
  }
  to {
    transform: translate(-50%);
    opacity: 1;
  }
}
.tip__wrapper {
  position: relative;
  z-index: unset;
}
.tip__wrapper:hover .tip {
  display: flex;
}

.inlinelink {
  cursor: default;
  font: inherit;
  color: inherit;
  font-weight: inherit;
  text-decoration: inherit;
  transition: opacity 0.3s ease-out;
}
.inlinelink--primary {
  color: #592f91;
}
.inlinelink--blue {
  color: #007bff;
}
.inlinelink:hover {
  opacity: 0.8;
}
.inlinelink:active {
  opacity: 0.6;
}

.iconButton {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border-radius: 0.4em;
  border: 1px solid #999a9f;
  background: transparent;
  outline: unset;
  color: #592f91;
  transition: 0.3s ease-out;
  font-size: 16px;
}
.iconButton svg {
  color: inherit;
}
.iconButton img,
.iconButton svg {
  width: 1.6em;
  height: 1.6em;
  object-fit: contain;
}
.iconButton img._small,
.iconButton svg._small {
  width: 1.15em;
  height: 1.15em;
}
.iconButton-sup {
  color: inherit;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.7em;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-left: -0.2em;
}
.iconButton:hover {
  color: #4b0082;
  border-color: #4b0082;
  background: rgba(89, 47, 145, 0.03);
}
.iconButton:active {
  color: #4b0082;
  border-color: #4b0082;
  background: rgba(89, 47, 145, 0.13);
}
.iconButton--primary {
  background: #4b0082;
  border-color: #4b0082;
}
.iconButton--primary:hover {
  background: rgba(89, 47, 145, 0.96);
}
.iconButton--primary:active {
  background: rgba(89, 47, 145, 0.85);
}
.iconButton--arrow {
  font-size: 16px;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  border: 1px solid #af7df8;
}
.iconButton--arrow .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  color: #002b59;
}
.iconButton--arrow .ico svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.input {
  position: relative;
  display: flex;
  width: 100%;
  font-size: 16px;
}
.input input,
.input textarea {
  padding: 0.75em;
  border-radius: 0.4em;
  width: 100%;
  background-color: #fff;
  border: 1px solid #79747e;
  resize: none;
  outline: none;
  transition: 0.3s ease-out;
  color: #14161a;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: inherit;
  line-height: 1.2;
}
.input input::placeholder,
.input textarea::placeholder {
  color: #49454f;
  font-weight: 500;
  transition: 0.3s ease-out;
  font: inherit;
}
.input__hidden {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.input input:focus,
.input textarea:focus {
  color: #592f91;
  border-color: rgba(89, 47, 145, 0.8);
}
.input input:focus::placeholder,
.input textarea:focus::placeholder {
  color: rgba(73, 69, 79, 0.4);
}
.input--shadow input,
.input--shadow textarea {
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0px 0.2em 1em rgba(0, 0, 0, 0.15);
  border-radius: 0.5em;
}
.input--shadow input::placeholder,
.input--shadow textarea::placeholder {
  color: rgba(89, 47, 145, 0.3);
}
.input--shadow input:focus,
.input--shadow textarea:focus {
  background: #fff;
  box-shadow: 0px 0.2em 0.8em rgba(0, 0, 0, 0.05);
}
.input__badges {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translateY(-50%);
  font-size: inherit;
  transition: opacity 0.2s ease-out;
}
.input__badges .circlebadge {
  font-size: 0.8em;
}

.mark--wave {
  position: relative;
  background: transparent !important;
}
.mark--wave:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 2%;
  width: 96%;
  height: 5px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAACXBIWXMAAAsTAAALEwEAmpwYAAAIsGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNi4wLWMwMDUgNzkuMTY0NTkwLCAyMDIwLzEyLzA5LTExOjU3OjQ0ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjEgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0wNC0yNlQwMTowMTozNyswNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0wNC0yNlQwMTowMzo1NiswNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMDQtMjZUMDE6MDM6NTYrMDU6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjFlZDQ4MmNhLTM2MmQtMDM0ZC05M2MwLTQ3ZmQxNDc5YjAyYyIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjVmZmM5NmUzLTlmOTUtMDg0OC1iNTlmLWM1OWI4MmYzNDY5MiIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjhiZjBkNWE3LWFmMWItZGM0Ny05ZjI2LWM4N2MxY2RmOTQyNiIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo4YmYwZDVhNy1hZjFiLWRjNDctOWYyNi1jODdjMWNkZjk0MjYiIHN0RXZ0OndoZW49IjIwMjQtMDQtMjZUMDE6MDE6MzcrMDU6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMi4xIChXaW5kb3dzKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6MTljMGE2YjUtYWYxOC00NzQ1LWE5ZDMtZjA2ODQxZjY1YzUxIiBzdEV2dDp3aGVuPSIyMDI0LTA0LTI2VDAxOjAzOjU2KzA1OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjIuMSAoV2luZG93cykiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNvbnZlcnRlZCIgc3RFdnQ6cGFyYW1ldGVycz0iZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iZGVyaXZlZCIgc3RFdnQ6cGFyYW1ldGVycz0iY29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmciLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjFlZDQ4MmNhLTM2MmQtMDM0ZC05M2MwLTQ3ZmQxNDc5YjAyYyIgc3RFdnQ6d2hlbj0iMjAyNC0wNC0yNlQwMTowMzo1NiswNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIyLjEgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxOWMwYTZiNS1hZjE4LTQ3NDUtYTlkMy1mMDY4NDFmNjVjNTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OGJmMGQ1YTctYWYxYi1kYzQ3LTlmMjYtYzg3YzFjZGY5NDI2IiBzdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OGJmMGQ1YTctYWYxYi1kYzQ3LTlmMjYtYzg3YzFjZGY5NDI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+gGcerQAAAMxJREFUKM9j/P//PwM1AeP62h/45FWA2AqI9YFYAIgvAfEZID5KqoG8QNwAxLFALIpFfjMQNwPxaWIMjATixUDMTIQPJwBxIT4D24G4gsRgOwTE0UD8BGagEZB2B+JcIJakID6mAvFakIGEovkcSCEQfwJibyD2IBTLn6CRgA4+Qb2yBU1cC4hnAbE1Fj2fcRl4E4htgPgNHscsBOI4bAYie/klEPcBcReR4eYCTT4WyF7uBdLfgPg5EO8A4nskRgYLNFz1gJidkdpZDwBdNj8TJ4CyjwAAAABJRU5ErkJggg==") bottom repeat-x;
  background-size: 8px 100%;
}
.mark--wave > .mark--wave:after {
  content: unset;
  display: none;
}

.placeholder-image {
  pointer-events: none !important;
  text-align: center;
}
.placeholder-image img {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-none:link, .text-decoration-none:visited {
  text-decoration: none !important;
}

.cbutton {
  cursor: pointer;
  border-radius: 0.65em;
  padding: 0.6em 1.25em;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  transition: 0.2s ease-out;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
}
.cbutton.cbutton--main-primary {
  color: #fff;
  background: #592f91;
}
.cbutton.cbutton--main-primary:hover {
  background: #fb8c24;
}
.cbutton.cbutton--main-primary:active {
  background: #fb8c24;
  opacity: 0.6;
}
.cbutton.cbutton--text-dark {
  color: #14161a;
  background: transparent;
}
.cbutton.cbutton--text-dark:hover {
  color: #592f91;
}
.cbutton.cbutton--text-dark:active {
  color: #592f91;
  opacity: 0.6;
}

.progressbar {
  position: relative;
  width: 100%;
  height: 0.5em;
  background: rgba(220, 232, 244, 0.5);
  border-radius: 1em;
  font-size: 16px;
}
.progressbar-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3em;
  border-radius: 1em;
  transition: 0.25s ease-out;
  background: linear-gradient(90deg, #d4cae2 0%, #7554a3 100%);
  opacity: 0.5;
}
.progressbar--atop {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1em 1em 0 0;
}

.error-link {
  position: relative;
  top: 1.2px;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease-out;
  margin-left: 0.8em;
}
.error-link:hover {
  opacity: 1;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }
  75% {
    background-position: 0%;
  }
  100% {
    background-position: 0%;
  }
}
.loading-text span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 55%, #fff 65%, rgba(255, 255, 255, 0.5) 75%);
  background-position: 0;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
}

.cmodal {
  position: fixed;
  top: 45% !important;
  left: 50%;
  z-index: 1005;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 620px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -40%);
  transition: 0.3s ease-out;
  pointer-events: none;
  opacity: 0;
}
.cmodal.hidden {
  display: none;
}
.cmodal__title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 0.75em;
  padding: 1.5rem 4.5rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(89, 47, 145, 0.07);
}
.cmodal__title h2 {
  color: #14161a;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2;
  margin: 0;
}
.cmodal__title-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.95em;
  height: 1.95em;
  border-radius: 50%;
  background: #592f91;
  color: #fff;
}
.cmodal__title-ico i {
  font-size: 0.9em;
}
.cmodal__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: 0.2s ease-out;
}
.cmodal__close:after, .cmodal__close::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 70%;
  height: 3px;
  border-radius: 4px;
  background: #79747e;
  transition: 0.2s ease-out;
}
.cmodal__close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cmodal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cmodal__close:hover {
  background: rgba(89, 47, 145, 0.07);
}
.cmodal__close:hover:after, .cmodal__close:hover::before {
  width: 60%;
  background: #592f91;
}
.cmodal__close:active {
  background: transparent;
}
.cmodal__close:active:after, .cmodal__close:active::before {
  width: 60%;
  background: #79747e;
}
.cmodal__body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 16px;
  padding: 1.5rem 2rem;
}
.cmodal__body .input {
  font-size: 20px;
}
.cmodal__body .input input {
  margin: 0;
  height: auto;
}
.cmodal__body-actions {
  display: flex;
  justify-content: flex-end;
  margin: 0.6em 0 0 0;
  gap: 0.5em;
}
.cmodal__body-actions button {
  margin: 0;
}
.cmodal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}
.cmodal.open ~ .cmodal__fog {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.cmodal__fog {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  background: rgba(31, 29, 34, 0.36);
  backdrop-filter: blur(2px);
  z-index: 1004;
}

.userguide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 35px;
  width: 100%;
}
.userguide__row {
  display: flex;
  align-items: center;
  width: calc(100% - 140px);
  gap: 0;
}
.userguide-title {
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #313033;
  max-width: 7.3em;
}
.userguide-seperator {
  flex-shrink: 0;
  width: 150px;
  padding: 0 10px;
}
.userguide-seperator._reverse img {
  transform: rotate(180deg);
}
.userguide-seperator img {
  width: 100%;
  height: auto;
}
.userguide__step {
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
  gap: 5px;
}
.userguide__step-index {
  opacity: 0.2;
  color: #af7df8;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 100px;
  line-height: 1.1;
}
.userguide__step-body {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 24px;
  padding: 1.2em 0.6em;
  gap: 0.6em;
  flex-grow: 1;
  box-sizing: border-box;
  transition: 0.25s ease-out;
  max-width: 315px;
  background: #fff;
  border: 1px solid rgba(175, 125, 248, 0.3);
  box-shadow: 0px 5px 15px rgba(41, 72, 152, 0.02);
  border-radius: 4px;
}
.userguide__step-body-ico {
  width: 2.1em;
  height: 2.1em;
  flex-shrink: 0;
}
.userguide__step-body-ico img {
  width: 100%;
  height: 100%;
}
.userguide__step-body span {
  font-size: inherit;
  color: #af7df8;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}
.userguide__step-body:hover {
  transform: translateY(-10%);
}
.userguide__step-body:active {
  transition: 0.1s ease;
  transform: translateY(-10%) scale(0.98);
}

@media (max-width: 1680px) {
  .userguide {
    gap: 25px;
  }
  .userguide-seperator {
    width: 120px;
  }
  .userguide__step {
    width: calc(100% - 80px);
  }
  .userguide__step-index {
    font-size: 70px;
  }
  .userguide__step-body {
    font-size: 18px;
  }
}
@media (max-width: 1460px) {
  .userguide {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .userguide-title {
    max-width: unset;
  }
  .userguide-title br {
    display: none;
  }
  .userguide__row {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 1240px) {
  .userguide__step-index {
    display: none;
  }
  .userguide__step-body {
    font-size: 16px;
  }
}
@media (max-width: 1025px) {
  .userguide__row {
    flex-direction: column;
    gap: 24px;
  }
  .userguide-seperator {
    display: none;
  }
  .userguide__step {
    width: 100%;
    gap: 30px;
  }
  .userguide__step-index {
    display: block;
    font-size: 70px;
    width: 45px;
  }
  .userguide__step-body {
    padding: 1.2em;
    max-width: 320px;
    box-shadow: 0px 38.52px 25.48px rgba(41, 72, 152, 0.0304), 0px 20px 13px rgba(41, 72, 152, 0.025), 0px 8.15px 6.52px rgba(41, 72, 152, 0.0196), 0px 4px 3.15px rgba(41, 72, 152, 0.012);
  }
  .userguide__step-body:hover {
    opacity: 0.8;
    transform: unset;
  }
  .userguide__step-body:active {
    transition: 0.1s ease;
    opacity: 0.6;
    transform: scale(0.98);
  }
}
@media (max-width: 460px) {
  .userguide__step {
    gap: 25px;
  }
  .userguide__step-body {
    font-size: 16px;
    padding: 1.2em 0.8em;
    gap: 1em;
  }
  .userguide__step-body span {
    line-height: 1.4;
  }
}
@media (max-width: 385px) {
  .userguide__step {
    gap: 20px;
  }
  .userguide__step-body {
    gap: 0.8em;
  }
}
@keyframes tabFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}
.itabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.itabs__title {
  margin-bottom: 15px;
}
.itabs__title p {
  padding: 0;
  margin: 0;
}
.itabs__head {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.itabs__body {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.itabs__tab {
  display: flex;
  flex-direction: column;
  gap: 1em;
  display: none;
  animation: tabFadeUp 0.3s ease-out;
}
.itabs__tab.active {
  display: flex;
}
.itabs-button {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  gap: 0.6em;
  padding: 1em;
  border-bottom: 2px solid transparent;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  color: #c4bbdd;
}
.itabs-button:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #c4bbdd;
  transition: 0.2s ease 0.1s;
}
.itabs-button mark {
  color: inherit;
  font: inherit;
}
.itabs-button.active {
  font-weight: 800;
  color: #313033;
}
.itabs-button.active:after {
  height: 2.5px;
  background: #313033;
}
.itabs-button:hover:after {
  height: 2.5px;
}
.itabs-button:not(.active) mark {
  background: transparent;
}

@media (max-width: 460px) {
  .itabs {
    gap: 10px;
  }
  .itabs__title {
    margin-bottom: 5px;
  }
  .itabs__title p {
    font-size: 14px;
  }
  .itabs__head {
    gap: 6px;
  }
  .itabs-button {
    font-size: 14px;
    padding: 1.15em 0.8em;
    min-width: 90px;
  }
}
@media (max-width: 390px) {
  .itabs-button {
    font-size: 12px;
    padding: 1em 0.8em;
    min-width: 80px;
  }
}
.ttsetup__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  padding-bottom: 50px;
}
.ttsetup__inner .ttsetup__inner-title {
  padding: 35px 0 25px 0;
}
.ttsetup__inner-body {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.ttsetup__inner-body-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.ttsetup__inner-body-input > .input {
  width: calc(50% - 15px);
}
.ttsetup__inner-body-input-group {
  display: flex;
  gap: 0.5em;
  width: 75%;
  max-width: 725px;
}
.ttsetup__inner-body-input > span {
  color: #313033;
  flex-shrink: 0;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.ttsetup__inner-body-guide {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ttsetup__inner-footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ttsetup__tree .input textarea {
  min-height: 40vh;
  resize: vertical;
  padding: 10px 5px 10px 1px;
  margin: 0 !important;
  color: #49454f;
  font-family: "Roboto", "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.ttsetup__tree .input textarea::placeholder {
  color: rgba(73, 69, 79, 0.4);
}
.ttsetup__tree .input textarea:focus {
  color: #14161a;
}
.ttsetup__tree .input textarea:focus::placeholder {
  color: rgba(73, 69, 79, 0.25);
}
.ttsetup__tree .hwt-highlights {
  padding: 10px 0;
}

.ttswiper {
  padding: 40px 0 84px;
}
.ttswiper__container {
  padding: 0 120px;
  position: relative;
}
.ttswiper__container-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.ttswiper__container .iconButton--arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ttswiper__container .iconButton.ttswiper-prev {
  left: 35px;
}
.ttswiper__container .iconButton.ttswiper-next {
  right: 35px;
}
.ttswiper__container .iconButton:hover {
  border-color: #002b59;
}
.ttswiper__container .iconButton.swiper-button-disabled {
  cursor: default;
  pointer-events: none !important;
  opacity: 0.2 !important;
}
.ttswiper__item {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.2s ease-out;
}
.ttswiper__item-box {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
  transition: 0.2s ease-out;
}
.ttswiper__item-title {
  color: #fff;
  font-size: 14px;
}
.ttswiper__item-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 1.5em;
  height: 1.5em;
}
.ttswiper__item-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ttswiper__item-frame {
  width: 100%;
}
.ttswiper__item-ratio {
  width: 100%;
  position: relative;
  padding-bottom: 75%;
}
.ttswiper__item-ratio img,
.ttswiper__item-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ttswiper__item-ratio img {
  transition: 0.3s ease-in;
}
.ttswiper__item-button {
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.3s ease;
  padding: 20px;
}
.ttswiper__item-button img {
  width: 40%;
  height: auto;
  object-fit: contain;
}
.ttswiper__item-duration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ttswiper__item:hover .ttswiper__item-button {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(0.95);
  transition-delay: 0.2s;
}
.ttswiper__item:active .ttswiper__item-button {
  opacity: 0.7;
}
.ttswiper__item.active .ttswiper__item-box {
  transform: translateY(-100%);
  opacity: 0;
}
.ttswiper__item.active .ttswiper__item-button {
  opacity: 0;
  pointer-events: none;
}
.ttswiper__item.active .ttswiper__item-ratio img {
  opacity: 0;
  pointer-events: none;
}

.tt-ytmodal {
  top: 48% !important;
  max-width: 1100px;
  z-index: 2147483647;
}
.tt-ytmodal .cmodal__title {
  padding-top: 2.5rem;
  border: unset;
}
.tt-ytmodal .cmodal__close {
  top: 1rem;
  right: 1.5rem;
}
.tt-ytmodal .ttswiper {
  padding: 0 0 30px 0;
}

.resultsList__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 35px 15px 55px;
}
.resultsList__header-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  min-width: 130px;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.75);
}
.resultsList__header-text {
  text-align: center;
  flex-grow: 1;
  max-width: 600px;
}
.resultsList__header-text p {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: inherit;
  width: 100%;
  max-width: unset !important;
}
.resultsList__header-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  min-width: 130px;
}
.resultsList__header a.inlinelink {
  position: relative;
  color: inherit;
  transition: 0.2s ease-out;
}
.resultsList__header a.inlinelink:before {
  position: absolute;
  content: "";
  top: 99%;
  left: 50%;
  width: calc(100% + 4px);
  transform: translate(-50%);
  height: 1px;
  background: currentColor;
  transition: inherit;
}
.resultsList__header a.inlinelink:hover {
  color: #592f91;
}
.resultsList__header a.inlinelink:hover:before {
  width: calc(100% - 5px);
}
.resultsList__header a.inlinelink.active {
  color: #592f91;
  font-weight: 500;
}
.resultsList__header a.inlinelink.active:before {
  display: none;
}
.resultsList__header .iconButton {
  color: #592f91;
}
.resultsList__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.resultsList__cards .jumbotron {
  background-color: #f8f7fb;
  color: #3b3e51;
  font-size: 14px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.resultsList__cards .jumbotron em {
  color: #707070;
  font-size: 14px;
  padding: 10px 2px;
}
.resultsList__cards .jumbotron a {
  color: #262727;
}

.frustrations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 30px;
  list-style: none;
  padding: 0 18px;
  margin: 20px 0;
  max-width: 100%;
}

.frustrations-grid li {
  color: #313033;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  padding-left: 1.2em;
  position: relative;
}

.frustrations-grid li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #592f91;
  font-weight: 700;
}

@media (min-width: 768px) {
  .frustrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .frustrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  .frustrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pp-results {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.pp-card {
  display: flex;
  gap: 20px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #dce8f4;
  width: calc(50% - 15px);
  padding: 18px;
}
.pp-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}
.pp-card__content strong {
  color: #14161a;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
}
.pp-card__content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.pp-card__content ul li {
  color: #313033;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
}
.pp-card__actions {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 8px;
}
.pp-card__actions .btn {
  display: flex;
  gap: 0.8em;
  color: #14161a;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
  border-color: #dce8f4;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
}
.pp-card__actions .btn i {
  color: #49454f;
}
.pp-card__actions .btn:hover {
  color: #592f91;
  border-color: rgba(89, 47, 145, 0.6);
}
.pp-card__actions .btn:hover i {
  color: #592f91;
}
.pp-card__actions .btn:not(:disabled):active {
  color: #592f91;
  border-color: #592f91;
  background: rgba(220, 232, 244, 0.4);
}
.pp-card__actions .btn:not(:disabled):active i {
  color: #592f91;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 50px 35px;
}
.app-list__grid {
  display: flex;
  gap: 25px 30px;
  flex-wrap: wrap;
}
.app-list__grid p {
  padding: 0;
  margin: 0;
}
.app-list__grid-item {
  display: flex;
  align-items: center;
  width: calc(50% - 15px);
  gap: 10px;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 50px 35px;
}
.app-list__grid {
  display: flex;
  gap: 25px 30px;
  flex-wrap: wrap;
}
.app-list__grid p {
  padding: 0;
  margin: 0;
}
.app-list__grid-item {
  display: flex;
  align-items: center;
  width: calc(50% - 15px);
  gap: 10px;
}

.cs-config__header {
  background: #592f91;
  padding: 15px 20px;
  min-height: 100px;
}
.cs-config__header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #fff;
  padding: 12px 25px;
  border-radius: 12px;
}
.cs-config__header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cs-config__header-actions button {
  margin: 0;
}
.cs-config__header-group {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 1340px;
  font-size: 20px;
  gap: 1.25em;
}
.cs-config__header-group span {
  color: #14161a;
  font-family: "Roboto", "Lato", sans-serif;
  font-style: normal;
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
}
.cs-config__tree {
  display: flex;
  width: 100%;
  background: #eeeeee;
  height: calc(100vh - 100px);
}
.cs-config__tree svg {
  width: 100%;
  height: 100%;
}

.testerscrn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 2em;
  padding-left: 1em;
  padding-right: 1em;
  flex-grow: 1;
  font-size: 24px;
}
.testerscrn h2 {
  color: #14161a;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 2.6em;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding: 0;
}
.testerscrn h4 {
  color: #14161a;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.66em;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding: 0;
}
.testerscrn p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  color: #14161a;
  margin: 0;
  padding: 0;
}
.testerscrn__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testerscrn__logo {
  display: flex;
  align-items: center;
  font-size: 0.91em;
  gap: 0.6em;
}
.testerscrn__logo-title {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #79747e;
}
.testerscrn__logo-logo {
  width: 3.2em;
  height: auto;
}
.testerscrn__logo-logo img {
  width: 100%;
  height: auto;
}
.testerscrn__footer > .cbutton {
  min-width: 200px;
}
.testerscrn__footer > .cbutton i.fa {
  font-size: 0.8em;
}
.testerscrn__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2em;
  width: 100%;
}
.testerscrn__body-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 430px;
}
.testerscrn__body-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 24em;
  gap: 1em;
}
.testerscrn__body-form-group {
  display: flex;
  gap: 0.25em;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  max-width: 425px;
}
.testerscrn__body-form-group .input {
  width: 100%;
}
.testerscrn__body-form-group label {
  color: #49454f;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-align: start;
  padding: 0 0 0 0.5em;
  opacity: 0.8;
}
.testerscrn__body-form .cbutton {
  flex-shrink: 0;
  min-width: 7.5em;
}
.testerscrn__body-form .cbutton._lg {
  min-width: 12em;
}
.testerscrn__instructions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 46em;
}
.testerscrn__instructions-list {
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  width: calc(50% - 1em);
  max-width: 19em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.testerscrn__instructions-list li {
  position: relative;
  font-size: inherit;
  padding-left: 1.5em;
  color: #14161a;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: inherit;
  line-height: 1.2;
  animation: fadeInUp 0.5s ease-out backwards;
}
.testerscrn__instructions-list li:after {
  position: absolute;
  content: "";
  top: 0.475em;
  left: 0.25em;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background: #592f91;
  box-shadow: 0 1px 0.45em 0 #592f91;
}
.testerscrn__instructions-list li:nth-child(1) {
  animation-delay: 0.35s;
}
.testerscrn__instructions-list li:nth-child(2) {
  animation-delay: 0.7s;
}
.testerscrn__instructions-list li:nth-child(3) {
  animation-delay: 1.05s;
}
.testerscrn__instructions-list li:nth-child(4) {
  animation-delay: 1.4s;
}
.testerscrn__instructions-list li:nth-child(5) {
  animation-delay: 1.75s;
}
.testerscrn__instructions-list li:nth-child(6) {
  animation-delay: 2.1s;
}
.testerscrn__instructions-list li:nth-child(7) {
  animation-delay: 2.45s;
}
.testerscrn__instructions-list li:nth-child(8) {
  animation-delay: 2.8s;
}
.testerscrn__instructions-list li:nth-child(9) {
  animation-delay: 3.15s;
}
.testerscrn__instructions-list li:nth-child(10) {
  animation-delay: 3.5s;
}
.testerscrn__instructions-img {
  display: flex;
  width: calc(50% - 1.5em);
  max-width: 425px;
}
.testerscrn__instructions-img img {
  width: 100%;
  height: auto;
}
.testerscrn__thanks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 53em;
}
.testerscrn__thanks-text {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 2em;
  max-width: 22.1em;
  width: calc(50% - 1.5rem);
  text-align: start;
}
.testerscrn__thanks-text h2 {
  text-align: inherit;
}
.testerscrn__thanks-text p {
  text-align: inherit;
}
.testerscrn__thanks-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  width: calc(50% - 1.5rem);
  max-width: 15.5em;
  text-align: center;
}
.testerscrn__thanks-banner > img {
  width: 10.5em;
  height: 10.5em;
}
.testerscrn--welcome {
  max-height: 500px;
  margin: auto;
}

.testerscrnFooter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testerscrnFooter p {
  padding: 0;
  color: #79747e;
}

@media (max-height: 980px) {
  .testerscrn {
    font-size: 20px;
  }
}
@media (max-width: 1680px) {
  .pp-card {
    width: 100%;
  }
  .cs-config__header-group {
    font-size: 18px;
  }
  .testerscrn {
    font-size: 20px;
  }
  .testerscrn__body-form {
    max-width: 520px;
  }
}
@media (max-width: 1460px) {
  .ttsetup__inner-body-input .input {
    font-size: 18px;
  }
  .app-list {
    padding: 40px 0;
  }
  .cs-config__header__inner {
    gap: 20px;
    padding: 10px 15px;
  }
  .cs-config__header-group {
    font-size: 15px;
  }
  .testerscrn {
    font-size: 18px;
  }
}
@media (max-width: 1240px) {
  .resultsList__header {
    padding: 35px 0 55px;
  }
  .ttsetup__inner-body {
    gap: 35px;
  }
  .ttsetup__inner-body-input .input {
    font-size: 16px;
  }
  .ttswiper__container {
    padding: 0 88px;
  }
  .ttswiper__container .iconButton.ttswiper-next {
    right: 26px;
  }
  .ttswiper__container .iconButton.ttswiper-prev {
    left: 26px;
  }
  .tt-ytmodal {
    max-width: 100vh;
  }
  .cs-config__header-group {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .cs-config__header-group span {
    flex-grow: 1;
  }
  .testerscrn {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .resultsList__header {
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #999a9f;
  }
  .resultsList__header-text {
    max-width: unset;
    width: 100%;
    order: 1;
  }
  .resultsList__header-links {
    font-size: 14px;
    padding-bottom: 0.35em;
  }
  .resultsList__header-buttons .iconButton {
    font-size: 14px;
  }
  .app-list {
    padding: 30px 0 50px;
  }
  .app-list__grid-item {
    width: 100%;
  }
  .testerscrn {
    font-size: 16px;
    justify-content: space-evenly;
  }
  .testerscrn .cbutton {
    font-size: 16px;
  }
  .testerscrn__body-form {
    width: 95%;
    max-width: 360px;
    align-items: center;
    flex-direction: column;
    gap: 0.5em;
  }
  .testerscrn__body-form-group {
    flex: unset;
    width: 100%;
  }
  .testerscrn__body-form .input {
    font-size: 14px;
  }
}
@media (max-width: 940px) {
  .ttswiper {
    padding: 30px 0 64px;
  }
  .ttswiper__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 30px;
  }
  .ttswiper__container-row {
    width: 100%;
  }
  .ttswiper__container .iconButton--arrow {
    position: unset;
    transform: unset;
    font-size: 14px;
  }
  .ttswiper__container-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
  .tt-ytmodal {
    padding: 20px;
  }
  .tt-ytmodal .cmodal__title {
    padding: 2.3rem 0 0 0;
  }
  .tt-ytmodal .cmodal__close {
    top: 0;
    right: 0;
  }
}
@media (max-width: 940px) {
  .ttswiper {
    padding: 30px 0 64px;
  }
  .ttswiper__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 30px;
  }
  .ttswiper__container-row {
    width: 100%;
  }
  .ttswiper__container .iconButton--arrow {
    position: unset;
    transform: unset;
    font-size: 14px;
  }
  .ttswiper__container-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
  .tt-ytmodal {
    padding: 20px;
  }
  .tt-ytmodal .cmodal__title {
    padding: 2.3rem 0 0 0;
  }
  .tt-ytmodal .cmodal__close {
    top: 0;
    right: 0;
  }
}
@media (max-width: 860px) {
  .cs-config__header {
    padding: 8px 12px;
    min-height: unset;
  }
  .cs-config__header__inner {
    padding: 6px 8px;
  }
  .cs-config__header-group {
    display: none;
  }
  .cs-config__header-actions {
    flex-grow: 1;
    justify-content: flex-end;
  }
  .cs-config__header-actions .cbutton {
    font-size: 16px;
  }
  .cs-config__tree {
    height: calc(100vh - 63px);
  }
}
@media (max-width: 768px) {
  .ttsetup__inner-body {
    gap: 30px;
  }
  .ttsetup__inner-body-input {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: unset;
  }
  .ttsetup__inner-body-input-group {
    width: 100%;
    flex-direction: column;
  }
  .ttsetup__inner-body-input .input {
    font-size: 16px;
    max-width: unset;
    width: 100%;
  }
  .ttsetup__inner-body-input .input input {
    padding: 1em;
  }
  .ttsetup__inner-body-input > span {
    font-size: 12px;
    text-transform: capitalize;
    align-self: flex-end;
    padding: 0 0.5em;
  }
  .pp-card {
    flex-direction: column;
  }
  .pp-card__actions {
    flex-direction: row;
    justify-content: flex-end;
  }
  .app-list {
    padding: 0px 0 30px;
  }
  .app-list__grid-item {
    width: 100%;
  }
  .testerscrn h2 {
    font-size: 36px;
  }
  .testerscrn h4 {
    font-size: 24px;
  }
  .testerscrn p {
    font-size: 14px;
    line-height: 1.55;
  }
  .testerscrn__instructions {
    flex-direction: column-reverse;
  }
  .testerscrn__instructions-list {
    width: 100%;
    max-width: 380px;
    gap: 1em;
  }
  .testerscrn__instructions-img {
    width: 100%;
    max-width: 380px;
  }
  .testerscrn__thanks {
    align-items: center;
    flex-direction: column;
    gap: 2em;
  }
  .testerscrn__thanks-text {
    text-align: center;
    align-items: center;
    width: 100%;
  }
  .testerscrn__thanks-banner {
    display: contents;
    width: 100%;
  }
  .testerscrn__thanks-banner > img {
    order: -1;
  }
  .testerscrn__thanks .testerscrn__logo {
    margin-top: 3em;
  }
  .hide-mob {
    display: none;
  }
}
@media (max-width: 580px) {
  .resultsList__header {
    padding: 5px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 20px;
  }
  .resultsList__header-text p {
    font-size: 14px;
  }
  .resultsList__header-links {
    flex-direction: row;
    justify-content: flex-end;
    justify-content: space-between;
  }
  .resultsList__header-buttons {
    order: 1;
  }
  .resultsList__header-buttons .iconButton {
    font-size: 12px;
  }
  .ttswiper__container {
    padding: 0;
  }
  .tt-ytmodal {
    width: 96%;
    padding: 12px;
  }
  .tt-ytmodal .ttswiper {
    padding: 0 0 10px 0;
  }
  .tt-ytmodal .ttswiper__item {
    border-radius: 0;
  }
  .tt-ytmodal .cmodal__close {
    width: 1.65rem;
    height: 1.65rem;
  }
  .testerscrn {
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
  }
  .testerscrn__body-form label {
    font-size: 10px;
    padding: 0;
  }
  .testerscrn__logo {
    font-size: 12px;
  }
}
