/**
 *
 * FORM
 *
 */

.poll-form {
    position: relative;
}


.slide {
    width: 100%;
    padding-top: 1em;
}

.form-navi,
.form-submit {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 0 auto;
    text-align: center;
}

.form-navi .btn.prev{
    color: #fff;
    background: #e5006c;
    height: 60px;
    line-height: 60px;
    text-transform: none;
    font-size: 1rem;
    width: 48%;
    text-align: center;
    font-weight: 100;
}

.form-navi .btn.next{
    color: #fff;
    background: #e5006c;
    height: 60px;
    line-height: 60px;
    text-transform: none;
    font-size: 1.2rem;
    width: 48%;
    margin-left: 1%;
    text-align: center;
    font-weight: 100;
}


.form-submit .btn{
    background: #e5006c;
    text-transform: none;
}

@media screen and (max-width: 576px) {
}
@media screen and (max-width: 320px) {
}

.poll-data {
    padding: 1rem 0 1rem 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.poll-question {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 10px auto 0 auto;
    padding: 1px 0 10px 0;
    text-align: center;
    color: #303e48;
}

.question-header {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 300;
    color: #262f8d;
    text-transform: none;
    font-family: 'filson-soft', sans-serif;
    padding: 1px 0 1px 0;
    text-align: center;
}
.question-header > span {
    position: relative;
    display: inline-block;
    min-width: 1rem;
    padding: 0 .2rem;
    text-align: center;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #fff;
    background: #ed3072;
    display: none;
}
.question-header > strong {
    font-weight: 600;
}
.question-header > small {
    display: block;
    font-size: .7rem;
    font-weight: 300;
}


.question-options {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 10px 0;
}
.poll-question.open .question-options,
.poll-question.text .question-options,
.poll-question.text-number .question-options,
.poll-question.text-multifield .question-options,
.poll-question.multi-choice .question-options {
    padding-left: 0;
}



.question-options .option {
    display: block;
    position: relative;
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 5px 0;
    color: #000;
    font-family: inherit;
    font-weight: 300;
    text-transform: none;
}
.question-options table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.question-options tr.choices,
.question-options tr.option {
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 5px 0;
    color: #000;
    font-family: inherit;
    font-weight: 300;
    text-transform: none;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.question-options th,
.question-options td {
    vertical-align: middle;
    padding: .5rem;
    cell-spacing: 1px;
}
.question-options tr th:first-child {
    border-left: 1px solid #ccc;
    background: #efefef;
}
.question-options tr.choices th {
    border-left: 1px solid #ccc;
    background: rgba(226,226,226,1);
    background: -moz-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(239,239,239,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(226,226,226,1)), color-stop(100%, rgba(239,239,239,1)));
    background: -webkit-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(239,239,239,1) 100%);
    background: -o-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(239,239,239,1) 100%);
    background: -ms-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(239,239,239,1) 100%);
    background: linear-gradient(to bottom, rgba(226,226,226,1) 0%, rgba(239,239,239,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#efefef', GradientType=0 );
}
.question-options tr.option th {
    text-align: right;
    border-right: 1px solid #ccc;
}

.question-options input[type="radio"],
.question-options input[type="checkbox"] {
    position: absolute;
    left: -9999rem;
    top: 0;
    height: 100%;
}
.question-options input[type="radio"] + label,
.question-options input[type="checkbox"] + label {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    width: auto;
    cursor: pointer;
}
.question-options input[type="radio"] + label:hover,
.question-options input[type="radio"]:checked + label,
.question-options input[type="checkbox"] + label:hover,
.question-options input[type="checkbox"]:checked + label {
    color: #00b7f0;
}

@media screen and (min-width: 1px) {
    .poll-question input[type="radio"],
    .poll-question input[type="checkbox"] {
        position: absolute;
        left: -9999em;
        top: 0;
    }

    .poll-question input[type="radio"] + label,
    .poll-question input[type="checkbox"] + label {
        position: relative;
        display: inline-block;
        width: 100%;
        height: auto;
        color: #262f8d;
        line-height: 1.5;
        font-size: 1rem;
        text-align:center;
        cursor: pointer;
        margin: 5px 0px;
        padding: 1rem 0;
        background-color: #fff;
        border: 1px solid #262f8d;
    }



    .poll-question input[type="radio"] + label:hover,
    .poll-question input[type="radio"]:checked + label,
    .poll-question input[type="checkbox"] + label:hover,
    .poll-question input[type="checkbox"]:checked + label {
	    background-color: #e5006c;
	    color: #fff;
        border: 1px solid #e5006c;
    }
}/*media*/



.poll-question.single-image input[type="radio"] + label:before,
.poll-question.single-image input[type="checkbox"] + label:before,
.poll-question.single-image input[type="radio"] + label:after,
.poll-question.single-image input[type="checkbox"] + label:after {
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.poll-question.single-image label > img {
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    max-width: 200px;
}
.poll-question.single-image label > span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}




.question-options input[type="text"],
.question-options textarea {
    display: inline-block;
    border: 1px solid #262f8d;
    background: #fff;
    width: 100%;
    height: 44px;
    padding: 0 15px;
    font-size: 1.6rem;
    line-height: 42px;
    color: #262f8d;
    text-align: left;
    text-transform: none;
    font-family: 'filson-soft', sans-serif;
    font-weight: 300;
    border-radius: 0;
}
.poll-question.text .question-options input[type="text"],
.poll-question.text-number .question-options input[type="text"],
.poll-question.text-email .question-options input[type="text"] {
    width: 100%;
    height: 44px;
    line-height: 42px;
}
.poll-question.open .question-options textarea {
    width: 100%;
    height: 170px;
    resize: none;
    padding: 10px 15px;
    line-height: 1.4;
}

.poll-question.single .inline,
.poll-question.multi .inline {
    display: block;
    padding-left: 2rem;
    cursor: pointer;
    width: 80%;
}
.poll-question .inline input[type="text"] {
    height: 30px;
    line-height: 28px;
    position: relative;
    width: 100%;
}



.personal-data label {
    display: block;
    float: left;
    width: 100%;
    color: #888;
    font-size: 1.5rem;
    line-height: 2;
    text-align: left;
    padding: 0;
    font-family: "filson-soft", sans-serif;
    font-weight: 300;
}
.personal-data input[type="text"],
.personal-data textarea,
.personal-data select {
    display: block;
    float: left;
    border: 1px solid #f1eee9;
    background: #f1eee9;
    width: 100%;
    height: 50px;
    padding: 0 7px;
    font-size: 16px;
    line-height: 48px;
    font-weight: 300;
    color: #000;
    text-align: left;
    text-transform: none;
    font-family: "filson-soft", sans-serif;
    border-radius: 0;
}
.personal-data textarea {
    height: 250px;
    padding: 10px 10px;
    line-height: 22px;
    resize: none;
}



.poll-error-msg {
    width: 70%;
    margin: 30px auto;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 30px;
    font-family: 'filson-soft', sans-serif;
    color: red;
    text-transform: none;
    text-align: center;
    background: #fff;
}
.poll-question.error-question {
	position: relative;
}
.poll-question.error-question:before {
	content: "!";
	position: absolute;
    left: -21px;
    top: 3px;
    text-align: center;
    width: 18px;
    height: 18px;
    color: red;
    font-size: 12px;
    line-height: 14px;
    font-family: 'filson-soft', sans-serif;
    font-weight: 700;
    border: 2px solid red;
    border-radius: 50%;
}
.poll-question.open.error-question textarea,
.poll-question.text.error-question input[type="text"] {
    border-color: red;
    -webkit-box-shadow:inset 0 0 5px 3px #f00;
    box-shadow:inset 0 0 5px 3px #f00;
}

.poll-question .error-msg {
    margin-top: 0;
	color: red;
    font-family: 'filson-soft', sans-serif;
    font-size: 1.6rem;
    text-transform: none;
    padding-left: 0;
    display: none;
    clear: both;
}
.poll-question.open .error-msg {
    padding-left: 0px;
}
.poll-question.error-question .error-msg {
    display: block;
}
.poll-question input[type="text"].error,
.poll-question textarea.error {
    border: 1px solid red;
    -webkit-box-shadow:inset 0 0 5px 3px #f00;
    box-shadow:inset 0 0 5px 3px #f00;
}
@media screen and (max-width: 979px) {
    .poll-question.error-question:before {
        display: none;
    }
}



/**
 *
 * FORM
 *
 */
.contest-data {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border: 0 none;
}
.contest-data .row {
    float: left;
    margin-right: 0;
}
.contest-data label {
    display: block;
    width: 100%;
    overflow: hidden;
    color: #000;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 300;
    padding-bottom: 3px;
}
.contest-data textarea {
    display: block;
    border: 1px solid #ed3072;
    background: #ffecf3;
    width: 100%;
    height: 180px;
    padding: 5px 15px;
    font-size: 1.6rem;
    line-height: 22px;
    color: #00529e;
    text-align: left;
    text-transform: none;
    font-family: 'filson-soft', sans-serif;
    font-weight: 300;
    border-radius: 0;
    resize: none;
}
.contest-data .content {
    width: 100%;
    padding-top: 20px;
}



.personal-data {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 0 1rem 0;
    border: 0 none;
}

.personal-data .row {
    float: left;
    margin-right: 2%;
    padding-bottom: 15px;
}
.personal-data label {
    display: block;
    width: 100%;
    overflow: hidden;
    color: #000;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    white-space: nowrap;
    padding-bottom: 3px;
}
.personal-data input[type="text"],
.personal-data select {
    display: block;
    border: 1px solid #ee680e;
    background: #fff;
    width: 100%;
    height: 44px;
    padding: 0 15px;
    font-size: 16px;
    line-height: 42px;
    color: #000;
    text-align: left;
    text-transform: none;
    font-family: 'filson-soft', sans-serif;
    font-weight: 300;
    border-radius: 0;
}

/* MINIMAL */
.minimal .personal-data .content { width: 100%; margin-right: 0; }
.minimal .personal-data .email { width: 100%; }


/* SIMPLE */
.simple .personal-data .content { width: 100%; margin-right: 0; }
.simple .personal-data .first-name { width: 49%; }
.simple .personal-data .last-name { width: 49%; margin-right: 0; }
.simple .personal-data .email { width: 49%; }
.simple .personal-data .phone { width: 49%; margin-right: 0; }

.simple .personal-data .first-name {
    clear: left;
}

/* FULL */
.full .personal-data .content { width: 100%; margin-right: 0; }
.full .personal-data .first-name { width: 49%; }
.full .personal-data .last-name { width: 49%; margin-right: 0; }
.full .personal-data .street { width: 49%; }
.full .personal-data .house-number { width: 23%; }
.full .personal-data .flat-number { width: 24%; margin-right: 0; }
.full .personal-data .country { width: 24%; }
.full .personal-data .city { width: 48%; }
.full .personal-data .postal-code { width: 24%; margin-right: 0; }
.full .personal-data .email { width: 32%; }
.full .personal-data .phone { width: 32%; }
.full .personal-data .birth-year,
.full .personal-data .birth-date { width: 32%; margin-right: 0; }

.full .personal-data .first-name,
.full .personal-data .street,
.full .personal-data .email {
    clear: left;
}

/* UPDATE-PERSONEL */
.update-personal .personal-data .street { width: 49%; }
.update-personal .personal-data .house-number { width: 23%; }
.update-personal .personal-data .flat-number { width: 24%; margin-right: 0; }
.update-personal .personal-data .country { width: 26%; }
.update-personal .personal-data .city { width: 38%; }
.update-personal .personal-data .postal-code { width: 15%; }
.update-personal .personal-data .birth-year {width: 15%; margin-right: 0; }

.update-personal .personal-data .street,
.update-personal .personal-data .country {
    clear: left;
}

.personal-accept {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 0 0;
    border: 0 none;
    clear: both;
    color: #000;
    text-align: left;
}
.personal-accept p.info {
    color: #000;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 300;
    margin: 1rem 0;
}
.personal-accept .row {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.personal-accept input[type="checkbox"] {
    position: absolute;
    left: 5px;
    top: 3px;
    line-height: 1.4;
}
.personal-accept input[type="checkbox"] + label {
    display: inline-block;
    width: 100%;
    padding-left: 2.5rem;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 300;
    text-align: left;
}


@media screen and (max-width: 599px) {
    .form .personal-data .row {
        float: none;
        margin-right: 0;
        overflow: hidden;
        padding-bottom: 10px;
        width: 100%;
    }
    .form .personal-data label {
        display: block;
        float: left;
        width: 30%;
        line-height: 44px;
    }
    .form .personal-data input[type="text"],
    .form .personal-data select {
        display: block;
        width: 70%;
        float: left;
    }
}
@media screen and (max-width: 479px) {
    .form .personal-data label {
        display: block;
        float: none;
        width: 100%;
    }
    .form .personal-data input[type="text"],
    .form .personal-data select {
        display: block;
        float: none;
        width: 100%;
    }
}






.contest-data .errors,
.personal-data .errors,
.personal-accept .errors {
	color: red;
    display: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    list-style: none;
}
.contest-data .error-question .errors,
.personal-data .error-question .errors,
.personal-accept .error-question .errors {
    display: block;
}
.contest-data .error-question textarea,
.personal-data .error-question input[type="text"] {
    border-color: red;
    -webkit-box-shadow:inset 0 0 5px 3px #f00;
    box-shadow:inset 0 0 5px 3px #f00;
}

.contest-data .error-question,
.personal-data .error-question,
.personal-accept .error-question {
	position: relative;
}
.personal-accept .error-question:before {
	content: "";
	position: absolute;
	left: -15px;
	top: 5px;
	border-left: 10px solid red;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
    display: block;
}




.form-submit {
    border: 0 none;
    padding: 30px 0 0 0;
    clear: both;
    text-align: center;
}


#winners-search-input {
    background: #e5006c;
    color: #fff;
    border: 1px solid #fff;
}
.winners .message {
    padding: 1em 0;
    margin: 1em auto;
    width: 100%;
    max-width: calc(100rem + 3rem);
}
.winners .winners-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
}
.winners .winners-list {
    display: block;
}
.winners .winners-list .winner {
    display: inline-block;
    width: 49%;
    text-align: left;
    padding: 2px 1px;
    font-size: 12px;
}
@media screen and (min-width: 992px) {
    .winners .winners-list .winner {
        width: 33%;
        font-size: 1rem;
    }
}

/*
.win-entries {
    width: 100%;
    list-style: inside decimal;
    margin: 30px 0;
}
.win-entries > li {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
}
.win-entries > li > span {
    font-weight: 600;
}
*/

.message {
    padding: 40px 30px;
    border: 1px dotted #ed3072;
    text-align: center;
}

 #counter {
    margin-top: 35px;
    color: #262f8d;
    font-size: 30px;
    font-weight: 100;
}
