﻿/* dark blue */
/* dark blue */
/* purple */
/* light gray */
/* light gray */
/* light gray */
/* light gray */
/* light gray */
/* gray */
* {
  outline: none;
}

html {
  opacity: 1;
  transition: opacity 0.15s;
}
html.loading {
  opacity: 0;
  transition: opacity 0s;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #05325c;
  padding-top: 95px;
  overflow-y: scroll;
}

img,
iframe {
  max-width: 100%;
}

img {
  max-height: 100%;
}

hr {
  margin: 2em 0;
  border-top: 1px solid rgba(5, 50, 92, 0.075);
}

hr.thin {
  margin: 0.6em;
}

/*
a[href='#'] {
	cursor: default;
	text-decoration: none;
}
*/
a:focus {
  outline: none;
  outline-offset: 0;
}

label {
  font-weight: 600;
}

label.option {
  font-weight: normal;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input#submitbutton[disabled=disabled] {
  opacity: 0.5;
}

.checkbox-label {
  font-weight: 400;
}
.checkbox-label input {
  position: relative;
  top: 2px;
}

button,
.button,
button:focus,
.button:focus,
button:active,
.button:active,
button:hover,
.button:hover {
  display: inline-block;
  border: solid 1px #c0ccd6;
  background: #f6f7fa;
  color: #05325c;
  padding: 6px 15px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.input {
  border: solid 1px #c0ccd6;
  height: 36px;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 15px;
}

input.error {
  border-color: #d33;
}

.error,
.error-inline {
  color: #d33;
}

.error-inline {
  position: relative;
  top: -10px;
}

.asterisk, .required:after {
  content: "*";
  color: #d11;
  margin-left: 3px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
}

.col-centered {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.visible-xl-block {
  display: none;
}

.text-centered {
  text-align: center;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #05325c !important;
  text-overflow: ellipsis;
  font-style: italic;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #05325c !important;
  text-overflow: ellipsis;
  font-style: italic;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #05325c !important;
  text-overflow: ellipsis;
  font-style: italic;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #05325c !important;
  text-overflow: ellipsis;
  font-style: italic;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background: #fff;
  border-bottom: solid 1px #c0ccd6;
  z-index: 1000;
}
header .logo {
  display: block;
  margin: 15px 17px;
  height: calc(100% - 30px);
}
header .site-menu {
  right: 0;
  top: 95px;
  z-index: 999;
  background: #eeeff2;
  transition: right 0.5s ease;
  display: table;
  width: 280px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  border-bottom: solid 3px #05325c; /* specific to 'Professionals' */
}
header .site-menu.collapsed {
  right: -280px;
}
header .site-menu li {
  display: table-cell;
  position: relative;
}
header .site-menu li a {
  display: block;
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  color: #05325c;
}
header .site-menu li a:hover {
  text-decoration: none;
}
header .site-menu li:nth-child(2) a { /* specific to 'Professionals' */
  background: #05325c;
  color: #fff;
}
header .site-menu li:last-child {
  width: 75px;
  min-height: 34px;
}
header .site-menu li:last-child a {
  position: absolute;
  bottom: -17px;
  right: 0;
  padding: 0 0 0 17px;
  width: 100%;
  max-height: 58px;
}
header .site-menu li:last-child a img {
  pointer-events: none;
  position: relative;
  bottom: 17px;
}
header .nav-toggle {
  position: absolute;
  top: 22px;
  right: 20px;
  padding: 9px 10px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
header .nav-toggle .icon-bar {
  display: block;
  border-radius: 1px;
  transition: 300ms ease-in-out;
  background-color: #05325c;
  position: relative;
  width: 34px;
  height: 3px;
  margin-bottom: 5px;
}
header .nav-toggle .icon-bar:first-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
}
header .nav-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}
header .nav-toggle .icon-bar:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -8px;
  margin-bottom: 3px;
}
header .nav-toggle.collapsed .icon-bar {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  top: 0;
  opacity: 1;
}
header .shoppingcart {
  position: absolute;
  top: 17px;
  right: calc(8% + 30px);
  height: 57px;
  width: 54px;
  padding: 0;
  background: transparent url(../img/winkelwagen-icoon2-lg.png) no-repeat center;
  text-indent: -9999px;
}
header .shoppingcart span {
  display: block;
  text-indent: 0;
  position: absolute;
  right: 0;
  top: 7px;
  background: #b84e96;
  color: #fff;
  padding: 0 5px;
  height: 20px;
  line-height: 20px;
  min-width: 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}
header .search {
  position: absolute;
  top: 17px;
  right: calc(4% + 60px);
  height: 57px;
  width: 54px;
  padding: 0;
  background: transparent url(../img/zoekicoon-lg.png) no-repeat center;
  text-indent: -9999px;
}

.account-menu,
.shoppingcart-menu {
  display: none;
}

