html {
  font-size: 10px;
  background: #131948;
}
body {
  background: #E6EBF2;
  color: #2D375E;
  min-height: 100vh;
  font-family: 'Poppins';
}
@media (min-width: 992px) {
  body {
    background: url('img/background.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
* {
  box-sizing: border-box;
}
a,
button,
input,
textarea {
  transition: all 0.3s ease 0s;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.button {
  background: #0E62C4;
  border-radius: 10px;
  padding: 18px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.3rem;
  width: 100%;
}
@media (min-width: 992px) {
  .button {
    width: auto;
    padding: 17px 10px;
  }
}
.button:hover {
  color: #fff;
  background: #2D375E;
  text-decoration: none;
}
.button.--alternative {
  background: transparent;
  border: 1px solid #626986;
  color: #626986;
}
.button.--alternative:hover {
  color: #fff;
  background: #2D375E;
  text-decoration: none;
}
.button.--alternative.--disabled {
  display: none;
}
.button.--alternative.--disabled + .button {
  width: 100%;
}
.popup {
  position: fixed;
  z-index: 9;
  width: 95vw;
  max-width: 560px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50px;
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .popup {
    top: 120px;
  }
}
.popup span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.popup h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.popup small {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 30px;
}
.popup > * {
  position: relative;
  z-index: 9;
}
.popup .button:last-child {
  margin-top: 10px;
}
.popup .button + a:not(.button) {
  color: #2D375E;
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 10px;
  width: 100%;
  display: block;
}
@media (min-width: 992px) {
  .popup .button + a:not(.button) {
    padding: 17px 10px 0;
  }
}
.popup .button + a:not(.button):hover {
  color: #0E62C4;
  text-decoration: none;
}
.popup.--welcome span {
  width: 45px;
  height: 45px;
  background-color: #E3F32F;
  margin: 10px auto 15px;
}
.popup.--welcome span img {
  display: block;
}
.popup.--welcome h2 {
  margin-bottom: 15px;
}
.popup.--close span {
  background: #EC3839;
  width: 25px;
  height: 25px;
  margin: 30px auto 40px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.popup.--close span:before {
  content: '';
  display: block;
  background: rgba(236, 56, 57, 0.1);
  width: 61px;
  height: 61px;
  border-radius: 100%;
  position: absolute;
}
.popup__background {
  position: fixed;
  z-index: 8;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #2D375E;
  opacity: 0.7;
}
.register {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .register {
    position: fixed;
    max-width: 600px;
    margin: 0 auto;
    top: 70px;
    left: 0;
    right: 0;
  }
}
.register__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #131948;
  color: #fff;
  height: 30px;
  padding: 20px 15px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .register__header {
    font-size: 1.6rem;
    height: 60px;
    padding: 20px;
    border-radius: 20px 20px 0 0;
  }
}
.register__header a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
}
.register__header a.--disabled {
  opacity: 0;
  pointer-events: none;
}
.register__bar {
  padding: 12px 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 8px;
  background: #E6EBF2;
}
.register__bar.--ten {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.register__bar.--eight {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.register__bar span {
  display: block;
  background: #D7DCE8;
  height: 5px;
  border-radius: 100px;
}
.register__bar span.--prev {
  background: #0E62C4;
}
.register__bar span.--active {
  background: linear-gradient(90deg, #F40E10 0%, #FFDC26 100%);
  position: relative;
  z-index: 1;
}
.register__bar span.--active:after {
  content: url('img/fire.png');
  position: absolute;
  right: 0;
  top: -6px;
}
.register__bar.--disabled {
  display: none;
}
.register__bar.--loading {
  position: relative;
}
.register__bar.--loading:before {
  content: '';
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #626986;
  opacity: 0.3;
}
.register__input {
  background: #E6EBF2;
  border-radius: 0 0 20px 20px;
  padding: 7px;
  display: none;
  min-height: 100vh;
}
@media (min-width: 992px) {
  .register__input {
    padding: 20px;
    min-height: 0;
  }
}
.register__input.--active {
  display: flex;
  flex-direction: column;
}
.register__input.--kir h2 {
  font-size: 1.8rem;
  text-align: center;
}
@media (min-width: 992px) {
  .register__input.--kir h2 {
    width: 60%;
    margin: 0 auto 30px;
  }
}
.register__input h2 {
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .register__input h2 {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.register__input h2 img {
  margin-right: 5px;
}
.register__input small {
  display: block;
  font-size: 1.2rem;
  margin-top: -10px;
  margin-bottom: 15px;
}
.register__input input {
  width: 100%;
  height: 52px;
  border-radius: 7px;
  outline: none;
  border: 0;
  font-size: 1.3rem;
  padding: 0 15px;
  margin-bottom: 10px;
  box-shadow: 0px 4px 13px 0px #44556A14;
}
.register__input input + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
}
.register__input input + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__input input + span.--visible {
    justify-content: flex-start;
  }
}
.register__input input + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__input input + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__input input + span small.--success:before {
  content: url('img/success.png');
}
.register__input input.--error {
  box-shadow: inset 0px 0px 0px 1px #EC3839;
}
.register__input input.--error + span {
  opacity: 1;
}
.register__input.--choice > picture {
  max-width: 100%;
  img {
    max-width: 100%;
  }
}
.register__input.--choice > div {
  background: #fff;
  box-shadow: 0px 4px 13px 0px #44556A14;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 15px 20px;
}
@media (min-width: 768px) {
  .register__input.--choice > div {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .register__input.--choice > div {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .register__input.--choice > div > *:nth-child(odd) {
    width: calc(100% - 125px);
  }
}
@media (min-width: 992px) {
  .register__input.--choice > div > *:nth-child(even) {
    margin-left: auto;
    width: 125px;
  }
}
.register__input.--choice > div strong {
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  order: 2;
}
@media (min-width: 992px) {
  .register__input.--choice > div strong {
    order: 1;
  }
}
.register__input.--choice > div span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  order: 1;
}
@media (min-width: 768px) {
  .register__input.--choice > div span {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .register__input.--choice > div span {
    order: 2;
  }
}
.register__input.--choice > div ul {
  list-style: none;
  padding: 0;
  font-size: 1.3rem;
  text-align: center;
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .register__input.--choice > div ul {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .register__input.--choice > div ul {
    font-size: 1.2rem;
    text-align: left;
    display: block;
  }
}
.register__input.--choice > div ul li {
  display: flex;
  align-items: center;
}
.register__input.--choice > div ul li:before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: #2D375E;
  border-radius: 100%;
  margin-right: 10px;
}
.register__input.--choice > div a {
  order: 4;
}
.register__input.--choice > span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: rgba(45, 55, 94, 0.5);
  font-weight: 600;
  margin: 12px auto;
}
.register__input.--choice > span:before,
.register__input.--choice > span:after {
  content: '';
  height: 1px;
  width: 52px;
  background: #D7DCE8;
  display: block;
  margin: 0 10px;
}
.register__input.--nationality {
  position: relative;
}
.register__input.--nationality.--hide_pesel input[name="pesel"] {
  display: none;
}
.register__input.--error h2 {
  text-align: center;
  color: #EC3839;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .register__input.--error h2 {
    width: 55%;
    margin: 20px auto;
  }
}
.register__input.--error h2:before {
  content: url('img/exclamation.png');
  background: rgba(236, 56, 57, 0.1);
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin-bottom: 20px;
}
.register__input.--loading {
  position: relative;
  display: flex;
}
.register__input.--loading:before {
  content: '';
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #626986;
  opacity: 0.3;
}
.register__input.--loading:after {
  content: '';
  width: 50px;
  height: 50px;
  border-top: 2px solid #0E62C4;
  border-right: 2px solid #0E62C4;
  border-bottom: 2px solid transparent;
  border-radius: 100%;
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  margin: auto;
  top: calc(50% - 25px);
  animation-timing-function: linear;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.register__password {
  position: relative;
}
.register__password + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
}
.register__password + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__password + span.--visible {
    justify-content: flex-start;
  }
}
.register__password + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__password + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__password + span small.--success:before {
  content: url('img/success.png');
}
.register__password a {
  position: absolute;
  right: 15px;
  top: 18px;
}
.register__phone {
  display: flex;
}
.register__phone input:first-child {
  width: 58px;
  margin-right: 10px;
}
.register__phone + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
}
.register__phone + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__phone + span.--visible {
    justify-content: flex-start;
  }
}
.register__phone + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__phone + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__phone + span small.--success:before {
  content: url('img/success.png');
}
.register__phone.--error input {
  box-shadow: inset 0px 0px 0px 1px #EC3839;
}
.register__phone.--error + span {
  opacity: 1;
}
.register__sms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.register__sms input {
  width: 60px;
  height: 75px;
  margin: 0 4px;
  text-align: center;
  font-size: 2.2rem;
}
.register__sms input + span {
  display: block;
  text-align: center;
  opacity: 1;
  width: 100%;
  margin-top: 10px;
  color: #626986;
  margin-bottom: 0;
}
.register__sms + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
  margin-bottom: 10px;
  justify-content: center;
}
.register__sms + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__sms + span.--visible {
    justify-content: flex-start;
  }
}
.register__sms + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__sms + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__sms + span small.--success:before {
  content: url('img/success.png');
}
.register__sms.--error + span {
  opacity: 1;
}
.register__kir_loader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .register__kir_loader {
    width: 60%;
    margin: 30px auto;
  }
}
.register__kir_loader img {
  flex-shrink: 0;
}
.register__progress {
  margin: 0 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.register__progress span {
  display: block;
  width: 6px;
  height: 6px;
  background: #0E62C4;
  opacity: 0.2;
  border-radius: 100%;
  animation-name: changeopacity;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.register__progress span:nth-child(1) {
  animation-delay: 0s;
}
.register__progress span:nth-child(2) {
  animation-delay: 0s;
}
.register__progress span:nth-child(3) {
  animation-delay: 0s;
}
.register__progress span:nth-child(4) {
  animation-delay: 1s;
}
.register__progress span:nth-child(5) {
  animation-delay: 1s;
}
.register__progress span:nth-child(6) {
  animation-delay: 1s;
}
.register__progress span:nth-child(7) {
  animation-delay: 2s;
}
.register__progress span:nth-child(8) {
  animation-delay: 2s;
}
.register__progress span:nth-child(9) {
  animation-delay: 2s;
}
.register__nationality {
  display: flex;
  flex-wrap: wrap;
}
.register__nationality input {
  transition: none;
}
.register__nationality input[name="birthdate"] {
  display: none;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  order: 1;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .register__nationality input[name="birthdate"] {
    width: calc(50% - 5px);
    margin-left: 5px;
    order: 0;
    margin-bottom: 10px;
  }
}
.register__nationality input[type="checkbox"] {
  display: none;
}
.register__nationality input[type="checkbox"] + label {
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  padding-left: 50px;
  height: 22px;
  display: none;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .register__nationality input[type="checkbox"] + label {
    margin-bottom: 35px;
  }
}
.register__nationality input[type="checkbox"] + label:before,
.register__nationality input[type="checkbox"] + label:after {
  display: block;
  content: '';
  transition: all 0.3s ease;
  position: absolute;
}
.register__nationality input[type="checkbox"] + label:before {
  width: 38px;
  height: 22px;
  border-radius: 30px;
  background: #D7DCE8;
  left: 0;
}
.register__nationality input[type="checkbox"] + label:after {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #fff;
  left: 2px;
}
.register__nationality input[type="checkbox"]:checked + label:before {
  background: #02B253;
}
.register__nationality input[type="checkbox"]:checked + label:after {
  left: 18px;
}
.register__nationality + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
}
.register__nationality + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__nationality + span.--visible {
    justify-content: flex-start;
  }
}
.register__nationality + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__nationality + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__nationality + span small.--success:before {
  content: url('img/success.png');
}
.register__nationality.--show input[name="pesel"] {
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
}
@media (min-width: 768px) {
  .register__nationality.--show input[name="pesel"] {
    width: calc(50% - 5px);
    margin-right: 5px;
  }
}
.register__nationality.--show input[name="pesel"].--toggled {
  cursor: initial;
  background: #fff;
  pointer-events: all;
}
.register__nationality.--show input[name="birthdate"] {
  display: block;
}
.register__nationality.--show input[name="birthdate"].--toggled {
  cursor: not-allowed;
  background: transparent;
  pointer-events: none;
}
.register__nationality.--show input[type="checkbox"] + label {
  display: flex;
}
.register__nationality.--show + span {
  position: absolute;
  bottom: 70px;
}
.register__nationality.--error input {
  box-shadow: inset 0px 0px 0px 1px #EC3839;
}
.register__nationality.--error + span {
  opacity: 1;
  position: static;
  margin-top: -25px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .register__nationality.--error + span {
    margin-top: 0;
    margin-bottom: 25px;
  }
}
.register__address {
  display: flex;
  flex-wrap: wrap;
}
.register__address input[name="zipcode"] {
  width: calc(25% - 10px);
  margin-right: 10px;
}
.register__address input[name="city"] {
  width: 75%;
}
.register__address + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
}
.register__address + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__address + span.--visible {
    justify-content: flex-start;
  }
}
.register__address + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__address + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__address + span small.--success:before {
  content: url('img/success.png');
}
.register__address.--error input {
  box-shadow: inset 0px 0px 0px 1px #EC3839;
}
.register__address.--error + span {
  opacity: 1;
}
.register__statements {
  display: flex;
  flex-wrap: wrap;
}
.register__statements input[name="birthdate"] {
  display: none;
  width: calc(50% - 5px);
  margin-left: 5px;
}
.register__statements input[type="checkbox"] {
  display: none;
}
.register__statements input[type="checkbox"] + label {
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  padding-left: 50px;
  height: 22px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 35px;
}
.register__statements input[type="checkbox"] + label:before,
.register__statements input[type="checkbox"] + label:after {
  display: block;
  content: '';
  transition: all 0.3s ease;
  position: absolute;
}
.register__statements input[type="checkbox"] + label:before {
  width: 38px;
  height: 22px;
  border-radius: 30px;
  background: #D7DCE8;
  left: 0;
}
.register__statements input[type="checkbox"] + label:after {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #fff;
  left: 2px;
}
.register__statements input[type="checkbox"]:checked + label:before {
  background: #02B253;
}
.register__statements input[type="checkbox"]:checked + label:after {
  left: 18px;
}
.register__statements.--show input[name="pesel"] {
  cursor: not-allowed;
  width: calc(50% - 5px);
  margin-right: 5px;
  background: transparent;
}
.register__statements.--show input[name="birthdate"] {
  display: block;
}
.register__statements span {
  font-size: 1.1rem;
  padding-bottom: 10px;
}
.register__statements small {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
  font-size: 1.1rem;
}
.register__statements small.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__statements small.--visible {
    justify-content: flex-start;
  }
}
.register__statements small small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__statements small small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__statements small small.--success:before {
  content: url('img/success.png');
}
.register__statements .register__select.--error + small {
  opacity: 1;
}
.register__consent {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 20px 15px 5px;
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.register__consent > a {
  height: 35px;
  padding: 0 12px;
  font-size: 1.5rem;
  font-weight: 600;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: -17px;
  margin: 0 auto;
  color: #2D375E;
  align-self: center;
  display: flex;
  align-items: center;
}
.register__consent > a:hover {
  text-decoration: none;
  background: #D7DCE8;
}
.register__consent > a:before,
.register__consent > a:after {
  display: flex;
}
.register__consent > a:before {
  content: '';
  margin-right: 10px;
  width: 19px;
  height: 19px;
  border-radius: 100%;
  border: 1px solid #D7DCE8;
}
.register__consent > a.--active:before {
  background-color: #02B253;
  border-color: #02B253;
}
.register__consent > a.--active:after {
  content: url('img/success_white.png');
  position: absolute;
  left: 17px;
}
.register__consent > div {
  border-bottom: 1px solid #D7DCE8;
  padding: 10px 0 0;
}
.register__consent > div:last-child {
  border: 0;
}
.register__consent > div > span {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.register__consent > div > span img {
  margin-right: 5px;
}
.register__consent input {
  display: none;
}
.register__consent input + label {
  font-size: 1rem;
  color: #626986;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.register__consent input + label:before {
  content: url('img/success_white.png');
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
  margin-right: 10px;
  flex-shrink: 0;
}
.register__consent input + label span {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 40px;
}
.register__consent input + label span.short {
  display: block;
}
.register__consent input + label span.short.--active {
  display: none;
}
.register__consent input + label span.expanded {
  display: none;
}
.register__consent input + label span.expanded.--active {
  display: block;
}
.register__consent input + label span .toggler {
  position: absolute;
  right: 0;
  top: 0;
  color: #626986;
  font-size: 0.8rem;
  font-weight: 600;
  width: 40px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #626986;
  border-radius: 5px;
}
.register__consent input + label span .toggler:hover {
  text-decoration: none;
  border-color: #0E62C4;
  color: #0E62C4;
}
.register__consent input:checked + label:before {
  background: #02B253;
  border-color: #02B253;
}
.register__consent input.--error + label:before {
  border-color: #EC3839;
}
.register__consent + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
  margin: 10px 0;
  text-align: center;
  justify-content: center;
}
.register__consent + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__consent + span.--visible {
    justify-content: flex-start;
  }
}
.register__consent + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__consent + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__consent + span small.--success:before {
  content: url('img/success.png');
}
.register__consent.--error + span {
  opacity: 1;
}
.register__select {
  width: 100%;
  position: relative;
  min-height: 52px;
  margin-bottom: 10px;
}
.register__select input {
  display: none;
}
.register__select ul {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-height: 400px;
  border-radius: 7px;
  outline: none;
  border: 0;
  font-size: 1.3rem;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  overflow: auto;
  scrollbar-color: #0E62C4 #D7DCE8;
  scrollbar-width: thin;
  box-shadow: 0px 4px 13px 0px #44556A14;
}
.register__select ul::-webkit-scrollbar-track {
  background-color: #D7DCE8;
}
.register__select ul::-webkit-scrollbar {
  width: 6px;
  background-color: #D7DCE8;
  height: 6px;
}
.register__select ul::-webkit-scrollbar-thumb {
  background-color: #0E62C4;
}
@media (max-height: 900px) {
  .register__select ul {
    max-height: 200px;
  }
}
.register__select ul:after {
  content: url('img/select_arrow.png');
  position: absolute;
  right: 15px;
  top: 15px;
}
.register__select ul li {
  display: none;
  cursor: pointer;
  height: 52px;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  border-top: 1px solid #D7DCE8;
  padding: 0 15px;
  transition: all 0.3s ease 0;
}
.register__select ul li:hover {
  background: #D7DCE8;
}
.register__select ul li img {
  max-width: 18px;
  max-height: 18px;
  margin-right: 10px;
}
.register__select ul li.--header {
  display: flex;
  border-top: 0;
}
.register__select ul + span {
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #EC3839;
}
.register__select ul + span.--visible {
  opacity: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .register__select ul + span.--visible {
    justify-content: flex-start;
  }
}
.register__select ul + span small {
  color: #626986;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.register__select ul + span small:before {
  content: url('img/error.png');
  margin-right: 5px;
}
.register__select ul + span small.--success:before {
  content: url('img/success.png');
}
.register__select ul.--error {
  box-shadow: inset 0px 0px 0px 1px #EC3839;
}
.register__select ul.--error + span {
  opacity: 1;
}
.register__select ul.--open {
  z-index: 2;
}
.register__select ul.--open li {
  display: flex;
}
.register__select[data-value='Inne'] {
  display: flex;
}
.register__select[data-value='Inne'] ul {
  width: calc(50% - 5px);
  margin-right: 5px;
}
.register__select[data-value='Inne'] input {
  display: block;
  width: calc(50% - 5px);
  margin-left: calc(50% + 5px);
}
.register__select.--error input {
  box-shadow: inset 0px 0px 0px 1px #EC3839;
}
.register__select.--error[data-value="false"] ul {
  box-shadow: inset 0px 0px 0px 1px #EC3839;
}
.register__buttons {
  margin-top: auto;
  margin: 0 -5px;
  display: flex;
}
.register__buttons > .button {
  width: calc(50% - 10px);
  margin: 0 5px;
}
.register__buttons > .button:only-child {
  width: 100%;
}
.register__recaptcha {
  text-align: center;
  font-size: 10px;
  padding: 0 0 10px;
}
@media (min-width: 992px) {
  .register__recaptcha {
    margin: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 10px;
    color: #fff;
  }
}
.grecaptcha-badge {
  display: none !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}
@keyframes changeopacity {
  0% {
    opacity: 0.2;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes rotate {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(360deg);
  }
}

