:root {

    --poll-bs: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    --poll-padding: 12px;
    --poll-padding2: 16px;
    --poll-padding-small: 8px;
    --poll-font-size: 16px;
    --poll-font-size-small: 12px;
    --poll-margin: 12px;
    --poll-margin2: 16px;
    --poll-margin-small: 8px;
    --poll-font-color: #222323;
    --poll-gap: 12px;
    --poll-border: 1px solid #dadada;
    --poll-hl-color: #005ccc;
}

.agPoll {
    border: none !important;
    font-size: var(--poll-font-size);
    background: transparent !important;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.agPoll * {
    font-family: var(--ff2);
}

.agPoll .question_container {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    color: var(--poll-font-color);
    margin: 0 0 var(--poll-margin);
    line-height: normal;
    font-weight: bold;
}

.agPoll .answers_container {
    display: flex;
    flex-direction: column;
    gap: var(--poll-gap);
}

.agPoll .answer {
    margin: 0 !important;
    padding: var(--poll-padding-small);
    border: var(--poll-border);
    background-color: transparent;
    border-radius: 6px;
    font-family: var(--ff2);
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.agPoll .answer .text_conteiner {
	color: var(--color-b);
	display: inline-block;
}

.agPoll .answer:hover {
    box-shadow: var(--poll-bs);
}

.agPoll .answer:hover:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z"/></svg>');
}

.agPoll .answer:before {
    content: "";
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512z"/></svg>');
    display: inline-flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    width: 12px;
    height: 12px;
    margin-right: var(--poll-margin-small);
    padding: var(--poll-padding-small);
}

.dark .agPoll .answer:hover:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23f3f3f9}</style><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z"/></svg>');
}

.dark .agPoll .answer:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23f3f3f9}</style><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z"/></svg>'); 
}


.agPoll .my_answer.answer_incorrect.answer-result-state {
    margin: 30px 0px 10px 0px;
    padding: 0;
    height: 10px;
    color: var(--poll-font-color);
    background: transparent;
    position: relative;
    display: table;
    font-weight: bold;
}

.agPoll .my_answer.answer_incorrect.answer-result-state:before {
    content: "\ ";
    background: var(--poll-hl-color);
    border-radius: 10px;
    height: 10px;
    display: block;
    position: absolute;
    bottom: 10px;
    width: inherit;
}

.agPoll .answer-result-state:after {
    background: rgba(0,0,0,0.05);
    height: 10px;
    display: block;
    content: "\ ";
    position: absolute;
    z-index: 0;
    margin-top: -19px;
    border-radius: 10px;
    box-shadow: 0px -1px 0px rgba(0,0,0,0.2);
    width: 100%;
}

.agPoll .answer-result-text {
    position: relative;
    top: -24px;
    text-shadow: none;
    display: table;
    width: 215px;
    white-space: initial;
}

.not_my_answer.answer_incorrect.answer-result-state {
    margin: 0;
    margin-top: 30px;
    padding: 0;
    color: var(--poll-font-color);
    background: transparent;
    position: relative;
    display: table;
}

.not_my_answer.answer_incorrect.answer-result-state:before {
    content: "\ ";
    background: var(--poll-hl-color);
    border-radius: 10px;
    height: 10px;
    display: block;
    position: absolute;
    bottom: 10px;
    width: inherit;
}

.agPoll .answer-count {
    font-size: var(--poll-font-size-small);
    color: var(--poll-font-color);
    padding: 0;
    display: none;
}

.agPoll.state_answer .answer {
    display: none !important;
}