<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==========================================================================
   Header Component
   ========================================================================== */

.header-component.with-image {
    position: relative;
    background-color: #333;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 320px;
}

.header-component.with-image &gt; .roxen-edit-box-wrap {
    /* fix roxen thing */
    height: 100%;
}

.header-component.with-image .page-header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1em;
    margin: 0;
    border-bottom: none;
    text-align: center;
    color: #fff;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: -o-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: -ms-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
}

.header-component.with-image .page-header h1 {
    font-weight: bold;
    font-size: 42px;
    color: #fff;
}

.header-component.with-image .page-header h2 {
    font-weight: normal;
    font-size: 18px;
}

@media (min-width: 768px) {
    .header-component.with-image {
        height: 625px;
    }
    .header-component.with-image .page-header {
        padding: 5em 1em;
    }
}


/* ==========================================================================
   Footer Component
   ========================================================================== */

.footer-component {
    width: 100%;
}


/* ==========================================================================
   Grid Overview Component
   ========================================================================== */
 
.grid-item a:hover,.grid-item a:focus {
    color: transparent;
}

.grid-item {
    background: #ffffff;
    border-radius: 0;
    margin-bottom: 3.2rem;
}

.grid-item .list-group-item {
    border-radius: 0;
}

.grid-item.right-align {
    float: right;
}

.grid-item .img {
    width: 100%;
    height: 230px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}

.grid-item .img:hover {
    -webkit-filter: grayscale(60%);
    -moz-filter: grayscale(60%);
    -ms-filter: grayscale(60%);
    -o-filter: grayscale(60%);
    filter: grayscale(60%);
    filter: gray;
}

@media (min-width: 992px) {
    .grid-item.h-lg .img {
        height:562px;
    }
    .grid-item .content-wrapper {
        height: 7rem;
    }
}


/* ==========================================================================
   Grid Component
   ========================================================================== */

.grid-component._variant_2 {
    background-color: #f4f4f5;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .grid-component._variant_1 {
        background: linear-gradient(90deg, #fff 61%, #f4f4f5 39%);
    }
}


/* ==========================================================================
   App Form Component
   ========================================================================== */

.app-form-component {}

.app-form-component .alert ul.errors li a {
    color: inherit;
}

.app-form-component .has-error .ws-errorbox:last-child {
    display: block;
}

.ie8 .app-form-component .has-error .ws-errorbox {
    display: block;
}


/* ==========================================================================
   App Form Attachment Component
   ========================================================================== */

.app-form-attachment-component {}

.app-form-attachment-component .btn-file {
    position: relative;
    overflow: hidden;
}

.app-form-attachment-component .btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}


/* ==========================================================================
   App Form Remove Attachment Component
   ========================================================================== */

.app-form-remove-attachment-component .input-group-addon.with-button {
    padding: 0;
    border: 0;
}

.app-form-remove-attachment-component .input-group-addon.with-button button {
    border-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}


/* ==========================================================================
   App Form Text Component
   ========================================================================== */

.app-form-text-component {}

.app-form-text-component .control-label {
    position: relative;
}

@media (max-width: 767px) {
    .app-form-text-component .control-label .help-text {
        position: absolute;
        right: -7px;
        top: 2px;
    }
}


/* ==========================================================================
   App Form Selection Component
   ========================================================================== */

.app-form-selection-component {}

.app-form-selection-component .control-label {
    position: relative;
}

@media (max-width: 767px) {
    .app-form-selection-component .control-label .help-text {
        position: absolute;
        right: -7px;
        top: 2px;
    }
}


/* ==========================================================================
   App Form Fold Component
   ========================================================================== */

.app-form-single-fold-component.folded .form-group {
    margin-bottom: 0;
}

.app-form-single-fold-component.folded .form-group {}

/* ==========================================================================
   Button Component
   ========================================================================== */

.button-component {
    margin-top: -5px;
}

.button-component .btn {
    margin-right: 15px;
    margin-top: 5px;
}


/* ==========================================================================
   Carousel Component
   ========================================================================== */

.carousel-component {
    margin-bottom: 20px;
}


/* hallo? */

