.register, .personal-data {
  z-index: 9;
}

.register .btn, .personal-data .btn {
  margin-top: 0;
}

.register .country, .personal-data .country {
  height: auto !important;
  position: relative;
}

.register .country:hover::after, .personal-data .country:hover::after {
  opacity: 1;
}

.register .country input, .personal-data .country input {
  display: none;
}

.register .country .final-option, .personal-data .country .final-option {
  position: relative;
  cursor: default;
}

.register .country .final-option::after, .personal-data .country .final-option::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: calc(100% - 40px);
  height: 1px;
  background-color: #637D96;
  opacity: 0;
  border-radius: 50%;
}

.register .country .final-option::before, .personal-data .country .final-option::before {
  content: url("../images/arrow.svg");
  position: absolute;
  height: 50px;
  width: 14px;
  right: 25px;
  top: 0;
  opacitY: .5;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.register .country .country-options, .personal-data .country .country-options {
  list-style-type: none;
  height: 0px !important;
  overflow: hidden;
  overflow-y: scroll;
  width: 95%;
}

.register .country .country-options .option, .personal-data .country .country-options .option {
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  -webkit-transition: 200ms;
  transition: 200ms;
  cursor: pointer;
  position: relative;
}

.register .country .country-options .option:before, .personal-data .country .country-options .option:before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  background: #637D96;
  border-radius: 50%;
  left: 0px;
  top: calc(50% - 2.5px);
  -webkit-transition: 150ms;
  transition: 150ms;
  opacity: 0;
}

.register .country .country-options .option:hover::before, .personal-data .country .country-options .option:hover::before {
  opacity: 1;
}

.register .focus-on, .personal-data .focus-on {
  background-color: #CBDBEB !important;
  -webkit-transition: 0ms;
  transition: 0ms;
}

.register .focus-on .final-option::after, .personal-data .focus-on .final-option::after {
  opacity: .5;
}

.register .focus-on .final-option::before, .personal-data .focus-on .final-option::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.register .focus-on .country-options, .personal-data .focus-on .country-options {
  height: 200px !important;
}

.register .password-container, .personal-data .password-container {
  position: relative;
}

.password-container svg {
  position: absolute;
  height: 20px;
  width: 20px;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
}
.password-container svg:hover {
  opacity: 1;
}

/*
.register .password-container span, .personal-data .password-container span {
  content: url("../images/eye.png");
  position: absolute;
  height: 23px;
  width: 23px;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
}

.register .password-container span:hover, .personal-data .password-container span:hover {
  opacity: 1;
}
*/

.register .helper-container, .personal-data .helper-container {
  text-align: center;
  margin-top: 5vh;
}

.register .helper-container .helper:not(:first-of-type), .personal-data .helper-container .helper:not(:first-of-type) {
  margin-top: 2.5vh;
}

.register .helper-container .helper a, .personal-data .helper-container .helper a {
  color: #000;
  position: relative;
}

.register .helper-container .helper a::before, .personal-data .helper-container .helper a::before {
  bottom: 0;
  opacity: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.register .helper-container .helper a:hover, .personal-data .helper-container .helper a:hover {
  color: #636363;
}

.register .helper-container .helper a:hover::before, .personal-data .helper-container .helper a:hover::before {
  opacity: 1;
  background-color: #636363;
}
/*# sourceMappingURL=register.css.map */