:root{
--color-2-light:rgba(252, 151, 73, 1);
--color-2-dark:rgba(252, 127, 73, 1);
--font-family-1:'Source Sans Pro';
--color-white:rgba(255, 255, 255, 1);
--font-family-2:'Source Sans Pro';
--img-check:url("/file/check-mark-4.png");
--color-1-light:rgba(32, 177, 194, 1);
--color-1-dark:rgba(17, 94, 103, 1);
--border-radius:2px;
--color-black:rgba(0, 0, 0, 1);
--color-grey-light:rgba(127, 127, 127, 0.2);
--color-grey-dark:rgba(127, 127, 127, 1);
--color-dark:rgba(17, 94, 103, 1);
}
/**
 * Maatwerk CSS voor mindvolpower.nl
 * Dennis Tiems 17-07-2021
 * 20-07-2021: carousel caption terug gezet, master newslist weergave aangepast (button en lijn), ruimte bij image slider/logos aangepast
 * 11-08-2021: menubutton naar linksboven, extra ruimte onder artikelen met achtergrondkleur
 * 25-08-2021: Extra margin on bottom of main content, above footer; Decrease button size; Remove lines in footer menu; limit social media description height; all buttons capitalize
 * 07-03-2024: Added class for special round over header
 */

/* Reposition content over slideshow in header */
/*
header .carousel-caption {
  bottom:auto;
  top:80px;
}
*/

/* Special round over header BBS0139 07-03-2024 */
@media (min-width:920px) {
  .bolletje {
    position: absolute;
    z-index: 10;
    width: 20vw;
    right: 5vw;
    margin-top: -5vh;
    pointer-events: none;
  }
}

/* Slideshow text higher for large screen */
@media (min-width:1200px) {
  header .carousel-caption{
    bottom:120px;
  }
}

/* Change colors of default buttons */
.btn-default {
  color: var(--color-white);
  background-color: var(--color-1-dark);
  border-color: var(--color-1-dark);
}
.btn-default:focus, .btn-default.focus, .btn-default:hover, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default, .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus {
  color: var(--color-white);
  background-color: var(--color-1-dark);
  border-color: var(--color-1-dark);
  filter: brightness(125%);
}

/* Change colors of primary buttons */
.btn-primary {
  color: var(--color-white);
  background-color: var(--color-2-dark);
  border-color: var(--color-2-dark);
}
.btn-primary:focus, .btn-primary.focus, .btn-primary:hover, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary, .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
  color: var(--color-white);
  background-color: var(--color-2-dark);
  border-color: var(--color-2-dark);
}

/* Position and color scroll-to-top button */
.btn-default.btn-scrolltop {
  left: calc(100vw - 100px); /* = 100 pixels from right */
  background-color: var(--color-2-dark);
  border-color: var(--color-white);
  color: var(--color-white);
  bottom:38px;
}
.btn-default.btn-scrolltop:focus, .btn-default.btn-scrolltop:hover, .btn-default.btn-scrolltop:active {
  color: var(--color-white);
  background-color: var(--color-2-dark);
  border-color: var(--color-white);
  filter: brightness(125%);
}

/* Position cookie message */
.cookie-message {
  bottom: 40px;
}

/* Move logo to make space for menu button */
@media (max-width:600px) {
  .loc-h-1 {
    padding-left:100px;
  }
}

/* Position and color mobile menu button */
.btn-default.block-overlay-toggle {
  left: 12px;
  background-color: var(--color-2-dark);
  border-color: var(--color-white);
  color: var(--color-white);
  bottom:auto;
  top:12px;
}
body[style*='overflow: hidden'] .btn-default.block-overlay-toggle {
  bottom:auto;
}

/* Bugfix: show review buttons correct, the second button used to jump a little bit down from the first */
.entity-socialmedia-google-review .btn + .btn {
  margin-bottom:1em;
}

/* Change color of buttons to show all reviews and write a review */
.entity-socialmedia-google-review .btn {
  color: var(--color-white);
  background-color: var(--color-2-dark);
  border-color: var(--color-2-dark);
}

/* Add some margin to the nes list */
.entity-newsview-master {
  margin-top:40px;
  margin-bottom:40px;
}

/* Hide the sorting button and more info for the news item list, improve styling for showing date in news detail */
.newsview-pagination {
  display:none;
}
.entity-newsview-detail .info {
  margin-bottom:12px;
}

.entity-newsview-detail .newsview-content ol,
.entity-newsview-detail .newsview-content ul {
  clear:left;
}

/* Style the logo slider */
.entity-imagelist-thumbnails-carousel .carousel-inner {
  margin:auto;
  width:80%;
}
.entity-imagelist-thumbnails-carousel .carousel-inner .thumbnail{
  padding:0;
  margin:0;
  border:0;
}

/* Horizontal line thicker and with color */
hr {
  height:6px;
  color: var(--color-1-dark);
  border-color: var(--color-1-dark);
  background-color: var(--color-1-dark);
  margin-bottom:0;
  margin-top:12px;
}

/* Add border to article with white background */
.loc-container:not([style]) .entity-article-default[style="background-color:var(--color-white)"] {
  border:1px solid var(--color-1-dark);
}

/* Add margin bottom to article with colored background */
.entity-article-default[style*="background-color:"] {
  margin-bottom:24px;
}

/* Change color of labels to orange */
.label-default {
  background-color: var(--color-2-light);
}

/* Make buttons out of the "read more" links */
.entity-newsview-master .description-link {
display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.57;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
font-size: inherit;
    text-transform: none;
    letter-spacing: normal;
white-space: normal;
  border-radius: var(--border-radius);
transition: all 0.1s;
    color: var(--color-white);
    background-color: var(--color-2-dark);
    border-color: var(--color-2-dark);
    margin-left: 0 !important;
    margin-top: 12px;
    float:right;
}
.entity-newsview-master .single-item .media-body {
  border-bottom:1px solid var(--color-grey-light);
}

/* More space between images in carousel */
.entity-imagelist-thumbnails-carousel .carousel-inner .thumbnail {
  padding:2vw;
}

/* Main menu styling */
.nav-tabs {
    border-bottom:0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
border-color: transparent;
border-bottom-color: var(--color-2-dark);
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus,
.nav-tabs > li > a:active{
filter: none;
background-color:transparent;
border-color: transparent;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: transparent;
    border-color: transparent;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    background-color: var(--color-2-dark);
    filter: none;
}
@media (min-width: 920px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 0;
  }
}
header .entity-menu-list {
  text-align:center;
}
header .nav-tabs > li {
  float:none;
  display:inline-block;
  text-align:left;
}

/* Remove orange lines in forms */
.form-control {
  border-bottom: 1px solid rgb(204, 204, 204);
}

/* Extra margin on bottom of main content, above footer */
main {
  padding-bottom: 60px;
}

/* Decrease button size */
.btn-default,
.btn-primary {
  padding:6px 12px;
}

/* All buttons capitalize */
.btn-default:first-letter,
.btn-primary:first-letter,
a.description-link:first-letter {
  text-transform:uppercase;
}

/* Remove lines in footer menu */
footer h1, 
footer .h1, 
footer h2, 
footer .h2,
footer h3, 
footer .h3, 
footer legend,
footer .entity-menu > ul > li > a.disabled {
  border:0;
}

/* limit social media description height */
.entity-socialmedia-google-review p.description {
  max-height:100px;
  overflow-y:auto;
  overflow-x:hidden;
}

/* No "new screen" image in footer */
footer .entity-article article a[target=_blank]:after {
  content: "";
}