@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap");
body {
  overflow-y: hidden;
  overflow-x: hidden;
  position: fixed;
}

#initial-disclaimer {
  width: 100vw;
  max-width: 100vw;
  color: var(--color-primary);
  line-height: 150%;
}
#initial-disclaimer p {
  width: 40rem;
  max-width: 90vw;
  text-align: center;
}

#next-conditional-disclaimer {
  color: white;
  width: -moz-max-content;
  width: max-content;
  padding: 0.4rem 1.4rem;
  margin-top: 2rem !important;
}

#disclaimer-image {
  width: 100vw;
  min-width: 800px;
  max-height: 30vh;
}

#title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-primary);
  font-size: 1.8rem;
  letter-spacing: 2px;
}

#progress-bar {
  position: absolute;
  width: 100vw;
  height: 1rem;
  background-color: rgb(240, 240, 240);
  z-index: 20;
  top: 5.6rem;
}

#current-progress {
  position: absolute;
  width: 10%;
  height: 100%;
  background-color: var(--color-primary);
  transition: 1s;
}

#register-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  transition: 1s;
  margin-top: 12rem;
}

.register-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  max-width: 1200px;
  height: 100vh;
  overflow-x: hidden;
}

.register-element-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  border-radius: 100px;
}

.register-element-content {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 800px;
  max-width: 100vw;
  border-radius: 2rem;
  padding: 2rem;
}
.register-element-content.finish {
  padding-bottom: 0.5rem;
}

.register-element-left {
  width: 20%;
}

.register-element-right {
  width: 80%;
}

.register-element-question {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-primary);
  padding-bottom: 0.4rem;
  text-transform: uppercase;
}

.register-element-finish {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-top: 1rem;
  padding-bottom: 0.2rem;
  text-align: center;
}

.register-element-textanswer {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.register-element-textanswer:focus {
  outline: none;
}
.register-element-textanswer::-moz-placeholder {
  color: var(--border-color);
}
.register-element-textanswer::placeholder {
  color: var(--border-color);
}

.input-text-style {
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-color);
  display: grid;
  grid-template-columns: 4.5em 1fr;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-out;
  max-width: 100%;
  width: 21rem;
  z-index: 10;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.register-element-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100px;
  padding: 0.5rem;
  border: 1px solid var(--color-primary);
  margin: 1rem auto;
  font-weight: 400;
}
.register-element-back:hover {
  cursor: pointer;
  opacity: 0.4;
}

.register-element-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100px;
  padding: 0.5rem;
  border: 2px solid var(--color-primary);
  margin: 1rem auto 1rem auto;
  font-weight: 400;
  background-color: var(--color-primary);
}
.register-element-next:hover {
  cursor: pointer;
  opacity: 0.7;
}
.register-element-next svg {
  pointer-events: none;
}

.non-filled-fields-message {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  text-align: center;
  color: #996B71;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.9rem;
  margin: 0.8rem auto 0 auto;
  padding: 0.4rem 1.2rem;
  border-radius: 0.6rem;
  background-color: #FFC0B7;
  transition: 1s;
}
.non-filled-fields-message.displayed {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.non-filled-fields-message-email {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  text-align: center;
  color: #996B71;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.9rem;
  margin: 0.8rem auto 0 auto;
  padding: 0.4rem 1.2rem;
  border-radius: 0.6rem;
  background-color: #FFC0B7;
  transition: 1s;
}
.non-filled-fields-message-email.displayed {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.non-filled-fields-message-pass {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  text-align: center;
  color: #996B71;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.9rem;
  margin: 0.8rem auto 0 auto;
  padding: 0.4rem 1.2rem;
  border-radius: 0.6rem;
  background-color: #FFC0B7;
  transition: 1s;
}
.non-filled-fields-message-pass.displayed {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.non-filled-fields-message-pass-coincidence {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  text-align: center;
  color: #996B71;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.9rem;
  margin: 0.8rem auto 0 auto;
  padding: 0.4rem 1.2rem;
  border-radius: 0.6rem;
  background-color: #FFC0B7;
  transition: 1s;
}
.non-filled-fields-message-pass-coincidence.displayed {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.non-filled-fields-message-privacy {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  text-align: center;
  color: #996B71;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.9rem;
  margin: 0.8rem auto 0 auto;
  padding: 0.4rem 1.2rem;
  border-radius: 0.6rem;
  background-color: #FFC0B7;
  transition: 1s;
}
.non-filled-fields-message-privacy.displayed {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.register-checkbox-container {
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--border-color);
  border: 1px solid var(--border-color);
  border-color: var(--dropdown-border-color);
  border-radius: 10rem;
  padding: 0.5rem 1.5rem;
}
.register-checkbox-container.active {
  border-color: var(--color-primary);
  color: #025b7b;
  font-weight: 400;
  background-color: var(--dropdown-trigger-background-color);
}
.register-checkbox-container.active .register-checkbox-label {
  color: #025b7b;
  font-weight: 400;
}
.register-checkbox-container.active svg path {
  stroke: #025b7b;
}

#additional-sport {
  padding: 0.6rem 1rem;
  width: 12rem !important;
}

#additional-sport-container {
  padding: 0 !important;
}

#pn-input-blur {
  background-color: white;
}

.register-checkbox-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.register-checkbox-fields-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.register-checkbox-fields {
  border: 1px solid var(--border-color);
  color: #757575;
  border-radius: 10rem;
}
.register-checkbox-fields.active {
  border: 1px solid var(--color-primary);
  color: white;
  background-color: var(--color-primary);
}

.register-checkbox-label {
  color: #757575;
}

.register-checkbox-input {
  color: black;
  border: 1px solid var(--border-color);
  border-radius: 0.7rem;
  padding: 0.5rem 1.5rem;
}
.register-checkbox-input:hover {
  cursor: auto !important;
}

.register-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
}