.shoppingcart-menu {
  position: fixed;
  top: 95px;
  right: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
}
.shoppingcart-menu .products {
  list-style: none;
  padding: 0;
  margin: 15px;
}
.shoppingcart-menu .products > li {
  position: relative;
  margin-bottom: 15px;
}
.shoppingcart-menu .products > li a {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.shoppingcart-menu .products > li a img {
  border: solid 1px #c0ccd6;
  width: 100px;
  max-width: 40%;
  vertical-align: top;
  margin-right: 10px;
}
.shoppingcart-menu .products > li a > span {
  align-self: flex-start;
  font-weight: 600;
  font-size: 12px;
}
.shoppingcart-menu .products > li a > span .name {
  font-size: 16px;
}
.shoppingcart-menu .products > li a > span .subname {
  color: #b84e96;
  margin-bottom: 6px;
}
.shoppingcart-menu .products > li a > span > span {
  display: block;
}
.shoppingcart-menu .products > li a,
.shoppingcart-menu .products > li a:hover,
.shoppingcart-menu .products > li a:focus,
.shoppingcart-menu .products > li a:active {
  color: #05325c;
  text-decoration: none;
}
.shoppingcart-menu .subtotal {
  position: relative;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px 7px;
}
.shoppingcart-menu .subtotal:before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  border-bottom: solid 1px #c0ccd6;
}
.shoppingcart-menu .subtotal .totalprice {
  margin-left: 30px;
  color: #b84e96;
  font-size: 16px;
}
.shoppingcart-menu .buttonbar {
  padding: 12px 15px;
  background: #e5e6e9;
}
.shoppingcart-menu .buttonbar .cart {
  margin-right: 15px;
}
.shoppingcart-menu .buttonbar .pay {
  float: right;
  background: #b84e96;
  border-color: #b84e96;
  color: #fff;
}

.sort-block {
  transition: opacity 0.15s ease;
}

.transparent {
  opacity: 0 !important;
}

.row-line {
  position: relative;
  margin-top: 5px;
  margin-bottom: 10px;
}
.row-line .row > div {
  padding-bottom: 5px;
}
.row-line:before {
  content: "";
  display: block;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -3px;
  border-bottom: solid 1px #eee;
}

.filter-section {
  margin: 1.5em 0;
  padding: 0.5em 0;
  border: solid 1px #eee;
  border-left: none;
  border-right: none;
}
.filter-section label {
  margin: 0 0.3em 0 0;
}

