.selector {
  position: relative;
  left: 38.5%;
  top: 73.7%;
  width: 140px;
  height: 140px;
  margin-top: -70px;
  margin-left: -70px;
}

.selector,
.selector img {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}


.selector img {
  position: absolute;
  display: inline;

  left: 75px;
  top: -103px;
  width: 281px;
  height: 246px;
  /* padding: 10px; */
  /* background: #428bca; */
  /* border-radius: 50%; */
  border: 0;
  color: white;
  font-size: 20px;
  /* cursor: pointer; */
  /* box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1); */
  transition: all .1s;
}


/* .selector img:hover { background: #3071a9; } */

.selector img:focus { outline: none; }

.selector ul {
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  top: -284px;
  right: -49px;
  bottom: 164px;
  /* left: -20px; */
}

.selector li {
  position: absolute;
  width: 0;
  height: 234%;
  margin: 0 50%;
  -webkit-transform: rotate(-360deg);
  transition: all 0.8s ease-in-out;
}

.selector li input { display: none; }

.selector li input + label {
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 15px;
  height: 15px;
  line-height: 1px;
  margin-left: 0;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;
}

.selector li input + label:hover { background: #18c4e2; }


/* .selector li input:checked + label:hover { background: #449d44; } */

.selector.open li input + label {
    width: 91px;
    height: 58px;
    line-height: 56px;
    margin-left: -40px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    font-family: Verdana;
    font-size: 12px;

}