.carousel-fade .carousel-inner .item {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-control {
    z-index: 2;
    top: 35px;
}


/* ==========================================================================
   Video Component
   ========================================================================== */

.video-component {}

.video-component video {
    width: 100%;
}


/* ==========================================================================
   Picture Component
   ========================================================================== */

@media (min-width: 576px) {
	.picture-component.left .picture,
	.picture-component.right .picture {
		width: 50%;
	}
}

.picture-component.left .picture {
    margin: 0 15px 0 0;
}

.picture-component.center .picture {
    margin-bottom: 1rem;
}

.picture-component.center .picture img {
    margin: auto;
}

.picture-component .picture-content {
    position: relative;
}

.picture-component .picture-comment {
    background: rgba(250, 250, 250, 0.8);
    font-style: italic;
    position: absolute;
	bottom: 0;
    width: 100%;
    padding: 1rem;
}

/* pictures inside a column should not be bigger than 100%  */

.grid-column-component .picture-component .picture-content img {
    max-width: 100%;
}


/* ==========================================================================
   YouTube component
   ========================================================================== */

.youtube-component {
    max-width: 560px;
}

.youtube-component .youtube-content {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.youtube-component iframe,
.youtube-component object,
.youtube-component embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ==========================================================================
   response image component
   ========================================================================== */

.response-image-component .img-responsive {
    height: 500px;
}


/* ==========================================================================
   Response List component
   ========================================================================== */

.response-list-component {
    position: relative;
}


/* ==========================================================================
   Response List component - Variant: Toolbar
   ========================================================================== */

.toolbar-list {
    margin-bottom: 10px;
}


/* ==========================================================================
   Response List component - Variant: Vertical timeline list
   ========================================================================== */

.timeline {
    top: 0;
    bottom: 0;
    position: absolute;
    width: 3px;
    background-color: #eee;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 29px;
    margin-left: -16px;
    margin-top: -29px;
    background: #fff;
    border: 3px solid #ccc;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.list-timeline {
    margin-bottom: 20px;
    padding-left: 0;
}

.list-timeline-item {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.list-timeline-popover.popover.left,
.list-timeline-popover.popover.right {
    /* popover */
    width: 45%;
    max-width: 45%;
    position: relative;
    display: block;
    float: left;
    margin: 0 0 20px;
    z-index: 0;
}

.list-timeline-popover.popover.right {
    /* popover */
    float: right;
}

@media (max-width: 991px) {
    .timeline {
        left: 4%;
    }
    .timeline-icon {
        left: 4%;
    }
    .list-timeline-popover.popover.left,
    .list-timeline-popover.popover.right {
        width: 88%;
        max-width: 88%;
    }
    .list-timeline-popover.popover.left {
        float: right;
    }
    .list-timeline-popover.popover.left &gt; .arrow {
        right: auto;
        border-right-width: 11px;
        border-left-color: transparent;
        left: -11px;
        border-left-width: 0;
        border-right-color: #999999;
        border-right-color: rgba(0, 0, 0, 0.25)
    }
    .list-timeline-popover.popover.left &gt; .arrow:after {
        right: auto;
        border-right-width: 10px;
        border-left-color: transparent;
        left: 1px;
        border-left-width: 0;
        border-right-color: #ffffff
    }
}


/* ==========================================================================
   Response List component - Variant: Google Maps
   ========================================================================== */

.response-list-component [data-select="google-map-marker-list"] {
    display: none;
}


/* ==========================================================================
   Response List component - Variant: Image overview
   ========================================================================== */

.response-list-component .list-images {}

.response-list-component .list-images .list-image-item .no-image {
    background-color: #eee;
    width: 100%;
    height: 167px;
    font-size: 110px;
    color: #ddd;
    line-height: 167px;
    text-align: center;
}

@media (min-width: 1200px) {
    .response-list-component .list-images .list-image-item .no-image {
        height: 209px;
        line-height: 209px;
    }
}

.response-list-component .list-images .list-image-item .list-image-img {
    width: 100%;
    height: 226px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (min-width: 1200px) {
    .response-list-component .list-images .list-image-item .list-image-img {
        height: 278px;
    }
}

.response-list-component._variant_50 .response-text-component .control-label {
    /* like .form-control-static */
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
}


/* ==========================================================================
   Google Maps component
   ========================================================================== */

.google-maps-component {}

.google-maps-component .google-maps {
    display: inline-block;
    height: 600px;
    width: 65%;
    vertical-align: top;
}

.google-maps-component .google-maps .google-map {
    width: 100%;
    height: 100%;
}

.google-maps-component .google-map-info {
    display: inline-block;
    width: 30%;
    margin-left: 5%;
    vertical-align: top;
}

.google-maps-component #pac-input {
    background-color: #fff;
    padding: 0 11px 0 13px;
    /*width: 70%;*/
    width: 400px;
    max-width: 93%;
    font-size: 15px;
    font-weight: 300;
    text-overflow: ellipsis;
    margin: 8px;
}

.google-maps-component #pac-input:focus {
    border-color: #4d90fe;
    /*margin-left: -1px;
		padding-left: 14px;  */
    /* Regular padding-left + 1. */
    /*
		width: 401px;*/
}

.google-maps-component .info_window {
    margin-left: 15px;
}

.google-maps-component .info_window label {
    width: auto;
    padding-right: 5px;
    padding-left: 0;
}

.google-maps-component .info_window .form-input {
    width: auto;
    padding-left: 0;
}

.google-maps-component .info_window .form-control-static {
    padding-top: 0;
    min-height: 24px;
}

.google-maps-component .info_window .row {
    margin: 0;
}

.google-maps-component .info_window hr {
    margin: 3px 0 7px 0;
}

.google-maps-component .info_window .row .col-xs-12 {
    padding-left: 0;
}

.google-maps-component .map-notification {
    bottom: 4px;
    left: 50px;
    position: absolute;
    right: 50px;
    padding: 16px;
}


/* exists within a grid column */

.grid-column-component .google-maps-component .google-maps {
    width: 100%;
    height: 360px;
}

.grid-column-component .google-maps-component .google-map-info {
    display: none;
}

@media (max-width: 992px) {
    .google-maps-component .google-maps {
        width: 100%;
    }
    .google-maps-component .google-map-info {
        width: 100%;
        margin: 5% 0;
    }
}

@media (max-width: 640px) {
    .google-maps-component .google-maps {
        /*bottom: 20px;
		height: auto;
		left: 20px;
		position: fixed;
		right: 20px;
		top: 90px;
		width: auto;
		height: auto;*/
        height: 360px;
    }
    .well.google-map-info {
        display: none;
    }
	.picture-component .picture-comment {
		font-size: 14px;
	}
}

@media (max-width: 400px) {
    body .picture-component .picture {
        width: 100%;
        margin: 0 0 15px 0 !important;
    }
}


/* ==========================================================================
   Nieuws Overview
   ========================================================================== */

.app-news-overview-component .news-item img {
    max-width: 100%;
    height: auto;
}

.app-news-overview-component .news-item a:hover {
    text-decoration: none;
}

.app-news-overview-component .date {
    color: #aaa;
}

.app-news-overview-component .text {
    color: #333;
}

/****************************************************
*  app-news-overview-component
*****************************************************/

.app-news-overview-component {
    margin-bottom: 40px;
    overflow: auto;
}

.app-news-overview-component .news-item .img.portrait img {
    width: auto;
}

.app-news-overview-component .news-item .img.landscape img {
    min-width: 100%;
}

.app-news-overview-component.text .news-item img {
    display: none;
}

.app-news-overview li {
    clear: both;
    overflow: hidden;
    margin-bottom: 20px;
}

.app-news-overview-component .video-component video {
    width: 100%;
    max-width: 100%;
    background: black;
}

/****************************************************
*  news intro 
*****************************************************/

.nieuws-intro-date {
    padding-bottom: 10px;
}

.nieuws-intro-image {
    width: 100%;
    max-width: 608px;
}

.nieuws-intro-picture img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.app-news-intro-component .youtube-component,
.app-news-intro-component .video-component,
.app-news-intro-component .video-component video {
    width: 100%;
    max-width: 608px;
    margin: 40px 0;
}

.app-news-intro-component .youtube-component .youtube-content {
    padding-top: 0;
}

.app-news-intro-component .nieuws-intro-picture {
    margin-top: 20px;
}

/* ==========================================================================
   RSS Component
   ========================================================================== */

.app-rss-component .rss-item img {
    max-width: 100%;
    height: auto;
}

.app-rss-component .rss-item a:hover {
    text-decoration: none;
}

.app-rss-component .date {
    color: #aaa;
}

.app-rss-component .text {
    color: #333;
}


/* ==========================================================================
   Metamenu
   ========================================================================== */

.metamenu-component {
    display: block;
    position: fixed;
    top: 0px;
    right: 50%;
    height: 30px;
    width: auto;
    background: #FFF;
    padding: 5px 15px;
    z-index: 1200;
    margin-right: -585px;
}

.metamenu-component form {
    float: right;
    margin-left: 10px;
}

.metamenu-component input.search-field {
    height: 20px;
    font-size: 10px;
}


/* 1200 991 767 640 400 */

@media (max-width: 1200px) {
    .metamenu-component {
        margin-right: -463px;
    }
}

@media (max-width: 991px) {
    .metamenu-component {
        margin-right: -351px;
    }
}


/*@media (max-width: 815px) {
	.metamenu-component {width:301px; height:28px; overflow:hidden; display:block; margin-right:0px; right:-1px;}
	.metamenu-component form {display:block; position:relative}
}*/

@media (max-width: 767px) {
    .metamenu-component {
        width: 301px;
        height: 28px;
        overflow: hidden;
        margin-right: 0px;
        right: -1px;
        display: block;
        position: relative;
        background: inherit;
        padding-bottom: 0px;
    }
    .metamenu-component form {
        display: block;
        position: relative;
        float: left;
    }
}


/* ==========================================================================
   SiteBuilder componenten - Metamenu
   ========================================================================== */

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    text-shadow: none;
    /*	z-index:auto;*/
    display: block;
    position: relative;
    height: 35px;
    border-radius: 0px 10px 0px 0px;
    -moz-border-radius: 0px 10px 0px 0px;
    -webkit-border-radius: 0px 10px 0px 0px;
}

.carousel-caption h4 {
    margin: -10px;
    padding: 0;
    font-size: 16px;
}

.faq-component .question {
    cursor: s-resize;
    background-image: url('/apps/com.administrators.bastonwonen/img/baston-faq-arrow.png'), linear-gradient(#FFFFFF, #FFFFFF 6%, #EEEEEE);
    background-repeat: no-repeat, repeat-y;
    background-position: 5px 50%, 0 0;
    padding-left: 36px;
}

.faq-component .question.unfolded {
    cursor: n-resize;
}

.faq-component .answer {
    display: none;
}


/* ==========================================================================
   Response text-component component
   ========================================================================== */

.table-responsive .table .inline {
    padding: 8px 0 0 10px;
}

.inline .response-text-component {
    display: inline-block;
    margin: 0 2px 0 0;
}

.inline .response-text-component .form-input {
    padding: 0;
}

.inline .response-text-component .form-control-static {
    padding-top: 0;
}

.inline .response-text-component .control-label {
    padding-top: 0px;
}

.inline .response-text-component.row {
    margin: 0;
}


/* ==========================================================================
   Response list variant 13 (table mobile)
   ========================================================================== */

@media screen and (max-width: 600px) {
    .table-responsive {
        border: none;
    }

    table.mobile {
        border: 0;
    }

    table.mobile thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table.mobile tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .table-responsive &gt; table.mobile &gt; tbody &gt; tr &gt; td {
        display: block;
        font-size: 1em;
        text-align: right;
        white-space: pre-wrap;
        min-height: 32px;
    }
    
    table.mobile td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        margin-right: 10px;
        margin-bottom: 5px;
    }
    
    table.mobile td:last-child {
        border-bottom: 0;
    }
}



/* ==========================================================================
   Response Collapsable Table Row component
   ========================================================================== */

.table &gt; tbody &gt; tr.response-tr-component &gt; td {
    padding: 0;
}

.response-tr-component label,
.response-tr-component .form-input {
    max-width: 320px;
}


/* ==========================================================================
   Keuring
   ========================================================================== */

.decision-tree-generic-component,
.decision-btk-component {
    height: 378px;
    width: auto;
    margin: 0 0 10px;
}

@media screen and (max-width: 767px)
/* mobile */

    {
    .tree-card {
        position: absolute;
        display: inline-block;
        left: 0;
        top: 0;
        box-shadow: 1px 1px 3px #ddd;
        width: 100%;
        max-height: 378px;
        -webkit-animation-name: slideDown;
        -webkit-animation-duration: 0.5s;
        transition: all 0.5s ease-in-out;
    }
    .decision-tree-generic-component {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-1 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-2 {
        height: 432px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-3 {
        height: 486px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-4 {
        height: 540px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-5 {
        height: 594px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-6 {
        height: 648px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-7 {
        height: 702px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-8 {
        height: 756px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-9 {
        height: 810px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-10 {
        height: 864px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-11 {
        height: 918px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-12 {
        height: 972px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-13 {
        height: 1026px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-14 {
        height: 1080px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-15 {
        height: 1134px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-16 {
        height: 1188px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-17 {
        height: 1242px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-18 {
        height: 1296px;
        margin: 0 0 10px;
        position: static;
    }
    .tree-card &gt; .list-group {
        overflow: auto;
        max-height: 322px;
    }
    .tree-card &gt; .list-group.no-addition {
        overflow: auto;
        max-height: 378px;
    }
    .tree-card .list-group-item.active,
    .tree-card .list-group-item.active:focus,
    .tree-card .list-group-item.active:hover {
        z-index: 0;
        height: 54px;
    }
    .tree-card-icons .list-group-item-icon,
    .tree-card-icons .list-group-item-icon:focus,
    .tree-card-icons .list-group-item-icon:hover {
        display: inline-table;
        margin: 5px;
    }
    .imageDescription {
        display: table-caption;
        caption-side: bottom;
    }
    .bread-crumb {
        display: inline-flex;
    }
    .middle {
        position: relative;
        left: 0;
        top: 20px;
    }
    .tree-card &gt; .list-group {
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        word-wrap: break-word;
    }
    .tree-card .form-group {
        margin-left: auto;
        margin-right: auto;
    }
    .list-group-item .form-control {
        float: right;
        width: 50%;
    }
    .decision-btk-component .tree-card &gt; .list-group {
        height: 341px;
    }
    .decision-btk-component .tree-card &gt; .bouwdeel {
        height: 287px;
    }
    .decision-btk-component .tree-card &gt; .onderdeel {
        height: 287px;
    }
    .decision-btk-component .tree-card &gt; .condition {
        height: 287px;
    }
    .decision_to_action {
        top: 387px;
        border: none;
    }
    .break-line {
        white-space: normal;
    }
    #decision_to_action-2.decision_to_action {
        top: 60px;
    }
    #decision_to_action-3.decision_to_action {
        top: 114px;
    }
    #decision_to_action-4.decision_to_action {
        top: 168px;
    }
    #decision_to_action-5.decision_to_action {
        top: 222px;
    }
    #decision_to_action-6.decision_to_action {
        top: 276px;
    }
    #decision_to_action-7.decision_to_action {
        top: 330px;
    }
    #decision_to_action-8.decision_to_action {
        top: 384px;
    }
    #decision_to_action-9.decision_to_action {
        top: 438px;
    }
    #decision_to_action-10.decision_to_action {
        top: 492px;
    }
    #decision_to_action-11.decision_to_action {
        top: 546px;
    }
    #decision_to_action-12.decision_to_action {
        top: 600px;
    }
    #decision_to_action-13.decision_to_action {
        top: 654px;
    }
    #decision_to_action-14.decision_to_action {
        top: 708px;
    }
    #decision_to_action-15.decision_to_action {
        top: 762px;
    }
    #decision_to_action-16.decision_to_action {
        top: 818px;
    }
    #decision_to_action-17.decision_to_action {
        top: 862px;
    }
    #decision_to_action-18.decision_to_action {
        top: 926px;
    }
    #decision_to_action-19.decision_to_action {
        top: 980px;
    }
}

.tree-cards {
    position: relative;
}

