/* General */
body {
  margin: 0;
  background-color: #666;
  font-family: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

@media all and (max-width: 768px) {
  body {
    background-color: #fff;
  }
}

.ps__wrapper {
  max-width: 720px;
  background-color: #fff;
  margin: 0 auto;
  min-height: 640px;
  padding: 1rem;
  display: grid;
  grid-template-rows: min-content 1fr min-content;
}

.ps__top {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  text-align: center;
}

.ps__topleft {
  min-height: 20px;
}

.ps__topcenter {
  padding: 0 8px;
}

.ps__top .ps__previous {
  height: 20px;
  width: auto;
  margin: 0 auto;
  padding: 5px;
  cursor: pointer;
  display: none;
}

.ps__top .ps__previous.ps__previous--dashboard {
  display: block;
}

.ps__top .ps__progressbar {
  height: 6px;
  width: 100%;
  background-color: #dddddd;
  border-radius: 5px;
}

.ps__top .ps__progress {
  height: 100%;
  background-color: #6a00da;
  width: 0;
  transition: width 0.5s ease;
  border-radius: 5px;
}

.ps__top .ps__topright {
  font-size: 0.8rem;
  color: #a6a6a6;
}

.ps__main {
  padding: 0 10px;
  position: relative;
}

.ps__main .step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-out;
  transform: translateY(-100%);
  visibility: hidden;
}

