.main-header.full,
.content-wrapper.full,
.main-footer.full {
    margin: 0 !important;
}

.nav-link {
    margin-top: -2px;
    margin-right: 10px;
    font-size: 18px;
}

.login-logo img {
    /*-webkit-filter: drop-shadow(0px 0px 120px #7c7c7c);*/
    /*filter: drop-shadow(0px 0px 120px #7c7c7c);*/
}
.login-box {
    background: white;
    padding: 20px;
}
.login-page {
    /*background-color: white;*/
}

.questionnaire-container {
    padding: 10px 30px 60px 30px;
    border-radius: 5px;
    margin: 0 10px;
    max-width: 1200px;
}

.questionnaire-title {
    color: white;
    display: inline-block;
    font-size: 24px;
    position: relative;
    width: auto;
    height: 40px;
    line-height: 40px;
    margin: 30px 40px 20px 40px;
    padding: 0 50px 0 15px;
    background-color: #bd2921;
    border-radius: 2px;
}
.questionnaire-title:before {
    content: "";
    position: absolute;
    right: -9px;
    height: 0;
    width: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 10px solid #bd2921;
    border-radius: 2px;
}

.content-wrapper .content {
    margin: 0 40px;
}

.questionnaire-show .card-header,
.questionnaire-show .list-group-item {
    padding: 28px 35px;
}

.card-header {
    border-radius: 5px;
    box-shadow: 1px 1px 5px #afafaf;
    padding: 0 50px;
    color: white;
    font-size: 22px !important;
    margin: 0;
    z-index: 2;

    background: rgb(26,26,24);
    background: linear-gradient(90deg, rgba(26,26,24,1) 26%, rgba(226,0,14,1) 64%, rgba(255,221,0,1) 96%);
}
.card-header.title {
    padding-top: 35px;
    padding-bottom: 30px;
}


.list {
    padding: 0;
}
.list.column {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.list li {
    list-style-type: none;
}
.list-checkbox-input li {
    margin-bottom: 5px;
}

.questionnaire-logo {
    position: absolute;
    bottom: 10px;
    right: 120px;
}
@media (max-width: 1390px) { .questionnaire-logo { right: 300px; } }
@media (max-width: 1200px) {
    .questionnaire-logo {
        position: relative;
        right: revert;
        bottom: revert;
    }
}
.questionnaire-logo img {
    width: 250px;
}



#progress-container {
    position: fixed;
    left: 1100px;
    /*background: #1A3142;*/
    border: 2px solid #bd2921;
    background: #fff;
    border-radius: 3px;
    color: #EE3127;
    padding: 25px 40px;
    transition: top 1s ease 0s;
    z-index: 9;
}
@media (max-width: 1450px) { #progress-container { left: revert; right: 20px; } }

#progress-container .header {
    font-size: 18px;
    text-align: center;
}
#progress-container .chart svg {
    display: block;
    margin: 30px auto;
    max-height: 120px;

}
#progress-container .chart .circle-bg {
    fill: none;
    stroke: url(#linear);
    stroke-width: 4;
}
#progress-container .chart .circle {
    fill: none;
    stroke: #EE3127;
    stroke-width: 4;
    animation: progress 1s ease-out forwards;
}
@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

#progress-container .percent {
    font-size: 30px;
    text-align: center;
}
#progress-container .footer {
    border-top: 2px solid #8c8c8c;
    text-align: center;
    margin-top: 12px;
    padding-top: 4px;
}
#progress-container .progress-logo img {
    margin-bottom: 25px;
    width: 250px;
}

@media (max-width: 1150px) {
    .main-header {
        background: transparent;
        border-bottom: 0;
    }

    .navbar-nav.ml-auto {
        display: none;
    }

    .content-wrapper {
        padding-top: 80px;
    }
    .list.column {
        columns: 1
    }

    #progress-container {
        position: fixed;
        left: 0;
        right: 0;
        top: 0px !important;
        height: 103px;
        padding: 10px 40px;
    }
    #progress-container .header {
        display: none
    }
    #progress-container .header br {
        content: ' '
    }
    #progress-container .header br::after {
        content: ' '
    }
    #progress-container .chart {
        position: absolute;
        height: 100px;
        width: 100px;
        right: 20px;
        top: 0;
    }
    #progress-container .chart svg {
        margin-top: 10px;
        max-height: 70px;
    }
    #progress-container .percent {
        font-size: 20px;
        position: absolute;
        right: 34px;
        top: 30px;
        color: #ccc;
        width: 71px;
    }
    #progress-container .footer {
        border: 0;
        text-align: left;
        position: absolute;
        top: 55px;
        left: 45px;
        max-width: 250px;
    }
    #progress-container .progress-logo img {
        margin-bottom: 0;
        width: 200px;
    }
}



.button-container {
    margin: 20px 0 20px 40px
}


.input-container {
    padding-right: 12px;
    padding-left: 0;
}
.validation {
    position: absolute;
    top: 5px;
    right: 0px;
}
.input-container-textarea.has-label .validation {
    top: 37px;
}
.input-container-number .validation {
    right: revert;
    left: 112px;
}
.input-container-number input {
    width: 100px;
}
.question-description-validation span {
    display: block;
    position: relative;
}
.question-description-validation .validation {
    top: -4px;
    right: -10px;
}

.validation > div {
    position: absolute;
}
.validation .valid svg {
    transform: scale(1.1);
}
.validation .invalid svg {
    transform: scale(1.2);
}
.validation .valid path {
    fill: green;
}
.validation .invalid line {
    stroke: red;
}


.frontend-footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.frontend-footer ul {
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
}
.frontend-footer li {
    padding: 10px 25px;
}


[data-question-id="959"] .column {
    -webkit-columns: 1;
}



.checkbox-item {
    display: flex;
    padding-right: 10%;
}
.checkbox-item input[type="checkbox"] {
    height: 13px;
    margin-top: 6px;
    margin-right: 10px;
}
@media (max-width: 1410px) {
    .checkbox-item {
        padding-right: 25%;
    }
}
@media (max-width: 1260px) {
    .questionnaire-show .question-description {
        max-width: 760px;
    }
    .checkbox-item {
        padding-right: 45%;
    }
}
@media (max-width: 1150px) {
    .questionnaire-show .question-description {
        max-width: 800px;
    }
    .checkbox-item {
        padding-right: 15%;
    }
}