@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap&subset=latin-ext");

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*noinspection CssInvalidPropertyValue*/
.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
    * This is introduced due to a bug in IE11 where lazy loading combined with auto-height plugin causes a wrong
    * calculation of the height of the owl-item that breaks page layouts
    */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

/*noinspection CssUnknownTarget*/
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-carousel .owl-item img {
    display: flex;
    width: auto;
    max-width: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
    outline: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type=search] {
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: content-box;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    max-width: 100%;
    *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
    display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
    outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
    outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
    border: 0;
    -ms-interpolation-mode: bicubic;
}

/**x
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
    margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
    margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    margin: 0 2px;
    padding: .35em .625em .75em;
    border: 1px solid #c0c0c0;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
    *margin-left: -7px;
    padding: 0;
    border: 0;
    white-space: normal;
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
    margin: 0;
    font-size: 100%;
    vertical-align: baseline;
    *vertical-align: middle;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    *overflow: visible;
    cursor: pointer;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    *width: 13px;
    *height: 13px;
    padding: 0;
}

/**
 * 1. Address `appearance` set to `search field` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
    overflow: auto;
    vertical-align: top;
}

/**
 * Remove most spacing between table cells.
 */
table {
    border-spacing: 0;
    border-collapse: collapse;
}

html,
button,
input,
select,
textarea {
    color: #000000;
}