@media screen and (min-width: 767px)
/* Desktop */

    {
    .decision-tree-component {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-1 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-2 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-3 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-4 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-5 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-6 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-7 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-8 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-9 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-10 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-11 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-12 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .decision-tree-generic-component-13 {
        height: 378px;
        margin: 0 0 10px;
        position: static;
    }
    .tree-card {
        position: absolute;
        display: inline-block;
        left: 0;
        top: 0;
        box-shadow: 1px 1px 3px #ddd;
        width: 20%;
        height: 378px;
        /*-webkit-animation-name: slideDown;
            -webkit-animation-duration: 1.0s;*/
        /*z-index: 2;*/
        transition: all 0.5s ease-in-out;
    }
    .tree-card-icons {}
    /*  */
    .tree-card:nth-child(2) {
        left: 5%;
    }
    .tree-card:nth-child(3) {
        left: 10%;
    }
    .tree-card:nth-child(4) {
        left: 15%;
    }
    .tree-card:nth-child(5) {
        left: 20%;
    }
    .tree-card:nth-child(6) {
        left: 25%;
    }
    .tree-card:nth-child(7) {
        left: 30%;
    }
    .tree-card:nth-child(8) {
        left: 35%;
    }
    .tree-card:nth-child(9) {
        left: 40%;
    }
    .tree-card:nth-child(10) {
        left: 45%;
    }
    .tree-card:nth-child(11) {
        left: 50%;
    }
    .tree-card:nth-child(12) {
        left: 60%;
    }
    .tree-card:nth-child(13) {
        width: 30%;
        min-width: 300px;
        left: 70%;
    }
    /*  */
    .total-cards-12 .tree-card:nth-child(2) {
        left: 5%;
    }
    .total-cards-12 .tree-card:nth-child(3) {
        left: 10%;
    }
    .total-cards-12 .tree-card:nth-child(4) {
        left: 15%;
    }
    .total-cards-12 .tree-card:nth-child(5) {
        left: 20%;
    }
    .total-cards-12 .tree-card:nth-child(6) {
        left: 25%;
    }
    .total-cards-12 .tree-card:nth-child(7) {
        left: 30%;
    }
    .total-cards-12 .tree-card:nth-child(8) {
        left: 35%;
    }
    .total-cards-12 .tree-card:nth-child(9) {
        left: 40%;
    }
    .total-cards-12 .tree-card:nth-child(10) {
        left: 45%;
    }
    .total-cards-12 .tree-card:nth-child(11) {
        left: 50%;
    }
    .total-cards-12 .tree-card:nth-child(11) {
        left: 50%;
    }
    .total-cards-12 .tree-card:nth-child(12) {
        left: 60%;
    }
    /*  */
    .total-cards-11 .tree-card:nth-child(2) {
        left: 5%;
    }
    .total-cards-11 .tree-card:nth-child(3) {
        left: 10%;
    }
    .total-cards-11 .tree-card:nth-child(4) {
        left: 15%;
    }
    .total-cards-11 .tree-card:nth-child(5) {
        left: 20%;
    }
    .total-cards-11 .tree-card:nth-child(6) {
        left: 25%;
    }
    .total-cards-11 .tree-card:nth-child(7) {
        left: 30%;
    }
    .total-cards-11 .tree-card:nth-child(8) {
        left: 35%;
    }
    .total-cards-11 .tree-card:nth-child(9) {
        left: 40%;
    }
    .total-cards-11 .tree-card:nth-child(10) {
        left: 50%;
    }
    .total-cards-11 .tree-card:nth-child(11) {
        left: 60%;
    }
    /*  */
    .total-cards-10 .tree-card:nth-child(2) {
        left: 5%;
    }
    .total-cards-10 .tree-card:nth-child(3) {
        left: 10%;
    }
    .total-cards-10 .tree-card:nth-child(4) {
        left: 15%;
    }
    .total-cards-10 .tree-card:nth-child(5) {
        left: 20%;
    }
    .total-cards-10 .tree-card:nth-child(6) {
        left: 25%;
    }
    .total-cards-10 .tree-card:nth-child(7) {
        left: 30%;
    }
    .total-cards-10 .tree-card:nth-child(8) {
        left: 40%;
    }
    .total-cards-10 .tree-card:nth-child(9) {
        left: 50%;
    }
    .total-cards-10 .tree-card:nth-child(10) {
        left: 60%;
    }
    /*  */
    .total-cards-9 .tree-card:nth-child(2) {
        left: 5%;
    }
    .total-cards-9 .tree-card:nth-child(3) {
        left: 10%;
    }
    .total-cards-9 .tree-card:nth-child(4) {
        left: 15%;
    }
    .total-cards-9 .tree-card:nth-child(5) {
        left: 20%;
    }
    .total-cards-9 .tree-card:nth-child(6) {
        left: 30%;
    }
    .total-cards-9 .tree-card:nth-child(7) {
        left: 40%;
    }
    .total-cards-9 .tree-card:nth-child(8) {
        left: 50%;
    }
    .total-cards-9 .tree-card:nth-child(9) {
        left: 60%;
    }
    /*  */
    .total-cards-8 .tree-card:nth-child(2) {
        left: 5%;
    }
    .total-cards-8 .tree-card:nth-child(3) {
        left: 10%;
    }
    .total-cards-8 .tree-card:nth-child(4) {
        left: 20%;
    }
    .total-cards-8 .tree-card:nth-child(5) {
        left: 30%;
    }
    .total-cards-8 .tree-card:nth-child(6) {
        left: 40%;
    }
    .total-cards-8 .tree-card:nth-child(7) {
        left: 51%;
    }
    .total-cards-8 .tree-card:nth-child(8) {
        left: 60%;
    }
    /*  */
    .total-cards-7 .tree-card:nth-child(2) {
        left: 10%;
    }
    .total-cards-7 .tree-card:nth-child(3) {
        left: 20%;
    }
    .total-cards-7 .tree-card:nth-child(4) {
        left: 30%;
    }
    .total-cards-7 .tree-card:nth-child(5) {
        left: 40%;
    }
    .total-cards-7 .tree-card:nth-child(6) {
        left: 51%;
    }
    .total-cards-7 .tree-card:nth-child(7) {
        left: 60%;
    }
    /*  */
    .total-cards-6 .tree-card:nth-child(2) {
        left: 11%;
    }
    .total-cards-6 .tree-card:nth-child(3) {
        left: 22%;
    }
    .total-cards-6 .tree-card:nth-child(4) {
        left: 35%;
    }
    .total-cards-6 .tree-card:nth-child(5) {
        left: 51%;
    }
    .total-cards-6 .tree-card:nth-child(6) {
        left: 65%;
    }
    /*  */
    .total-cards-5 .tree-card:nth-child(2) {
        left: 17%;
    }
    .total-cards-5 .tree-card:nth-child(3) {
        left: 34%;
    }
    .total-cards-5 .tree-card:nth-child(4) {
        left: 51%;
    }
    .total-cards-5 .tree-card:nth-child(5) {
        left: 68%;
    }
    .total-cards-5 .tree-card:nth-child(9) {
        left: 68%;
    }
    /*  */
    .total-cards-4 .tree-card:nth-child(2) {
        left: 18%;
    }
    .total-cards-4 .tree-card:nth-child(3) {
        left: 36%;
    }
    .total-cards-4 .tree-card:nth-child(4) {
        left: 54%;
    }
    .total-cards-4 .tree-card:nth-child(9) {
        left: 54%;
    }
    /*  */
    .total-cards-3 .tree-card:nth-child(2) {
        left: 19%;
    }
    .total-cards-3 .tree-card:nth-child(3) {
        left: 38%;
    }
    /*  */
    .total-cards-2 .tree-card:nth-child(2) {
        left: 19%;
    }
    .tree-card:nth-child(9) {
        right: 0px;
        left: inherit;
    }
    .tree-card &gt; .list-group {
        overflow: auto;
        height: 322px;
    }
    .tree-card &gt; .list-group.no-addition {
        overflow: auto;
        height: 378px;
    }
    .bread-crums {
        overflow: auto;
        overflow-y: hidden;
    }
    .search-bar {
        top: 437px;
    }
    .decision_to_action {
        top: 387px;
    }
    div#decision_to_action.panel {
        border: none;
        margin: 0px;
        padding: 0px;
    }
    .bread-crum {
        display: inline-flex;
    }
    .middle {
        position: relative;
        left: 0;
        top: 20px;
    }
    .tree-card .list-group-item.active,
    .tree-card .list-group-item.active:focus,
    .tree-card .list-group-item.active:hover {
        z-index: 0;
    }
    .tree-card-icons .list-group-item-icon,
    .tree-card-icons .list-group-item-icon:focus,
    .tree-card-icons .list-group-item-icon:hover {
        display: inline-table;
        margin: 5px;
    }
    .imageDescription {
        display: table-caption;
        caption-side: bottom;
        word-break: break-word;
    }
    .tree-card &gt; .list-group {
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        word-wrap: break-word;
    }
    .tree-card .form-group {
        margin-left: auto;
        margin-right: auto;
    }
    .decision-btk-component .tree-card &gt; .list-group {
        height: 341px;
    }
    .decision-btk-component .tree-card &gt; .bouwdeel {
        height: 287px;
    }
    .decision-btk-component .tree-card &gt; .onderdeel {
        height: 287px;
    }
    .decision-btk-component .tree-card &gt; .condition {
        height: 287px;
    }
}

.decision-tree-component {
    height: 378px;
    margin: 0 0 10px;
    position: static;
}

.decision-tree-component .decision-tree-keyboard {
    max-width: 115px;
}

.decision-tree-component .decision-tree-keyboard .btn {
    width: 36px;
    margin: 0 0 2px 2px;
    padding: 5px;
    text-transform: uppercase;
}

.decision-tree-component .decision-tree-keyboard .btn.zoeken {
    width: 112px;
    text-transform: none;
}

.vehDecision .tree-card {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    box-shadow: 1px 1px 3px #ddd;
    width: 20%;
    height: 378px;
    /*-webkit-animation-name: slideDown;
        -webkit-animation-duration: 1.0s;*/
    /*z-index: 2;*/
    transition: all 0.5s ease-in-out;
}


/*  */

.vehDecision .tree-card:nth-child(2) {
    left: 5%;
}

.vehDecision .tree-card:nth-child(3) {
    left: 10%;
}

.vehDecision .tree-card:nth-child(4) {
    left: 15%;
}

.vehDecision .tree-card:nth-child(5) {
    left: 20%;
}

.vehDecision .tree-card:nth-child(6) {
    left: 25%;
}

.vehDecision .tree-card:nth-child(7) {
    left: 30%;
}

.vehDecision .tree-card:nth-child(8) {
    left: 35%;
}

.vehDecision .tree-card:nth-child(9) {
    left: 40%;
}

.vehDecision .tree-card:nth-child(10) {
    left: 45%;
}

.vehDecision .tree-card:nth-child(11) {
    left: 50%;
}

.vehDecision .tree-card:nth-child(12) {
    left: 60%;
}

.vehDecision .tree-card:nth-child(13) {
    width: 300px;
    left: 70%;
}


/*  */

