body {
    /* padding-top: 70px; Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
    font-family: "Open Sans", Arial, sans-serif;
    height: auto;
}

h1.default,
h2.default,
h3.default,
h4.default {
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
}

h1.default:after,
h2.default:after,
h3.default:after,
h4.default:after {
    left: 0;
    width: 70px;
    margin-left: 0px;
    height: 2px;
    content: " ";
    bottom: -12px;
    background: #555;
    position: absolute;
}

.text-center > h1.default:after,
.text-center > h2.default:after,
.text-center > h3.default:after,
.text-center > h4.default:after {
    left: 50%;
    margin-left: -35px;
}

[ng\:cloak], [ng-cloak], .ng-cloak {
    display: none !important;
}

.two-column{
    margin-top: 40px;
    margin-bottom: 60px;
}

.header-1{
    background-color: #D16666;
}

.header-1 h1 {
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 23px;
    text-transform: uppercase;
}

/**Header 1 Colors**/
h1.header-red,h1.header-indigo,h1.header-teal{
	display:block;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 23px;
    text-transform: uppercase;
}
h1.header-red{background-color: #D16666;}
h1.header-indigo{background-color: #3E4A59;}
h1.header-teal{background-color: #1abc9c;}
h1.header-blue{background-color: #006BB6;}

/** CARD PROPERTIES UIT NIEUWE BOOTSTRAP VERSIE**/
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -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, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

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

.card-title {
  margin-bottom: 0.50rem;
  font: 25px/1.37 Ubuntu, sans-serif;
  text-transform: uppercase;
  border-left: 0.25rem solid #EE4035;
  display: inline;
  background: #EE4035;
  color: white;
  padding: 0.25rem;
}

.card-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font: 15px/1.37 Ubuntu, sans-serif;
  text-transform: uppercase;
  border-left: 0.25rem solid #EE4035;
  /*display: inline;*/
  background: #EE4035;
  color: #eeeeee;
  padding: 0.50rem 0.25rem;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
  /*max-height: 380px;*/
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/** END CARD PROPERTIES UIT NIEUWE BOOTSTRAP **/

/**Header 2 Colors**/

/**OSBLUEh2.header-2{
	display:block;
    color: white;
    padding: 15px;
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    background-color: #006BB6;
}**/
/**header-2-indigo**/
h2.header-2,h2.header-red,h2.header-teal,h3.header-red,h3.header-indigo{
  color: white;
  display: block;
}
h2.header-2{
  font-size: 11pt;
  padding: 20px;
  margin:0px 0px 20px 0px;
  background-color: #3E4A59;
}
h2.header-red{background-color: #D16666;}
h2.header-teal{background-color: #1abc9c;}
h2.header-red,h2.header-teal{
    padding: 15px;
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
}
h3.header-red{
    padding: 15px;
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    background-color: #D16666;
}
h3.header-indigo{
  font-size: 11pt;
  padding: 20px;
  margin:0px 0px 20px 0px;
  background-color: #3E4A59;
}
/**List Group Headings Sidebar**/
span.list-group-item-teal{
  background-color:#1abc9c;
  color: #ffffff;
  text-transform: uppercase;
}
.dates-collapse,.date-collapse:hover{
  text-decoration: underline !important;
}
a.list-group-item-teal{
  background-color:#1abc9c;
  color: #ffffff;
  text-transform: uppercase;
}
a.list-group-item-price{
  text-align:center;
  color:#777;
  background-color:#eee;
  cursor: not-allowed;
}
a.list-group-item-blue{
  background-color:#77cde3;
  color: #ffffff;
  text-transform: uppercase;
}
a.list-group-item-red{
background-color:#D16666;
color: #ffffff;
text-transform: uppercase;
}
/**Sections**/


.section-text{
    margin-top: 50px;
    margin-bottom: 50px;
}

.opleidingen-header {
      display: block;
      max-width: 100%;
      max-height:400px;
      height: auto;
      border-radius: 6px;
    overflow:hidden;

}
.opleiding-header-org{
       /**
    background: url('/static/resources/inloopdag.jpg') no-repeat;
    height: 200px;
    background-position: center center !important;
    background-size: cover !important;
    position: relative;
    margin-top: 15px;
    **/
}

.opleidingen-header > div{
    font-size: 28px;
    color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

#breadcrumbs {
    border-bottom: 1px solid #EEE;
}

#breadcrumbs div{
    color: #AAA;
    float: left;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 10px;
}
#breadcrumbs a {
    color: #AAA;
}

/* 404 Page Styles */

.error-404 {
    font-size: 100px;
}

/* Footer Styles */

footer {
    padding: 60px 0;
    background-color: #161616;
    color: #DDD;
}

.vertical-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.rgba-red {
    background-color: rgba(231,76,60,0.8);
}
.rgba-red:hover {
    background-color: rgba(231,76,60,0.85);
    cursor: pointer;
}

.rgba-purple {
    background-color: rgba(155,107,204,0.8);
}
.rgba-purple:hover {
    background-color: rgba(155,107,204,0.85);
    cursor: pointer;
}

.rgba-blue {
    background-color: rgba(52,152,219,0.8);
}
.rgba-blue:hover {
    background-color: rgba(52,152,219,0.85);
    cursor: pointer;
}

.carousel .item,
.carousel .item.active,
.carousel .carousel-inner {
    height: 100%;
}

.carousel .item > div {
    background-size: cover !important;
    background-position: center center !important;
    height: 100%;
}

.uncollapse-margins:before,
.uncollapse-margins:after {
    content: "\00a0"; /* No-break space character */
    display: block;
    overflow: hidden;
    height: 0;
}

.navbar-default {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
    /*z-index:10;*/
}

.navbar-top {
    height: 30px;
    background-color: #222;
    padding-top:5px;
    color: #ddd;
    font-weight: 600;
}

.navbar-phone {
    padding-left: 5px;
}

.cart-button {
    padding: 6px 9px !important;
}

.navbar-default .navbar-nav > li > a {
    color: #555;
}

@media (min-width: 768px){
    .navbar-brand {
        padding: 22px 15px;
    }
    .navbar-nav > li > a {
        padding-top: 35px;
        padding-bottom: 35px;
        padding-right: 0px;
    }

    .navbar-right > li > a:last-child {
        padding-right: 0;
    }
    .dropdown-menu > li > a {
        padding: 10px 20px;
    }
}


@media (min-width: 1200px) {
    .navbar-nav > li > a {
        font-size: 12pt;
        padding-right: 10px;
    }
}

@media (max-width: 1200px) {
    .navbar-nav > li > a {
        font-size: 11pt;
    }
}

@media (max-width: 996px) {
    .navbar-nav > li > a {
        font-size: 10pt;
    }
}

@media (max-width: 768px) {
    #navbar-cart {
        display: none;
    }
}

.navbar-toggle{
    margin-top: 21px;
    margin-bottom: 21px;
}

.product-image-container a {
    height: 200px;
    display: flex;
    align-items: center;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
}

/*Verkooppagina Sale Page*/
div.sale_product_price{
  padding:15px 15px 0px 15px;
}
.sale_product_price ins {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 20px;
}
ins {
    color: #1ccdca;
    text-decoration: none;
}
.sale_product_price del {
    color: #aaa;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-left: 10px;
}
div.sale_product_desc>p{
  padding:10px;
}
/*End verkooppagina sale page*/

.color-blocks {
    margin-bottom: 60px;
}

.ce-element--empty {
    border: 1px dotted grey;
}


.block {
    padding: 0;
    background-position: center center !important;
    background-size: cover !important;
}

.block > div{
    height:320px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block > div > div{
    color: white;
    padding-top: 10px;
}

.block > div > div > h3 {
    font-weight: 200;
}

.block-edu {
    background: url(/static/resources/hands-people-woman-working.jpg) no-repeat;
}
.block-verkoop {
    background: url(/static/resources/pexels-photo-28855.jpg) no-repeat;
}
.block-verhuur {
    background: url(/static/resources/pexels-photo-29737.jpg) no-repeat;
}

.block-logo {
    width: 60px;
    height: 60px;
    border: 1px solid white;
    border-radius: 4px;
    padding-top: 19px;
}

.people-quote {
    background: url('/static/resources/faces.jpg') 50% 0 fixed;
    height: 300px;
    position: relative;
}

.people-quote > div{
    font-size: 28px;
    color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}


.info-block {
    margin-bottom: 30px;
}

.info-block h2 {
   font-weight: 200;
}

.info-block span {
   font-weight: 200;
}

#home-carousel {
    color: white;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px -2px 28px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -2px 28px -4px rgba(0,0,0,0.75);
    box-shadow: 0px -2px 28px -4px rgba(0,0,0,0.75);
}

#home-carousel .item1{
    background: url('/static/images/vakantie-dagen-planning.jpg') no-repeat;
}

#home-carousel .item2{
    background: url('/static/images/Filmen_met_een_DSLR_4_dng.jpg') no-repeat;
}

#home-carousel .item3{
    background: url('/static/resources/12973167_1005037712915282_7468731322292866672_o.jpg') no-repeat;
}

#home-carousel .item4{
    background: url('/static/images/cine-camera-verhuur.jpg') no-repeat;
}