.ps__main .step.active {
  position: static;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.ps__main .ps__question {
  display: grid;
  min-height: 180px;
  align-items: center;
  align-content: center;
  row-gap: 30px;
  margin-top: 30px;
}

.ps__main .ps__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.ps__main .ps__title.ps__title--large {
  font-size: 16px;
  text-align: left;
}

.ps__main .ps__description {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0 10px;
}

.ps__main .ps__description img {
  max-width: 100%;
}

.ps__main .ps__details {
  font-size: 20px;
}

.ps__main .ps__answer {
  margin-top: 30px;
}

.ps__bottom {
  padding: 0 10px;
}

.ps__bottom .ps__next,
.ps__bottom .ps__next2 {
  width: 100%;
  padding: 20px;
  background-color: #e8e8e8;
  color: #999999;
  border: 0;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.ps__bottom .ps__next.active,
.ps__bottom .ps__next2.active {
  background-color: #6a00da;
  color: #ffffff;
  cursor: pointer;
}

.ps__bottom .ps__continue {
  width: 100%;
  padding: 20px;
  background-color: #6a00da;
  color: #ffffff;
  border: 0;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
}

.ps__newacc {
  width: 100%;
  padding: 20px;
  background-color: #FF8C73;
  color: #ffffff;
  border: 0;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 1rem;
}

/* data-question-type="simple-radio" */
.ps__answer[data-question-type="simple-radio"] {
  display: grid;
  row-gap: 10px;
}

.ps__answer.ps__col-50[data-question-type="simple-radio"] {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: center;
}

.ps__answer[data-question-type="simple-radio"] label {
  padding: 20px 25px;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.ps__answer[data-question-type="simple-radio"] label.selected:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #6000c3;
  position: absolute;
  top: -1px;
  left: -1px;
  border-radius: 10px;
  box-shadow: rgba(96, 0, 195, 0.3) 1px 2px 8px;
}

.ps__answer[data-question-type="simple-radio"] input[type="radio"] {
  display: none;
}

/* data-question-type="menos-mas" */
.ps__answer[data-question-type="menos-mas"] {
  text-align: center;
}

.ps__answer[data-question-type="menos-mas"] .word-top {
  display: grid;
  grid-template-columns: 78px 78px;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.ps__answer[data-question-type="menos-mas"] .word-container {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 78px 1fr 78px;
  align-items: center;
  justify-items: center;
}

.ps__answer[data-question-type="menos-mas"] .option {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: transparent;
  cursor: pointer;
  background: transparent;
  border: 2px solid #6000c3;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.ps__answer[data-question-type="menos-mas"] .option::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  background-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}

.ps__answer[data-question-type="menos-mas"] .option.selected::after {
  background-color: #6000c3;
}

.ps__answer[data-question-type="menos-mas"] .word-container span {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 700;
}

/* data-question-type="point-distribution" */
.ps__answer[data-question-type="point-distribution"] .value-container {
  display: grid;
  grid-template-columns: 1fr min-content;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #dbdbdb;
  align-items: center;
}

.ps__answer[data-question-type="point-distribution"] .value-container:last-child {
  border-bottom: 1px solid #dbdbdb;
}

.ps__answer[data-question-type="point-distribution"] .value-container .title {
  font-size: 15px;
  font-weight: 600;
}

.ps__answer[data-question-type="point-distribution"] .stepper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-width: 116px;
  align-items: center;
  justify-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
  padding: 6px;
  user-select: none;
}

.ps__answer[data-question-type="point-distribution"] .stepper-control {
  cursor: pointer;
}

.ps__answer[data-question-type="point-distribution"] .stepper-left svg,
.ps__answer[data-question-type="point-distribution"] .stepper-right svg {
  height: 17px;
  display: block;
}

.ps__answer[data-question-type="point-distribution"] .stepper.empty {
  border: 1px solid transparent;
}

.ps__answer[data-question-type="point-distribution"] .stepper.empty .stepper-left,
.ps__answer[data-question-type="point-distribution"] .stepper.empty .stepper-number {
  opacity: 0;
  pointer-events: none;
}

.ps__answer[data-question-type="point-distribution"] .stepper-number {
  font-size: 16px;
  font-weight: 600;
}

/* ux */
.ps__topcenter {
  font-size: 16px;
  font-weight: 600;
}

.ps__details h1 {
  font-size: 24px;
}

.ps__details h2 {
  font-size: 20px;
}

.ps__details h3 {
  font-size: 18px;
}

.ps__details p {
  font-size: 16px;
}

.ps__form-group {
  position: relative;
  margin-bottom: 15px;
}

.ps__form-control {
  width: 100%;
  padding: 30px 25px 10px 25px;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

select.ps__form-control {
  background: url(arrow-down.png) no-repeat;
  -webkit-appearance: none;
  background-position-x: 95%;
  background-position-y: 25px;

}

.ps__form-control[type="password"] {
  font-size: 26px;
  padding: 24px 25px 4px;
}

.ps__form-group label {
  position: absolute;
  left: 25px;
  top: 9px;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 12px;
  color: #818181;
  z-index: 10;
  pointer-events: none;
}

.ps__tabs {
  margin-top: 0.5rem;
}

.ps__tab-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 1rem;
  box-shadow: 0px 6px 6px -8px #cbcbcb;
}

.ps__tab-link {
  background: transparent;
  border: 0;
  border-bottom: 3px solid lightgray;
  color: #747474;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.ps__tab-link.active {
  color: #6A00DA;
  border-bottom-color: #6A00DA;
}

.ps__tab-content {
  display: none;
}

.ps__tab-content.active {
  display: block;
}

.caja-proceso,
.caja-simple,
.caja-check {
  background: #F6F8FE;
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid #E8E8E8;
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 500;
  color: #575757;
  display: block;
  text-decoration: none;
}

.caja-check {
  display: grid;
  grid-template-columns: 1fr min-content;
  gap: 10px;
  text-decoration: none;
  align-items: center;
}

.caja-proceso>div,
.caja-simple>div {
  margin-bottom: 0.4rem;
}

.caja-proceso>div:last-child,
.caja-simple>div:last-child {
  margin-bottom: 0;
}

.caja-proceso .estado .activo {
  color: #168421;
  font-weight: 700;
}

.caja-proceso .ver-mas {
  text-align: right;
}

.caja-proceso .ver-mas a {
  font-size: 14px;
  color: #FFF;
  background-color: #6A00DA;
  border: 0;
  padding: 14px 30px;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
}

.caja-proceso .titulo,
.caja-simple .titulo {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.caja-check .titulo {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.caja-check .ps__check {
  width: auto;
  height: 20px;
  fill: #00000017;
}

.caja-check.activo .ps__check {
  fill: #6a00da;
}

.ps__tab-content .pruebas-ps h1 {
  font-size: 18px;
  font-weight: 700;
}

.procesos-cargo h1 {
  font-size: 18px;
  font-weight: 700;
}

.procesos-cargo h2 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 3rem;
}

.ps__upload-video {
  text-align: center;
  margin-top: 3rem;
}

.ps__upload-video .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.ps__upload-video .inputfile+label {
  max-width: 80%;
  font-size: 1.25rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
}

.ps__upload-video .inputfile+label figure {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #6a00da;
  display: block;
  padding: 20px;
  margin: 0 auto 10px;
}

.ps__upload-video .inputfile:focus+label figure,
.ps__upload-video .inputfile.has-focus+label figure,
.ps__upload-video .inputfile+label:hover figure {
  background-color: #4e00a1;
}

.ps__upload-video .inputfile+label svg {
  width: 100%;
  height: 100%;
  fill: #FFF;
}

.ps__upload-video .inputfile:focus+label,
.ps__upload-video .inputfile.has-focus+label,
.ps__upload-video .inputfile+label:hover {
  color: #4e00a1;
}

.caja-proceso .controles {
  display: grid;
  grid-template-columns: min-content min-content;
  gap: 20px;
  justify-content: flex-end;
}

.caja-proceso .controles button {
  background: transparent;
  border: 0;
}

.caja-proceso .controles svg {
  width: 24px;
  height: auto;
}

.ps__main .ps__details-icon {
  display: grid;
  grid-template-columns: 1fr min-content;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ps__main .ps__details-icon svg {
  width: 24px;
  height: auto;
}