.choosing {
    margin: 0;
    padding: 0;
    position: relative;
}

.choosing-poll .answers {
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 0px 3px #888888;
    overflow: hidden;
}

.choosing label {
    display: block;
    margin: 0;
    position: relative;
    width: 100%;
    height: 62px;
    padding: 15px 20px;
    border: none;
    background-color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    text-align: left;
    color: #959595;
    font-size: 18px;
    outline: none;
    overflow: hidden;
    -webkit-transition: background-color 300ms ease-in;
    -moz-transition: background-color 300ms ease-in;
    -ms-transition: background-color 300ms ease-in;
    transition: background-color 300ms ease-in;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.choosing label:hover {
    background-color: #efefef !important;
}

.choosing label.active-answer {
    background-color: #d9d9d9 !important;
}

.choosing label .line {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background-color: #d8d8d8;
}

.choosing label .circle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #d9d9d9;
    opacity: 1;
    -webkit-transform: scale(1);
    -webkit-transition: all 400ms ease-in;
    -moz-transform: scale(1);
    -moz-transition: all 400ms ease-in;
    -ms-transform: scale(1);
    -ms-transition: all 400ms ease-in;
    transform: scale(1);
    transition: all 400ms ease-in;
}

.choosing label .circle.active {
    -webkit-transform: scale(300);
    -moz-transform: scale(300);
    -ms-transform: scale(300);
    transform: scale(300);
}

.choosing label .circle.hidden {
    opacity: 0;
}

.choosing label .text {
    z-index: 10;
    position: relative;
}