.vehDecision .total-cards-12 .tree-card:nth-child(2) {
    left: 5%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(3) {
    left: 10%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(4) {
    left: 15%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(5) {
    left: 20%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(6) {
    left: 25%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(7) {
    left: 30%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(8) {
    left: 35%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(9) {
    left: 40%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(10) {
    left: 45%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(11) {
    left: 50%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(11) {
    left: 50%;
}

.vehDecision .total-cards-12 .tree-card:nth-child(12) {
    left: 60%;
}


/*  */

.vehDecision .total-cards-11 .tree-card:nth-child(2) {
    left: 5%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(3) {
    left: 10%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(4) {
    left: 15%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(5) {
    left: 20%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(6) {
    left: 25%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(7) {
    left: 30%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(8) {
    left: 35%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(9) {
    left: 40%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(10) {
    left: 50%;
}

.vehDecision .total-cards-11 .tree-card:nth-child(11) {
    left: 60%;
}


/*  */

.vehDecision .total-cards-10 .tree-card:nth-child(2) {
    left: 5%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(3) {
    left: 10%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(4) {
    left: 15%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(5) {
    left: 20%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(6) {
    left: 25%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(7) {
    left: 30%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(8) {
    left: 40%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(9) {
    left: 50%;
}

.vehDecision .total-cards-10 .tree-card:nth-child(10) {
    left: 60%;
}


/*  */

.vehDecision .total-cards-9 .tree-card:nth-child(2) {
    left: 5%;
}

.vehDecision .total-cards-9 .tree-card:nth-child(3) {
    left: 10%;
}

.vehDecision .total-cards-9 .tree-card:nth-child(4) {
    left: 15%;
}

.vehDecision .total-cards-9 .tree-card:nth-child(5) {
    left: 20%;
}

.vehDecision .total-cards-9 .tree-card:nth-child(6) {
    left: 30%;
}

.vehDecision .total-cards-9 .tree-card:nth-child(7) {
    left: 40%;
}

.vehDecision .total-cards-9 .tree-card:nth-child(8) {
    left: 50%;
}

.vehDecision .total-cards-9 .tree-card:nth-child(9) {
    left: 60%;
}


/*  */

.vehDecision .total-cards-8 .tree-card:nth-child(2) {
    left: 5%;
}

.vehDecision .total-cards-8 .tree-card:nth-child(3) {
    left: 10%;
}

.vehDecision .total-cards-8 .tree-card:nth-child(4) {
    left: 20%;
}

.vehDecision .total-cards-8 .tree-card:nth-child(5) {
    left: 30%;
}

.vehDecision .total-cards-8 .tree-card:nth-child(6) {
    left: 40%;
}

.vehDecision .total-cards-8 .tree-card:nth-child(7) {
    left: 51%;
}

.vehDecision .total-cards-8 .tree-card:nth-child(8) {
    left: 60%;
}


/*  */

.vehDecision .total-cards-7 .tree-card:nth-child(2) {
    left: 10%;
}

.vehDecision .total-cards-7 .tree-card:nth-child(3) {
    left: 20%;
}

.vehDecision .total-cards-7 .tree-card:nth-child(4) {
    left: 30%;
}

.vehDecision .total-cards-7 .tree-card:nth-child(5) {
    left: 40%;
}

.vehDecision .total-cards-7 .tree-card:nth-child(6) {
    left: 51%;
}

.vehDecision .total-cards-7 .tree-card:nth-child(7) {
    left: 60%;
}


/*  */

.vehDecision .total-cards-6 .tree-card:nth-child(2) {
    left: 11%;
}

.vehDecision .total-cards-6 .tree-card:nth-child(3) {
    left: 22%;
}

.vehDecision .total-cards-6 .tree-card:nth-child(4) {
    left: 35%;
}

.vehDecision .total-cards-6 .tree-card:nth-child(5) {
    left: 51%;
}

.vehDecision .total-cards-6 .tree-card:nth-child(6) {
    left: 65%;
}


/*  */

.vehDecision .total-cards-5 .tree-card:nth-child(2) {
    left: 17%;
}

.vehDecision .total-cards-5 .tree-card:nth-child(3) {
    left: 34%;
}

.vehDecision .total-cards-5 .tree-card:nth-child(4) {
    left: 51%;
}

.vehDecision .total-cards-5 .tree-card:nth-child(5) {
    left: 68%;
}

.vehDecision .total-cards-5 .tree-card:nth-child(9) {
    left: 68%;
}


/*  */

.vehDecision .total-cards-4 .tree-card:nth-child(2) {
    left: 18%;
}

.vehDecision .total-cards-4 .tree-card:nth-child(3) {
    left: 36%;
}

.vehDecision .total-cards-4 .tree-card:nth-child(4) {
    left: 54%;
}

.vehDecision .total-cards-4 .tree-card:nth-child(9) {
    left: 54%;
}


/*  */

.vehDecision .total-cards-3 .tree-card:nth-child(2) {
    left: 19%;
}

.vehDecision .total-cards-3 .tree-card:nth-child(3) {
    left: 38%;
}


/*  */

.vehDecision .total-cards-2 .tree-card:nth-child(2) {
    left: 19%;
}

.vehDecision .tree-card:nth-child(9) {
    right: 0px;
    left: inherit;
}

.vehDecision .tree-card &gt; .list-group {
    overflow: auto;
    height: 322px;
}

.vehDecision .tree-card &gt; .list-group.no-addition {
    overflow: auto;
    height: 378px;
}

.vehDecision .bread-crums {
    overflow: auto;
    overflow-y: hidden;
}

.vehDecision .bread-crum {
    display: inline-flex;
}

.vehDecision .middle {
    position: relative;
    left: 0;
    top: 20px;
}

.vehDecision .tree-card .list-group-item.active,
.vehDecision .tree-card .list-group-item.active:focus,
.vehDecision .tree-card .list-group-item.active:hover {
    z-index: 0;
}

.vehDecision .tree-card &gt; .list-group {
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    word-wrap: break-word;
}

.vehDecision .tree-card .form-group {
    margin-left: auto;
    margin-right: auto;
}

.vehDecision .decision-btk-component .tree-card &gt; .list-group {
    height: 341px;
}

.vehDecision .decision-btk-component .tree-card &gt; .bouwdeel {
    height: 287px;
}

.vehDecision .decision-btk-component .tree-card &gt; .onderdeel {
    height: 287px;
}

.vehDecision .decision-btk-component .tree-card &gt; .condition {
    height: 287px;
}


/* BTK */

.decision-btk-component .tree-card {
    width: 21%;
}

.decision-btk-component .tree-card:nth-child(2) {
    left: 20%;
}

.decision-btk-component .tree-card:nth-child(3) {
    left: 40%;
}

.decision-btk-component .tree-card:nth-child(4) {
    left: 60%;
}

.decision-btk-component .tree-card:nth-child(5) {
    width: 20%;
    left: 80%;
    z-index: 999;
}

.decision-tree-component .foto-edit .col-sm-12,
.decision-btk-component .foto-edit .col-sm-12 {
    padding: 0;
}

.defects-list-component {
    height: 293px;
    top: 387px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-bottom: 0;
}

.defects-list-component .table &gt; tbody &gt; tr.active &gt; td,
.defects-list-component .table &gt; tbody &gt; tr.active &gt; th {
    background-color: #337ab7;
    color: #fff;
}

.decision-btk-component .modal-dialog {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.decision-btk-component .modal-dialog {
    top: 35px;
}

.decision-tree-component .modal-dialog {
    top: 95px;
}

.decision-tree-component .modal-dialog .modal-content,
.decision-btk-component .modal-dialog .modal-content {
    left: 3px;
    border-radius: 0;
}

.decision-tree-component .modal-dialog .modal-content canvas,
.decision-btk-component .modal-dialog .modal-content canvas {
    margin: 0 auto;
    display: block;
}

.defects-btk-list-component.panel {
    min-height: 220px;
}


/* ==========================================================================
       Keuring - Canvas
       ========================================================================== */

.modal-body.canvas canvas {
    border: 2px dashed #bbb;
    border-radius: 5px;
    text-align: center;
    color: #bbb;
    margin: 0 0 10px 0;
    max-width: 100%;
}

.modal-body.canvas ul.bar {
    list-style: none;
    overflow: auto;
    padding: 0;
}

.modal-body.canvas ul.bar li {
    float: left;
    padding: 0;
}

.modal-body.canvas ul.bar li + li {
    margin: 0 0 0 20px
}

.modal-body.canvas ul.bar li .colorbutton {
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 5px solid #666;
    border-radius: 4px;
}

.colorbutton.color_blue {
    background-color: #2889FF;
}

.colorbutton.color_red {
    background-color: #D81C34;
}

.colorbutton.color_green {
    background-color: #3ABB1C;
}

.colorbutton.color_yellow {
    background-color: #DDE216;
}

.colorbutton.color_grey {
    background-color: #505050;
}

.colorbutton.color_white {
    background-color: #ffffff;
}

.foto-edit .modal {
    /*        overflow: visible;*/
}

.foto-edit .modal .modal-content {
    top: 0px;
    z-index: 1050;
}

.foto-edit .modal .modal-body.canvas {
    text-align: center;
}

.btk-defects input,
.btk-defects textarea {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 2.5%;
}

.btk-defects textarea {
    min-height: 100px;
}


/* ==========================================================================
   BTK Keuring Maaregel modal
   ========================================================================== */

.maatregel-popup.modal.modal-wide {
    top: 20px;
}

.maatregel-popup .kosten h5 {
    min-height: 30px;
}

.maatregel-popup .maatregel .panel .list-group {
    max-height: 400px;
    overflow-y: auto;
}

.maatregel-popup .kosten {
    color: #aaa;
}

.maatregel-popup .kosten.active {
    color: #333;
}

.maatregel-popup .list-group .list-group-item.selected {
    background-color: #BBD8F1;
}

.maatregel-popup .list-group .list-group-item.selected.active {
    background-color: #337ab7;
    padding-right: 30px;
}

.maatregel-popup .list-group .list-group-item.selected.active .glyphicon {
    position: absolute;
    top: 13px;
    right: 0;
}

.maatregel-popup .list-group .list-group-item span.delete-icon {
    float: right;
}

.maatregel-popup .ws-errorbox {
    margin: 0;
    padding: 0;
}

.opmerking-popup .list-group .list-group-item.selected {
    background-color: #BBD8F1;
}

.opmerking-popup .list-group .list-group-item.selected.active {
    background-color: #337ab7;
}

.opmerking-popup .list-group {
    height: 250px;
    overflow: auto;
}

.opmerking-popup .opmerkingtekst {
    margin-bottom: 20px;
}

.opmerking-popup .opmerkingtekst textarea {
    height: 289px;
}

.opmerking-popup .opmerkingtekstaanpassen textarea {
    height: 150px;
}

.opmerking-popup .list-group .list-group-item span.delete-icon {
    float: right;
}


/* ==========================================================================
   Show Categories Component
   ========================================================================== */

.show-categories-component {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 15px 20px;
    margin: 20px 0;
}

.show-categories-component .categories {
    display: inline-block;
}


/* ==========================================================================
   Social Share Buttons Component
   ========================================================================== */

.social-share-buttons-component {
    border-top: 5px solid #f2f2f2;
    padding: 20px 0;
}

.social-share-buttons-component .btn {
    margin-right: 10px;
}


/* ==========================================================================
   Instagram / Twitter embed tweet component
   ========================================================================== */

.instagram-embed-post-component iframe,
.twitter-embed-tweet-component twitterwidget,
.twitter-embed-tweet-component iframe {
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ==========================================================================
   Gallery component
   ========================================================================== */

@-webkit-keyframes a {
    0% {
        -webkit-transform: translate(-50%, -50%) rotateX(0) rotateY(0);
        transform: translate(-50%, -50%) rotateX(0) rotateY(0)
    }
    50% {
        -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0);
        transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0)
    }
    to {
        -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg);
        transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg)
    }
}

@keyframes a {
    0% {
        -webkit-transform: translate(-50%, -50%) rotateX(0) rotateY(0);
        transform: translate(-50%, -50%) rotateX(0) rotateY(0)
    }
    50% {
        -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0);
        transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0)
    }
    to {
        -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg);
        transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg)
    }
}

.fluidbox {
    outline: none
}

.fluidbox__overlay {
    background-color: hsla(0, 0%, 100%, .85);
    cursor: pointer;
    cursor: zoom-out;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.fluidbox--opened .fluidbox__overlay {
    pointer-events: auto
}

.gallery-component .fluidbox__wrap {
    background-position: center center;
    background-size: cover;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    margin-bottom: 17px;
}

.gallery-component .position-1 .fluidbox__wrap {
    margin-bottom: 27px;
}

.fluidbox__wrap img {
    max-width: 100%;
    height: auto;
}

.fluidbox--closed .fluidbox__thumb,
.fluidbox__thumb {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.fluidbox__ghost {
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    transition-duration: 0s, .5s;
    transition-delay: 0s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform
}

.fluidbox--opened .fluidbox__ghost {
    cursor: pointer;
    cursor: zoom-out
}

.fluidbox--closed .fluidbox__ghost {
    -webkit-transition-delay: .2s, 0s;
    transition-delay: .2s, 0s
}

.fluidbox__loader {
    opacity: 0;
    -webkit-perspective: 200px;
    perspective: 200px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.fluidbox__loader:before {
    background-color: hsla(0, 0%, 100%, .85);
    content: '';
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%;
    padding-bottom: 20%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.fluidbox--loading .fluidbox__loader {
    opacity: 1;
    -webkit-transition: opacity .5s ease-in-out .5s;
    transition: opacity .5s ease-in-out .5s
}

.fluidbox--loading .fluidbox__loader:before {
    -webkit-animation: a 1s 0s infinite ease-in-out forwards;
    animation: a 1s 0s infinite ease-in-out forwards
}

.fluidbox--opened .fluidbox__wrap {
    overflow: inherit;
}

.gallery-component a[data-fluidbox] div.fluidbox__wrap::after {
    opacity: 0.80;
    display: block;
    content: "";
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-image: url('/apps/com.itris.klantportaal/app-files/resources/img/enlarge_icon.png');
    position: absolute;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.gallery-component a[data-fluidbox] div.fluidbox__wrap:hover::after {
    opacity: 1;
}

.gallery-component a.fluidbox--opened[data-fluidbox] div.fluidbox__wrap::after {
    opacity: 0;
    display: none;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
}

.gallery-component.variant_0 img {
    width: 100%;
    height: auto;
}


.gallery-component figcaption {
    font-weight: 300;
    color: #666;
    width: 100%;
    border-bottom: 1px solid #dedede;
    padding: 20px 0;
}

@media only screen and (max-width: 1024px) {
    .gallery-component .container:before,
    .gallery-component .container:after,
    .gallery-component .row:before,
    .gallery-component .row:after {
        content: normal;
    }
}

@media only screen and (max-width: 768px) {
    .gallery-component figcaption p {
        margin: 0 15px;
    }
}


/* Media queries, unrelated to functionality of Fluidbox */

@media only screen and (max-width: 600px) {
    .gallery-component .gallery a,
    .gallery-component .gallery a[class^='col'] {
        margin-bottom: .5rem;
        width: 100%;
    }
    .gallery-component a[data-fluidbox] img {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .gallery-component .message {
        border: 0;
        border-top: .75rem solid #F26C4F;
    }
    .gallery-component a[class^='float'] {
        float: none;
        margin: 0 0 1rem 0;
        width: 100%;
    }
}


/* ==========================================================================
   Hightlight Text Component
   ========================================================================== */

.highlight-text-component {
    border: 1px solid #dce0e0;
    background-color: #fff;
    padding: 10px 0 0 25px;
    margin: 30px 0;
}

.highlight-text-component h3 {
    background-repeat: no-repeat;
    background-position: left;
    margin: 0 0 8px;
    border-bottom: 1px solid #dce0e0;
    padding: 15px 15px 15px 55px;
}


/* ==========================================================================
   Stream Component &amp; Stream Block Component
   ========================================================================== */

.stream-component {
    border-bottom: 1px solid #eaeaea;
    padding: 10px 0 30px 0;
}

.stream-component &gt; .container &gt; .btn {
    letter-spacing: 1px;
    font-weight: normal;
}

.stream-block-component {
    margin-bottom: 30px;
    height: 390px;
}

@media (min-width: 768px) {
    .stream-block-component {
        /* use with col-*-* bootstrap grid */
        display: inline-block;
    }
}


/* Stream block contains components */

.stream-block-component .picture-component {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.stream-block-component .picture-component h3,
.stream-block-component .picture-component h3 {
    margin-top: 0
}


/* ==========================================================================
   Social: Last post Component
   ========================================================================== */

.social-last-post-component {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}

.social-last-post-component figure {
    position: relative;
}

.social-last-post-component figure figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 15px;
}

.social-last-post-component figure figcaption address {
    width: 60%;
    display: inline-block;
    margin: 0
}

.social-last-post-component figure figcaption address a {
    color: #000;
    font-weight: bold;
    margin-left: 5px;
}

.social-last-post-component figure figcaption time {
    width: 40%;
    display: inline-block;
    font-weight: normal;
    color: #000;
    text-align: right
}

.social-last-post-component blockquote {
    padding: 20px;
    font-size: 16px;
    margin: 0;
    border: 0;
}

.social-last-post-component footer a {
    color: #000;
    text-decoration: underline
}

@media only screen and (min-width: 768px) {
    .stream-block-component.size_2 .social-last-post-component article {
        height: 100%;
    }
    .stream-block-component.size_2 .social-last-post-component figure {
        height: 100%;
        width: 70%;
        max-width: 390px;
        position: absolute;
    }
    .stream-block-component.size_2 .social-last-post-component blockquote {
        position: relative;
        height: 100%;
        margin-left: 70%;
    }
    .stream-block-component.size_2 .social-last-post-component footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.5);
        margin-bottom: 20px;
    }
}


/* ==========================================================================
   Hightlight Page Component
   ========================================================================== */

.highlight-page-component {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}

.highlight-page-component .highlight-background {
    position: absolute;
    width: 100%;
    height: 185px;
    background-color: #f5f5f5;
    background-position: 50% 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.stream-block-component.size_2 .highlight-background {
    height: 100%;
}

.highlight-page-component:hover .highlight-background {
    -moz-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

article.highlight-page-component a {
    /* need the article. to make it more specific then body a */
    position: absolute;
    display: block;
    color: #000;
    padding: 15px;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.highlight-page-component a:hover,
.highlight-page-component a:active {
    text-decoration: none;
}

.stream-block-component.size_2 .highlight-page-component a {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: -o-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: -ms-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.6) 100%);
}

.stream-block-component.size_2 .highlight-page-component a h2 {
    color: #fff;
}

.highlight-page-component a .highlight-content {
    position: absolute;
    top: 185px;
    margin-bottom: 15px;
    margin-right: 15px;
}

.stream-block-component.size_2 a .highlight-content {
    top: auto;
    bottom: 0;
}

.highlight-page-component h2 {
    font-size: 22px;
}

.stream-block-component.size_2 .highlight-page-component h2 {
    font-size: 32px;
}

.highlight-page-component p {
    font-weight: 300;
}


/* ==========================================================================
   Social Search Component
   ========================================================================== */

.social-search-component h3,
.social-search-component ol {
    display: inline-block;
    padding-left: 0;
    list-style: none
}

.social-search-component ol &gt; li {
    display: inline-block;
    width: 17.6%;
    margin-right: 3%;
}

.social-search-component ol &gt; li:nth-child(5) {
    margin-right: 0;
}

.social-search-component ol &gt; li img {
    width: 100%;
    height: auto;
}

.social-search-component ol &gt; li &gt; p {
    line-height: 16px;
}

.social-search-component h3 {
    margin-top: 0;
}

.social-search-component h4 {
    margin-top: 0;
    line-height: 34px;
}

.social-search-component address {
    margin: 0.5em 0 0 0;
}

.social-search-component._type_0 address {
    display: inline;
}

.social-search-component address a {
    font-weight: bold;
}

.social-search-component time a {
    font-size: 10px;
    color: #000;
    text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 991px) {
    .social-search-component ol &gt; li {
        width: 31.33%;
    }
    .social-search-component ol &gt; li:nth-child(5) {
        margin-right: inherit;
    }
    .social-search-component ol &gt; li:nth-child(3) {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .social-search-component ol &gt; li {
        width: 47%;
    }
    .social-search-component ol &gt; li:nth-child(5) {
        margin-right: inherit;
    }
    .social-search-component ol &gt; li:nth-child(2) {
        margin-right: 0;
    }
}


/* ==========================================================================
   Q&amp;A Group (question and answer group) Component
   ========================================================================== */

.question-answer-group-component {
    margin-bottom: 20px;
}

.question-answer-group-component h3 {
    margin-bottom: 4px;
}


/* ==========================================================================
   Q&amp;A (question and answer) Component
   ========================================================================== */

.question-answer-component .panel {
    box-shadow: 0 0 0;
    -webkit-box-shadow: 0 0 0;
    border: none;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 5px;
}

.question-answer-component .panel-heading {
    background: none;
    border: none;
    padding-bottom: 2px;
}

.question-answer-component .panel-heading a {
    margin-left: 10px;
}

.question-answer-component .panel-heading a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: left;
}

.question-answer-component .panel-heading a.collapsed:before {
    content: "\e080";
}

.question-answer-component .panel-body {
    margin-left: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
}


/* ==========================================================================
   Dynamic Content Component
   ========================================================================== */

.dynamic-content-component .row-centered {
    text-align: center;
}

.dynamic-content-component .col-centered {
    display: inline-block;
    float: none;
}

.dynamic-content-component .targeted-content-block &gt; * {
    text-align: center;
    font-size: 20px;
    display: block;
}

.dynamic-content-component .targeted-content-block {
    padding-bottom: 20px;
}

.dynamic-content-component .targeted-content-block img {
    padding: 0 0 20px;
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
}

.dynamic-content-component .targeted-content-block p {
    font-size: 16px;
}


/* ==========================================================================
   Analytics Component
   ========================================================================== */

#analytics-panel-filter .panel-heading a:after {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    color: grey;
}

#analytics-panel-filter .panel-heading a.collapsed:after {
    content: "\e080";
}

#analytics-panel-filter #pagePicker {
    margin-bottom: 50px;
}

#analytics-panel-filter .panel-body div {
    padding-bottom: 5px;
}

#analytics-panel-filter .panel-body button {
    bottom: 0;
    right: 0;
    position: absolute;
    margin-right: 30px;
    width: 150px;
}

#analytics-panel-filter .panel-body output {
    color: inherit;
}

@media screen and (max-width: 768px) {
    #analytics-panel-filter label.control-label {
        padding-top: 5px;
    }
}

#analytics-panel-filter #analyticsYearPicker,
#analytics-panel-filter #analyticsMonthPicker {
    display: inline-block;
    margin-left: 10px;
    width: auto;
}

.analytics-diagram {
    margin-bottom: 15px;
}

.analytics-diagram img {
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 5px;
    border-radius: 4px;
}

#analytics-table-search td:nth-match() {
    text-align: center;
    width: 10%;
    padding-left: 3px;
    padding-right: 3px;
}

#analytics-table-search button,
#analytics-table-bookmark button {
    background: none;
    border: 0;
    padding: 0;
}

#analytics-table-search a.glyphicon,
#analytics-table-bookmark a.glyphicon {
    font-size: 1.4em;
    text-decoration: none;
}

#analytics-table-search button &gt; a:hover {
    text-decoration: none;
}

#analytics-table-search tr table,
#analytics-table-bookmark tr table {
    border-collapse: separate;
    padding-left: 50px;
    padding-top: 5px;
    padding-bottom: 5px;
}

#analytics-table-search tr table td,
#analytics-table-bookmark tr table td {
    padding: 4px 8px;
}

#analytics-table-bookmark td:nth-child(n + 5) {
    text-align: center;
    width: 15%;
    padding-left: 3px;
    padding-right: 3px;
}

#analytics-table-bookmark td:nth-child(6) {
    width: 10%;
}

.date-picker-radio label {
    width: 100px;
}

.date-picker-radio input:nth-child(2) {
    width: 180px;
}

.analytics-component #no-users-error {
    text-align: center;
    padding-top: 15px;
}


/* ==========================================================================
   Response list 2 Component sortbuttons 
   ========================================================================== */

.response-list-2-component th.sort-button {
    cursor: pointer;
}

.response-list-2-component th.sort-button label {
    cursor: pointer;
}


/* ==========================================================================
   Page comment component 
   ========================================================================== */

.page-comment-component {
    background-color: #F9F9F9;
    border-top: 1px solid #000;
    padding: 0 15px;
    margin-top: 15px;
}

.page-comment-component h3 {
    margin-top: 0;
}

.page-comment-component .thumbnail {
    padding: 0px;
}

.page-comment-component .panel {
    position: relative;
}

.page-comment-component .panel &gt; .panel-heading:after,
.page-comment-component .panel &gt; .panel-heading:before {
    position: absolute;
    top: 11px;
    left: -16px;
    right: 100%;
    width: 0;
    height: 0;
    display: block;
    content: " ";
    border-color: transparent;
    border-style: solid solid outset;
    pointer-events: none;
}

.page-comment-component .panel &gt; .panel-heading:after {
    border-width: 7px;
    border-right-color: #f7f7f7;
    margin-top: 1px;
    margin-left: 2px;
}

.page-comment-component .panel &gt; .panel-heading:before {
    border-right-color: #ddd;
    border-width: 8px;
}


/* ==========================================================================
   Events Components
   ========================================================================== */

.calendar-event-list-component {}

.calendar-event-list-component .event-list &gt; li {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 5px rgb(51, 51, 51);
    box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.7);
    padding: 0px;
    margin: 0px 0px 20px;
}

.calendar-event-list-component .event-list &gt; li time {
    display: inline-block;
    width: 100%;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
}

.calendar-event-list-component .event-list &gt; li time &gt; span {
    display: none;
}

.calendar-event-list-component .event-list &gt; li time &gt; .day {
    display: block;
    font-size: 48pt;
    font-weight: 100;
    line-height: 1;
}

.calendar-event-list-component .event-list &gt; li time &gt; .month {
    display: block;
    font-size: 20pt;
    font-weight: 900;
    line-height: 1.5;
}

.calendar-event-list-component .event-list &gt; li &gt; a.event-item:hover {
    text-decoration: none;
    background-color: #eee;
}

.calendar-event-list-component .event-list &gt; li .event-body {
    padding: 0 15px 15px 15px;
}

@media (min-width: 768px) {
    .calendar-event-list-component .event-list &gt; li time {
        width: 120px;
        height: 100px;
        padding: 0px;
        margin: 0px;
        float: left;
    }
    .calendar-event-list-component .event-list &gt; li &gt; a.event-item {
        display: block;
        line-height: 0.1;
    }
    .calendar-event-list-component .event-list &gt; li &gt; a.event-item p {
        line-height: 20px;
    }
    .calendar-event-list-component .event-list &gt; li .event-body {
        height: 100px;
        display: block;
        overflow: hidden;
    }
    .calendar-event-list-component .event-list &gt; li .event-body h3 {
        margin-top: 15px;
    }
}


/* ==========================================================================
   Notifications Component 
   ========================================================================== */

.notifications-component {
    position: relative;
    margin-bottom: 40px;
}

.notifications-component .notifications-icon {
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: 50px;
    color: rgba(0, 0, 0, 1);
    border-radius: 25px;
    font-size: 25px;
    padding: 8px 13px;
    border: 1px solid black;
}

.notifications-component .notifications-count {
    position: absolute;
    top: -4px;
    left: 46px;
    height: 24px;
    background-color: rgba(255, 0, 0, 1);
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0 7px;
    z-index: 9;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s 0.4s;
    -moz-transition: all 0.3s 0.4s;
    transition: all 0.3s 0.4s;
}

.notifications-component .notifications-count.show {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.notifications-component .notifications-title {
    border-left: 5px solid rgb(138, 138, 138);
    margin: 0 0 0 23px;
    line-height: 128px;
    height: 84px;
    padding-left: 28px;
}

.notifications-component .notifications-list {
    position: relative;
    border-left: 5px solid #fff;
    margin-left: 23px;
}

.notifications-component .notifications-list.initialized {
    -webkit-transition: height 0.7s;
    -moz-transition: height 0.7s;
    -ms-transition: height 0.7s;
    -o-transition: height 0.7s;
    transition: height 0.7s;
}

.notifications-component .notification {
    margin-left: -5px;
    margin-bottom: 10px;
    background-color: #fff;
    border-left: 5px solid rgba(0, 0, 0, 1);
    width: 100%;
    left: 0;
}

.notifications-component .notification.initialized {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transition: top 0.7s;
    -moz-transition: top 0.7s;
    -ms-transition: top 0.7s;
    -o-transition: top 0.7s;
    transition: top 0.7s;
}

.notifications-component .notification.new {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: opacity 0.3s 0.4s, transform 0.3s 0.4s, top 0.7s;
    -moz-transition: opacity 0.3s 0.4s, transform 0.3s 0.4s, top 0.7s;
    transition: opacity 0.3s 0.4s, transform 0.3s 0.4s, top 0.7s;
}

.notifications-component .notification.new.show {
    position: relative;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.notifications-component .notification a {
    position: relative;
    display: block;
    width: 100%;
    padding: 5px 45px 5px 25px;
    border: 1px solid black;
}

.notifications-component .notification a:hover {
    text-decoration: none;
}

.notifications-component .notification .notification-icon {
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 5px;
}

.notifications-component .notification .notification-text h4,
.notifications-component .notification .notification-text p {
    color: #555;
    text-align: left;
    margin: 0;
}

.notifications-component .notification .notification-text h4 {
    font-weight: 600;
    font-size: 18px;
}

.notifications-component .notification .notification-text p {
    font-size: 16px;
    line-height: 18px;
}

.notifications-component .load-icon{
    width: 0;
    margin: 0 auto 10px auto;
}

/* ==========================================================================
   Download-component
   ========================================================================== */

.download-component {
    margin: 0px auto;
    display: table;
    position: relative;
    margin: 30px 0px;
}

.download-component .filename {
    padding-left: 7px;
    padding-right: 7px;
}

.download-component .filename {
    display: inline-block;
}

.download-component .table {
    margin-bottom: 0px;
}

.download-component i {
    font-size: 30px;
}

.download-component a,
.download-component a:hover {
    text-decoration: underline;
}


/* ==========================================================================
   Twitter Timeline / images 
   ========================================================================== */

.social-search-component a {
    text-decoration: none;
}

.social-search-component .timeline {
    margin: 70px 0px;
}

.social-search-component .well {
    padding: 45px 0;
    box-shadow: none;
    margin-top: 20px;
}

.social-search-component .well-hidden {
    background-color: inherit;
    border: none;
    margin: 20px 0;
    padding: 0!important;
}

.social-search-component .well &gt; .well-content {
    padding: 0 15px;
}

.social-search-component .well &gt; .well-content .row {
    margin: 0px;
}

@media (min-width: 1200px) {
    .social-search-component .well {
        padding: 45px 0 20px;
    }
    .social-search-component .well &gt; .well-content {
        margin-right: auto;
        margin-left: auto;
        max-width: 968px;
        padding: 0;
    }
}

.social-search-component h3,
.social-search-component ol {
    padding-left: 0;
    list-style: none
}

.social-search-component .media {
    width: 100%;
    padding: 0px 0px 30px 0px;
    font-size: 18px;
    position: relative;
    border-bottom: 1px solid #efefef;
    margin-bottom: 30px;
}

.social-search-component .well .media {
    border-bottom: 1px solid #c3c3c3;
}


/* testen met petra of dit moet blijven */

.social-search-component .well .media:last-child {
    margin-bottom: 0px;
}

.social-search-component .well .media:last-child .media-body {
    padding-bottom: 0px;
}


/* EINDE testen met petra of dit moet blijven */

.social-search-component .media .author {
    font-size: 12px;
    background-color: #efefef;
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 0px;
    width: auto;
    height: 20px;
    left: initial;
    top: initial;
    padding: 0px 10px;
}

.social-search-component ol &gt; li {
    display: inline-block;
    width: 17.6%;
    margin-right: 3%;
}

.social-search-component ol &gt; li:nth-child(5) {
    margin-right: 0;
}

.social-search-component ol &gt; li img {
    width: 100%;
    height: auto;
}

.social-search-component ol &gt; li &gt; p {
    line-height: 16px;
}

.social-search-component h3.col-xs-8 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.social-search-component h4.col-xs-4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    text-align: right;
    padding-left: 15px;
    padding-right: 0px;
}

.social-search-component address {
    margin: 0.5em 0;
}

.social-search-component._type_0 address {
    display: inline;
}

.social-search-component address a {
    font-weight: bold;
}

.social-search-component time a {
    font-size: 10px;
    color: #000;
    text-decoration: underline;
}

.social-search-component ol &gt; li .author {
    margin-bottom: 15px;
    display: block;
}

#custom-trigger-social {
    position: fixed;
    height: 250px;
    margin-top: -440px;
    text-align: left;
    padding: 20px 0px 25px 0px;
    opacity: 0;
    z-index: 1090;
    text-align: left;
    transition: all .25s ease-in-out;
    transform: translateY(100%);
    top: 50%;
    width: 0px;
    right: 20%;
}

.social-search-component .fluidbox--opened .fluidbox__ghost {
    left: -100px!important;
}

#custom-trigger-social .container {
    width: 250px;
    right: 0px;
    margin: 0;
}

#custom-trigger-social .left,
#custom-trigger-social .right {
    width: 100%;
    margin-bottom: 10px;
}

#custom-trigger-social.visible {
    opacity: 1;
    width: 275px;
}

#custom-trigger-social ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

#custom-trigger-social li {
    padding: 0 1rem;
}

#custom-trigger-social .img-desc {
    height: 70px;
    text-align: right;
    width: 350px;
    float: right;
}

@media screen and (max-width: 1024px) {
    #custom-trigger-social {
        right: 10%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .social-search-component ol &gt; li {
        width: 31.33%;
    }
    .social-search-component ol &gt; li:nth-child(5) {
        margin-right: inherit;
    }
    .social-search-component ol &gt; li:nth-child(3) {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    #custom-trigger-social {
        right: 0%;
    }
    #custom-trigger-social .container {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .social-search-component ol &gt; li .author {
        text-align: center;
        font-size: 12px;
    }
    .social-search-component ol &gt; li:nth-child(5) {
        margin-right: inherit;
    }
}

