.poll_row {
    border: 1px solid var(--grey);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
	overflow: hidden;
}

.poll_container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin: 2em auto;
    width: 640px;
    max-width: 100%;
}

.noimg_question_holder {
    position: relative;
    min-height: 12em;
    background: var(--bg);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2em;
    flex-direction: column;
    gap: 0.6em;
}
.noimg_question_holder .poll_question {
    color: var(--grey);
    text-align: center !important;
	margin: 0 auto;
}

.question_options {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}


button.poll_option {
    border: 1px solid var(--grey);
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-family: inherit;
    letter-spacing: 0.3px;
    line-height: 1.1em;
    padding: 0.33em 0.66em;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    min-height: 3em;
    color: var(--black);
}

button.poll_option.selected {
    background: var(--primary);
    color: #fff;
}

button.poll_option:hover {
    border-color: var(--bg);
    background: var(--light-grey);
}

span.option_number {
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1em;
    font-family: var(--title-font);
}

span.q_counter {
    color: var(--white);
    font-size: 0.6em;
    line-height: 1em;
    font-family: var(--title-font);
    letter-spacing: 1.5px;
    position: absolute;
    right: 12px;
    bottom: 10px;
}
span.poll_label{
    position: absolute;
    right: 0;
    top: 0px;
    background: var(--primary);
    border-radius: 0 5px 0 10px;
    color: #ffffff;
    font-size: 0.6em;
    line-height: 1em;
    font-family: var(--title-font);
    letter-spacing: 1px;
    padding: 8px 8px 8px 11px;
    font-weight: 700;
}
h4.poll_question {
    margin: 0;
    padding: 12px 14px 5px;
    font-size: 1.1em;
    line-height: 1.2em;
}

.poll_img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.poll_option.correct {
    background: #33aa66 !important;
    border-color: #33aa66 !important;
    color: #fff;
    letter-spacing: 0.5px;
}