body, html {
    padding:0;
    margin:0;
    background: #060c15;
    color: white;
    font-family: 'TTNormsPro';
}

header {
    width: 100%;
}
header img {
    width: 100%;
}

footer {
    background: url('../images/footer.jpg');
    width: 100%;
    height: 210px;
}

.line1 {
    margin: 15px 0;
    background: url('../images/line1.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 3px;
}
.line2 {
    margin: 15px 0;
    background: url('../images/line2.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 3px;
}
.line3 {
    margin: 15px 0;
    background: url('../images/line3.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 3px;
}

/* Headers */
h3 {
    color: #b9822a;
}

/* Kontakt */
.contact * {
    font-size: 1.8rem;
}

/* Pytanie */
.question_row {
    margin-top: 20px;
}

.question_row>div:first-child{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question_row div:first-child img {
    width: 60px;
}

.answers .a label {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: none;
    color: white;
    border: 1px solid #6f71e9;
    padding: 15px 20px 15px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
}

/* Radio */
/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 14px;
    left: 19px;
    height: 20px;
    width: 20px;
    background-color: none;
    border-radius: 50%;
    border: 1px solid #6f71e9;
}
.checkbox-container:hover input ~ .checkmark {
    background-color: #6f71e9;
}
.checkbox-container input:checked ~ .checkmark {
    background-color: #6f71e9;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Textaera */

textarea {
    width: 1101px;
    height: 200px;
    min-height: 200px;
    max-width: 100%;
    min-width: 100%;
    margin: 0px;
    background: none;
    border: 1px solid #6f71e9;
    border-radius: 25px;
    color: white;
    padding: 15px 20px;
}

input:hover,
input:active,
input:focus,
input:focus-visible,
textarea:hover,
textarea:active,
textarea:focus {
    border: 1px solid #6f71e9;
}

/* Form */

.form .form-row {
    display: flex;
    width: 100%;
}

.div50 {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

.question_row:not(.active) .answers {
    display: none;
}

.question_row:not(.active) .minus,
.active .plus {
    display: block;
}

.question_row:not(.active) .plus,
.active .minus {
    display: none;
}

.quiz {
    display:none;
}

/* Input */
input[type=text] {
    width: 100%;
    box-sizing: border-box;
    background: none;
    color: white;
    border: 1px solid #6f71e9;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
}

button {
    width: 100%;
    box-sizing: border-box;
    background: #6e71e8;
    color: white;
    border: 1px solid #6e71e8;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor:pointer;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #cfcfcf;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #cfcfcf;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #cfcfcf;
}

.error {
    color:#e50000;
}

.colorError {
    color: #e50000;
}

/* Licznik */
.title_and_counter
{
    display: flex;
    flex-direction: row;
    text-align: center;
}
.title
{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b9822a;
    font-size: 1.8rem;
}
.counter
{
    margin-left: 20px;
    width: 80px;
    height: 80px;
    background: url('../images/counter.png');
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-sizing: border-box;
}

/* Container */
/* 
@media screen and (min-width: 200px) {
    .container {
        width: 100%;
        margin:0 auto;
        padding: 20px;
        background: red;
    }
} */

@media screen and (max-width: 1100px) {
    .container {
        width: calc(100% - 40px);
        margin:0 auto;
        padding: 20px;
    }

    .div50 {
        width: 100%;
    }

    .form-row {
        display: block !important;
    }
}

@media screen and (min-width: 1100px) {
    .container {
        width: 1100px;
        margin:0 auto;
        padding: 20px;
    }
}