nav {
  position: fixed;
  top: 95px;
  bottom: 0;
  width: 280px;
  background: #eeeff2;
  z-index: 998;
  right: 0;
  opacity: 1;
  transition: right 0.5s ease;
}
nav .ss-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  float: left;
}
nav .ss-content {
  height: 100%;
  position: relative;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  margin-right: -18px;
}
nav .ss-scroll {
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  width: 5px;
  border-radius: 4px;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s linear;
}
nav .ss-hidden,
nav .ss-keephidden {
  display: none;
}
nav.ss-container:hover .ss-scroll {
  opacity: 1;
}
nav .ss-grabbed {
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
nav .menu {
  min-height: 100%;
  margin-bottom: -100px;
  width: 280px;
  padding: 57px 0 20px;
  margin-left: 0;
}
nav .menu:after {
  content: "";
  display: block;
}
nav .menu a {
  position: relative;
  display: block;
  font-size: 13px;
  padding: 5px 40px 5px 25px;
}
nav .menu a:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border: solid 1px #1c407a;
  border-bottom: none;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  right: 26px;
  transition: all 0.25s ease;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav .menu a.collapsed[href="#"]:after {
  margin-top: -4px;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
nav .menu a.uncollapsed[href="#"]:after {
  margin-top: -2px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
nav .menu a.active {
  background: rgba(0, 0, 0, 0.05);
}
nav .menu a.active:after {
  border-width: 2px;
  transition: all 0.25s ease;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav .menu .webshop:before,
nav .menu .manage-account:before,
nav .menu .logout:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 7px;
  display: inline-block;
  width: 20px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
}
nav .menu .webshop {
  position: relative;
  padding-left: 52px;
}
nav .menu .webshop:before {
  background-image: url(../img/winkelwagen-icoon.png);
}
nav .menu .webshop:hover:before {
  background-image: url(../img/winkelwagen-icoon2.png);
}
nav .menu .account a {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  padding-left: 59px;
  margin: 5px 0;
}
nav .menu .account a.manage-account:before {
  left: 31px;
  width: 20px;
  height: 18px;
  background-image: url(../img/account-icoon.png);
}
nav .menu .account a.logout:before {
  width: 26px;
  height: 18px;
  background-image: url(../img/uitloggen-icoon.png);
}
nav .menu .account a.login:before {
  width: 24px;
  height: 18px;
  background-image: url(../img/inloggen-icoon.png);
}
nav .menu a,
nav .menu a:hover,
nav .menu a:focus,
nav .menu a:active {
  color: #05325c;
  text-decoration: none;
}
nav .menu a.hover,
nav .menu a.active.hover[href="#"],
nav .menu a.collapsed.hover[href="#"],
nav .menu a.uncollapsed.hover[href="#"] {
  background: rgba(0, 0, 0, 0.075);
  cursor: pointer;
}
nav .menu a.collapsed[href="#"]:after,
nav .menu a.collapsed.hover[href="#"]:after,
nav .menu a.uncollapsed[href="#"]:after,
nav .menu a.uncollapsed.hover[href="#"]:after {
  display: block;
}
nav .menu a[href="#"],
nav .menu a.hover[href="#"] {
  background: none;
  cursor: default;
}
nav .menu a[href="#"]:after,
nav .menu a.hover[href="#"]:after {
  display: none;
}
nav .menu a.collapsed + ul {
  max-height: 0 !important;
}
nav .menu > li > a {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #b84e96;
}
nav .menu > li > ul {
  margin-left: 0;
}
nav .menu > li > ul:after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
}
nav .menu > li > ul > li > a {
  font-weight: 600;
}
nav .menu > li > ul > li > a,
nav .menu > li > ul > li > a:hover,
nav .menu > li > ul > li > a:focus,
nav .menu > li > ul > li > a:active {
  color: #05325c;
}
nav .menu > li > ul > li ul:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
}
nav .menu > li > ul > li > ul > li > a {
  padding-left: 40px;
}
nav .menu > li > ul > li > ul > li > ul > li > a {
  padding-left: 55px;
  font-style: italic;
}
nav .social,
nav .menu:after {
  height: 100px;
}
nav .social {
  padding: 15px 25px 0;
  width: 280px;
}
nav .social h6 {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  border-bottom: solid 1px #05325c;
  padding-bottom: 3px;
  margin-top: 0;
}
nav .social li {
  display: block;
  float: left;
  margin-right: 10px;
}
nav.collapsed {
  right: -280px;
}

main {
  min-height: 100%;
  margin-bottom: -88px;
}
main:after {
  content: "";
  display: block;
}
main h1, main h2, main h3, main h4, main h5, main h6 {
  line-height: 1.3;
  color: #05325c;
}
main h1,
main .h1 {
  font-size: 24px;
  font-weight: 700;
}
main h2,
main .h2 {
  font-size: 18px;
  font-weight: 600;
}
main h3,
main .h3 {
  font-size: 14px;
  font-weight: 700;
}
main p {
  margin-bottom: 1em;
}
main a {
  color: #b84e96;
  text-decoration: underline;
}
main ul,
main ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
main ul li,
main ol li {
  margin-bottom: 0.5em;
}
main ul li:last-child,
main ol li:last-child {
  margin-bottom: 0;
}
main .accordion {
  margin: 2em 0 3em;
}
main .accordion .ui-accordion-header,
main .accordion .ui-accordion-content {
  padding: 8px 12px;
}
main .accordion .ui-accordion-header {
  cursor: pointer;
  position: relative;
  margin: 0;
}
main .accordion .ui-accordion-header:after, main .accordion .ui-accordion-header:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #05325c;
}
main .accordion .ui-accordion-header:before {
  transform: rotate(90deg);
  transition: transform 0.5s ease;
}
main .accordion .ui-accordion-header.ui-accordion-header-active:before {
  transform: rotate(180deg);
}
main .accordion .ui-accordion-header:nth-of-type(odd) {
  background: rgba(5, 50, 92, 0.1); /*$line-color;*/ /* line-color == rgba($primary-color, .25);*/
}
main .accordion .ui-accordion-content {
  border: solid 1px #e6eaee; /*rgba($primary-color, .1);*/
  border-left: none;
  border-right: none;
}
main.show-search-results .content {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
main.show-search-results .search-results {
  opacity: 1;
  height: auto;
  overflow: visible;
}
main .cover {
  width: 100%;
  height: 20vh;
  min-height: 100px;
  max-height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main .search:first-child {
  margin-top: 80px; /* in case there is no cover, so search is the first child of main */
}
main .search:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, #fff 0%, #fff 2%, #c0ccd6 8%, #c0ccd6 92%, #fff 98%, #fff 100%);
}
main .search .search-input {
  position: relative;
  margin-top: -23px;
  overflow: hidden;
}
main .search .search-input:before, main .search .search-input:after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  border: solid 1px transparent;
  border-left: solid 1px #c0ccd6;
  transform: rotate(-45deg);
  bottom: 0;
}
main .search .search-input:before {
  left: 0;
}
main .search .search-input:after {
  transform: rotate(-135deg);
  right: 0;
}
main .search .search-input input {
  border: none;
  border: solid 1px transparent;
  border-bottom-color: #c0ccd6;
  z-index: 2;
  width: 100%;
  padding: 0 65px 0 25px;
  background: #f3f4f7;
  height: 45px;
  border-radius: 45px;
  font-weight: 600;
  font-size: 18px;
}
main .search .search-input button {
  position: absolute;
  right: 10px;
  top: 0;
  height: 45px;
  width: 45px;
  border: none;
  background: transparent url(../img/zoekicoon.png) no-repeat center;
  text-indent: -9999px;
  z-index: 10;
}
main .search-results {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease;
}
main .search-results .col-xs-12 {
  margin: 15px 0 25px;
}
main .search-results hr:first-of-type {
  margin-top: 0;
  clear: both;
  border-top: solid 1px #c0ccd6;
}
main .search-results .close-search-results {
  position: relative;
  padding-right: 25px;
  float: right;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 13px;
}
main .search-results .close-search-results:before, main .search-results .close-search-results:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 9px;
  width: 19px;
  border-bottom: solid 2px #05325c;
  transform: rotate(45deg);
}
main .search-results .close-search-results:after {
  transform: rotate(-45deg);
}
main .search-results .keyword-matches {
  padding: 0;
  list-style: none;
  overflow: hidden;
  margin-bottom: 5px;
}
main .search-results .keyword-matches li {
  float: left;
  margin-right: 30px;
  margin-bottom: 8px;
}
main .search-results a {
  text-decoration: none;
  color: #05325c;
}
main .search-results a:hover {
  color: #b84e96;
}
main .search-results h2 {
  color: #b84e96;
}
main .content {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.breadcrumb {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  background-color: transparent;
  font-size: 11px;
  color: #7f8d9b;
}
.breadcrumb li a {
  color: #7f8d9b;
}
.breadcrumb li:last-child a {
  color: #b84e96;
}
.breadcrumb > li + li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  padding: 0;
  border: solid 1px #7f8d9b;
  border-bottom: none;
  border-left: none;
  vertical-align: middle;
  margin: 0 7px 0 3px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

ul.link-list {
  list-style: none;
  padding-left: 15px;
}
ul.link-list li a {
  position: relative;
  text-decoration: none;
}
ul.link-list li a:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border: solid 1px #05325c;
  border-bottom: none;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: -15px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.select-animals button {
  position: relative;
  width: 100%;
  text-align: left;
  background: #fff;
}
.select-animals button:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border: solid 1px #1c407a;
  border-bottom: none;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  right: 16px;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.intro-blocks a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 25px;
  background: #f6f7fa;
  margin: 15px 0;
}
.intro-blocks a:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  border: solid 1px #05325c;
  border-bottom: none;
  border-left: none;
  top: 50%;
  margin-top: -6px;
  right: 18px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.intro-blocks a img {
  width: 150px;
  max-width: 40%;
  margin-right: 12px;
}
.intro-blocks a span {
  word-break: break-word;
}
.intro-blocks a span strong {
  display: block;
}
.intro-blocks a,
.intro-blocks a:hover,
.intro-blocks a:focus,
.intro-blocks a:active {
  color: #05325c;
  text-decoration: none;
}