.register-checkbox-wrapper {
  display: flex;
}

.numberpistas {
  color: #ababab;
  font-weight: 300;
}

.activable:hover {
  cursor: pointer;
}

.entrenadores {
  flex-wrap: wrap;
}

#next-conditional-finish {
  margin-top: 1rem;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 2rem;
  width: 425px;
  max-width: 100%;
  background-color: var(--dropdown-trigger-background-color);
  border-radius: 0.8rem;
  padding: 1.6rem 1.6rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
  font-weight: 400;
  cursor: pointer;
}

.dropdown-arrow {
  position: absolute;
  right: 1rem;
  top: 30%;
  transition: 0.4s;
}
.dropdown-arrow.rotated {
  transform: translateY(-25%) rotateX(180deg);
}

.dropdown-options {
  position: absolute;
  border-radius: 0.8rem;
  width: 100%;
  top: 120%;
  left: 0;
  z-index: 10;
  overflow-x: hidden;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  height: 12rem;
  visibility: visible;
  opacity: 0;
  transform: translateY(-4rem);
  transition: 0.4s;
  pointer-events: none;
  cursor: pointer;
}
.dropdown-options.displayed {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-options .dropdown-option {
  background-color: white;
  width: 100%;
  padding: 0.8rem 2rem;
}
.dropdown-options .dropdown-option:hover {
  background-color: var(--dropdown-trigger-background-color);
}

@media (max-width: 1000px) {
  :root {
    font-size: 14px;
  }
}
@media screen and (min-width: 600px), screen and (max-height: 800px) {
  #register-container {
    margin-top: 8rem;
  }
  :root {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  :root {
    font-size: 14px;
  }
  .register-element-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0rem;
    padding: 0;
  }
  .register-element-left {
    display: none;
  }
  #title {
    font-size: 5.2vw;
    letter-spacing: 2px;
    color: var(--color-primary);
  }
  .register-element-next {
    width: 3.5rem;
    height: 3.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .register-element-back {
    width: 3.5rem;
    height: 3.5rem;
    margin-top: 0.4rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 400px) {
  :root {
    font-size: 12px;
  }
}
#privacy-policy-box:checked {
  accent-color: var(--color-primary);
}

#spam-policy-box:checked {
  accent-color: var(--color-primary);
}

input {
  outline: none;
  font-size: 1rem;
}

:root {
  --border-radius: 0.75em;
  --border-color: #c3c3c3;
  --border-color-active: #0047a5;
  --dropdown-border-color: #eaeaec;
  --dropdown-trigger-background-color: #f3f5f9;
  --dropdown-trigger-hover-background-color: #e6eaf1;
  --input-error-color: #ff0000;
  --input-label-color: #85898f;
  --input-prefix-color: #656b73;
  --input-phonenumber-color: #081627;
  --list-item-hover-background: #f3f5f9;
}

.pn-select {
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: var(--dropdown-border-color);
  display: grid;
  grid-template-columns: 4.5em 1fr;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-out;
  max-width: 425px;
  width: 100%;
  z-index: 10;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.pn-dropdown {
  background: #ffffff;
  border-radius: var(--border-radius);
  border-width: 1px;
  border-style: solid;
  border-color: var(--dropdown-border-color);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.135);
  opacity: 0;
  padding: 0 0.5em 0.5em;
  pointer-events: none;
  position: absolute;
  top: 140%;
  transform-origin: left top;
  transition: all 0.15s ease-out;
  width: 100%;
  visibility: hidden;
}
.pn-select--open .pn-dropdown {
  pointer-events: all;
  transform: none;
  opacity: 1;
  top: 120%;
  visibility: visible;
}

