#vote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vote-box {
    width: 100%;
}

.vote-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 700;
}

.content-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.content img {
    width: 100%;
}

.content h5 {
    font-size: 18px;
    font-weight: 500;
}

.vs-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.vs-box .vs {
    font-weight: bold;
    font-size: 34px;
}

.vote-desc {
    width: 100%;
    height: 25px;
    position: relative;
    display: flex;
}

.vote-left {
    background-color: lightcoral;
    border: 1px solid gray;
    width: 50%;
    height: 100%;
}

.vote-right {
    background-color: cornflowerblue;
    border: 1px solid gray;
    width: 50%;
    height: 100%;
}

.vote-viewer {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.arrow-box {
    width: 25px;
    height: 25px;
}

.arrow {
    width: 25px;
    cursor: pointer;
}

.score {
    font-size: 14px;
    font-weight: 500;
    top: 6px;
}

.score-left {
    position: absolute;
    left: 20px;
}

.score-center {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.score-right {
    position: absolute;
    right: 20px;
}

.vote-result {
    width: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    margin-top: -8px;
}

.vote-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.vote-total img {
    width: 17px;
}

.vote-total span {
    font-size: 14px;
}

@media (max-width: 1000px) {
    .content img {
        width: 150px;
    }
}

@media (max-width: 700px) {
    
    .vote-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .content-box {
        flex-direction: column;
    }

    .content {
        gap: 5px;
    }

    .content img {
        width: 100%;
        max-width: 200px;
    }

    .vs-box {
        margin: 25px 0;
    }
}