.download-leaflet {
  position: relative;
  display: block;
  border: solid 1px #c0ccd6;
  border-left: none;
  border-right: none;
  color: #05325c;
  margin: 1em 0 2em;
  padding: 8px 0 8px 56px;
  font-weight: 600;
}
.download-leaflet:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  background: #b84e96 url("/content/lgp/img/download-icon.png") no-repeat center;
}
.download-leaflet span {
  display: block;
  color: #b84e96;
}

.download-leaflet,
.download-leaflet:hover,
.download-leaflet:focus,
.download-leaflet:active {
  text-decoration: none;
}

.page,
.sidebar {
  margin-top: 15px;
  margin-bottom: 10px;
}
.page .newsletter,
.sidebar .newsletter {
  position: relative;
  margin: 30px auto 20px;
  padding: 20px;
  max-width: 360px;
}
.page .newsletter .social,
.sidebar .newsletter .social {
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.page .newsletter .social li,
.sidebar .newsletter .social li {
  margin: 0 4px;
  display: inline-block;
  border: solid 4px #fff;
  border-radius: 30px;
  background: #fff;
}
.page .responsive-banner,
.sidebar .responsive-banner {
  display: block;
  position: relative;
  min-height: 150px;
  width: 100%;
  text-decoration: none;
  max-width: 290px;
  margin: 0 auto;
}
.page .responsive-banner span,
.sidebar .responsive-banner span {
  display: block;
  text-align: left;
}
.page .responsive-banner span.text,
.sidebar .responsive-banner span.text {
  position: relative;
  padding: 5px 15px 15px;
  border: solid 1px #c0ccd6;
}
.page .responsive-banner span.text:before, .page .responsive-banner span.text:after,
.sidebar .responsive-banner span.text:before,
.sidebar .responsive-banner span.text:after {
  content: "";
  position: absolute;
  top: -1px;
  background: #fff;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  z-index: 10;
}
.page .responsive-banner span.text:after,
.sidebar .responsive-banner span.text:after {
  top: auto;
  bottom: -1px;
}
.page .responsive-banner span.header,
.sidebar .responsive-banner span.header {
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: #05325c;
}
.page .responsive-banner span.subheader,
.sidebar .responsive-banner span.subheader {
  font-size: 17px;
  font-weight: 600;
  color: #b84e96;
}
.page .responsive-banner span.button,
.sidebar .responsive-banner span.button {
  display: inline-block;
  margin-top: 10px;
}
.page .responsive-banner span.image,
.sidebar .responsive-banner span.image {
  position: relative;
  /*min-height: 160px;*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: solid 1px #c0ccd6;
  margin-bottom: 10px;
  max-width: 288px;
  min-height: 120px;
}

.page.intro h1 {
  font-size: 27px;
  color: #b84e96;
}
.page.intro p:first-of-type {
  font-size: 15px;
  font-weight: 600;
}
.page .hr-button {
  outline: solid 15px #fff;
  margin: 12px 0;
}
.page .hr-button:before {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  left: 15px;
  border-top: solid 1px #c0ccd6;
  height: 1px;
  z-index: -1;
  margin-top: 9px;
}
.page .responsive-banner {
  max-width: 290px;
}
.page img {
  width: auto !important;
  height: auto !important;
}

.sidebar .default-list ul,
.sidebar .view-list ul,
.sidebar .website-list ul,
.sidebar .play-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .default-list ul li,
.sidebar .view-list ul li,
.sidebar .website-list ul li,
.sidebar .play-list ul li {
  position: relative;
  margin: 0;
  font-weight: 600;
}
.sidebar .default-list ul li a,
.sidebar .view-list ul li a,
.sidebar .website-list ul li a,
.sidebar .play-list ul li a {
  display: block;
  margin-top: 2px;
  padding: 11px 35px 11px 11px;
  border-bottom: 1px solid rgba(5, 50, 92, 0.075);
  color: #05325c;
}
.sidebar .default-list ul li a:hover, .sidebar .default-list ul li a:focus,
.sidebar .view-list ul li a:hover,
.sidebar .view-list ul li a:focus,
.sidebar .website-list ul li a:hover,
.sidebar .website-list ul li a:focus,
.sidebar .play-list ul li a:hover,
.sidebar .play-list ul li a:focus {
  text-decoration: none;
  color: #05325c;
}
.sidebar .default-list ul li a:hover:after, .sidebar .default-list ul li a:focus:after,
.sidebar .view-list ul li a:hover:after,
.sidebar .view-list ul li a:focus:after,
.sidebar .website-list ul li a:hover:after,
.sidebar .website-list ul li a:focus:after,
.sidebar .play-list ul li a:hover:after,
.sidebar .play-list ul li a:focus:after {
  border-color: #05325c;
}
.sidebar .default-list ul li:last-child,
.sidebar .view-list ul li:last-child,
.sidebar .website-list ul li:last-child,
.sidebar .play-list ul li:last-child {
  margin: 0;
}
.sidebar .default-list,
.sidebar .view-list,
.sidebar .website-list,
.sidebar .play-list,
.sidebar .responsive-banner,
.sidebar .button-banner {
  margin-bottom: 3em;
}
.sidebar .default-list ul li,
.sidebar .view-list ul li,
.sidebar .website-list ul li,
.sidebar .play-list ul li {
  margin: 0;
}
.sidebar .default-list ul li a,
.sidebar .view-list ul li a,
.sidebar .website-list ul li a,
.sidebar .play-list ul li a {
  border: none;
  padding-left: 40px;
  text-decoration: none;
}
.sidebar .default-list ul li a:after,
.sidebar .view-list ul li a:after,
.sidebar .website-list ul li a:after,
.sidebar .play-list ul li a:after {
  margin-top: -3px;
}
.sidebar .default-list ul li a:before,
.sidebar .view-list ul li a:before,
.sidebar .website-list ul li a:before,
.sidebar .play-list ul li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  right: 18px;
}
.sidebar .default-list a:after,
.sidebar .view-list a:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  border: solid 1px #05325c;
  border-bottom: none;
  border-left: none;
  top: 50%;
  margin-top: -6px;
  right: 18px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sidebar .default-list li:nth-child(odd),
.sidebar .view-list li:nth-child(odd),
.sidebar .play-list li:nth-child(odd) {
  background: rgba(5, 50, 92, 0.1);
}
.sidebar .view-list a:before,
.sidebar .default-list a:before {
  background-image: url("/content/lgp/img/bekijk-icoon.png");
}
.sidebar .website-list a:before,
.sidebar .default-list a.website:before {
  background-image: url("/content/lgp/img/website-icon.png");
}
.sidebar .website-list ul li a:before {
  left: 0;
}
.sidebar .website-list ul li a {
  padding: 5px 5px 5px 28px;
}
.sidebar .play-list ul li a {
  padding: 8px 8px 8px 40px;
}
.sidebar .play-list ul li a:before {
  background-image: url("/content/lgp/img/play-icon.png");
}
.sidebar .imagelinkgroup {
  position: relative;
  margin: -8px 0 50px 0;
}
.sidebar .imagelinkgroup:before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 0;
  border-bottom: solid 1px #c0ccd6;
  z-index: -1;
}
.sidebar .imagelinkgroup a,
.sidebar .imagelinkgroup a:hover,
.sidebar .imagelinkgroup a:focus,
.sidebar .imagelinkgroup a:active {
  color: #05325c;
  text-decoration: none;
}
.sidebar .imagelinkgroup a {
  position: relative;
  padding-right: 25px;
  display: flex;
  align-items: center;
  margin: 35px 0;
}
.sidebar .imagelinkgroup a:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  border: solid 1px #05325c;
  border-bottom: none;
  border-left: none;
  top: 50%;
  margin-top: -6px;
  right: 18px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sidebar .imagelinkgroup a img {
  display: inline-block;
  width: 100%;
  border: solid 1px #c0ccd6;
  width: 150px;
  max-width: 40%;
  margin-right: 12px;
  flex-shrink: 0;
}
.sidebar .imagelinkgroup a span {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.sidebar .imagelinkgroup a em {
  font-style: normal;
  color: #b84e96;
}
.sidebar .imagelinkgroup a:before {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 0;
  left: 0;
  height: 0;
  border-bottom: solid 1px #c0ccd6;
  z-index: -1;
}
.sidebar .image-caption-banner,
.sidebar .image-caption-banner:hover,
.sidebar .image-caption-banner:active,
.sidebar .image-caption-banner:focus {
  color: #05325c;
  text-decoration: none;
}
.sidebar .image-caption-banner {
  display: block;
  background: #f3f4f7;
  /*border: solid 1px $line-color;*/
  text-align: center;
  margin-bottom: 40px;
}
.sidebar .image-caption-banner .image {
  display: block;
  height: 200px;
  padding: 10px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sidebar .image-caption-banner span {
  display: block;
  padding: 15px;
}
.sidebar .image-caption-banner span strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
}

.download-link {
  position: relative;
  display: inline-block;
  /*font-weight: 600;*/
  text-decoration: none;
  color: #05325c;
  padding-left: 24px;
  /*margin: .5em 1em .5em 0;*/
}
.download-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("/content/lgp/img/download-link-icon.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.download-link:hover {
  color: #b84e96;
  text-decoration: none;
}

.button-banner,
.button-banner:hover,
.button-banner:active,
.button-banner:focus {
  color: #05325c;
  text-decoration: none;
}

.button-banner {
  display: block;
  background: #f3f4f7;
  border: solid 1px #c0ccd6;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 362px;
  margin: 0 auto;
}
.button-banner img {
  display: block;
  width: 100%;
  /*height: 200px;*/
  /*padding: 10px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 21px;
  font-weight: 600;

  font-size: 0;*/
}
.button-banner .image {
  display: block;
  height: 200px;
  padding: 10px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 21px;
  font-weight: 600;
  font-size: 0;
}
.button-banner .button {
  margin: 10px 20px;
  color: #b84e96;
}

.newsletter {
  background: #f3f4f7;
  margin: 30px 0px 20px;
}
.newsletter h2 {
  font-size: 21px;
  color: #b84e96;
}
.newsletter p {
  font-size: 12px;
}
.newsletter form {
  margin: 25px 0;
}
.newsletter input {
  border: none;
  height: 32px;
  margin-right: 7px;
  width: 400px;
  padding: 0 10px;
  max-width: calc(100% - 100px);
}

.remember-wrap {
  position: relative;
  top: -10px;
  margin-bottom: 5px;
}

footer,
main:after {
  min-height: 88px;
}

footer .footer-support {
  background: #f3f4f7;
  text-align: center;
  padding: 10px;
  line-height: 24px;
  font-size: 13px;
}
footer .footer-disclaimer {
  background: #05325c;
  color: #fff;
  padding: 10px 0;
  line-height: 24px;
  font-size: 13px;
}
footer .footer-disclaimer a,
footer .footer-disclaimer a:hover,
footer .footer-disclaimer a:focus {
  color: #fff;
}
footer .footer-disclaimer .rights-reserved {
  display: none;
}
footer .footer-disclaimer .disclaimer {
  margin-left: 5%;
  font-weight: 600;
}
footer .footer-disclaimer .social {
  float: right;
}
footer .footer-disclaimer .social a {
  display: inline-block;
  margin-left: 3px;
}
footer .footer-disclaimer .social a img {
  vertical-align: top;
}
footer .footer-disclaimer .social span {
  display: none;
  font-weight: 600;
  margin-right: 3px;
}

main .search-results h2 {
  margin-top: 20px;
}
main .search-results h2 a {
  color: inherit;
  margin-bottom: 0;
}

.ezsearch-result p.path {
  margin-bottom: 0.3em;
  font-size: 0.8em;
}
.ezsearch-result p.path span:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border: solid 1px #1c407a;
  border-bottom: none;
  border-left: none;
  transition: all 0.25s ease;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0px 3px 0 3px;
}
.ezsearch-result p.path span:last-child:after {
  content: none;
}

