.vote-modal__title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: #fff;
}

.vote-modal__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin-top: 12px;
}

.vote-modal__buttons {
    margin-top: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vote-modal__button {
    width: 100%;
    height: 60px;
    border-radius: 16px;
    padding: 1px;
    background: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid #414141;
    cursor: pointer;
    transition: all 0.2s ease;

    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
}

.vote-modal__button:hover {
    filter: brightness(1.1);
}

.vote-modal__button img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

#captcha-container {
    margin-top: 32px;
}

.vote-modal__actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.vote-modal__cancel {
    border: 1px solid #a9a9a9;
    padding: 0px 24px;
    width: calc(50% - 8px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;

    transition: all 0.2s ease;
    cursor: pointer;
}
.vote-modal__cancel:hover {
    opacity: 0.8;
}

.vote-modal__confirm {
    width: calc(50% - 16px);
    height: 64px;
    font-size: 22px;
}

.vote-modal__confirm.disabled {
    opacity: 0.6;
    cursor: default;
}

.vote-modal__logout {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 5px;
    width: fit-content;
}
.vote-modal__logout:hover {
    opacity: 0.8;
}

.vote-modal-authorized {
    margin-top: 12px;
    margin-bottom: 24px;
}

.vote-has-vote {
    margin-top: 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 112%;
    color: #fff;
    display: none;
}

.vote-success {
    margin-top: 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 112%;
    color: #fff;
    display: none;
}

@media (max-width: 640px) {
    .vote-modal__cancel {
        height: 50px;
    }
    .vote-modal__confirm {
        height: 50px;
    }
}