.avatar{
    width: 150px;
    height: 150px;
    border-radius: 150px;
}
.description{
    border: dashed 2px #cecece;
    border-radius: 20px;
    font-size: 36px;
    padding: 20px 10px;
    margin: 40px auto!important;
}
.name{
    width: 30rem; 
    height: 5rem; 
    font-size: 50px;
    border-radius: 20px;
    margin: 15px auto 30px;
    text-align: center;
}

.checkeable input {
    display: none;
}
.checkeable img {
    width: 150px;
    border: 5px solid transparent;
    margin: 0!important;
    padding: 5px;
    cursor: pointer;
}
.checkeable input:checked  + img {
    border-color: #39A900;
}
.avatars:hover img:not(:hover){
    opacity: 0.2;
}
.station-container{
    display: flex;
}
.station{
    display: inline-block;
    justify-content: space-around;
    background-color: #fff;
    padding: 0 5px;
    margin: 0 10px;
    border-radius: 30px;
    border: dotted 2px #fff;
    cursor: pointer;
    border:solid #000 8px;
}
.station:hover{
    border: solid #39A900 8px;
}
.station > img{
    width: 250px;
    border-radius: 30px;
}
.station span{
    position: absolute;
    color: #000;
    font-size: 28px;
}
.top{
    left: 80px;
}
.bottom{
    bottom: 10px;
    left: 80px;
} 
.answer{
    background-color: #000;
    border-radius: 20px;
    display: inline-block;
    height: 200px;
    width: 200px;
    font-size: 24px;
    vertical-align: middle;
    padding-top: 40px;
    margin:50px 15px 0;
    box-sizing: border-box;
}
.helper{
    width: 120px;
    height: 100px;
    /* background-color: #fff; */
    position: fixed;
    top: 0px;
    right: 20px;
    border-radius: 10px
}
.helper + .helper{
    width: 100px;
    background-color: #FFCE40;
    right: 160px;
}

.helper + .helper + .helper {
    width: 100px;
    background-color: #39A900;
    right: 280px;
}