table.form td {
  padding: 5px 25px 5px 0;
  vertical-align: top;
}
table.form td input[type=text] {
  width: 250px;
}
table.form td textarea {
  width: 400px;
  height: 200px;
}
table.form td:first-child {
  width: 200px;
  padding-top: 8px;
}
table.form label {
  font-weight: normal;
}
table.form #mailError {
  padding-left: 5px;
  color: #d06262;
}

.page table:not(.form) td {
  border: 1px solid #E9E9E9;
  padding: 5px;
}

.pagination {
  width: 100%;
}
.pagination span {
  display: block;
  position: relative;
}
.pagination span:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border: solid 1px #1c407a;
  border-bottom: none;
  border-left: none;
  top: 50%;
  margin-top: -3px;
}
.pagination span.prev {
  float: left;
}
.pagination span.prev:after {
  transition: all 0.25s ease;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: -10px;
}
.pagination span.next {
  float: right;
}
.pagination span.next:after {
  transition: all 0.25s ease;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -10px;
}
.pagination div.pages {
  text-align: center;
}
.pagination div.pages a {
  padding: 0 2px;
}
.pagination div.pages a.active {
  font-weight: bold;
}

.mobileonly {
  display: none;
}

.collection-item div {
  float: left;
}
.collection-item .content {
  margin-left: 10px;
}
.collection-item .image {
  width: 200px;
}