@media screen and (max-width: 730px) {
    #custom-trigger-social {
        margin-top: -365px;
    }
}

@media screen and (max-width: 480px) {
    .social-search-component h3.col-xs-8 {
        width: 100%;
    }
    .social-search-component h4.col-xs-4 {
        width: 100%;
        text-align: left;
        margin-bottom: 30px;
        padding-left: 0px;
    }
    .social-search-component ol &gt; li {
        width: 47%;
    }
    .social-search-component ol &gt; li:nth-child(5) {
        display: none;
    }
    #custom-trigger-social {
        margin-top: 400px;
    }
    #custom-trigger-social.visible {
        width: 100%;
        bottom: 35%;
        height: auto;
        text-align: center;
        margin-top: 0px
    }
    .social-search-component .fluidbox--opened .fluidbox__ghost {
        left: 0px!important;
        top: -20px!important;
    }
    #custom-trigger-social .container {
        width: 100%;
    }
}


/* ==========================================================================
   User 2 component 
   ========================================================================== */

.user-2-component {}

.user-2-component .list-item-container {
    float: left;
    width: 30%;
    text-align: center;
    margin: 20px 0 0 0;
    cursor: pointer;
}

.user-2-component .list-item-container button {
    margin: 40px 0 0 0;
}

.user-2-component .response-text-2-component {
    display: inline-block;
}