::-moz-selection {
    background: #008675;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

img {
    vertical-align: middle;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

textarea {
    resize: vertical;
}

.chromeframe {
    margin: .2em 0;
    padding: .2em 0;
    background: #ccc;
    color: #000;
}

.banner {
    display: block;
    position: relative;
    height: auto;
    min-height: 540px;
    margin-bottom: 40px;
    overflow-x: hidden;
    background: none;
}

@media all and (min-width: 992px) {
    .banner {
        min-height: 540px;
        background: url("../img/banner.jpg") no-repeat top center;
    }
}

@media all and (min-width: 1295px) {
    .banner {
        height: 485px;
        min-height: 485px;
    }
}

.banner__mark-brown {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 236px;
    background: url("../img/banner-mark-tmavy.png") no-repeat top center;
}

@media all and (min-width: 992px) {
    .banner__mark-brown {
        left: 20px;
        width: 410px;
        background-size: contain;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-brown {
        left: 75px;
        width: 551px;
        height: 236px;
    }
}

.banner__mark-brown__inner {
    padding-top: 40px;
    padding-left: 0;
}

@media all and (min-width: 992px) {
    .banner__mark-brown__inner {
        padding-top: 30px;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-brown__inner {
        padding-top: 50px;
    }
}

.banner__mark-brown__inner__title {
    padding: 0 8px;
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 100;
    line-height: 1.3em;
    text-align: center;
}

@media all and (min-width: 992px) {
    .banner__mark-brown__inner__title {
        padding: 0 0;
        font-size: 1.8em;
        line-height: 1.3em;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-brown__inner__title {
        font-size: 2.5em;
    }
}

.banner__mark-brown__inner__title--thankyou {
    display: none;
    margin-top: 25px;
}

.banner__mark-green {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 236px;
    background: url("../img/banner-mark-dark-red.png") no-repeat top center;
}

@media all and (min-width: 992px) {
    .banner__mark-green {
        left: 20px;
        width: 410px;
        background-size: contain;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-green {
        left: 75px;
        width: 551px;
        height: 236px;
    }
}

.banner__mark-green__inner {
    padding-top: 40px;
    padding-left: 0;
}

@media all and (min-width: 992px) {
    .banner__mark-green__inner {
        padding-top: 30px;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-green__inner {
        padding-top: 50px;
    }
}

.banner__mark-green__inner__title {
    padding: 0 8px;
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 100;
    line-height: 1.3em;
    text-align: center;
}

@media all and (min-width: 992px) {
    .banner__mark-green__inner__title {
        padding: 0 0;
        font-size: 1.8em;
        line-height: 1.3em;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-green__inner__title {
        font-size: 2.5em;
    }
}

.banner__mark-green__inner__title--thankyou {
    display: none;
    margin-top: 25px;
}

.banner__mark-gray {
    position: relative;
    z-index: 0;
    width: auto;
    height: 478px;
    margin: 170px auto 0 auto;
    color: #222;
    background: url("../img/banner-mark-svetly.png") no-repeat top center;
}

@media all and (min-width: 992px) {
    .banner__mark-gray {
        position: absolute;
        right: 20px;
        bottom: 0;
        width: 550px;
        height: 380px;
        margin-top: 0;
        background-size: contain;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-gray {
        top: 0;
        right: 75px;
        width: 698px;
        height: 478px;
    }
}

.banner__mark-gray__inner {
    padding-top: 90px;
    padding-right: 0;
    padding-left: 0;
}

@media all and (min-width: 576px) {
    .banner__mark-gray__inner {
        padding-top: 90px;
        padding-right: 90px;
        padding-left: 80px;
    }
}

@media all and (min-width: 768px) {
    .banner__mark-gray__inner {
        padding-top: 120px;
        padding-right: 150px;
        padding-left: 150px;
    }
}

@media all and (min-width: 992px) {
    .banner__mark-gray__inner {
        padding-top: 60px;
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media all and (min-width: 1295px) {
    .banner__mark-gray__inner {
        padding-top: 90px;
        padding-right: 100px;
        padding-left: 180px;
    }
}

.banner__mark-gray__inner--thankyou {
    display: none;
    padding-top: 130px;
}

.banner__mark-gray__inner__text {
    margin-bottom: 10px;
    padding-right: 16px;
    padding-left: 16px;
    color: #000000;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.3em;
    text-align: left;
}

@media all and (min-width: 576px) {
    .banner__mark-gray__inner__text {
        padding-right: 0;
        padding-left: 0;
    }
}

@media all and (min-width: 992px) {
    .banner__mark-gray__inner__text {
        font-size: 1em;
    }
}

.banner__mark-gray__inner__text__link {
    color: #222; /* 727fbb */
    font-weight: 500;
    text-decoration: underline;
}

html {
    height: 100%;
}

.body {
    height: 100%;
    background: white url("../img/gradient.png") repeat-x fixed bottom;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

@media all and (min-width: 576px) {
    .body {
        font-size: 16px;
    }
}

.container {
    width: 100%;
    margin: 0 auto;
}

@media all and (min-width: 576px) {
    .container {
        width: 100%;
    }
}

@media all and (min-width: 768px) {
    .container {
        width: 748px;
    }
}

@media all and (min-width: 992px) {
    .container {
        width: 962px;
    }
}

@media all and (min-width: 1295px) {
    .container {
        width: 1272px;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: #2B0E48;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding-right: 8px;
    padding-left: 8px;
    color: #ffffff;
    text-align: center;
}

.footer__inner__text {
    font-size: 1.375em;
}

.footer__links {
    background-color: #f2f2f2;
    padding: 8px 0;
    text-align: center;
}

.footer__links a {
    margin: 0 8px;
    color: #000;
    font-size: 17px;
    text-decoration: underline;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding-right: 20px;
}

@media all and (min-width: 768px) {
    .header__inner {
        justify-content: flex-end;
        padding-right: 0;
    }
}

.stamps {
    padding-bottom: 180px;
}

.stamps__title {
    margin-bottom: 40px;
    padding-right: 8px;
    padding-left: 8px;
    color: #2B0E48;
    font-size: 2.5em;
    text-align: center;
}

.stamps__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.stamps__list__item {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    transition: all .2s ease-in;
    text-align: center;
    justify-content: flex-end;

    :first-child {
        margin-top: auto;
    }
}

@media all and (min-width: 576px) {
    .stamps__list__item {
        flex-basis: calc(100% / 2);
    }
}

@media all and (min-width: 768px) {
    .stamps__list__item {
        flex-basis: calc(100% / 3);
    }
}

@media all and (min-width: 992px) {
    .stamps__list__item {
        flex-basis: calc(100% / 4);
    }
}

@media all and (min-width: 1295px) {
    .stamps__list__item {
        flex-basis: calc(100% / 6);
    }
}

.stamps__list__item:hover, .stamps__list__item--selected {
    background-color: #B39ECC;
    cursor: pointer;
}

.stamps__list__item__image {
    padding: 16px 16px;
}

.stamps__list__item__image__img {
    max-width: 180px;
    max-height: 180px;
    aspect-ratio: auto;
    object-fit: contain;
}

[image-id="22"] {
    height: 150px;
}

@media all and (min-width: 576px) and (-ms-high-contrast: none), all and (min-width: 576px) and (-ms-high-contrast: active) {
    .stamps__list__item__image__img {
        width: auto;
        max-height: 180px;
    }
}

.stamps__list__item__about__title {
    padding: 0 10px;
    font-weight: 300;
    line-height: 1.2em;
}

.stamps__list__item__about__title__info {
    display: block;
    margin-bottom: 10px;
}

.stamps--voted:hover, .stamps--voted--selected {
    background-color: transparent;
}

.voting {
    display: none;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: #2B0E48;
    color: #ffffff;
}

@media all and (min-width: 768px) {
    .voting {
        height: auto;
        overflow-y: auto;
    }
}

.voting__close {
    display: flex;
    position: relative;
    z-index: 1;
    justify-content: flex-end;
    text-align: right;
}

.voting__close__btn {
    position: relative;
    display: inline-block;
    height: 30px;
    margin-top: 20px;
    margin-right: 30px;
    padding-right: 40px;
    transition: all .2s ease-in;
    color: #B39ECC;
    font-size: 1.3em;
    line-height: 30px;
}

.voting__close__btn:hover {
    opacity: .8;
    cursor: pointer;
}

.voting__close__btn::after {
    content: "\00D7";
    position: absolute;
    margin-left: 13px;
    top: 1px;
    width: 24px;
    height: 24px;
    font-size: 29px;
    line-height: 23px;
    text-align: center;
    border: 2px solid #B39ECC;
    border-radius: 100px;
    opacity: 0.8;
}

.voting__details {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media all and (min-width: 768px) {
    .voting__details {
        flex-direction: row;
    }
}

@media all and (min-width: 992px) {
    .voting__details {
        width: 900px;
    }
}

.voting__details__preview {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    margin-bottom: 30px;
    opacity: 0;
}

@media all and (min-width: 768px) {
    .voting__details__preview {
        flex-basis: 50%;
    }
}

.voting__details__preview__img {
    max-height: 250px;
}

.voting__details__preview--desktop {
    display: none;
}

@media all and (min-width: 768px) {
    .voting__details__preview--desktop {
        display: block;
    }
}

.voting__details__about {
    padding-right: 32px;
    padding-left: 32px;
    text-align: left;
}

@media all and (min-width: 768px) {
    .voting__details__about {
        padding-top: 40px;
        padding-right: 16px;
        padding-left: 16px;
        text-align: left;
    }
}

.voting__details__about__name {
    margin-bottom: 10px;
    font-size: 1.5em;
    letter-spacing: .05rem;
    line-height: 1.5rem;
}

.voting__details__about__link {
    margin-bottom: 30px;
    font-size: 1.3em;
}

.voting__details__about__link__url {
    color: #B39ECC;
    text-decoration: underline;
}

.voting__details__about__vote {
    display: inline-block;
    width: 200px;
    margin: 0 0 20px 0;
    padding: 10px 0;
    transition: all .2s ease-in;
    border-width: 0;
    border-radius: 4px;
    background-color: #008675;
    color: #ffffff;
    font-size: 1.5em;
}

.voting__details__about__vote:hover {
    background-color: #B39ECC;
    color: #ffffff;
}

.voting__details__about__vote:disabled {
    background-color: #008675;
    opacity: 0.7;
}

.voting__details__about__captcha {
    margin-bottom: 13rem;
}

.voting__details__about__captcha__image {
    margin-bottom: 30px;
}

.voting__details__about__captcha__inputfield {
    display: block;
    width: 120px;
    height: 40px;
    margin-bottom: 30px;
    padding-right: 10px;
    padding-left: 10px;
}

.voting__details__about__captcha--hidden {
    display: none;
}

.voting__details__about--hidden .voting__details__about__name,
.voting__details__about--hidden .voting__details__about__link,
.voting__details__about--hidden .voting__details__about__vote--show-captcha {
    display: none;
}

.hide {
    display: none;
}
