.vote-box {
    margin: 10px 0;
}

.option-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.option-list.polled {
    margin: 0 auto;
    width: 450px;
}

@media (max-width: 1024px) {

    .option-list.polled {
        width: 100%;
    }
}

.option-item {
    height: 165px;
    width: 165px;
    border-radius: 4px;
    background-color: #f5f1e4;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0 10px 10px 0;
}

@media (max-width: 1024px) {
    .option-item {
        height: 115px;
        width: 115px;
    }
}

.option-list.polled .option-item {
    height: 50px;
    width: 100%;
    border-radius: 54px;
    margin: 0 0 10px 0;
}

.option-item:hover {
    background-color: #fbefc9;
}

.option-item.active,
.option-item.active:hover {
    background-color: #ffe697;
}

.option-poss {
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(-90deg, #FFC107 0, #FF5722 100%);
    border-radius: 54px;
    height: 100%;
    z-index: 1;
    width: 0;
    transition: width 1s;
    opacity: 0;
}

.option-list.polled .option-poss {
    opacity: 1;
}

.option-pic {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.option-pic img {
    width: 100%;
    height: 100%;
}

.option-list.polled .option-pic {
    width: 50px;
    height: 50px;
    border-radius: 26px;
}

.option-text {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000073;
    color: #fff;
    padding: 12px;
    box-sizing: border-box;
}

.option-item:hover .option-text {
    background-color: #0000008a;
}

.option-list.polled .option-text {
    position: absolute;
    z-index: 2;
    left: 60px;
    top: 12px;
    width: unset;
    height: unset;
    background: none;
    color: #000;
    padding: 0;
}


.option-total {
    position: absolute;
    right: 25px;
    top: 12px;
    z-index: 2;
    display: none;
}

.option-list.polled .option-total {
    display: block;
}