.user-2-component span.svg-container {
    display: inline-block;
    width: 120px;
    height: 120px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 50%;
}

.user-2-component p.form-control-static {
    margin: 0;
    padding-top: 0;
}


/***************************************************************************************************************
*            language selector component
***************************************************************************************************************/

#lang-selector {
    margin: 0;
    display: inline-block;
    cursor: pointer;
    color: #ccc;
    font-size: 16px;
    z-index: 1000;
    /* height: 34px; */
    padding-left: 0;
    width: 100%;
}

#lang-selector .wrapper {
    display: inline-block;
    margin: 0;
    width: 100%;
    position: relative;
    padding-top: 27px;
    z-index: -10;
}

#lang-selector .wrapper.hover {
    z-index: 1;
}

#lang-selector .wrapper .divider {
    top: 15px;
}

#lang-selector .globe {
    padding-left: 10px;
    height: 18px;
    top: -6px;
    position: absolute;
    right: 39px;
}

#lang-selector .parent {
    height: 100%;
    position: relative;
    display: block;
    cursor: pointer;
    right: 0px;
    padding: 0px 0px 0 10px;
    z-index: 2;
    -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
    -webkit-transition-delay: .8s;
    text-align: center;
    top: -3px;
}

#lang-selector .parent i {
    color: #999999;
    font-size: 10px;
}