p.sub {
  font-size: 0.8em;
  margin-bottom: 0;
}

.news h2 a {
  text-decoration: none;
}

#page_news_article .page {
  -moz-user-select: initial;
  -webkit-user-select: initial;
}

#page_manage_account form input[type=checkbox] {
  margin-top: 5px;
  margin-right: 5px;
}

#selectedQrCodes {
  margin-top: 50px;
  max-width: 500px;
}
#selectedQrCodes li {
  position: relative;
  height: 33px;
}
#selectedQrCodes li span {
  display: block;
  float: left;
  width: 200px;
}
#selectedQrCodes li input[type=textbox] {
  float: right;
  width: 30px;
}
#selectedQrCodes li a {
  display: block;
  float: right;
  width: 70px;
  margin-left: 10px;
  margin-top: 3px;
}
#selectedQrCodes li:first-child span:after {
  content: "Aantal";
  position: absolute;
  right: 72px;
  top: -25px;
  font-weight: bold;
}

#page_manage_account #customsector {
  display: none;
}

#page_checkout_customer .send {
  display: none;
}

#page_webshop_products .product {
  overflow: hidden;
}
#page_webshop_products .product form {
  margin-top: 6px;
  display: inline-block;
}
#page_webshop_products .product .product-image {
  float: left;
  text-decoration: none;
  min-height: 90px;
  min-width: 90px;
  margin-right: 1em;
}
#page_webshop_products .product .product-image img {
  width: 90px !important;
  height: auto;
  vertical-align: top;
}
#page_webshop_products .product .product-title {
  color: #05325c;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  word-break: break-word;
}
#page_webshop_products .product .product-price {
  color: #b84e96;
  font-weight: 600;
  font-size: 13px;
}
#page_webshop_products .product.summary {
  margin-bottom: 5px;
}
#page_webshop_products .product.summary .product-image {
  min-width: 50px;
}
#page_webshop_products .product.summary .product-image img {
  width: 50px !important;
}
#page_webshop_products .product.summary .valuechange {
  cursor: pointer;
  user-select: none;
}
#page_webshop_products .product.summary .numberinput {
  height: 32px;
  width: 60px;
  text-align: center;
}

