.poll-title {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.poll-block {
    padding-right: 15vw;
}

.acf-poll-box {
    width: 100%;
    max-width: 700px;
}

.dot {
    color: var(--main-color);
    font-size: 90px;
    line-height: 0;
}

.acf-poll-box__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 30px;
    padding-top: 5px;
}

.acf-poll-box__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acf-poll-box__answer {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

button.acf-poll-box__item {
    cursor: pointer;
    appearance: none;
}

button.acf-poll-box__item:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

.acf-poll-box__item.is-locked {
    cursor: default;
}

.acf-poll-box__content {
    position: relative;
    z-index: 2;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.acf-poll-box__fill {
    position: absolute;
    inset: 0 auto 0 0;
    height: 100%;
    background: var(--main-color);
    border-radius: 15px;
    z-index: 1;
    transition: width 0.35s ease;
}

.acf-poll-box__percent {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.acf-poll-box.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.acf-poll-box__answer-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acf-poll-box__meta {
    font-size: 14px;
    color: #6f6f75;
}

.acf-poll-box__item.is-active .acf-poll-box__answer,
.acf-poll-box__item.is-active .acf-poll-box__percent {
    color: #6d35ff;
}

.acf-poll-box__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
    color: #6f6f75;
}

.acf-poll-box__item {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #1A1A1A;
    border-radius: 15px;
    padding: 0;
    border: 0;
    text-align: left;
}

/*Responsive CSS for Politis Group by Efi Kakouni*/

@media only screen and (max-width: 1650px) {
    .poll-block {
        padding-right: 5vw;
    }
    
    .acf-poll-box__title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1250px) {
    .poll-title {
        font-size: 36px;
    }

}


@media only screen and (max-width: 1024px) {
    .poll-title {
        font-size: 32px;
    }
    
    .poll-block {
        padding-left: 5vw;
    }
    
    .acf-poll-box__content {
        padding: 10px 15px;
        min-height: 40px;
    }
    
    .acf-poll-box__answer {
        font-size: 16px;
    }
    
    .acf-poll-box__title {
        font-size: 16px;
    }
}