#lang-selector .parent.hover,
#lang-selector .content.hover ~ .parent {
    background: #fff;
    -webkit-transition-delay: 0s, 0s, 0s;
}

#lang-selector .content.hover ~ .parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 0;
}

#lang-selector .content {
    position: absolute;
    top: 28px;
    right: 0;
    display: block;
    z-index: 1;
    height: 0;
    width: 275px;
    padding-top: 0px;
    -webkit-transition: all .2s ease;
    font-size: 16px;
}

#lang-selector .wrapper .content.hover,
#lang-selector .wrapper:active .content {
    width: 275px;
    right: 0px;
    position: absolute;
    z-index: 3;
    padding-top: 29px;
}

#lang-selector .content div {
    background: #fff;
    margin: 0;
    overflow: hidden;
    height: 0;
    -webkit-transition: all .5s ease;
}

#lang-selector .content.hover div {
    height: auto;
    overflow: visible;
}

#lang-selector .content #translate-container {
    height: 0;
    width: 0;
    -webkit-transition: all 0s ease;
    position: relative;
    background: #ffffff;
    padding: 0px;
}

#lang-selector .content.hover #translate-container {
    height: auto;
    width: 350px;
    padding: 15px;
    -webkit-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
    -moz-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
    box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
    margin-top: 12px;
}

#lang-selector #translate-container:before {
    font-family: fontAwesome;
    content: "\f0de";
    color: white;
    position: absolute;
    top: -20px;
    right: 35px;
    font-size: 35px;
    z-index: 0;
    text-shadow: -1px -5px 5px #f3f3f3;
}

#lang-selector #translate-container h3 {
    padding: 0px;
    margin: 0px 0px 10px 0px
}

#lang-selector #translate-container .close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

#translate-container &gt; a:nth-child(6) {
    position: relative;
    top: -5px;
}

#translate-container &gt; a:nth-child(8) {
    position: relative;
    top: -5px;
}

#lang-selector .content .skiptranslate.goog-te-gadget {
    height: 70px;
    padding: 0px;
    overflow: initial;
    margin-top: 20px;
}

#lang-selector .content .skiptranslate.goog-te-gadget select {
    width: 100%;
}

body.no-padding .goog-te-banner-frame {
    display: none;
}

#lang-selector .content ul a {
    text-decoration: none;
}

#lang-selector .content li {
    list-style: none;
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    padding-left: 10px;
    border-top: 1px solid #ccc;
}


/* Translate option in mobile menu */

.close-popup {
    position: absolute;
    right: 7px;
    top: 7px;
    font-size: 18px;
    color: grey;
}

.popover-content .close-popup:before {
    font-family: fontAwesome;
    padding-right: 7px;
    padding-left: 207px;
    text-decoration: none;
    content: "\f00d";
}

.goog-te-banner-frame {
    display: none!important;
}

#lang-selector #translate-container h3 {
    padding: 0px;
    margin: 5px 0px 10px 0px;
}

#lang-selector .content.hover #translate-container {
    min-height: 400px!important;
    margin: 22px 0px 0px 3px!important;
    -webkit-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
    -moz-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
    box-shadow: 1px 1px 12px 0px rgb(104, 101, 101)!important;
    color: black;
    top: 10%;
    left: 0;
    border: none!important;
    width: 98%;
    z-index: 1000;
} 

#lang-selector #translate-container:before {
    font-family: fontAwesome;
    content: "\f0de";
    color: rgba(255, 255, 255, 0)!important;
    position: absolute;
    top: -20px;
    right: 35px;
    font-size: 35px;
    z-index: 0;
    text-shadow: -1px -5px 5px rgba(243, 243, 243, 0);
}

#lang-selector .parent.hover,
#lang-selector .content.hover ~ .parent,
#read .parent.hover,
#read .content.hover {
    background: rgba(255, 255, 255, 0);
    -webkit-transition-delay: 0s, 0s, 0s;
    width: 100%;
    color: white;
}

#lang-selector .wrapper,
#read .wrapper {
    z-index: 1000;
    padding-top: 0;
    margin-left: 18px;
}

#lang-selector .globe {
    padding-left: 10px;
    height: 18px;
    top: -6px;
    position: absolute;
    right: 39px;
    display: none!important;
}

#lang-selector .country {
    display: block;
    margin-top: -3px;
    float: left;
    margin-left: 10px;
    pointer-events: none;
} 




@media screen and (max-width: 767px) and (orientation: landscape) and (orientation: portrait) {
    /* Translate option in mobile menu */
    #lang-selector .content.hover #translate-container,
    #read .content.hover #read-container {
        min-height: auto!important;
        margin: 35px 0px 0px 2px!important;
        -webkit-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
        -moz-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
        box-shadow: 1px 1px 12px 0px rgb(104, 101, 101)!important;
        color: black;
        position: fixed!important;
        border: none!important;
        height: 80vh!important;
        font-size: 12px;
        min-width: 98%;
        top: 10%;
        left: 0.5%;
        z-index: 1000;
    }

    #lang-selector .content .skiptranslate.goog-te-gadget {
        height: 50px;
        padding: 0px;
        overflow: initial;
        margin-top: 0px;
    }

    #lang-selector #translate-container h3,
    #read #read-container h3 {
        padding: 0px;
        margin: -10px 0px 10px 0px;
    }

    #translate-container p {
        font-size: 14px!important;
    }

    .close-popup {
        position: absolute;
        right: 3%;
        top: 5%;
        font-size: 14px;
    }

    #lang-selector .country {
        color: #fff;
    }
    #lang-selector .country:before{
        color: #fff;
    }
}