.pn-search {
  position: relative;
  display: flex;
  border-bottom-width: 1px;
  border-style: solid;
  border-color: var(--dropdown-border-color);
  margin-bottom: 0.5em;
}
.pn-search svg {
  display: block;
  height: 1.25rem;
  left: 0.5em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}
.pn-search input[type=search] {
  padding-left: 2.5rem;
  height: 3rem;
  width: 100%;
}
.pn-search input[type=search]::-webkit-search-decoration, .pn-search input[type=search]::-webkit-search-cancel-button, .pn-search input[type=search]::-webkit-search-results-button, .pn-search input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.pn-list {
  margin-right: -0.5em;
  max-height: 10.5em;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffffff #ffffff;
  position: relative;
}
.pn-list::-webkit-scrollbar {
  width: 10px;
}
.pn-list:hover {
  --scrollbar-background: #ffffff;
  --thumb-background: #c0c4ca;
  scrollbar-color: var(--thumb-background) var(--scrollbar-background);
}
.pn-list:hover::-webkit-scrollbar-track {
  background: var(--scrollbar-background);
}
.pn-list:hover::-webkit-scrollbar-thumb {
  background-color: var(--thumb-background);
  border-radius: 6px;
  border: 3px solid var(--scrollbar-background);
}
.pn-list--no-scroll {
  margin-right: 0;
}

.pn-selected-prefix {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--dropdown-trigger-background-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 0;
  outline: none;
  padding: 0;
  transition: background 0.2s ease-out;
}
.pn-selected-prefix:hover, .pn-selected-prefix:focus {
  background: var(--dropdown-trigger-hover-background-color);
}
.pn-selected-prefix__flag {
  height: auto;
  width: 1.25rem;
}
.pn-selected-prefix__icon {
  display: block;
  height: 1.25rem;
  margin-left: 0.5em;
  margin-right: -0.25em;
  transition: all 0.15s ease-out;
  width: 1.25rem;
}
.pn-select--open .pn-selected-prefix__icon {
  transform: rotate(180deg);
}

.pn-input {
  background: var(--dropdown-trigger-background-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  line-height: 1;
  overflow: hidden;
  padding: 1em;
}
.pn-input__container {
  display: flex;
  flex-direction: row;
}
.pn-input__label {
  color: var(--input-label-color);
  font-size: 0.7rem;
  position: relative;
  top: -0.25em;
}
.pn-input__error {
  bottom: 0;
  color: var(--input-error-color);
  font-size: 0.785rem;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: all 0.2s ease-out;
  z-index: -1;
}
.pn-input input[type=text] {
  background: transparent;
  position: absolute;
  color: var(--input-prefix-color);
  pointer-events: none;
}
.pn-input input[type=tel] {
  color: var(--input-phonenumber-color);
  padding-left: calc(var(--prefix-length) * 1ch + 1.5ch);
  font-weight: 400;
}
.pn-input input[type=tel]:not(:-moz-placeholder-shown):invalid + .pn-input__error {
  opacity: 1;
  transform: translateY(175%);
}
.pn-input input[type=tel]:not(:placeholder-shown):invalid + .pn-input__error {
  opacity: 1;
  transform: translateY(175%);
}

.pn-list-item {
  align-items: center;
  border-radius: 0.5em;
  display: flex;
  font-weight: 400;
  padding: 0.6em 0.75em;
  transition: background-color 0.2s ease-out;
  cursor: pointer;
  outline: none;
}
.pn-list-item__flag {
  width: 1.25em;
  height: auto;
  margin-right: 1em;
  display: block;
}
.pn-list-item__country {
  margin-right: 0.25em;
}
.pn-list-item:hover, .pn-list-item:focus {
  background-color: var(--list-item-hover-background);
}
.pn-list-item--selected {
  pointer-events: none;
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23103155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: right 0.75em top 50%;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: right 0.75em top 50%;
}
.pn-list-item--no-results {
  pointer-events: none;
}

#js_number-prefix2 {
  color: black;
}

#js_input-phonenumber2 {
  cursor: auto;
}

.textinput-container {
  display: flex;
  position: relative;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-color: var(--dropdown-border-color);
  grid-template-columns: 4.5em 1fr;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-out;
  height: 3.4rem;
  max-width: 100%;
  width: 425px;
  z-index: 1;
  margin-bottom: 1rem;
  overflow: hidden;
}
.textinput-container .textinput-text {
  margin-top: 0;
  height: 100%;
  font-size: 1rem;
  padding-left: 1rem;
}
.textinput-container .textinput-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 100%;
  padding-left: 1rem;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=register-club.css.map */