.title-sub-price {
  color: #b84e96;
  font-weight: 600;
  font-size: 14px;
  margin: -0.5em 0 1em 0;
}

.ordersteps {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
  overflow: hidden;
}
.ordersteps li {
  float: left;
  margin: 0 1.5em 0.5em 0;
  color: #7f8d9b;
}
.ordersteps li.active {
  font-weight: 600;
  color: #b84e96;
}

.bijsluiter {
  /*margin-bottom: 2em;*/
}
.bijsluiter h2 {
  margin-bottom: 0;
}
.bijsluiter .download-link {
  font-size: 13px;
  margin: 0.6em 1em 0em 0;
}
.bijsluiter .download-link:before {
  height: 15px;
  width: 16px;
}

/**********************************  * CART***********************************/
.cartTop .input-group .input-group-addon {
  color: #909090;
  line-height: 30px;
}

.cartTop .input-group .input-group-addon.active {
  font-weight: bold;
  color: #555;
}

.cartTop .input-group .input-group-addon.inpath {
  color: #555;
}

.cartContainer .navbar {
  margin-top: 40px;
}

.cartContainer .navbar .btn {
  float: right;
}

.cartContainer .navbar > .btn:last-child {
  float: left;
}

@media (max-width: 767px) {
  .cartTop .input-group {
    display: block;
    overflow: hidden;
  }
  .cartTop .input-group .input-group-addon {
    float: left;
    width: 50%;
    line-height: 20px;
    border-radius: 0;
  }
}
/**********************************  * CART STEP 1***********************************/
.cartContainer .orderContent .row .col {
  padding: 10px 15px;
}

