
.selector_brd {
  border: 1px solid #e2eded;
  border-color: #eaf1f1 #e4eded #dbe7e7 #e4eded;
}

.selector_info {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #2d3667;
  font-size: 16px;
  text-align: center;
  padding: 14px;
  background-color: #f3f9f9;
}

.selector_app-cover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 300px;
  height: 42px;
  margin: 100px auto 0 auto;
  z-index: 1;
}

.selector_select-button {
  position: relative;
  height: 16px;
  padding: 12px 14px;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.selector_options-view-button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.selector_selected-value {
  font-size: 16px;
  line-height: 1;
  margin-right: 26px;
}

.selector_option i {
  width: 16px;
  height: 16px;
}

.selector_option,
.selector_label {
  color: #2d3667;
  font-size: 16px;
}

.selector_chevrons {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  padding: 9px 14px;
}

.selector_chevrons i {
  display: block;
  height: 50%;
  color: #d1dede;
  font-size: 12px;
  text-align: right;
}

.selector_options-view-button:checked + .selector_select-button #chevrons i {
  color: #2d3667;
}

.selector_options {
  position: absolute;
  left: 0;
  width: 250px;
}

.selector_options {
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  width: 298px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
}

.selector_options-view-button:checked ~ .selector_options {
  border: 1px solid #e2eded;
  border-color: #eaf1f1 #e4eded #dbe7e7 #e4eded;
}

.selector_option {
  position: relative;
  line-height: 1;
  transition: 0.3s ease all;
  z-index: 2;
}

.selector_option i {
  position: absolute;
  left: 14px;
  padding: 0;
  display: none;
}

.selector_options-view-button:checked ~ .selector_options .selector_option i {
  display: block;
  padding: 12px 0;
}

.selector_label {
  display: none;
  padding: 0;
  margin-left: 27px;
}

.selector_options-view-button:checked ~ .selector_options .selector_label {
  display: block;
  padding: 12px 14px;
}

.selector_s-c {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
}

.selector_s-c.top {
  top: 0;
}

.selector_s-c.bottom {
  bottom: 0;
}

input[type="radio"] {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 50%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.selector_s-c:hover ~ i {
  color: #fff;
  opacity: 0;
}

.selector_s-c:hover {
  height: 100%;
  z-index: 1;
}

.selector_s-c.bottom:hover + i {
  bottom: -25px;
  animation: moveup 0.3s ease 0.1s forwards;
}

.selector_s-c.top:hover ~ i {
  top: -25px;
  animation: movedown 0.3s ease 0.1s forwards;
}

@keyframes moveup {
  0% {
    bottom: -25px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes movedown {
  0% {
    top: -25px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

.selector_label {
  transition: 0.3s ease all;
}

.selector_opt-val {
  position: absolute;
  left: 14px;
  width: 217px;
  height: 21px;
  opacity: 0;
  background-color: #fff;
  transform: scale(0);
}

.selector_option input[type="radio"]:checked ~ .selector_opt-val {
  opacity: 1;
  transform: scale(1);
}

.selector_option input[type="radio"]:checked ~ i {
  top: 0;
  bottom: auto;
  opacity: 1;
  animation: unset;
}

.selector_option input[type="radio"]:checked ~ i,
.selector_option input[type="radio"]:checked ~ .selector_label {
  color: #fff;
}

.selector_option input[type="radio"]:checked ~ .selector_label:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.selector_options-view-button:not(:checked)
  ~ .selector_options
  .selector_option
  input[type="radio"]:checked
  ~ .opt-val {
  top: -30px;
}

.selector_option:nth-child(1) input[type="radio"]:checked ~ .selector_label:before {
  background-color: #000;
  border-radius: 4px 4px 0 0;
}

.selector_option:nth-child(1) input[type="radio"]:checked ~ .selector_opt-val {
  top: -31px;
}

.selector_option:nth-child(2) input[type="radio"]:checked ~ .selector_label:before {
  background-color: #ea4c89;
}

.selector_option:nth-child(2) input[type="radio"]:checked ~ .selector_opt-val {
  top: -71px;
}

.selector_option:nth-child(3) input[type="radio"]:checked ~ .selector_label:before {
  background-color: #0057ff;
}

.selector_option:nth-child(3) input[type="radio"]:checked ~ .selector_opt-val {
  top: -111px;
}

.selector_option:nth-child(4) input[type="radio"]:checked ~ .selector_label:before {
  background-color: #32c766;
}

.selector_option:nth-child(4) input[type="radio"]:checked ~ .selector_opt-val {
  top: -151px;
}

.selector_option:nth-child(5) input[type="radio"]:checked ~ .selector_label:before {
  background-color: #f48024;
}

.selector_option:nth-child(5) input[type="radio"]:checked ~ .selector_opt-val {
  top: -191px;
}

.selector_option:nth-child(6) input[type="radio"]:checked ~ .selector_label:before {
  background-color: #006400;
  border-radius: 0 0 4px 4px;
}

.selector_option:nth-child(6) input[type="radio"]:checked ~ .selector_opt-val {
  top: -231px;
}

.selector_option .fa-codepen {
  color: #000;
}

.selector_option .fa-dribbble {
  color: #ea4c89;
}

.selector_option .fa-behance {
  color: #0057ff;
}

.selector_option .fa-hackerrank {
  color: #32c766;
}

.selector_option .fa-stack-overflow {
  color: #f48024;
}

.selector_option .fa-free-code-camp {
  color: #006400;
}

.selector_option-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 40px;
  transition: 0.3s ease all;
  z-index: 1;
  display: none;
}

.selector_options-view-button:checked ~ .selector_options .selector_option-bg {
  display: block;
}

.selector_option:hover .selector_label {
  color: #fff;
}

.selector_option:nth-child(1):hover ~ .selector_option-bg {
  top: 0;
  background-color: #000;
  border-radius: 4px 4px 0 0;
}

.selector_option:nth-child(2):hover ~ .selector_option-bg {
  top: 40px;
  background-color: #ea4c89;
}

.selector_option:nth-child(3):hover ~ .selector_option-bg {
  top: 80px;
  background-color: #0057ff;
}

.selector_option:nth-child(4):hover ~ .selector_option-bg {
  top: 120px;
  background-color: #32c766;
}

.selector_option:nth-child(5):hover ~ .selector_option-bg {
  top: 160px;
  background-color: #f48024;
}

.selector_option:nth-child(6):hover ~ .selector_option-bg {
  top: 200px;
  background-color: #006400;
  border-radius: 0 0 4px 4px;
}