#home-carousel .item5{
    background: url('/static/resources/inloopdag.jpg') no-repeat;
}

#home-carousel .slide-content{
    height: 550px;
    background-color: rgba(29, 29, 29, 0.2);
}

#home-carousel .item .main-text-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 50px;
}

#home-carousel .item h1 {
    font-size: 60px;
    font-weight: 600;
}

#home-carousel .item span.sub {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-top: 5px;
}

#home-carousel .item span.sub-underlined {
    font-size: 20px;
    font-weight: 600;
    border-bottom: solid 2px #fff;
    padding: 3px 0;
}

/* Pricing Page Styles */

.price {
    display: block;
    font-size: 50px;
    line-height: 50px;
}

.price sup {
    top: -20px;
    left: 2px;
    font-size: 20px;
}

.period {
    display: block;
    font-style: italic;
}

/* Responsive Styles */

@media(max-width:991px) {
    .customer-img,
    .img-related {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {
    .img-portfolio {
        margin-bottom: 15px;
    }

    #home-carousel.carousel .carousel {
        height: 70%;
    }
}

.rental-highlights > div:first-child {
    margin-bottom: 50px;
}

.home-page-section {
    padding-top:0;
    margin-bottom:100px;
}
.artikel>p{
 margin-top:-15px;
}
#os-backdrop.active {
    display: block;
}

