﻿/* survey */
.poll {
    width: 100%;
    margin: 0 0 6px;
    float: left;
    clear: both;
    display: block;
}

.poll-content, .poll-content form {
    width: 100%;
    padding: 0;
    float: left;
    clear: both;
    display: block;
}

.poll-question {
    color: #004080;
    text-align: left;
    width: 100%;
    padding: 5px 0 10px;
    float: left;
    clear: both;
    display: block;
}

.poll-question div {
    font-size: 9px;
}

.poll-answer {
    width: 100%;
    padding: 0 0 7px;
    float: left;
    clear: both;
    display: block;
}

.poll-answer input {
}

.poll-answer div {
    background-color: rgb(83, 166, 123);
    background-image: linear-gradient(to bottom, rgb(142, 219, 68), rgb(122, 186, 59), rgb(83, 166, 123));
    background-repeat: repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position-x: 0;
    background-position-y: 0;
    background-size: auto auto;
    height: 5px;
    margin: 4px 2px 2px 0;
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 2px;
    border-right-width: 2px;
    border-top-style: none;
    border-bottom-style: none;
    border-left-style: solid;
    border-right-style: solid;
    border-top-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: rgb(69, 69, 69);
    border-right-color: rgb(69, 69, 69);
}

.poll-answer .votebutton {
    clear: both;
    display: block;
}

.box-item .poll-answer .votebutton {
    width: 100%;
    padding: 7px;
    margin: 2px 0 6px;
    float: left;
    clear: both;
    display: block;
}

@media only screen and (max-width: 470px) {
    .poll-answer {
        width: 100%;
        float: left;
        display: block;
    }

    .poll-answer label {
        width: 100%;
        margin: 0 auto;
        float: left;
        display: block;
    }

    .poll-answer div {
        float: left;
        display: block;
    }
}

/* survey - end */