@media screen and (max-width: 480px) {
    /*	 Translate option in mobile menu */
    #lang-selector .content.hover #translate-container,
    #read .content.hover #read-container {
        /* margin: 35px 0 0 0!important;
        -webkit-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
        -moz-box-shadow: 1px 1px 12px 0px rgba(189, 189, 189, 1);
        box-shadow: 1px 1px 12px 0px rgb(104, 101, 101)!important;
        color: black;
        position: fixed!important;
        border: none!important;
        height: 78%!important;
        font-size: 12px;
        min-width: 99%!important;
        top: 10%;
        left: 0;
        z-index: 1000; */
        
        margin: 35px 5px 5px 5px!important; 
        -webkit-box-shadow: 1px 1px 12px 0px rgba(189,189,189,1);
        -moz-box-shadow: 1px 1px 12px 0px rgba(189,189,189,1);
        box-shadow: 1px 1px 12px 0px rgb(104,101,101) !important;
        color: black;
        position: fixed!important;
        border: none!important;
        /* height: 78%!important; */
        font-size: 12px;
        min-width: 95%!important;
        top: 10%;
        /* left: 15px; */
        margin-left: 10px;
        z-index: 1000;
 
    }

    #translate-container p {
        font-size: 20px!important;
        -webkit-text-size-adjust: none;
    }

    #translate-container a {
        font-size: 20px!important;
        -webkit-text-size-adjust: none;
    }
    #lang-selector .country {
        color: #fff;
    }
    #lang-selector .country:before{
        color: #fff;
    }
    

    #lang-selector .content .skiptranslate.goog-te-gadget {
        height: 55px;
        padding: 0px;
        overflow: initial;
        margin-top: 0px;
    }

    #lang-selector #translate-container h3,
    #read #read-container h3 {
        padding: 0px;
        margin: -8px 0px 10px 0px;
    }
    /* Overriding Iphone Zoom functionality */
    #lang-selector div#mobile_google_translate_element div.skiptranslate.goog-te-gadget {
        height: 30%;
    }

    select.goog-te-combo {
        font-size: 20px;
    }

}
@media screen and (max-width: 767px) {  
    /*	 Translate option in mobile menu resolution fix */
    #lang-selector .content.hover #translate-container,
    #read .content.hover #read-container {
        position: fixed!important;
 
    } 
} 
/* ==========================================================================
   Tab Component
   ========================================================================== */

.tab-component {}

.tab-component .tab-pane {
    padding-top: 15px;
}

/* ==========================================================================
   Social Site Components
   ========================================================================== */

.social-post-component .social-post-text {
    height: 50px;
    transition: all 0.3s ease-in-out;
}

.social-post-component .social-post-reply-to {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.social-post-component blockquote.social-post-in-reply-to-text {
    font-weight: 500;
    margin: 10px 0 0;
    padding: 5px 15px;
    font-size: 1.1em;
}

.social-post-component blockquote.social-post-in-reply-to-text p:before {
    content: open-quote;
    font-weight: bold;
}

.social-post-component blockquote.social-post-in-reply-to-text p:after {
    content: close-quote;
    font-weight: bold;
}

.social-post-component .social-media-upload {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.social-post-component .social-media-upload .img-thumbnail {
    max-height: 120px;
}

.social-stream-component .social-user-post {
    padding: 15px;
}

.social-stream-component .social-post {
    padding-top: 10px;
}

.social-stream-component .social-user-post .media-item {
    margin-bottom: 15px;
}

.social-stream-component .social-post-actions {
    border-top: 1px solid rgb(221, 221, 221);
    padding-top: 15px;
    margin-top: 15px;
}

.social-stream-component .social-post-actions .btn-link {
    color: #333;
}

.social-stream-component .social-post-actions .btn-link-active {
    color: #337ab7;
    font-weight: 600;
}

.social-stream-component .social-post-replies {
    border-top: 1px solid rgb(221, 221, 221);
    padding-top: 15px;
    margin-top: 15px;
}

.social-stream-component .social-user-post-reply {
    margin-bottom: 10px;
}

.social-stream-component .social-user-post-reply p {
    margin-bottom: 5px;
}

.social-stream-component .social-user-post-reply .profile {
    max-width: 75%;
}

/* ==========================================================================
   Messageboard Component
   ========================================================================== */

.messageboard-component {}

.messageboard-component .messageboard-messages &gt; ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.messageboard-component .messageboard-message,
.messageboard-component .messageboard-message &gt; a {
    display: inline-block;
    width: 100%;
}

.messageboard-component .messageboard-message:hover {
    background: #f5f5f5;
    border-color: #23527c;
}

.messageboard-component .messageboard-message &gt; a:hover {
    text-decoration: none;
}

/* ==========================================================================
   cookieconsent Component
   ========================================================================== */

.cc-color-override-279325143 {
    background-color: #fff;
    /* top:0 !important;
    height:10% !important;     &lt;&lt;&lt;&lt;&lt; incase you want the cookie header top. Note: You will need to have media queries for height*/
}

.cc-message {
    color: #000 !important;
}

.cc-dismiss {
    background-color: rgb(170, 0, 0);
    color: #fff;
}

.cc-link {
    color: #000;
}

.cc-deny {
    color: #000;
}

/* ==========================================================================
   show attachment Component 
   ========================================================================== */
.app-form-show-attachment-component .attachmentview-container {
    overflow: auto;
}
.app-form-show-attachment-component button.annotate {
    border: none;
    text-align: left;
    background-color: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
}
.app-form-show-attachment-component button.annotate:before {
    content: "\f044";
    font-family: FontAwesome;
    font-size: 1.3em;
    margin-right: 1%;
}
.app-form-show-attachment-component .actions {
    float: right;
    width: 30%;
    text-align: right;
}
.app-form-show-attachment-component .actions button {
    border: none;
    background-color: transparent;
}
.app-form-show-attachment-component button.email:before {
    content: "\f003";
    font-family: FontAwesome;
    font-size: 1.3em;
    margin-right: 1%;
}
.app-form-show-attachment-component span.no-download {
    color: #ddd;
    padding: 0 7px;
    pointer-events: none;
}
.app-form-show-attachment-component {
    margin: 0 0 12px 0;
}
.app-form-show-attachment-component .attachmentview-container {
    overflow: auto;
}

.app-form-show-attachment-component .actions {
    float: right;
    width: 30%;
    text-align: right;
    font-size: 18px;
    top: -5px;
    position: relative;
}
.app-form-show-attachment-component .actions button{
    border: none;
    background-color: transparent;
}
.app-form-show-attachment-component .action-item{
    padding: 0 20px 0 0;
}
.app-form-show-attachment-component .action-item input[type="checkbox"]{
    position: relative;
    top: -2px;
}

.app-form-show-attachment-component .annotate {
    color: #325d88;
    border: none;
    text-align: left;
    min-width: 60%;
    max-width: 80%;
    background-color: transparent;
}

.app-form-show-attachment-component .annotate:before{
	content: "\f044";
    font-family: FontAwesome;
	font-size: 18px;
	margin-right: 1%;
}

.app-form-show-attachment-component .email {
    width: 80px;
}

.app-form-show-attachment-component .email:before {
	content: "\f003";
    font-family: FontAwesome;
	font-size: 1.2em;
	margin-right: 1%;
    color: #325d88;
}

.app-form-show-attachment-component .remove:before{
	content: "\f057";
    font-family: FontAwesome;
	font-size: 1.2em;
	margin-right: 1%;
    color: darkred;
}
.app-form-show-attachment-component .no-attachment {
    color: darkred
}

.app-form-show-attachment-component .annotate.changed {
    color: #769e3b;
    font-weight: bold;
}

.app-form-show-attachment-component .no-attachment:before{
	content: "\f05e";
    font-family: FontAwesome;
	font-size: 1.2em;
	margin-right: 1%;
}

ul.app-form-show-attachment-component.header {
    list-style-type: none;
    padding: 0;
    overflow: auto;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #666;
}

ul.app-form-show-attachment-component.header li {
    float: right;
    margin-left: 10px;
}

ul.app-form-show-attachment-component.header li:first-child {
    float: left;
    margin-left: 0;
}
/*------------------------------ kleurplaatpopup ------------------------------------*/

.app-form-show-attachment-component .document-view-container {
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    z-index: 1000;
    text-align: center;
}
.document-view-container .header {
    position: absolute;
    top: 0;
    height: 82px;
    padding: 20px 20px 0 20px;
    background-color: #f5f5f5;
    width: 100%;
}

.app-form-show-attachment-component .canvas-scroll-container {
    padding: 0px 50px 0px 1px;
    position: absolute;
    top: 82px;
    bottom: 75px;
    background-color: #005e89;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}
.app-form-show-attachment-component .canvas-scroll-container.thumbnail-scroll-container{
    padding: 2px;
}
.app-form-show-attachment-component .body.canvas-container {
    width: 100%
}

.app-form-show-attachment-component .body.canvas-container .canvas-container {
    margin: 2px 0 0 0;
    box-shadow: 1px 1px 2px 0px #000000;
}

.app-form-show-attachment-component .body.canvas-container .thumbs {
    display: block;
    margin: 2px 0 4px 0;
    box-shadow: 1px 1px 2px 0px #000000;
    width: 80px;
    cursor: pointer;
    filter: brightness(0.8);
}
.app-form-show-attachment-component .body.canvas-container .thumbs.highlighted {
    filter: brightness(1);
}
.app-form-show-attachment-component .limbo {
    position: absolute;
    top: -9999px;
}


.document-view-container .footer {
    position: fixed;
    bottom: 0;
    height: 75px;
    width: 100%;
    background-color: #f5f5f5;
}

.document-view-container .bar-container {
    display: inline-block;
}
.document-view-container ul.bar {
    list-style: none;
    overflow: auto;
}
.document-view-container ul.bar li {
    float: left;
    padding: 0;
    margin: 0 10px 0 0;
}
.document-view-container .colorbutton {
    width: 47px;
    height: 47px;
    cursor: pointer;
    border: 5px solid #666;
    border-radius: 4px;
}

.pdf-component button.generate {
    background-color: #93c54b;
}

/* ==========================================================================
   show sub menu Component 
   ========================================================================== */
.show-sub-menu-left-component &gt; ul li a {
    padding: 0px;
}

.show-sub-menu-left-component li &gt; ul {
    padding-top: 5px;
    padding-left: 10px;
}


/*===================================================================================
*Card-component
====================================================================================*/

.card.card-component {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-component .card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-component .tags {
    position: relative;
    height: 46px;
    padding: 1.25rem;
}

.card-component .tags &gt; .tag {
    position: absolute;
}

.card-component .tags &gt; .tag span {
    color: white;
    padding: 5px 18px;
    font-size: 12px;
    line-height: 12px;
    background: green;
    margin-right: 5px;
}

.response-list-component .pagecounter span{
    border: none;
    padding: 0 3px;
    background-color: inherit;
}

.component-hidden{
    display:none;
}
</pre></body></html>