#os-backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    display: none;
}

.offcanvas{
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
    right:-500px;
    top:0;
    height: 100%;
    background-color:#F5F5F5;
    z-index: 3000;
    width:500px;
}

.offcanvas.active{
    padding: 0 30px;
    right:0px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 4000;
}

@media only screen and (max-width: 500px){
    .offcanvas.active{
        width:100vw;
        padding: 0 20px;
    }
}


.cart-item{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    align-items: center;
    background-color: white;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-top: 1px solid #DDD;
}

.cart-item:last-child{
    border-bottom: 1px solid #DDD;
}

.cart-totals{
    background-color: white;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    align-items: center;
    border: 1px solid #DDD;
    margin-bottom: 20px;
}

.cart-totals div{
    padding: 10px;
}

.cart-totals .description{
    flex:1;
}

.cart-totals .total{
    width: 105px;
    padding-left:15px;
}

.cart-items{
    margin-top: 20px;
    margin-bottom: 10px;
}

.cart-item .cart-item-img{
    padding: 10px;
    height: 80px;
    width: 80px;
    flex-shrink: 0;
}

.cart-item .cart-item-img img{
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
}

.cart-item .cart-item-title{
    font-size: 12pt;
    padding-right: 5px;
}

.cart-item .cart-item-amount{
    width: 70px;
    flex-shrink: 0;
}

.cart-item .cart-item-price{
    padding-left:15px;
    padding-right:15px;
    width:105px;
    flex-shrink: 0;
}

@media only screen and (max-width: 500px){
    .cart-item{
        font-size: 10pt;
    }
    .cart-item .cart-item-img{
        height: 50px;
        width: 50px;
    }
    .cart-item .cart-item-title{
        font-size: 10pt;
    }
    .cart-item .cart-item-amount{
        width: 47px;
    }
    .cart-item .cart-item-amount input{
        font-size:10pt;
    }
    .cart-item .cart-item-price{
        padding-left:5px;
        padding-right:5px;
        width:75px;
    }
}

.shadow-box-1 {
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 0 4px 1px rgba(0, 0, 0, 0.05);
}

#search-results {
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    -webkit-transition: visibility 0s, opacity 0.2s linear;
         -o-transition: visibility 0s, opacity 0.2s linear;
            transition: visibility 0s, opacity 0.2s linear;
    right:0;
    top:38px;
    height: 70vh;
    background-color: white;
    z-index: 3000;
    width: 700px;
	visibility: hidden;
	opacity: 0;
}

#search-results .search-result-item {
    padding:10px;
    height: 100px;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #EEE;
}

#search-results .search-result-item .search-image{
    height: 75px;
    width: 75px;
    margin-top: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-results .search-result-item .search-image img{
    max-height: 100%;
    max-width: 100%;
}

#search-results .search-result-item .search-content{
	padding-left: 15px;
}

#search-results.active{
    padding: 0;
    display: block;
    right:0px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 4000;
	visibility: visible;
	opacity: 1;
}

#wrap {
    margin-top: 29px;
    display: inline-block;
    position: relative;
    height: 30px;
    float: right;
    padding: 0;
    width: 30px;
}

#wrap input[type="text"]  {
    height: 40px;
    display: inline-block;
    font-weight: 100;
    border: none;
    outline: none;
    color: #555;
    padding: 3px;
    padding-right: 60px;
    width: 0px;
    position: absolute;
    top: -3px;
    right: 0;
    background: none;
    z-index: 3002;
    transition: width .4s cubic-bezier(0.000,  0.795,  0.000,  1.000);
    cursor: pointer;
}

#wrap input[type="text"]:focus:hover {
    border-bottom: 1px solid #BBB;
}

#wrap input[type="text"]:focus, #wrap input[type="text"].active {
    width: 300px;
    z-index: 3000;
    border-bottom: 1px solid #BBB;
    cursor: text;
    background-color: white;
    border: 1px solid #CCC;
}

#wrap input[type="submit"]  {
	font-family: FontAwesome;
    padding: 3px;
    font-size: 20px;
    height: 28px;
    width: 28px;
    display: inline-block;
    /*text-indent: -10000px;*/
    color: #555;
    float: right;
	background-color: transparent;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3001;
    cursor: pointer;
    opacity: 1;
    cursor: pointer;
    transition: opacity .4s ease;
}

#wrap input[type="submit"]:hover  {
    opacity: 1;
}