.cartContainer .orderContent .row.orderline {
  border-bottom: 1px solid #cccccc;
}

.cartContainer .orderContent .row.orderline:first-child {
  border-top: 1px solid #cccccc;
}

.cartContainer.content .orderContent .row.orderline .col.quantity {
  padding: 3px 15px;
}

.cartContainer.content .orderContent .row.orderline .col.quantity input[type=text] {
  width: 54px;
  text-align: center;
}

.cartContainer.content .orderContent .row.orderline .col.quantity .btn {
  font-size: 12px;
  line-height: 20px;
  padding-left: 12px;
  padding-right: 12px;
}

.cartContainer.content .orderContent .row.orderline .input-group {
  white-space: nowrap;
}

.cartContainer.content .orderContent .row.orderline .input-group input.form-control {
  width: 54px;
  text-align: center;
  display: inline-block;
}

@media (max-width: 767px) {
  .cartContainer .orderContent .row {
    padding: 10px 0;
  }
  .cartContainer .orderContent .row .col {
    padding: 0px 15px;
  }
  .cartContainer .orderContent .row.orderline .col {
    text-align: left;
    overflow: hidden;
  }
  .cartContainer .orderContent .row.orderline .col .xs-right {
    float: right;
  }
  .cartContainer .orderContent .row.orderline .col .xs-left {
    float: left;
  }
  .cartContainer.content .orderContent .row.orderline .col.quantity > span {
    float: left;
    line-height: 34px;
    margin-right: 5px;
  }
}
/**********************************  * SPECIAL INPUT GROUPS WITH FORMS***********************************/
.input-group form {
  display: table-cell;
}

.input-group form .form-control, .input-group form .btn {
  float: none;
  border-left: 0;
  vertical-align: top;
}

.input-group form:first-child .btn, .input-group form:first-child .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid #ccc;
}

.input-group form:last-child .btn, .input-group form:last-child .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group form:not(:first-child):not(:last-child) .btn, .input-group form:not(:first-child):not(:last-child) .form-control {
  border-radius: 0;
}

/**********************************  * FRONTPAGE***********************************/
.carousel {
  margin-bottom: 50px;
}

/**********************************  * FOOTER***********************************/
footer p {
  text-align: center;
}

footer a, footer span {
  display: inline-block;
  padding: 0 3px;
  white-space: nowrap;
}

/**********************************  * MINICART***********************************/
#minicart {
  line-height: 50px;
  overflow: hidden;
}

#minicart a {
  float: right;
  margin-top: 8px;
  margin-left: 10px;
}

#minicart.loading > span {
  opacity: 0.65;
}

@media (max-width: 767px) {
  #minicart {
    float: none !important;
    line-height: 25px;
  }
  #minicart > span {
    display: block;
  }
}
/**********************************  * PRODUCT***********************************/
.productView form.loading input[type=submit] {
  background-color: #428bca;
  border-color: #357ebd;
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}

.productView form .page-header {
  margin-top: 0px;
}

/**********************************  * custom shop code WBB ***********************************/
.orderline h3 {
  margin-top: 0;
}

.button.next {
  float: right;
  margin-top: 2em;
}
.button.next span {
  font-weight: 600;
  font-size: 16px;
  margin-right: 5px;
}

#managepass {
  margin-bottom: 50px;
}

input::-ms-clear {
  display: none;
}

.page p a[href='#'][title] {
    color: inherit;
    text-decoration-style: dotted;
    cursor: help;
}