.program {
    border: 1px solid #93008C;
    border-radius: 5px;
}

.program > .header {
    background: #93008C;
    color: white;
    padding: 20px;
}

.program > .header > .viewTitle {
    margin: 0;
}

.program > .content {
    padding: 20px;
}

.program > .footer {
    min-height: 48px;
    background: #93008C;
}

.program > .footer > .navigation {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
}

.program > .footer > .navigation > div {
    display: flex;
    min-width: 210px;
}

.program > .footer > .navigation > div > .button {
    margin: 0 5px 0 5px;
    border: none;
}

.program > .footer > .navigation > div > .button.no-show {
    display: none;
}

.program > .footer > .navigation > .left {
    order: 1;
    margin-left: -5px;
}

.program > .footer > .navigation > .left > .previous {
    order: 1;
}

.program > .footer > .navigation > .middle {
    order: 2;
    justify-content: center;
}

.program > .footer > .navigation > .middle > .index {
    order: 1;
}

.program > .footer > .navigation > .right {
    order: 3;
    flex-direction: row-reverse;
    margin-right: -5px;
}

.program > .footer > .navigation > .right > .save {
    order: 2;
}

.program > .footer > .navigation > .right > .next {
    order: 1;
}

.program > .footer > .navigation > div > .button {
    background: #09d3ff; /* Old browsers */
    background: -moz-linear-gradient(top, #09d3ff 0%, #00bbe3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #09d3ff 0%, #00bbe3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #09d3ff 0%, #00bbe3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#09d3ff', endColorstr='#00bbe3', GradientType=0); /* IE6-9 */
    color: white;
}

.program > .footer > .navigation > div > .button:hover {
    background: #fec93d; /* Old browsers */
    background: -moz-linear-gradient(top, #fec93d 0%, #febe1d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #fec93d 0%, #febe1d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #fec93d 0%, #febe1d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fec93d', endColorstr='#febe1d', GradientType=0); /* IE6-9 */
    color: white;
}

.program > .content > .index > .img {
    text-align: center;
    padding-bottom: 20px;
}

.program > .content > .index > .description {
    padding: 10px 20px 10px 20px;
    background: grey;
}

.program .index .index-chapter {
    width: 100%;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.program .index .index-chapter:last-child {
    margin-bottom: 0;
}

.program .index .index-chapter > .index-chapter-header {
    padding: 20px 28px 20px 28px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.program .index .index-chapter > .index-chapter-header > .title {
    font-size: 16px;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.program .index .index-chapter > .index-chapter-header > .description {
    padding-left: 28px;
    padding-right: 28px;
    height: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: 175ms ease-in;
    overflow: hidden;
    margin-bottom: 0;
}

.program .index .index-chapter.active > .index-chapter-header > .description {
    height: auto;
    transform: scaleY(1);
    margin-bottom: 10px;
}

.program .index .index-chapter .index-chapter-header .index-chapter-icons {
    display: flex;
    justify-content: space-between;
    width: 14px;
    margin-left: 10px;
}

.program .index .index-chapter .index-chapter-header .index-chapter-icons .index-chapter-status {
    width: 14px;
}

.program .index .index-chapter .index-parts .index-part {
    padding: 0 28px 0 28px;
    background: #F7F7F7;
    overflow-y: hidden;
    transition: height 175ms ease-in, padding 175ms ease-in;
    height: 0;
}

.program .index .index-chapter.active .index-parts .index-part {
    padding: 15px 28px 15px 28px;
    min-height: 45px;
    height: auto;
    border-bottom: #f0f0f0 1px solid;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.program .index .index-chapter.active .index-parts .index-part .index-part-icons {
    display: flex;
    justify-content: space-between;
    width: 38px;
    margin-left: 10px;
}

.program .index .index-chapter.active .index-parts .index-part .index-part-icons .index-part-status {
    width: 14px;
}

.program .index .index-chapter.active .index-parts .index-part .index-part-icons .index-part-status-has-form-version {
    color: #93008C;
}

.program .index .index-chapter .index-parts .index-part:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: none;
}

.program .part {
    width: 100%;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 20px;
    background: #F7F7F7;
}

.program .items .part {
    box-shadow: none;
    padding: 0;
}

.program .part.extra-information {
    margin-bottom: 20px;
}

.program .part > .title {
    font-size: 24px;
}

.program .part .item {
    margin-top: 15px;
}

.program .program-video-container {
    display: flex;
    justify-content: space-around;
}

.program .program-video-container > .program-video {
    max-width: 640px;
}

.program input,
.program select,
.program textarea {
    width: 100%;
}

.program .image {
    text-align: center;
}

.program-content img,
.program img {
    margin-bottom: 5px;
    margin-top: 5px;
    max-width: min(100%, 700px);
}

[name=image-component] img {
    margin-bottom: 5px;
    margin-top: 5px;
    max-width: 100px;
}

.program .description {
    margin-bottom: 20px;
}

.program .part .item > .title {
    margin-bottom: 5px;
    font-size: 16px;
    text-shadow: none;
    color: #00BBE3;
}

.program .part .item.type-completion {
    border: 1px solid #93008C;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    background: #F7F7F7;
}

.program .part .item.type-completion > .indication {
    font-size: 50px;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
}

.program .part .item.type-completion > .indication > i {
    border: 5px solid;
    border-radius: 40px;
    padding: 10px;
    cursor: pointer;
}

.program .part .item.type-completion > .explanation {
    text-align: center;
    padding-top: 20px;
}

.program .part .item.type-completion > .indication.complete {
    color: rgba(0, 0, 0, 1);
}

.program .part .item.type-feedback .title {
    cursor: pointer;
}

.program .item.type-formReference > .form-container > .form-body {
    border-top: 1px solid #93008C;
    padding-top: 10px;
}

.program .item.type-formReference > .form-container > .form-body > .part {
    box-shadow: none;
    padding: 0;
}

.program .item.type-formReference > .form-container > .form-body > .part > .title {
    font-size: 20px;
}

.program .item.type-formReference > .form-container > .form-header {
    margin-bottom: 15px;
}

.program .part .item.type-text a {
    color: royalblue;
}

.program .part .item.type-subItems > .toggle,
.program .part .item.feedback > .toggle {
    font-size: 16px;
    text-shadow: none;
    cursor: pointer;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.program .part .item.type-subItems > .toggle > .toggle-icon,
.program .part .item.type-feedback > .toggle > .toggle-icon {
    display: inline-block;
    position: relative;
    top: 5px;
    width: 15px;
    height: 15px;
    background: url(../icons-yellow/open-icon.svg) no-repeat center;
    transition: transform 175ms ease-in;
}

.program .part .item.type-subItems.active > .toggle > .toggle-icon,
.program .part .item.type-feedback.active > .toggle > .toggle-icon {
    transform: rotate(90deg);
    margin-right: 4px;
}

.program .part .item.type-subItems.active > .toggle > .toggle-label::before,
.program .part .item.type-feedback.active > .toggle > .toggle-label::before {
    content: 'Verberg ';
    display: inline;
}

.program .part .item.type-subItems.inactive > .toggle > .toggle-label::before,
.program .part .item.type-feedback.inactive > .toggle > .toggle-label::before {
    content: 'Toon ';
    display: inline;
}

.program .part .item.type-subItems,
.program .part .item.type-feedback {
    border: 1px solid #93008C;
    display: flex;
    border-radius: 5px;
    flex-flow: row wrap;
    min-height: 35px;
}

.program .part .item.type-subItems .title,
.program .part .item.type-feedback .title {
    order: 1;
}

.program .part .item.type-subItems .item-label,
.program .part .item.type-feedback .item-label {
    order: 3;
}

.program .part .item.type-subItems .title,
.program .part .item.type-feedback .title,
.program .part .item.type-subItems .item-label,
.program .part .item.type-feedback .item-label {
    width: calc(100% - 30px);
    font-size: 18px;
    padding-left: 20px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 23px;
}

.program .part .item.type-subItems .toggle,
.program .part .item.type-feedback .toggle {
    order: 4;
    width: 30px;
    padding-left: 4px;
    padding-top: 4px;
}

.program .part .item.type-subItems .toggle:first-child,
.program .part .item.type-feedback .toggle:first-child {
    padding-left: calc(100% - 30px);
}

.program .part .item.type-subItems .toggle:nth-child(3),
.program .part .item.type-feedback .toggle:nth-child(3) {
    order: 2;
}

.program .part .item.type-subItems .sub-items,
.program .part .item.type-feedback .sub-items {
    order: 5;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 500ms ease, max-height 500ms ease;
    max-height: 0;
    width: 100%;
    padding: 0 20px;
}

.program .part .item.type-subItems.inactive .sub-items,
.program .part .item.type-feedback.inactive .sub-items {
    max-height: 0 !important;
}

.program .part .item.type-subItems.active .sub-items,
.program .part .item.type-feedback.active .sub-items {
    transform: scaleY(1);
}

.program .part .item.type-subItems.active .sub-items .item:last-child,
.program .part .item.type-feedback.active .sub-items .item:last-child {
    margin-bottom: 15px;
}

.program .part .item.type-feedback .sub-items > div {
    display: flex;
    padding-bottom: 20px;
}

.program .part .item.type-feedback .sub-items > div > div {
    flex-grow: 1;
}

.program .part .item.type-feedback .sub-items > div > div:first-child {
    margin-right: 10px;
}

.program .part .item.type-feedback .sub-items > div > div:last-child {
    margin-left: 10px;
}

.program .part .item.type-feedback .sub-items > div > div.full-width {
    margin-left: 0;
    margin-right: 0;
}

.program .part .item.type-table {
    border: 1px solid #93008C;
    border-radius: 5px;
    padding: 20px;
}

.program .part .item.type-table > div:not(:first-child) {
    margin-top: 15px;
}

.program .part .item.type-table .table-container {
    overflow-x: hidden;
    /* Scrollbar is anders altijd zichtbaar */
    padding-bottom: 1px;
    /* Zorgt er voor dat box-shadow niet in de overflow komt (onzichtbaar) */
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.program .part .item.type-table .table-container > .program-table {
    width: 100%;
    display: table;
}

.program .part .item.type-table .table-container > .program-table .thead {
    display: table-header-group;
}

.program .part .item.type-table .table-container > .program-table .tbody {
    display: table-row-group;
}

.program .part .item.type-table .table-container > .program-table .tr {
    display: table-row;
}

.program .part .item.type-table .table-container > .program-table .th,
.program .part .item.type-table .table-container > .program-table .td {
    display: table-cell;
}

.program .part .item.type-table .table-container > .program-table.column-1 > .thead > .tr > .th,
.program .part .item.type-table .table-container > .program-table.column-1 > .tbody > .tr > .td {
    width: 100%;
}

.program .part .item.type-table .table-container > .program-table.column-2 > .thead > .tr > .th,
.program .part .item.type-table .table-container > .program-table.column-2 > .tbody > .tr > .td {
    width: 50%;
}

.program .part .item.type-table .table-container > .program-table.column-3 > .thead > .tr > .th,
.program .part .item.type-table .table-container > .program-table.column-3 > .tbody > .tr > .td {
    width: 33%;
}

.program .part .item.type-table .table-container > .program-table.column-4 > .thead > .tr > .th,
.program .part .item.type-table .table-container > .program-table.column-4 > .tbody > .tr > .td {
    width: 25%;
}

.program .part .item.type-table .table-container > .program-table.column-5 > .thead > .tr > .th,
.program .part .item.type-table .table-container > .program-table.column-5 > .tbody > .tr > .td {
    width: 20%;
}

.program .part .item.type-table .table-container > .program-table.column-6 > .thead > .tr > .th,
.program .part .item.type-table .table-container > .program-table.column-6 > .tbody > .tr > .td {
    width: 17%;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td .item .item-label {
    display: none;
}

.program .part .item.type-table .table-container > .program-table > .thead > .tr > .th,
.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td {
    vertical-align: top;
    padding: 5px;
    min-height: 42px;
}

.program .part .item.type-table .table-container > .program-table > .thead > .tr > .th {
    vertical-align: bottom;
    font-weight: bold;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > .item > .readonly {
    min-height: 32px;
    padding: 8px 0 8px 0;
}

.program .part .item.type-table .table-container > .program-table > .thead > .tr > .th:first-child,
.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td:first-child {
    padding-left: 0;
}

.program .part .item.type-table .table-container > .program-table > .thead > .tr > .th:last-child,
.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td:last-child {
    padding-right: 0;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > div.additional-container {
    display: flex;
    width: 100%;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > div.additional-container > div {
    width: 100%;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td:last-child > div.additional-container > div:first-child {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > div.additional-container > .remove {
    width: 0;
    transition: width 200ms ease-in;
    display: block;
    height: 32px;
    max-height: 32px;
    max-width: 32px;
    background: url(../icons-yellow/remove.svg) no-repeat center;
}

.program .part .item.type-table .calculation-container > .title {
    font-weight: bold;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > div.additional-container > .remove:hover {
    background: url(../icons-yellow/remove-hover.svg) no-repeat center;
}

.program .part .item.type-table .multiple-choice-header {
    display: flex;
    justify-content: space-evenly;
}

.program .part .item.type-table .multiple-choice-header.centered,
.program .part .item.type-table .multiple-choice-header-input {
    display: flex;
    justify-content: space-around;
}

.program .part .item.type-table .multiple-choice-header > div {
    min-height: 130px;
}

.program .part .item.type-table .multiple-choice-header > div,
.program .part .item.type-table .multiple-choice-header-input > div {
    padding-right: 5px;
}

.program .part .item.type-table .multiple-choice-header > div > .text {
    position: relative;
    transform: rotate(-45deg);
    left: -10px;
    top: 110px;
    z-index: 1;
    white-space: nowrap;
    max-width: 0;
    text-overflow: ellipsis;
}

.program .part .item.type-table .multiple-choice-header-input > div > div > textarea {
    height: 90px;
}

.program .part .item.type-table .item.type-inputMultipleChoice .selection-container {
    display: flex;
    left: 0;
    justify-content: space-evenly;
}

.program .part .item.type-table .item.type-inputMultipleChoice .selection-container.centered {
    justify-content: space-around;
}

.program .part .item.type-table .item.type-inputMultipleChoice .selection-container > .choice {
    min-width: 25px;
    height: 32px;
    min-height: 32px;
    max-height: 32px;
    padding-top: 7px;
    margin: 0;
}

.program .part .item.type-table .item.type-inputMultipleChoice .selection-container > .choice.centered {
    text-align: center;
}

.program .part .item.type-table .item.type-inputMultipleChoice .selection-container > .choice .text {
    display: none;
}

.program .part .item.type-inputMultipleChoice .option-other {
    padding-top: 10px;
}

.program .part .item.type-table .table-container > .program-table > .tbody > .tr:active > .td > div.additional-container > .remove,
.program .part .item.type-table .table-container > .program-table > .tbody > .tr:focus > .td > div.additional-container > .remove,
.program .part .item.type-table .table-container > .program-table > .tbody > .tr:focus-within > .td > div.additional-container > .remove,
.program .part .item.type-table .table-container > .program-table > .tbody > .tr:hover > .td > div.additional-container > .remove {
    width: 32px;
}

.program .part .item.type-table .table-container > .program-table .item {
    margin: 0;
}

.program .part .item.type-table .table-container > .buttonRow {
    margin-top: 10px;
}

.program .part .item.type-table .table-container > .buttonRow > .button {
    margin-bottom: 0;
}

.program .add-content table {
    width: 100%;
}

.program .add-content table > tbody > tr > th {
    vertical-align: top;
    padding: 12px 5px 5px;
}

.program .add-content table > tbody > tr > td {
    padding: 5px;
}

.program .add-content table > tbody > tr > th:first-child {
    width: 25%;
}

.program .part .item .item-label {
    margin-top: 5px;
    margin-bottom: 5px;
}

.program .part .item.type-slider input {
    /*background: #E5E5E5;*/
    background: transparent;
}

.program .part .item.type-slider .slider-labels div {
    width: 33%;
    display: inline-block;
}

.program .part .item.type-slider .slider-labels div.middle {
    text-align: center;
}

.program .part .item.type-slider .slider-labels div.max {
    text-align: right;
}

.program .part .item.type-additionalAssignments {
    border: 1px solid #93008C;
    padding: 20px;
    border-radius: 5px;
}

.program .part .item.type-additionalAssignments li {
    min-height: 25px;
}

.program .part .item.type-additionalAssignments li ul {
    margin-bottom: 0;
}

.program .part .item.type-additionalAssignments .remove-assignment {
    transition: width 200ms ease-in;
    width: 0;
    height: 25px;
    max-height: 25px;
    max-width: 25px;
    float: right;
    background: url(../icons-yellow/remove.svg) no-repeat center;
}

.touch .program .part .item.type-additionalAssignments li .remove-assignment,
.program .part .item.type-additionalAssignments li:hover .remove-assignment {
    width: 25px;
}

.program .part .item.type-additionalAssignments .remove-assignment:hover {
    background: url(../icons-yellow/remove-hover.svg) no-repeat center;
}

.program .selection-container {
    min-height: 32px;
}

.program .selection-container > .choice {
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0 10px 0 0;
    vertical-align: top;
}

.program .selection-container > .choice:last-child {
    margin: 0;
}

.program .selection-container.multiline > .multiline {
    display: block;
    margin: 0;
}

.program .selection-container label {
    cursor: pointer;
}

.program .selection-container .choice .text {
    position: relative;
    top: -10px;
}

.program .selection-container.multi .choice .text {
    position: relative;
    top: -5px;
}

.program label.radio {
    margin-top: -24px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.program input[type=radio][disabled] ~ label {
    cursor: default;
}

.program .selection-container input[type=radio] + .ui {
    margin: -2px 5px 5px 0;
}

@media screen and (max-width: 1370px) {
    .program > .footer > .navigation > div {
        min-width: initial;
    }

    .no-right .program > .footer > .navigation > div {
        min-width: 210px;
    }
}

@media screen and (max-width: 1200px) {
    .program > .footer > .navigation > div {
        min-width: 210px;
    }
}

@media screen and (max-width: 1070px) {
    .program > .footer > .navigation > div {
        min-width: initial;
    }

    .no-right .program > .footer > .navigation > div {
        min-width: 210px;
    }
}

@media screen and (max-width: 1024px) {
    .program > .footer > .navigation > div {
        min-width: 210px;
    }
}

@media screen and (max-width: 770px) {
    .program > .footer > .navigation > div {
        min-width: initial;
    }

    .no-right .program > .footer > .navigation > div {
        min-width: 210px;
    }
}

@media screen and (max-width: 720px) {
    .no-right .program > .footer > .navigation > div {
        min-width: initial;
    }

    .program-content img,
    .program img {
        max-width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .program > .footer > .navigation {
        flex-direction: column;
    }

    .program > .footer > .navigation > .left {
        flex-direction: column;
        margin-left: 0;
    }

    .program > .footer > .navigation > .center {
        flex-direction: column;
    }

    .program > .footer > .navigation > .right {
        flex-direction: column-reverse;
        margin-right: 0;
    }

    .program > .footer > .navigation > div > .button {
        text-align: center;
        margin: 5px 0 5px 0;
        width: 100%;
    }
}

.program input[type='range'] {
    box-sizing: border-box;
    -webkit-appearance: none;
    border: none;
    padding: 0 .75em;
    width: 6.25em;
    height: 2em;
    border-radius: 3.125em;
    background: #474745;
    background-blend-mode: multiply;
    /* Firefox & Chrome/ Opera need this,
       otherwise font-size is smaller */
    font-size: 1em;
    cursor: pointer;
    /* wish I could style this asshole */
}

[class*='-ms-'] .program input[type='range'] {
    background: #474745;
}

.program input[type='range']::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    border: none;
    /* because IE */
    width: 100%;
    height: .5em;
    border-radius: .5em;
    box-shadow: 0 1px .125em #888, inset 0 .125em .125em #474745;
    background: #A8A8A8;
}

.program input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -.375em;
    /* weird shit, Chrome */
    border: none;
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    transform: rotate(-30deg);
    box-shadow: inset 0 1px #fefefe, 0 1px .125em #232426, 0 .125em .25em #232426;
    background: linear-gradient(-45deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 100% 0, linear-gradient(45deg, #5f5f5f, rgba(95, 95, 95, 0) 65%), linear-gradient(-135deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 100% 100%, linear-gradient(135deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 0 100%, linear-gradient(-45deg, rgba(95, 95, 95, 0) 35%, #5f5f5f) 100% 0, linear-gradient(45deg, rgba(95, 95, 95, 0) 35%, #5f5f5f), linear-gradient(-135deg, rgba(95, 95, 95, 0) 65%, #5f5f5f) 100% 100%, linear-gradient(135deg, rgba(95, 95, 95, 0) 65%, #5f5f5f) 0 100% #ddd;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-size: 56% 56%;
    /* fix Chrome/ Opera */
}

.program input[type='range']::-moz-range-track {
    z-index: -1;
    /* fix Firefox WTF */
    border: none;
    /* because IE */
    width: 100%;
    height: .5em;
    border-radius: .5em;
    box-shadow: 0 1px .125em #888, inset 0 .125em .125em #474745;
    background: #A8A8A8;
}

.program input[type='range']::-moz-range-thumb {
    border: none;
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    transform: rotate(-30deg);
    box-shadow: inset 0 1px #fefefe, 0 1px .125em #232426, 0 .125em .25em #232426;
    background: linear-gradient(-45deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 100% 0, linear-gradient(45deg, #5f5f5f, rgba(95, 95, 95, 0) 65%), linear-gradient(-135deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 100% 100%, linear-gradient(135deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 0 100%, linear-gradient(-45deg, rgba(95, 95, 95, 0) 35%, #5f5f5f) 100% 0, linear-gradient(45deg, rgba(95, 95, 95, 0) 35%, #5f5f5f), linear-gradient(-135deg, rgba(95, 95, 95, 0) 65%, #5f5f5f) 100% 100%, linear-gradient(135deg, rgba(95, 95, 95, 0) 65%, #5f5f5f) 0 100% #ddd;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    /* Firefox-only, it won't work in IE
       and it's messed up in Chrome */
    cursor: ew-resize;
}

.program input[type='range']::-ms-track {
    border: none;
    /* because IE */
    width: 100%;
    height: .5em;
    border-radius: .5em;
    box-shadow: 0 1px .125em #888, inset 0 .125em .125em #474745;
    background: #A8A8A8;
    color: transparent;
}

.program input[type='range']::-ms-thumb {
    border: none;
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    transform: rotate(-30deg);
    box-shadow: inset 0 1px #fefefe, 0 1px .125em #232426, 0 .125em .25em #232426;
    background: linear-gradient(-45deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 100% 0, linear-gradient(45deg, #5f5f5f, rgba(95, 95, 95, 0) 65%), linear-gradient(-135deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 100% 100%, linear-gradient(135deg, #5f5f5f, rgba(95, 95, 95, 0) 65%) 0 100%, linear-gradient(-45deg, rgba(95, 95, 95, 0) 35%, #5f5f5f) 100% 0, linear-gradient(45deg, rgba(95, 95, 95, 0) 35%, #5f5f5f), linear-gradient(-135deg, rgba(95, 95, 95, 0) 65%, #5f5f5f) 100% 100%, linear-gradient(135deg, rgba(95, 95, 95, 0) 65%, #5f5f5f) 0 100% #ddd;
    background-repeat: no-repeat;
    background-size: 50% 50%;
}

.program input[type='range']::-ms-fill-lower, .program input[type='range']::-ms-fill-upper {
    background: transparent;
}

.program input[type='range']::-ms-tooltip {
    display: none;
}

.program input[type='range']:focus {
    outline: none;
    box-shadow: none;
}

.program .part .item .textAreaDiv.empty textarea {
    top: 0;
}

.program .part .item .textAreaDiv.empty textarea {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: normal;
    overflow: auto;
    resize: vertical;
    position: relative;
    left: 0;
    min-height: 62px;
    height: 200px;
}

.program-view-data-object {
    min-height: 580px;
}

.modalBox .program-image-container {
    text-align: center;
}

.modalBox .program-image-container img {
    max-width: 100%;
}

@media screen and (max-width: 700px) {

    .program {
        border-left: none !important;
        border-right: none !important;
    }

    .program > .header {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        padding: 15px;
    }

    .program > .footer {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .program > .content {
        padding: 10px 0;
    }

    .program .index .index-chapter > .index-chapter-header {
        padding: 15px;
    }

    .program .index .index-chapter .index-parts .index-part {
        padding-left: 15px;
        padding-right: 15px;
    }

    .program .index .index-chapter.active .index-parts .index-part {
        padding: 15px;
    }

    .program .index .index-chapter {
        margin-bottom: 10px;
    }

    .program .part {
        padding: 15px;
    }

    .program .part.extra-information {
        margin-bottom: 10px;
    }

    .program > .footer > .navigation {
        padding: 10px 15px 10px 15px;
    }

    .program .part .item.type-inputQuestion {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .program .part .item.type-subItems .toggle,
    .program .part .item.type-feedback .toggle {
        padding-top: 2px;
    }

    .program .part .item.type-table {
        padding: 10px;
    }

    .program .part .item.type-table .table-container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .program .part .item.type-table .table-container > .program-table {
        display: flex;
        flex-direction: column;
    }

    .program .part .item.type-table .table-container > .program-table .thead {
        display: none;
        flex-direction: column;
    }

    .program .part .item.type-table .table-container > .program-table .tbody {
        display: flex;
        flex-direction: column;
    }

    .program .part .item.type-table .table-container > .program-table .tbody .tr:before {
        content: '';
        border-top: 1px solid #93008C;
        position: relative;
        left: -10px;
        width: calc(100% + 20px);
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .program .part .item.type-table .table-container > .program-table .tbody:nth-child(2) .tr:first-child:before {
        display: none;
    }

    .program .part .item.type-table .table-container > .program-table .tr {
        display: flex;
        flex-direction: column;
    }

    .program .part .item.type-table .table-container > .program-table .th,
    .program .part .item.type-table .table-container > .program-table .td {
        display: block;
    }

    .program .part .item.type-table .table-container > .program-table.column > .thead > .tr > .th,
    .program .part .item.type-table .table-container > .program-table.column > .tbody > .tr > .td {
        width: 100%;
    }

    .program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td .item .item-label {
        display: block;
    }

    .program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > .item > .readonly {
        display: block;
        padding: 5px 0 5px 0;
    }

    .program .part .item.type-table .table-container > .program-table > .thead > .tr > .th:first-child,
    .program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td:first-child {
        padding-left: 5px;
    }

    .program .part .item.type-table .table-container > .program-table > .thead > .tr > .th:last-child,
    .program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td:last-child {
        padding-right: 5px;
    }

    .program .part .item.type-table .table-container > .buttonRow:before {
        content: '';
        display: block;
        border-top: 1px solid #164a5c;
        position: relative;
        left: -10px;
        width: calc(100% + 20px);
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td .item.type-inputMultipleChoice .item-label {
        display: none;
    }

    .program .part .item.type-table .item.type-inputMultipleChoice .selection-container {
        flex-direction: column;
    }

    .program .part .item.type-table .item.type-inputMultipleChoice .selection-container > .choice {
        display: flex;
    }

    .program .part .item.type-table .item.type-inputMultipleChoice .selection-container > .choice .text {
        display: block;
        margin-top: 8px;
    }

    .program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > div.additional-container {
        flex-direction: column;
    }

    .program .part .item.type-table .table-container > .program-table > .tbody > .tr > .td > div.additional-container > .remove {
        min-width: 100%;
        height: 0;
        max-height: 37px;
        transition: height 200ms ease-in;
        background-position-y: 10px;
    }

    .program .part .item.type-table .table-container > .program-table > .tbody > .tr:active > .td > div.additional-container > .remove,
    .program .part .item.type-table .table-container > .program-table > .tbody > .tr:focus > .td > div.additional-container > .remove,
    .program .part .item.type-table .table-container > .program-table > .tbody > .tr:focus-within > .td > div.additional-container > .remove,
    .program .part .item.type-table .table-container > .program-table > .tbody > .tr:hover > .td > div.additional-container > .remove {
        height: 37px;
    }

    .program .part .item.type-subItems .title,
    .program .part .item.type-feedback .title,
    .program .part .item.type-subItems .item-label,
    .program .part .item.type-feedback .item-label {
        padding-left: 10px;
    }

    .program .part .item.type-subItems .sub-items,
    .program .part .item.type-feedback .sub-items {
        padding: 0 10px;
    }

    .program .part .item.type-feedback .sub-items > div {
        flex-direction: column;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .program .part .item.type-feedback .sub-items > div > div:first-child {
        margin-right: 0;
    }

    .program .part .item.type-feedback .sub-items > div > div:last-child {
        margin-left: 0;
    }

    .program .part .buttons,
    .program .part .buttonRow,
    .program .part .item.type-table .table-container > .buttonRow {
        padding-bottom: 0;
    }

    .program .part .buttons > div,
    .program .part .buttonRow > div {
        margin-bottom: 0;
    }

    .program .part .item.type-table .table-container > .buttonRow {
        margin-top: 0;
    }

    .program .part .item.type-additionalAssignments {
        padding: 10px;
    }

}
