body {
    margin: 0;
    background: linear-gradient(#eee, #ccc);
    overflow: hidden;
}

.selector {
      position: absolute;
    right: 7%;
    top: 14%;
    width: 109px;
    height: 109px;
	z-index:10;
}
.selector img{
	display:block;
	width:100%
}

.return{
    width: 45px !important;
    height: 45px !important;
    top: -200%;
    right: -140%;
}

.selector,
.selector button {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.selector button {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    color: white;
    cursor: pointer;
   background-color: transparent;
    transition: all .1s;
}


.selector button:focus {
    outline: none;
}

.selector ul {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
}

.selector li {
    position: absolute;
    width: 0;
    height: 100%;
    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: 0;
    height: 0;
    line-height: 1px;
    margin-left: 0;
    border-radius: 50%;
    text-align: center;
    font-size: 1px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;
}


.selector.open li input+label {
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin-left: -45px;

    font-size: 14px;
}