:root {
  --spacing: 0.25rem;
  --spacing-relative: 0.25em;
  --color-primary: rgb(214, 11, 82);
  --color-primary-light: oklch(93.6% 0.032 17.717);
  --color-warning: #fd9a00;
  --radius-md: 0.375rem;
  --muted-color-text: #6d6e72;
  --text-color-primary: #212121;
  --border-light: #e5e7eb;
  --border-medium-light: #c9c9c9;
}

html {
  height: 100%;
}

body {
  color: #485156;
  background: #fff;
  margin-bottom: 5%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /*height: 100%;*/
}
main {
  flex-grow: 1;
  padding: 3rem;
}
.btn {
  border-radius: 15px;
}
.btn-grey {
  background-color: #858b8d;
  color: white !important;
}
.btn-grey:hover {
  background-color: rgb(214, 11, 82);
}
.btn-grey i {
  color: white !important;
}
.uppercase {
  text-transform: uppercase;
}
.flex-center {
  display: flex;
  justify-content: center;
}
.login-bg-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.form-signin {
  background-color: white;
  display: block;
  position: relative;
  border-radius: 30px;
  padding: 30px;
  width: 50vw;
  margin-top: 100px;
}
.form-signin .login-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 15px;
}
.form-signin .login-buttons > div {
  margin: 0 10px;
}
.form-signin label {
  color: #485156;
}
.form-signin input {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  margin: 0 0 20px 0;
  font-weight: normal;
}
.form-signin .remember-and-password > div {
  display: flex;
  justify-content: space-between;
}
.form-signin .remember-and-password > div label {
  margin: 0;
  margin-left: 20px;
}
.main-wrapper {
  height: 100%;
}
.page-content {
  height: 100%;
}
.vertical-align-middle {
  vertical-align: middle !important;
}

.main-wrapper {
  background: #fff;
  max-width: 1600px;
  margin: 0 auto 0 auto;
}

.bottom-navigation {
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  background: #fff;
}
.logged-in-as {
  margin-top: 5px;
}
.navbar-header {
  display: flex;
  align-items: center;
}
.navbar-header a {
  color: #485156;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.navbar-header a i {
  font-size: 20px;
  margin-right: 7px;
}

.navbar-brand {
  padding: 3px 15px 3px 30px;
}

.navbar-nav li a {
  display: flex;
  align-items: center;
  padding: 7px;
}

.navbar-nav li a i {
  margin-left: 5px;
  font-size: 30px;
}

.navbar-nav li a:hover {
  color: rgb(214, 11, 82) !important;
}
#navbar-grey {
  background-color: #485156;
}
#navbar-grey li a {
  color: white;
}
#navbar-grey .navbar-right {
  padding-top: 10px;
}
#navbar-grey.pink-border {
  border-bottom: 15px solid rgb(224, 41, 100);
}
#navbar-pink {
  background: rgb(214, 11, 82);
  min-height: 50px;
  display: flex;
  color: white;
  align-items: center;
}
#navbar-pink p:first-of-type {
  font-weight: bold;
  width: 170px;
}
#navbar-pink p:nth-of-type(2) {
  overflow: hidden;
  white-space: nowrap;
}
#hamburger-menu-checkbox {
  display: none;
}
#navbar-grey ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  margin: 10px 0 0 0;
}
#navbar-grey ul::before {
  content: none;
}
#navbar-grey ul::after {
  content: none;
}
#navbar-grey li.white-btn a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #485155;
  display: flex;
  justify-content: space-between;
}
#navbar-grey li.white-btn a i.la-angle-right {
  font-size: 10px;
}
#navbar-grey li.white-btn a i {
  font-size: 20px;
  margin-right: 7px;
}
.navbar .white-btn {
  background: white;
  border-radius: 15px;
  padding: 5px 10px;
  cursor: pointer;
  flex-grow: 1;
  margin-bottom: 10px;
}
.navbar .white-btn span {
  display: flex;
  align-items: center;
}
.navbar .white-btn.red {
  background-color: lightcoral;
}
.navbar .white-btn.red a span,
.navbar .white-btn.red a i {
  color: white;
}
.navbar .white-btn > a {
  padding: 0;
}

.navbar .container {
  width: 100%;
  padding: 0;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  box-sizing: content-box;
}

.ticker-wrap .ticker {
  display: inline-block;
  white-space: nowrap;
  /*padding-right: 100%;*/
  box-sizing: content-box;

  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  /*-webkit-animation-duration: 250s;*/
  /*animation-duration: 250s;*/
}

.ticker-wrap .ticker__item {
  display: inline-block;
  margin-left: 100px;
}

.ticker-wrap .ticker__item:first-of-type {
  margin-left: 300px;
}

.logo-small {
  height: 40px;
}

.carousel .carousel-indicators .active {
  background: rgb(214, 11, 82);
}
.carousel .carousel-indicators li {
  border-color: rgb(214, 11, 82);
}
.carousel-home .carousel-indicators .active {
  background: white;
}
.carousel-home .carousel-indicators li {
  border-color: white;
}
.carousel-home {
  margin: -42px -30px 0 -30px;
}
.carousel-home .carousel-inner {
  max-height: 400px;
}
.carousel-home .carousel-inner .carousel-message {
  width: 349px;
  height: 172px;
  background-color: rgba(0, 0, 0, 0.7);
  display: block;
  position: absolute;
  top: 167px;
  left: 200px;
  border-radius: 20px;
  padding: 15px;
  color: white;
}
.carousel-home .carousel-inner .item > img {
  width: 100%;
}
.carousel-home .carousel-inner .carousel-message h1 {
  font-weight: 300;
  font-size: 24px;
}
.carousel-home .carousel-inner .carousel-message .logo-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.carousel-home .carousel-inner .carousel-message .logo-row img {
  max-height: 50px;
}

.selling-points {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid black;
  flex-wrap: wrap;
}
.selling-points .selling-point {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.selling-points .selling-point img {
  width: 50px;
  margin-right: 15px;
}
.selling-points .selling-point .selling-point-title {
  text-transform: uppercase;
  font-weight: 500;
}

.thin-title {
  font-weight: lighter;
  margin-bottom: 30px;
}

.popular-product img {
  margin-bottom: 15px;
  height: 480px;
  object-fit: cover;
  width: 100%;
}
.popular-product p {
  font-size: 20px;
  font-weight: lighter;
  color: #485156;
}

.sub-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.mb-60 {
  margin-bottom: 60px;
}

.product-in-de-kijker {
  display: flex;
}
.product-in-de-kijker > div:nth-of-type(2) {
  background-size: cover;
  background-position: center;
  min-width: 300px;
}

.carousel-quotes h1 {
  font-size: 21px;
  line-height: 30px;
  padding-bottom: 20px;
}

.mobile-home-buttons {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 20px;
}
.mobile-home-buttons .big-buttons {
  background-color: rgb(214, 11, 82) !important;
  color: white;
  height: 90px;
  flex-direction: column;
}
.mobile-home-buttons a {
  height: 60px;
  border: 1px solid rgb(214, 11, 82);
  border-radius: 5px;
  list-style: none;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 0 0 calc(50% - 10px); /* subtract half of the gap from the width */
  max-width: calc(50% - 10px); /* subtract half of the gap from the width */
}
.mobile-home-buttons a.big-buttons {
  justify-content: center;
}
.mobile-home-buttons a i {
  font-size: 25px;
  margin-right: 5px;
}
.mobile-home-buttons a .icon-with-dot {
  display: flex;
  margin-right: 5px;
}
.mobile-home-buttons a .icon-with-dot .dot {
  margin-left: -6px;
  width: 20px;
  height: 20px;
  font-size: 11px;
}

/* .lang,
.profile-btn,
.cart-btn {
    border-left: 1px solid #c9c9c9
} */

.profile-btn.lang {
  height: 45px;
  display: flex;
  margin-left: 5px;
}
.profile-btn.lang .flag-icon {
  margin-right: 3px;
}
.profile-btn .lang-shortcode i {
  font-size: 15px;
}
.profile-btn.lang ul .flag-icon {
  margin-right: 10px;
}
.btn-collapse {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 0px;
  line-height: 20px;
  color: #6d6e72;
}

.btn-outline {
  border: 1px solid #c9c9c9;
  border-radius: 5px;
}

.btn-primary-outline {
  border: 1px solid rgb(214, 11, 82);
  color: rgb(214, 11, 82);
  transition: background-color 0.3s;
}

.btn-primary-outline:hover {
  background-color: rgba(214, 11, 82, 0.1);
  color: rgb(214, 11, 82);
}

.btn-primary-outline:active,
.btn-primary-outline:focus {
  background-color: rgba(214, 11, 82, 0.2);
  color: rgb(214, 11, 82);
}

.pink {
  color: rgb(214, 11, 82) !important;
}

.navbar-nav > li.search-btn > a {
  padding: 25px;
}

.lang .dropdown-menu {
  min-width: 70px;
}

.lang .dropdown-menu a {
  padding: 10px;
}

#navbar-grey .language-list-item {
  display: none;
}
#navbar-grey .language-list-item a .flag-icon {
  margin-right: 5px;
}
.bottom-navigation-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bottom-navigation-list > li {
  float: left;
  width: 16.66%;
}

.bottom-navigation-list > li a {
  position: relative;
  padding: 10px 20px;
  text-align: center;
  display: block;
  color: #6d6e72;
  font-weight: 500;
}

.bottom-navigation-list > li.no-icon a {
  padding: 15px 20px;
}

.bottom-navigation-list > li a:after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 100%;
  width: 1px;
  background: #c9c9c9;
}

.bottom-navigation-list > li:last-child a:after {
  display: none;
}

.bottom-navigation-list > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

.bottom-navigation-list > li.red a:before {
  background: #d83653;
}

.bottom-navigation-list > li.yellow a:before {
  background: #facd48;
}

.bottom-navigation-list > li.green a:before {
  background: #b7cb3d;
}

.bottom-navigation-list > li.blue a:before {
  background: #389bdd;
}

.bottom-navigation-list > li.orange a:before {
  background: #ec6736;
}

.bottom-navigation-list > li a:hover:before {
  height: 4px;
}

.page-content {
  /* padding: 150px 100px; */
  min-height: calc(100vh - 109px);
  padding-left: 2rem;
  padding-right: 2rem;
}

.steps {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.steps > li {
  flex-basis: 50%;
}

@media (min-width: 650px) {
  .steps li {
    flex-basis: auto;
  }
  .steps-container-2 {
    position: relative;
  }

  .steps-container-2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #c9c9c9;
    z-index: 1;
    transform: translateY(1px);
  }
}

.small-title {
  display: block;
  text-transform: uppercase;
  font-size: 0.8em;
}

.big-title {
  font-weight: 900;
  text-transform: uppercase;
}
.info {
  font-weight: normal;
  font-size: 12px;
}

.step-item .small-title,
.step-item .big-title {
  color: #b6b7b8;
}

.steps-container {
  margin-bottom: 10px;
}

.steps-container .steps-line {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  background: #c9c9c9;
  width: 100%;
}

.steps-container {
  position: relative;
}

.step-item {
  display: inline-block;
  padding: 10px 20px 10px 55px;
  background: #fff;
  position: relative;
  z-index: 10;
  text-align: left;
}

.circle {
  width: 30px;
  height: 30px;
  background: #b6b7b8;
  display: block;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
}

.steps li .circle {
  background: rgb(214, 11, 82);
}

.steps li:not(.active) a span {
  opacity: 0.5;
}

.steps li.visited .circle .step-icon {
  display: block;
}

.steps li.visited .circle .step-number {
  display: none;
}

.steps li.active .big-title,
.steps li.active .small-title,
.steps li.visited .big-title,
.steps li.visited .small-title {
  color: #6d6e72;
}

.step-icon {
  font-size: 1.1em;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
}

.step-number {
  left: 0;
  right: 0;
  position: absolute;
  display: block;
  text-align: center;
  font-size: 1.1em;
  top: 4px;
}
.contact-help {
  position: fixed;
  bottom: 9px;
  right: 20px;
  z-index: 2000;
}
.contact-help a {
  color: #485156;
  display: flex;
  align-items: center;
}
.contact-help a i {
  color: rgb(214, 11, 82);
  font-size: 23px;
  margin-right: 7px;
}
.contact-help button {
  font-size: 20px;
  padding: 8px 15px;
}

.most-ordered-products {
  padding: 30px;
}

.order-info-bar {
  border: 1px solid #858b8d;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.order-info-bar a:hover {
  color: rgb(214, 11, 82);
  cursor: pointer;
}
.order-info-bar a {
  color: #485156;
  font-size: 20px;
}

.products-categories {
  display: flex;
  flex-wrap: wrap;
}

.products-list-item {
  width: 25%;
  padding: 0 40px 30px 0;
}
.products-list-item h1 {
  border-top: 1px solid black;
  padding-top: 20px;
}

.product-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 25px;
}

.product-list li {
  font-size: 0; /*To remove whitespace*/
  cursor: pointer;
}

.product-list li i {
  margin-right: 7px;
}

.product-list > li > span {
  height: 30px;
  display: inline-block;
}
.product-list > li > span > a {
  display: inline-block;
  padding: 4px 0 4px 0;
  font-size: 1.3rem;
  color: #485156;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}
.product-list > li:hover > span > a:before {
  height: 1px;
  position: absolute;
  right: 0;
  left: -20px;
}
.product-list > li:hover > span > a,
.product-list > li:hover > span > i {
  color: #d60b52;
}
.product-list > li.js-product-info:hover > span > a,
.product-list > li.js-product-info:hover > span > i {
  color: #485156;
}
.product-list > li:hover > span {
  border-bottom: 1px solid #d60b52;
}
.product-list > li.js-product-info:hover > span {
  border-color: #485156;
}
.product-list > li .las {
  font-size: 20px;
}

.products-list-item h3 {
  padding-bottom: 30px;
  margin-bottom: 20px;
  position: relative;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 33%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 7px 1px;
  background-repeat: repeat-x;
}

.products-list-item h3:after {
  content: "";
  bottom: 15px;
  height: 3px;
  background: rgb(214, 11, 82);
  width: 40px;
  position: absolute;
  left: 0;
}

.product-list-internal {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 10px;
}

.product-list-internal > li a {
  display: inline-block;
  padding: 5px 0 5px 0;
  /*background: url(../images/bullet.png) no-repeat left 10px center;*/
  font-size: 12px;
  color: #6d6e72;
  position: relative;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
  cursor: pointer;
}

.product-list-internal > li a:hover {
  /*background: url(../images/bullet-active.png) no-repeat left 10px center rgb( 214, 11, 82);*/
  color: #d60b52;
}
.js-custom-lightbox + .tip-zoom {
  display: none;
}
.js-custom-lightbox:hover + .tip-zoom {
  display: block;
  position: absolute;
  bottom: 42px;
  left: 5px;
  z-index: 2;
  right: 5px;
  background: lightgray;
  opacity: 0.4;
  color: black;
}

.toggle-icon {
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: url(../images/plus.png) no-repeat center center #b6b7b8;
  color: #fff;
  display: block;
  position: absolute;
  right: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.product-list > li > a.active .toggle-icon {
  background: url(../images/minus.png) no-repeat center center #b6b7b8;
}

.product-list > li > a.active {
  color: #6d6e72;
}

.title-block {
  position: relative;
  padding: 15px 0;
  text-align: center;
}

.title-block .line {
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #c9c9c9;
}

.title-block h3 {
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 10px 15px;
  margin: 0;
  display: inline-block;
  font-weight: 400;
}

.radio-option {
  display: none;
}

.custom-radio {
  position: relative;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  color: rgba(109, 105, 114, 1);
  /*overflow: hidden;*/
  /*height: 190px;*/
}

.custom-radio .bottom-positioned {
  display: block;
  text-align: center;
  background: #f0f0f0;
  padding: 10px;
  font-size: 0.9em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.radio-box-with-description .selector-title {
  display: block;
  text-align: center;
  background: #f0f0f0;
  padding: 10px 5px;
  font-size: 0.9em;
}

.radio-box-with-description > div {
  background-color: #fbfbfb;
  padding: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.radio-box-with-description > div i {
  position: relative;
  right: auto;
  bottom: auto;
}
.ophangingen-flex-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 17px;
}
.ophangingen-flex-item {
  flex: 1 1 0px;
  background-color: #fbfbfb;
  min-width: 150px;
  max-width: 25%;
}
.coating-radios,
.suspension-radios {
  display: none;
}
.coating-radios + label,
.suspension-radios + label {
  border: 1px solid #c9c9c9;
  cursor: pointer;
}
.coating-radios + label:hover,
.suspension-radios + label:hover {
  border: 3px solid rgb(214, 11, 82);
}

.coating-radios:checked + label,
.suspension-radios:checked + label {
  border: 3px solid rgb(214, 11, 82);
}
.chosen-coating-box {
  margin-right: 10px;
  padding: 8px 25px;
}

span.helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

#ajax-target-product-select-child-zone .radio {
  height: 100%;
}

#product-select-child-zone .title-block h3:first-letter {
  text-transform: capitalize;
}

.radio-list.clear-padding-lr {
  margin-left: -20px;
  margin-right: -20px;
}

.radio-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.radio-list > li {
  width: 14.4%;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #c9c9c9;
  margin: 0 1% 20px 1%;
}

.radio-list > li .big-title {
  text-transform: none;
}

.radio-list .radio {
  margin: 0;
}

.radio-list > li.selected {
  border-color: rgb(214, 11, 82);
}

.product-variant-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  background-color: rgb(214, 11, 82);
  border-radius: 10px;
  vertical-align: middle;
}

.radio-list.radio-list-padding li .custom-radio {
  padding: 50px 20px !important;
  display: block;
}

.radio-list.radio-list-full li {
  margin: 0 0 20px 0;
  width: 100%;
}

.radio-list.radio-list-full {
  margin-top: 0;
}

.radio-list-padding-small li {
  padding: 20px 10px;
  text-align: center;
}

.radio-list-padding-small li img {
  max-width: 100%;
}

#step1RAL {
  padding-left: 55px;
  background: url(../images/color.png) no-repeat left 10px center;
}

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

.form-group {
  position: relative;
}

.form-group-tool {
  position: relative;
  margin-bottom: 10px;
  /*min-width: 170px;*/
  /*float: left;*/
  /*width: 48%;*/
  /*margin: 0 1% 10px 1%;*/
}

.form-group-tool .form-control {
  padding-left: 50px;
  padding-right: 50px;
}

.form-group-tool-no-padding-left .form-control {
  padding-left: 12px !important;
}

.form-group-tool .name {
  display: inline-block;
  font-weight: 600;
  font-size: 1.2em;
  left: 15px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  line-height: 20px;
}

.form-group-tool.form-group-tool-padding-right .form-control {
  padding-left: 20px;
}

.form-group-tool.form-group-tool-padding-right .dimensions {
  color: #fff;
  background: rgb(214, 11, 82);
}

.col-dynamic-width {
  float: left;
  margin: 0 15px;
  /*overflow: auto;*/
}
.col-dynamic-width::after {
  content: "";
  clear: both;
  display: table;
}

.dimensions {
  display: inline-block;
  padding: 3px 5px;
  font-size: 0.7em;
  background: #f0f0f0;
  border-radius: 2px;
  text-transform: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: 10px;
}

.v-line {
  top: 8px;
  bottom: 8px;
  left: 40px;
  width: 1px;
  position: absolute;
  background: #c9c9c9;
  margin: 0;
}

.inline-elements {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.inline-elements > li {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 0.9em;
  color: rgba(109, 110, 114, 0.6);
}

.page-title {
  margin-top: 0px;
}
.page-title.underlined {
  padding-bottom: 5px;
  font-weight: 300;
  border-bottom: 2px solid rgb(214, 11, 82);
  display: inline-block;
}
.form-group .page-title {
  padding-bottom: 0;
}

.grey-title {
  color: #8c8c8c;
  font-size: 23px;
  font-weight: normal;
}

.overview-list {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}

.overview-list > li {
  margin-bottom: 15px;
  padding: 10px 20px;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
}

.overview-list > li .small-title {
  color: rgba(109, 110, 114, 0.6);
  text-transform: none;
}

.new-order-btn {
  border: 1px solid rgb(214, 11, 82);
  color: rgb(214, 11, 82);
  display: block;
  background: #fff;
  margin-bottom: 15px;
  padding: 20px 30px;
  text-align: center;
  width: 100%;
}

.btn-icon {
  font-size: 2em;
}

.btn-title {
  display: block;
  font-size: 1.2em;
}

.overview-btn {
  background: rgb(214, 11, 82);
  color: #fff;
  display: block;
  margin-bottom: 20px;
  padding: 30px;
  text-align: center;
  width: 100%;
}

.overview-btn:hover {
  color: #fff !important;
}

.header {
  margin-bottom: 2rem;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  height: auto;
  background: #fff;
  z-index: 1000;
}

.sticky {
  /* position: fixed !important; */
  /*top: -130px;*/
  background: #fff;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  max-width: 100%;
}

.sticky.sticky-2 {
  top: 0;
}

.row.row-10 {
  margin: 0 -5px;
}

.row.row-10 .col-xs-1,
.row.row-10 .col-sm-1,
.row.row-10 .col-md-1,
.row.row-10 .col-lg-1,
.row.row-10 .col-xs-2,
.row.row-10 .col-sm-2,
.row.row-10 .col-md-2,
.row.row-10 .col-lg-2,
.row.row-10 .col-xs-3,
.row.row-10 .col-sm-3,
.row.row-10 .col-md-3,
.row.row-10 .col-lg-3,
.row.row-10 .col-xs-4,
.row.row-10 .col-sm-4,
.row.row-10 .col-md-4,
.row.row-10 .col-lg-4,
.row.row-10 .col-xs-5,
.row.row-10 .col-sm-5,
.row.row-10 .col-md-5,
.row.row-10 .col-lg-5,
.row.row-10 .col-xs-6,
.row.row-10 .col-sm-6,
.row.row-10 .col-md-6,
.row.row-10 .col-lg-6,
.row.row-10 .col-xs-7,
.row.row-10 .col-sm-7,
.row.row-10 .col-md-7,
.row.row-10 .col-lg-7,
.row.row-10 .col-xs-8,
.row.row-10 .col-sm-8,
.row.row-10 .col-md-8,
.row.row-10 .col-lg-8,
.row.row-10 .col-xs-9,
.row.row-10 .col-sm-9,
.row.row-10 .col-md-9,
.row.row-10 .col-lg-9,
.row.row-10 .col-xs-10,
.row.row-10 .col-sm-10,
.row.row-10 .col-md-10,
.row.row-10 .col-lg-10,
.row.row-10 .col-xs-11,
.row.row-10 .col-sm-11,
.row.row-10 .col-md-11,
.row.row-10 .col-lg-11,
.row.row-10 .col-xs-12,
.row.row-10 .col-sm-12,
.row.row-10 .col-md-12,
.row.row-10 .col-lg-12 {
  padding-right: 5px;
  padding-left: 5px;
}

.row-colums-10 .col-xs-10 {
  width: 100%;
}

.row-colums-10 .col-xs-9 {
  width: 90%;
}

.row-colums-10 .col-xs-8 {
  width: 80%;
}

.row-colums-10 .col-xs-7 {
  width: 70%;
}

.row-colums-10 .col-xs-6 {
  width: 60%;
}

.row-colums-10 .col-xs-5 {
  width: 50%;
}

.row-colums-10 .col-xs-4 {
  width: 40%;
}

.row-colums-10 .col-xs-3 {
  width: 30%;
}

.row-colums-10 .col-xs-2 {
  width: 20%;
}

.row-colums-10 .col-xs-1 {
  width: 10%;
}

.shopping-cart-message {
  padding: 50px;
  text-align: center;
  background: #fbeaea;
  margin-top: 20px;
}

.shopping-cart-message h3 {
  font-weight: normal;
}

.shopping-cart-message h3 {
  margin-top: 5px;
  line-height: 1.4em;
}

.table-order th {
  background: rgb(214, 11, 82);
  color: #fff;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
}

.table-order td {
  vertical-align: middle;
}

.table-order tr:nth-child(even) {
  border-bottom: 1px solid #e7e7e7;
  /*background: #f4f4f4;*/
  background: #fff;
}

.table-order tbody td {
  vertical-align: top;
}

.table-invisible > tbody > tr > td {
  padding: 0;
  border: 0;
}

.ral-color-view {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.overview-list li {
  border: 0;
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 0;
}

.overview-list li label.small-title {
  display: block;
  font-size: 0.9em;
  text-transform: uppercase !important;
  font-weight: bold;
  letter-spacing: 1px;
}

.overview-list li .form-control {
  width: 100%;
  border: 1px solid #c9c9c9;
  font-weight: normal;
}

.overview-list li .form-control:focus {
  border-color: rgb(214, 11, 82);
}

.overview-list li h3 {
  font-size: 1.1em;
  margin-top: 0;
  color: #6d6e72;
  font-weight: 500;
  margin-bottom: 5px;
}

.overview-list li p {
  font-size: 0.9em;
  color: rgba(109, 110, 114, 0.6);
}

.overview-list li .error#mainReference-error,
.overview-list li .error#projectNumber-error,
.overview-list li .error#projecName-error,
.overview-list li .error#sideReference-error {
  display: inline-block;
  margin-top: 10px;
  background: #fbeaea;
  padding: 10px 15px;
  font-size: 0.9em;
  color: rgb(214, 11, 82);
}

.options-table td.selected img {
  border-color: rgb(214, 11, 82);
}

.options-table {
  margin: 15px 0;
}

.options-table th {
  font-size: 1.5em;
  font-weight: normal;
}

.options-table .small-title {
  display: inline-block;
  padding: 4px 15px;
  font-size: 0.85em;
  margin-bottom: 5px;
  text-transform: normal;
  background: rgba(109, 110, 114, 0.1);
}

.options-table p {
  color: rgba(109, 110, 114, 0.6);
}

.options-table h3 {
  font-size: 1.2em;
  margin: 0 0 5px 0;
}

.options-table > tbody > tr > th,
.options-table > tbody > tr > td {
  padding: 15px 10px;
  vertical-align: middle;
  border: 0;
}

.options-table > tbody > tr > td.option {
  padding: 15px 35px;
}

.options-table td .radio {
  margin: 0 !important;
}

.options-table th {
  background: rgba(109, 110, 114, 0.1);
  border: 0;
}

.ui-widget-content.ui-autocomplete {
  padding: 20px;
  background: #fff;
  max-height: 300px;
  overflow-y: scroll;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.ui-widget-content.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper:hover {
  color: rgb(214, 11, 82) !important;
  padding: 2px 5px;
  margin: 0;
}

.ui-widget-content.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper {
  padding: 2px 5px;
  margin: 0;
}

.thickness-list,
.door-puller-mounts-list {
  margin: 0 -5px;
  list-style: none;
  padding: 0;
}

.thickness-list > li,
.door-puller-mounts-list > li {
  float: left;
  margin: 0 5px;
}

.css-customRadioWidth {
  /*max-width: 73px !important;*/
}

.thickness-list > li .custom-radio,
.door-puller-mounts-list > li .custom-radio {
  padding: 10px 10px !important;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  display: block;
  -webkit-transition:
    border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}

.thickness-list > li .radio,
.door-puller-mounts-list > li .radio {
  margin: 0 0 10px 0;
}

.thickness-list > li.selected .radio .custom-radio,
.door-puller-mounts-list > li.selected .radio .custom-radio {
  border-color: rgb(214, 11, 82);
}

.thickness-list > li.selected .radio .custom-radio .big-title,
.door-puller-mounts-list > li.selected .radio .custom-radio .bit-title {
  color: rgb(214, 11, 82);
}
.door-puller-mounts-list > li .radio .custom-radio .bit-title a i {
  color: rgb(109, 105, 114);
}
.door-puller-mounts-list > li.selected .radio .custom-radio .bit-title a i {
  color: rgb(214, 11, 82);
}

.input-element {
  margin-bottom: 15px;
}

.input-element .inline {
  display: inline;
}

.input-element > .small-title,
.input-element > .form-group .small-title,
.small-form-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
  color: rgba(109, 110, 114, 0.6);
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.page-title {
  color: rgb(214, 11, 82);
  padding-bottom: 20px;
  font-weight: 200;
  position: relative;
  font-size: 1.8em;
  margin: 0;
}

/*.page-title:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 10px;*/
/*    left: 0;*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background: rgb( 214, 11, 82);*/
/*}*/

#dimension-form h2 {
  margin-top: 0px;
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 1.8em;
}

.checkbox-option {
  visibility: hidden;
}

.checkbox-custom {
  padding: 5px 5px 5px 30px !important;
  background: url(../images/checkbox-custom.png) no-repeat left center !important;
}

.checkbox-custom.selected {
  background: url(../images/checkbox-custom-active.png) no-repeat left center !important;
}

@media (min-width: 768px) {
  .row-colums-10 .col-sm-10 {
    width: 100%;
  }

  .row-colums-10 .col-sm-9 {
    width: 90%;
  }

  .row-colums-10 .col-sm-8 {
    width: 80%;
  }

  .row-colums-10 .col-sm-7 {
    width: 70%;
  }

  .row-colums-10 .col-sm-6 {
    width: 60%;
  }

  .row-colums-10 .col-sm-5 {
    width: 50%;
  }

  .row-colums-10 .col-sm-4 {
    width: 40%;
  }

  .row-colums-10 .col-sm-3 {
    width: 30%;
  }

  .row-colums-10 .col-sm-2 {
    width: 20%;
  }

  .row-colums-10 .col-sm-1 {
    width: 10%;
  }
}

@media (min-width: 992px) {
  .row-colums-10 .col-md-10 {
    width: 100%;
  }

  .row-colums-10 .col-md-9 {
    width: 90%;
  }

  .row-colums-10 .col-md-8 {
    width: 80%;
  }

  .row-colums-10 .col-md-7 {
    width: 70%;
  }

  .row-colums-10 .col-md-6 {
    width: 60%;
  }

  .row-colums-10 .col-md-5 {
    width: 50%;
  }

  .row-colums-10 .col-md-4 {
    width: 40%;
  }

  .row-colums-10 .col-md-3 {
    width: 30%;
  }

  .row-colums-10 .col-md-2 {
    width: 20%;
  }

  .row-colums-10 .col-md-1 {
    width: 10%;
  }
  .products-list-item.item-1 h1,
  .products-list-item.item-2 h1,
  .products-list-item.item-3 h1,
  .products-list-item.item-4 h1 {
    border-top: none;
  }
}

@media (min-width: 1200px) {
  .row-colums-10 .col-lg-10 {
    width: 100%;
  }

  .row-colums-10 .col-lg-9 {
    width: 90%;
  }

  .row-colums-10 .col-lg-8 {
    width: 80%;
  }

  .row-colums-10 .col-lg-7 {
    width: 70%;
  }

  .row-colums-10 .col-lg-6 {
    width: 60%;
  }

  .row-colums-10 .col-lg-5 {
    width: 50%;
  }

  .row-colums-10 .col-lg-4 {
    width: 40%;
  }

  .row-colums-10 .col-lg-3 {
    width: 30%;
  }

  .row-colums-10 .col-lg-2 {
    width: 20%;
  }

  .row-colums-10 .col-lg-1 {
    width: 10%;
  }
}

.section-block {
  position: relative;
  height: 450px;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.image-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.section-block-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  padding: 40px;
  color: #fff;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */
}

.page-content.page-content-index {
  padding: 10px 0px 50px 0px;
}

.section-block-caption h3 {
  font-weight: 700;
  margin: 0 0 5px 0;
  font-size: 3.5em;
}

.section-block-caption p {
  font-size: 1.3em;
}

.outline-btn {
  background: transparent;
  color: #fff;
  display: inline-block;
  border: 2px solid #fff;
  padding: 6px 15px;
}

.outline-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.section-block.section-block-service .outline-btn:hover {
  background: transparent;
}

.section-block.section-block-service h3 {
  font-size: 2.2em;
}

.category-subtitle {
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.section-block.section-block-service .outline-btn {
  padding-left: 0;
  border-color: transparent;
}

.section-news {
  padding: 20px 0px;
}

.section-title {
  position: relative;
  font-weight: 700;
  font-size: 2.4em;
  padding: 15px 20px 15px 0;
  display: inline-block;
  margin-top: 0;
}

.section-title:after {
  background: rgb(214, 11, 82);
  content: "";
  position: absolute;
  top: 0;
  height: 3px;
  bottom: 0;
  left: 100%;
  width: 40px;
  margin: auto;
}

.news-item .image-container {
  margin-bottom: 15px;
}

.news-item {
  margin-bottom: 20px;
}

.image-bg {
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
}

.section-block:hover .image-bg {
  moz-transform: scale(1.1) rotate(0deg);
  -webkit-transform: scale(1.1) rotate(0deg);
  -o-transform: scale(1.1) rotate(0deg);
  -ms-transform: scale(1.1) rotate(0deg);
  transform: scale(1.1) rotate(0deg);
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
}

.footer {
  padding: 0;
}

.footer-top {
  padding: 30px 0;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  font-size: 0.9em;
}

.footer-bottom {
  padding-top: 30px;
}

.power-by {
  text-align: right;
  font-size: 0.8em;
}

.power-by a {
  color: #6d6e72;
}

.red {
  color: red;
}

.f-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.f-list > li {
  float: left;
  font-size: 0.8em;
}

.f-list > li a {
  display: block;
  color: #6d6e72;
  display: block;
  padding: 5px 15px;
  position: relative;
}

.f-list > li a:before {
  content: "";
  right: 100%;
  top: 7px;
  bottom: 7px;
  background: #c9c9c9;
  width: 1px;
  position: absolute;
}

.f-list > li.first {
  padding: 5px 15px 5px 0;
}

.news-item h4 {
  line-height: 1.4em;
  font-weight: 500;
}

@media (min-width: 1600px) {
  .header.sticky .navbar {
    margin: 0 auto;
  }

  .header.sticky .bottom-navigation .bottom-navigation-list {
    max-width: 1600px;
    margin: 0 auto;
  }
}

/* The alert message box */
.alert-box {
  width: 100%;
  padding: 20px;
  background-color: rgb(214, 11, 82);

  /* Purple */
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  /* 600ms to fade out */
  display: none;
}
.alert-box.small {
  padding: 5px 7px;
}

.alert-box a {
  color: white;
  border-bottom: 1px white solid;
}

#dimension-form .alert-box {
  width: 100%;
  margin: 0;
  margin-bottom: 15px;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}

.custom-radio img {
  width: 100%;
  border: 1px solid transparent;
}

label {
  text-transform: none;
}

label.error {
  float: left;
  color: rgb(214, 11, 82);
  width: 100%;
}

.error::after {
  content: "";
  clear: both;
  display: table;
}

.grade-1 {
  background-color: #d83653;
  color: #fff !important;
}

.grade-2 {
  background-color: #facd48;
  color: #fff !important;
}

.grade-3 {
  background-color: #b7cb3d;
  color: #fff !important;
}

.calendar-dow td div {
  pointer-events: none;
}

.calendar-dow td.event div,
.calendar-dow td.event-styled div {
  pointer-events: inherit;
  cursor: pointer;
}

.bold {
  font-weight: 600;
}

.alert {
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 4px;
  z-index: 1;
  position: relative;
}

.gray-box {
  background: #eee;
  padding: 15px;
  font-size: 1.1em;
}

.gray-box.gray-box-small {
  margin-bottom: 20px;
  font-size: 0.9em;
  padding: 20px;
}

.alert.alert-danger-inverse {
  background: rgb(214, 11, 82);
  color: #fff;
  border-color: rgb(214, 11, 82);
  padding: 5px 10px;
}
.alert.alert-danger-inverse.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alert.alert-danger-inverse button.btn-primary {
  background-color: white;
  color: rgb(214, 11, 82);
}

.info-title.info-title-left:after {
  left: 0;
  right: initial;
}

.alert.alert-warning {
  background: #facd48;
  color: #fff;
  border-color: #facd48;
}

/* Ophanglippen warning */
.ophanglippen-warning {
  margin-top: 10px;
}

.ophanglippen-warning-link {
  margin-left: 5px;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  color: inherit !important;
  display: inline !important;
}

.ophanglippen-warning-indicator {
  color: #e0a800;
  margin-left: 8px;
}

.ophanglippen-warning-sticky {
  position: sticky;
  top: 10px;
  z-index: 100;
  margin: 10px 0;
}

.alert.alert-success {
  background: #b7cb3d;
  color: #fff;
  border-color: #b7cb3d;
}

.calendar-month-header {
  font-size: 1.4em;
  font-weight: normal;
}

.calendar-month-header span {
  padding: 0 !important;
}

div.zabuto_calendar .table tr.calendar-month-header td span {
  font-size: 0.9em;
  padding: 0 !important;
  text-transform: uppercase;
  font-weight: 400;
}

div.zabuto_calendar .table tr.calendar-month-header td {
  background: #fff;
}

div.zabuto_calendar div.calendar-month-navigation {
  padding: 0;
  width: 50px;
  color: rgba(40, 40, 40, 0.4);
  margin-top: -5px;
}

.calendar-month-header td:last-child .calendar-month-navigation {
  float: right;
}

div.zabuto_calendar .table tr td div.day {
  padding: 10px 5px;
  color: rgba(40, 40, 40, 0.6);
}

/* Customize the label (the container) */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-top: 2px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d2d2d2;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: rgb(182, 5, 62);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.info-title {
  position: relative;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 0.9em;
  margin: 20px 0;
}

.info-title:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 60px;
  background: rgb(214, 11, 82);
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 768px) {
  /*.form-group-tool {*/
  /*    float: none;*/
  /*    width: 100%;*/
  /*    margin: 0 0 10px 0;*/
  /*}*/
}

.disabled {
  opacity: 0.2;
  cursor: not-allowed !important;
  pointer-events: none;
}

.hard-disabled {
  opacity: 0.2;
  cursor: not-allowed !important;
  pointer-events: none;
}

.disabled .custom-radio {
  cursor: not-allowed !important;
}

#fast-order-toggle {
  text-align: right;
  float: right;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  margin: 0 0 5px 0;
  position: relative;
  left: auto;
  right: auto;
  transform: none !important;
}
#fast-order-toggle a {
  padding: 10px;
  background: white;
  border: 1px solid rgb(214, 11, 82);
  display: inline-block;
}
#fast-order-toggle a.active {
  background: rgb(214, 11, 82);
  color: white;
}
#fast-order-toggle a:nth-child(odd) {
  margin-right: -1px;
}

.fast-order-table .form-control {
  min-width: 90px;
}

.fast-order-container {
  background-color: white;
}

.fastOrderToggleDiv {
  position: -webkit-sticky;
  position: sticky;
  top: 180px;
  z-index: 9999;
}

#image-product-dimensions {
  position: sticky;
  top: 230px;
}
.dimensions-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 7px !important;
}
.dimensions-list .input-element {
  margin-right: 7px;
  margin-left: 7px;
}

.row.wide-bulk {
  margin-top: 30px;
}

.existing-ral-color-list {
  margin: 0 -1%;
  list-style: none;
  padding: 0;
}

.existing-ral-color-list > li {
  float: left;
  width: 100%;
  margin: 0 1%;
}

.existing-ral-color-list > li .custom-radio {
  padding: 10px 10px !important;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  display: block;
  -webkit-transition:
    border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}

.existing-ral-color-list > li .radio {
  margin: 0 0 10px 0;
}

.existing-ral-color-list > li.selected .radio .custom-radio {
  border-color: rgb(214, 11, 82);
}

.existing-ral-color-list > li.selected .radio .custom-radio .big-title {
  color: rgb(214, 11, 82);
}

/* Wall Form */
.form-container {
  padding: 30px 0;
}
.row-5 {
  margin: 0 -5px;
}
.row-5 .col-md-2,
.row-5 .col-md-3,
.row-5 .col-md-4,
.row-5 .col-md-5,
.row-5 .col-md-6,
.row-5 .col-md-6,
.row-5 .col-md-7 {
  padding: 0 5px;
}
.sh-el {
  border-right: 1px solid #c9c9c9;
}
.form-box-content {
  padding: 5px;
}
.form-box-title {
  font-size: 1.1em;
  margin: 0 -5px 5px -5px;
  padding: 10px;
  background: #f0f0f0;
  border-top: 1px solid #c9c9c9;
  height: 38px !important;
}
.form-box-title.first {
  margin-left: 0px;
}
.form-box-title .small-title {
  display: inline-block;
  text-transform: none;
  font-size: 0.7em;
}
.sh-el.sh-el-last {
  border-right: 0;
}
.form-box .form-group label {
  text-transform: none;
  color: rgba(109, 110, 114, 1);
}

.form-box .form-group label.error {
  color: rgb(214, 11, 82);
}

#formDate,
#formDate2 {
  padding-right: 40px;
  background: url(calendar.png) no-repeat right 5px center;
}
.form-control.form-control-no-border {
  border: 0;
  padding: 5px !important;
  border-radius: 0px;
}
.no-cell-padding {
  padding: 0px !important;
}
.form-box-table {
  border: 1px solid #c9c9c9;
  width: 100%;
}
.form-box-table th {
  background: #f0f0f0;
  padding: 3px;
  border: 1px solid #c9c9c9;
  height: 27px;
  white-space: nowrap;
}

.slider img {
  width: 100%;
}

.slider .slider-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}

.slider .slider-content h2 {
  background-color: rgb(214, 11, 82);
  color: white;
  display: inline;
  padding: 5px;
  font-weight: 300;
  font-size: 20px;
}

.slider .slider-content p {
  background-color: white;
  padding: 5px;
  margin-top: 5px;
}

.tabbable .big-title.dark {
  color: #6d6e72;
}

.horizontal-nav-tabs {
  float: left;
  margin-bottom: 20px;
}
#options-form a[id*="anchor"] {
  position: relative;
  top: -185px;
  display: block;
  visibility: hidden;
}
.nav-tabs-box {
  position: relative;
  height: 65px;
}
.nav-tabs.pink-title {
  position: absolute;
  margin-bottom: 15px;
  border-bottom: none;
  z-index: 2;
}
.nav-tabs.pink-title.sticky {
  position: fixed;
  top: 157px;
  left: 30px;
  background-color: white;
}
.nav-tabs.pink-title.sticky + div {
  margin-top: 68px;
}

.nav-tabs.pink-title li:not(.active) a {
  color: grey;
}
.nav-tabs.pink-title li a {
  color: rgb(214, 11, 82);
  padding: 0 15px;
  font-weight: 200;
  position: relative;
  font-size: 1.8em;
  margin: 0;
  border: none;
  background: none;
  border-bottom: 2px solid;
  font-weight: 300;
  cursor: pointer;
}

.nav-tabs.pink-title li a:hover {
  background: none;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: 3px solid;
  color: rgb(214, 11, 82);
  cursor: pointer;
}

.customization-block {
  border: #f5f5f5 solid 1px;
  background: #f5f5f5;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 5px;
}
.customization-block p {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
}
.customization-block p i {
  margin-left: 5px;
  cursor: pointer;
}
.customization-block p i:hover {
  color: #e02964;
}
.customizations-screen .center-message {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  color: rgb(109, 110, 114);
}
.validation-block {
  border: #e02964 solid 1px;
  background: #ffffff;
}

.input-element > .form-group.overlap-input {
  position: relative;
}
.input-element > .form-group.overlap-input label.small-title {
  font-weight: 300;
  font-size: 13px;
  position: absolute;
  bottom: 21px;
  left: 5px;
  background: white;
  padding: 0 5px;
}
.input-element > .form-group.overlap-input input,
.input-element > .form-group.overlap-input select {
  margin-top: 8px;
}
.secondary-title {
  margin-bottom: 10px;
}
.form-box-table .small-title {
  font-weight: normal;
  text-transform: none;
  font-size: 0.7em;
}
.form-box-table td {
  padding: 3px;
  border: 1px solid #c9c9c9;
  font-size: 0.9em;
}
.form-box-title .alert {
  display: inline-block;
  margin-left: 5px;
  border: 0;
  margin: 0;
  padding: 5px 10px;
  font-weight: normal;
  font-size: 0.7em;
}
.alert.alert-danger {
  color: rgb(214, 11, 82);
  background: #fce6f3;
  border: 0;
  padding: 5px 10px;
}
.form-box {
  padding-bottom: 5px;
}
.checkbox-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.checkbox-list li {
  float: left;
  margin-right: 5px;
}
.checkbox-option {
  visibility: hidden;
}
.checkbox-list li .checkbox {
  margin: 0;
}
.checkbox-list li .checkbox label {
  background: #f0f0f0;
  display: block;
  border: 1px solid #c9c9c9;
  padding: 2px 5px;
  min-width: 36px;
  text-align: center;
}
.checkbox-list li .checkbox label.selected {
  border-color: rgb(214, 11, 82);
  background: rgb(214, 11, 82);
  color: #fff;
}
.form-box-table.form-box-table-no-border,
.form-box-table.form-box-table-no-border th,
.form-box-table.form-box-table-no-border td {
  border: 0;
}
.form-box input.form-control {
  height: 34px;
  font-size: 0.9em;
}
.form-control-table-select {
  height: 34px !important;
  font-size: 0.9em !important;
}
.form-box-table .btn {
  padding: 5px 10px;
}
.form-box-table tbody tr {
  height: 35px;
}
.row-last .sh-el {
  border-bottom: 1px solid #c9c9c9;
}
.row-last {
  margin-bottom: 15px;
}
.product-list-internal .product-list-internal {
  margin-left: 15px;
}
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-link.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.vertical-align-middle h3 .dropdown {
  display: inline-block;
}
.legend-list,
.normal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.legend-list li {
  padding: 3px 0;
}
#choose-product-form .gray-box {
  margin-bottom: 15px;
}
.normal-list li {
  position: relative;
  padding-left: 12px;
}
.normal-list li:after {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: rgb(214, 11, 82);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .sh-el {
    border-right: 0;
  }
  .text-sm-center {
    text-align: center;
  }
}

.table-cell-disable {
  background: #eeeeee;
  cursor: not-allowed;
}

.text-grey {
  color: rgba(109, 110, 114, 1) !important;
}

.background-grey {
  background: #dddddd !important;
}

/* New changes  */
.page-content {
  /*padding:20px 100px;*/
  /* padding: 150px 20px 20px 20px; */
}
.form-box-table th {
  font-size: 0.8em;
}
.form-box-table tfoot th {
  background: #fff;
}
.form-box-table thead tr:nth-child(2) th {
  background: #fff;
}
.thickness-list > li .custom-radio,
.door-puller-mounts-list > li .custom-radio {
  padding: 5px 10px !important;
}

.sh-el {
  border: 0 !important;
}

.form-box-title {
  background-color: inherit;
  border-bottom: 1px solid #f0f0f0 !important;
}

.form-box-content {
  padding: 5px 0;
}

.btn-success,
.btn-success:hover,
.btn-success:focus,
.btn-success:visited,
.btn-success:active {
  background: #b6b7b8 !important;
  border-color: #b6b7b8 !important;
}

.checkbox-list li .checkbox {
  margin-bottom: 3px;
}

.checkbox-list li .checkbox label {
  background: #fff;
}

.form-container {
  padding: 10px 0;
}

.radio-inline {
  display: inline-block;
}

.radios-wrapper,
.radios-wrapper .radio {
  vertical-align: top;
}
.radios-wrapper {
  padding: 20px;
  background: #f0f0f0;
  margin-bottom: 25px;
}

.radio-inline {
  margin: 0;
}

.radio-icon {
  font-size: 2.5em;
}

.radios-wrapper .radio-inline {
  padding: 0;
  list-style: none;
}

.radios-wrapper .radio-inline label {
  padding: 15px;
  border: 1px solid transparent;
  min-width: 110px;
}

.radios-wrapper .radio-inline label.selected {
  border-color: rgb(214, 11, 82);
  background: #fff;
}

.form-control-modal {
  padding-left: 15px !important;
}

.label-modal {
  font-size: 0.85em;
  padding: 10px 0 0 0;
  margin: 0;
}
.modal-body.grey {
  background-color: #f9f9f9;
}

#modalNew .modal-body {
  padding: 20px 50px;
}

.modal-content {
  border-radius: 30px;
  padding: 30px;
}
.modal-content .modal-header {
  border-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
}
.modal-content .modal-header h4 {
  color: rgb(214, 11, 82);
  font-weight: 300;
  font-size: 20px;
}
.modal-content h5 {
  text-transform: uppercase;
}
.modal-content .form-group {
  margin-bottom: 20px;
}
.modal-content .form-group input {
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  color: gray;
  padding-left: 0;
  padding-bottom: 0;
  height: 30px;
}
.modal-content .form-group select {
  height: 30px;
  margin-top: 5px;
  border-color: black;
}
.modal-content .modal-footer {
  display: flex;
  justify-content: center;
  border-top: none;
}

.label-small-title {
  font-size: 0.7em;
  vertical-align: top;
  color: rgba(109, 110, 114, 0.6);
}

#breadcrumbs {
  font-size: 0.8em;
  padding: 10px;
  margin-bottom: 10px;
  overflow: auto;
}
#breadcrumbs .float-right {
  margin-left: 10px;
}

.box-hidden {
  display: none;
}
.table-cell-disable,
.form-control[disabled],
fieldset[disabled] .form-control {
  background: #fde6f4;
}
/*@media(max-width:1400px) {*/
/*	.page-content {*/
/*		padding: 150px;*/
/*	}*/
/*}*/
.icon-dropdown {
  position: relative;
}
.icon-dropdown-content {
  background: #fff;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 30px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  font-family: "Roboto", sans-serif;
  display: none;
  z-index: 10;
  font-size: 0.8em;
  width: 300px;
}
.icon-dropdown:hover .icon-dropdown-content {
  display: block;
}
.icon-dropdown-content p {
  margin: 0;
  font-size: 0.9em;
  margin-bottom: 10px;
}
.box-group {
  margin-bottom: 15px;
}
.box-group h4 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.icon-dropdown:hover .icon-dropdown-content {
  display: block;
}
.icon-dropdown-content p {
  margin: 0;
  font-size: 0.9em;
  margin-bottom: 10px;
}
.sh-el {
  border: 0 !important;
}
.form-box-title {
  border: 0;
}
.form-box-content {
  padding: 5px 0;
}
.checkbox-list li .checkbox {
  margin-bottom: 3px;
}
.checkbox-list li .checkbox label {
  background: #fff;
  font-size: 0.9em;
}
.options-table p {
  font-size: 0.85em;
}
.options-table h3 {
  font-size: 1.1em;
}
.options-table th {
  font-size: 1em;
  padding: 10px;
  background: #f0f0f0;
  border-top: 1px solid #c9c9c9;
  height: 38px !important;
}
.form-box-table .form-box-table {
  border: 0;
}

.form-box-table .form-box-table td {
  border: 0;
  border-bottom: 1px solid #c9c9c9;
}
.form-box-table .form-box-table tr:last-child td {
  border-bottom: 0;
}
.checkbox-list li .checkbox label.selected {
  color: rgb(214, 11, 82);
  border-color: rgb(214, 11, 82);
  background: #fde6f4;
}
.js-accessory-row-add {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: rgb(214, 11, 82);
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
.js-accessory-row-add span {
  color: #fff;
}

.links-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.links-menu a {
  display: block;
  padding: 2px 0;
  color: #6d6e72;
}

.links-menu li:last-child a {
  border-bottom: 0;
}

.links-menu.links-menu-margin {
  padding: 0;
}
.links-menu .active {
  color: #fff;
  background: rgb(214, 11, 82);
}
.links-menu .active span {
  color: #fff;
}

.spacer-bottom {
  margin-bottom: 10px;
}

.normal-list,
.list-no-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  top: -18px;
}

.infolist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.infolist span {
  font-size: 19px;
  position: relative;
  right: 2px;
  top: 3px;
}

.list-no-dots li {
  margin: 3px 0;
}

.normal-list li {
  position: relative;
  padding: 2px 0 2px 15px;
  font-size: 0.9em;
}

.normal-list li:after {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  background: rgb(214, 11, 82);
  display: block;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.outline-box {
  border: 1px solid #e5e5e5;
  padding: 10px 10px;
  margin-bottom: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.outline-box-padding {
  position: relative;
  padding: 35px 170px 0 20px;
  /*padding: 35px 170px 20px 180px*/
}

.outline-box-padding .links-menu {
  position: absolute;
  top: 15px;
  left: 20px;
  bottom: 20px;
  width: 140px;
  border-right: 1px solid #e5e5e5;
}

.spacer-bottom.outline-box.outline-box-padding ul span {
  /*font-size: 19px;*/
  font-size: 17px;
  position: relative;
  right: 5px;
  top: 3px;
}

.outline-box-padding .btn-primary {
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  width: 140px;
}

.product-list-internal .product-list-internal {
  margin-left: 20px;
}

.big-icon {
  font-size: 2em;
}
.links-menu-bigger li a {
  padding: 18px 18px 18px 18px;
  font-size: 1.2em;
  background: #fff;
  border-radius: 4px;
  text-align: center;
}
.links-menu-bigger li a:hover {
  color: #fff;
  background: rgb(214, 11, 82);
}
.links-menu-bigger li:hover {
  border-color: rgb(214, 11, 82);
}
.links-menu-bigger li a span {
  vertical-align: middle;
  font-size: 2em;
}
.links-menu-bigger li a:hover span {
  color: #fff;
}
.links-menu-bigger li {
  margin-bottom: 10px;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
}
.pink-icon {
  background: #d90c85;
  display: inline-block;
  color: #fff;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  text-align: center;
  padding: 10px;
  font-size: 1.3em;
}

.text-uppercase {
  text-transform: uppercase !important;
  font-weight: bold;
}

.pink-icon.fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
}
.checkbox-list li .checkbox {
  margin-bottom: 3px;
}

.checkbox-list li .checkbox label {
  background: #fff;
}

.justify-items {
  list-style: none;
  padding: 0;
  margin: 0 0px;
  border-collapse: separate;
  width: 100%;
  clear: both;
}
.justify-items.no-clear {
  clear: none;
}
.justify-items li {
  /*margin: 0 10px 15px 0;*/
  float: none;
  width: calc(33.33% - 10px);
  float: left;

  /* width: 1%; */
}
.justify-items li:last-child {
  padding-right: 0;
}
.justify-items li.fullwidth {
  width: 100%;
}
/*.justify-items .form-group-tool{*/
/*	min-width:100px;*/
/*	width:auto !important;*/
/*	margin:0;*/
/*    float:none;*/
/*}*/

.no-wrap {
  white-space: nowrap;
}

.footer-bar {
  z-index: 500;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  border-top: 1px solid #c9c9c9;
  text-align: center;
  vertical-align: middle;
  padding: 11px;
  background-color: rgb(255, 255, 255, 0.7);
}

.footer-bar #productInfoModal {
  text-align: left;
}

/** Reset password **/
.css-passwordIcon {
  float: right;
  padding-right: 3%;
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.css-formErrors ul {
  list-style-type: none;
  padding: 0;
}

.css-formErrors li {
  font-size: 0.9em;
  padding: 10px 0;
  border: none;
}

.hide-on-mobile {
  display: block !important;
}
.hide-on-wide {
  display: none !important;
}
.overview-menu-items i {
  width: 28px;
}
.overview-menu-items button,
.css-overViewActionDiv button,
.overview-pink-buttons a.pink-button {
  margin-bottom: 5px;
}

.product-info-modal-content {
  float: left;
  width: calc(100% - 150px);
}

.overview-pink-buttons {
  display: flex;
  flex-direction: row;
}

/** Responsives **/

@media (min-width: 992px) and (max-width: 1200px) {
  .new-order-btn {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  /* Font size of inputs must be min 16px to disable the zoom on mobile*/
  input {
    font-size: 16px !important;
  }
  .header {
    height: auto;
  }
  .shopping-cart-message {
    margin-bottom: 15px;
  }
  .products-list-item {
    width: 50%;
  }
  .page-content {
    /* padding: 150px 15px; */
  }
  .bottom-navigation-list > li a img {
    margin: 0 20px;
  }
  .bottom-navigation ul li.no-icon {
    padding: 0 15px;
  }
  .table-order-wrapper {
    margin-bottom: 15px;
  }
  .no-mb-md {
    margin-bottom: 20px !important;
  }
  .popular-product {
    margin-bottom: 20px;
  }
  .selling-point {
    min-width: 25vw;
  }
  .form-signin {
    width: calc(100vw - 30px);
    left: 0;
    right: 30px;
    margin-top: 0;
  }
  .form-signin.home-signin {
    padding: 0 !important;
    width: initial !important;
    margin-bottom: 30px;
  }
  .form-signin.home-signin button,
  .form-signin.home-signin a {
    width: 50%;
  }
  .mb-sm-2 {
    margin-bottom: 0.4rem;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .products-list-item.item-1 h1,
  .products-list-item.item-2 h1 {
    border-top: none;
  }
}

@media (max-width: 768px) {
  body {
    margin-bottom: 7%;
  }
  .page-content {
    /* padding: 109px 15px; */
  }
  .hide-on-mobile {
    display: none !important;
  }
  .hide-on-wide {
    display: block !important;
  }
  .navbar-toggle {
    display: none;
  }
  #navbar {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 50px;
    margin: 0 15px;
  }
  #navbar ul {
    display: flex;
  }
  #navbar-pink ul {
    display: flex;
    justify-content: space-between;
    padding-bottom: 13px;
  }
  /*Hamburger menu*/
  #navbar-grey {
    width: 100vw;
    margin: 0;
    left: 0;
    display: block;
    position: relative;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
  }
  #navbar-grey input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -42px;
    right: 5px;

    cursor: pointer;

    opacity: 0;
    z-index: 2;

    -webkit-touch-callout: none;
  }
  #hamburger-stripes {
    position: absolute;
    right: 10px;
    top: -33px;
  }
  #navbar-grey span.hamburger-stripe {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #cdcdcd;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition:
      transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      opacity 0.55s ease;
  }
  #navbar-grey span.hamburger-stripe:first-child {
    transform-origin: 0% 0%;
  }
  #navbar-grey span.hamburger-stripe:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  /*
     * Transform all the slices of hamburger
     * into a crossmark.
     */
  #navbar-grey input:checked ~ #hamburger-stripes span {
    opacity: 1;
    transform: rotate(45deg) translate(-11px, -9px);
    background: #232323;
  }

  /*
     * But let's hide the middle one.
     */
  #navbar-grey input:checked ~ #hamburger-stripes span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  /*
     * Ohyeah and the last one should go the other direction
     */
  #navbar-grey input:checked ~ #hamburger-stripes span:nth-last-child(2) {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  #navbar-grey ul {
    position: absolute;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    padding-bottom: 150px;
    height: calc(100vh + 50px);

    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  #navbar-grey input:checked ~ ul {
    transform: none;
    width: 100vw;
    right: 0;
  }
  #navbar-grey .white-btn {
    width: 100%;
  }
  #navbar-grey .white-btn a {
    height: 30px;
  }
  #navbar-grey li.cart-btn a i {
    color: #0b2e13;
  }
  #navbar-grey .language-list-item {
    display: flex;
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #navbar-grey .language-list-item a {
    color: #bababa;
  }
  .navbar-nav .lang-btn,
  .lang-dropdown {
    display: none !important;
  }

  .contact-help .btn,
  .footer-bar .btn {
    padding: 7px 10px;
    min-height: 35px;
  }

  .developed-by {
    width: 80px;
    margin-bottom: -10px;
  }

  .circle {
    width: 25px;
    height: 25px;
    left: 8px;
  }

  .step-item {
    padding-left: 40px;
  }

  .step-number {
    font-size: 12px;
  }

  .step-icon {
    font-size: 12px;
    top: 3px;
    left: 3px;
  }

  .customizations-screen .navigation ul li:not(.nav-title) {
    width: 50% !important;
  }

  .line-type-container {
    padding: 0;
  }

  .line-type-container .line-type .radio {
    margin: 10px 10px 10px 0 !important;
    padding: 5px !important;
  }

  #customizations .btn {
    max-width: 100%;
    word-break: break-word;
    white-space: normal;
  }

  .container > .navbar-header {
    margin-right: 0;
  }

  .bottom-navigation-list > li a {
    padding: 10px;
  }

  .bottom-navigation-list > li.no-icon a {
    padding: 15px 0;
  }

  .products-list-item {
    width: 100%;
  }
  .products-list-item h1 {
    border-top: 1px solid black;
    padding-top: 30px;
  }
  .products-list-item.item-1 h1 {
    border-top: none;
  }

  .outline-box-padding {
    padding-left: 35px;
    padding-right: 35px;
  }

  .outline-box-padding .links-menu {
    display: block;
    float: left;
    margin-right: 30px;
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
  }

  .outline-box-padding .list-no-dots {
    top: initial;
  }

  .outline-box-padding .btn-primary {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 20px auto 0;
  }

  .radio-list > li {
    width: 23%;
  }
  #ajax-target-product-select-child-zone.radio-list > li {
    width: 40%;
  }
  .js-material-parents.radio-list > li {
    width: 100%;
  }
  .radio-list.radio-list-padding > li .custom-radio {
    padding: 15px 20px !important;
  }

  .table-order-wrapper {
    overflow-x: auto;
    margin: 0 15px 15px 15px;
    padding: 0;
  }

  .table-order {
    margin-bottom: 15px;
  }

  .profile-navigation li {
    width: 100%;
    float: none;
  }

  .profile-navigation > li a {
    padding: 5px 10px;
  }
  .popular-product p {
    font-size: 16px;
  }
  .carousel-home .carousel-inner .carousel-message {
    top: 20px;
  }
  .col-dynamic-width {
    /*width: 100%;*/
  }

  .overview-menu-items button,
  .overview-pink-buttons a.pink-button {
    margin: 0 5px 5px 0 !important;
  }
  .overview-menu-items button,
  .overview-pink-buttons a.pink-button,
  .css-overViewActionDiv button {
    width: 48% !important;
  }

  .css-overViewActionDiv {
    margin-bottom: 10px !important;
  }
  .tablefooter .css-overViewActionDiv a.margin-right {
    margin: 0;
  }
  .overview-pink-buttons {
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
  }
  .product-info-modal-content {
    float: none;
    width: auto;
  }

  #body .row.projectinfo {
    background-color: #f9f9f9;
    color: #485156;
    padding: 5px 0;
  }
  #body .row.projectinfo .col-md-6 {
    padding: 0 3px;
  }
}

@media (max-width: 600px) {
  body {
    margin-bottom: 10%;
  }
  .outline-box-padding .links-menu {
    width: 100%;
    margin-bottom: 15px;
    border-right: none;
  }
  .bottom-navigation-list > li a img {
    margin: 0;
  }
  .selling-point {
    justify-content: center;
  }
  .selling-point {
    width: 100vw;
  }
  .carousel-home .carousel-inner .carousel-message {
    width: calc(100vw - 30px);
    left: 30px;
  }
  .popular-product img {
    height: 300px;
  }
}

@media (max-width: 550px) {
  .overview-menu-items button,
  .css-overViewActionDiv button,
  .overview-pink-buttons a.pink-button {
    margin: 0 5px 5px 0 !important;
    width: 100% !important;
  }
}

/* Bootstrap TABS LEFT/RIGHT/BELOW */
/* custom inclusion of right, left and below tabs */

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

.tab-content {
  overflow: hidden;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

.tab-content h5 {
  margin-bottom: 10px;
}

.tabs-below > .nav-tabs {
  border-top: 1px solid #ddd;
}

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
  border-top-color: #ddd;
  border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}

.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #ffffff;
}

.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #ffffff;
}
#customizations {
  overflow: auto;
  overflow-x: hidden;
  margin-bottom: 15px;
}
#customizations h2 {
  padding: 10px 10px 20px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #d0d0d0;
}
.customizations-screen {
  display: flex;
  flex-direction: row;
  min-height: 500px;
  margin-right: -6px;
}
.customizations-screen .navigation {
  border: 1px solid #dbdbdb;
  border-radius: 5px 0 0 5px;
  width: 30%;
  z-index: 1;
  height: calc(100vh - 240px);
  min-height: 500px;
  overflow: scroll;
}
.customizations-screen select {
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
  background: white;
  padding: 7px;
}
.customizations-screen .form-control {
  margin-bottom: 15px;
}
.customizations-screen .navigation ul {
  list-style: none;
  padding-left: 0;
}
.customizations-screen .navigation ul li.nav-title {
  padding: 10px;
  padding-bottom: 5px;
  font-weight: bold;
  width: 100%;
  clear: both;
}
.customizations-screen .navigation ul li:not(.nav-title) {
  width: 50%;
  float: left;
}
.customizations-screen .navigation ul li:not(.nav-title) a {
  display: block;
  padding: 5px 10px;
  color: rgb(109, 110, 114);
  cursor: pointer;
  text-align: center;
}
.customizations-screen .navigation ul li a:hover {
  background: white;
}
.customizations-screen .navigation ul li a.active {
  color: rgb(224, 41, 100);
}

.customizations-screen .navigation ul li a.active.editing {
  background: rgb(224, 41, 100);
  color: white;
  margin-right: 0;
  border-left: none;
  border-right: none;
}
.divide-button {
  margin-top: -20px;
  margin-bottom: 20px;
}
.customizations-right {
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  height: calc(100vh - 240px);
  min-height: 500px;
}
.customizations-right > .row {
  display: flex;
  position: relative;
  height: 100%;
}
.customizations-right .existing-customizations {
  background: white;
  padding: 10px;
  height: 100%;
  border: 10px solid #f8f8f8;
  border-left: none;
}
.customizations-screen .content {
  width: 70%;
  padding: 10px;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  border-left: none;
}
.customizations-screen .content.pink-borders {
  border: 1px solid rgb(224, 41, 100);
}
.customizations-screen .error-message {
  color: red;
  font-size: 11px;
}
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}
.tooltip-image-customizations {
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  top: 0; /* will be overridden in JS */
  left: 110%;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 8px;
  z-index: 999;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: none;
}

.tooltip-wrapper:hover .tooltip-content {
  display: block;
}
.tooltip-content img {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.canvas-col {
  position: relative;
  padding: 10px 10px 10px 20px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.canvas-col + div {
  display: flex;
}
.canvas-button {
  background-color: rgb(234, 91, 142);
  border-radius: 3px;
  padding: 4px 8px;
  display: flex;
  color: white;
  cursor: pointer;
  transition: all 100ms;
  width: fit-content;
}
.canvas-button.back-selected {
  background-color: #485156;
}

.canvas-button i {
  font-size: 20px;
  margin-right: 5px;
}
/*.canvas-col + div .canvas-buttons{*/
/*    margin-top: 10px;*/
/*    margin-bottom: 10px;*/
/*    width: 35px;*/
/*}*/
/*.canvas-col + div .canvas-buttons .canvas-button{*/
/*    background-color: white;*/
/*    border-radius: 5px;*/
/*    padding: 5px;*/
/*    cursor: pointer;*/
/*}*/
/*.canvas-col + div .canvas-buttons .canvas-button:hover{*/

/*}*/
/*.canvas-col + div .canvas-buttons .canvas-button.back-selected{*/
/*    transform: scale(-1, 1);*/
/*}*/
.canvas-col + div .existing-customizations {
  width: 100%;
}
.customizations-screen canvas {
  display: block;
}

/* IMPERSONATE INFO */

.impersonate-info {
  z-index: 9999998;
  position: fixed;
  border: 1px solid #dae1e7;
  border-radius: 5px;
  padding: 10px 15px 2px 15px;
  background-color: rgba(255, 255, 255, 0.9);
  right: 20px;
  bottom: 20px;
}

.css-minimizeIcon {
  color: #b0b5b9 !important;
  font-size: 0.8em;
  margin-right: 5px;
}

.css-minimizeIcon:hover {
  cursor: pointer;
}

.css-userTableDiv {
  max-height: 150px;
  overflow-y: scroll;
  display: none;
  padding-left: 15px;
  padding-right: 15px;
}

.css-addUserDiv button {
  border-radius: 0 0 5px 5px;
  width: 100%;
}

.js-addUserDiv {
  display: none;
}

.css-switchUserTable {
  text-align: left;
  font-size: 0.9em;
  margin: 0 !important;
}

.select2-selection__placeholder {
  color: #000 !important;
}

.css-switchUserTable td {
  border: none !important;
}

.side_bar {
  padding-right: 20px;
  margin-left: -12px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: scroll;
  /* width */
}
.css-userTableDiv::-webkit-scrollbar {
  width: 5px;
}

.css-userTableDiv::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey;
  border-radius: 10px;
}

.css-userTableDiv::-webkit-scrollbar-thumb {
  background: rgb(214, 11, 82);
  border-radius: 10px;
}

.white {
  color: #fff !important;
}

.select2-dropdown {
  z-index: 9999999 !important;
  margin-left: -1px !important;
  text-align: left !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container *:focus {
  outline: none;
}

.impersonate-content {
  margin-top: 4%;
  padding-bottom: 5%;
  width: 320px;
  font-size: 0.9em;
  color: black;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}

.impersonate-icon {
  font-size: 1.5em;
}

.impersonate-info p {
  margin: 0 0 5px 0 !important;
}

.side_bar::-webkit-scrollbar {
  width: 5px;
}

.side_bar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey;
  border-radius: 10px;
}

.side_bar::-webkit-scrollbar-thumb {
  background: rgb(214, 11, 82);
  border-radius: 10px;
}

.impersonate-icon i {
  border-radius: 5px;
  border: 1px solid #ec0a90;
  padding: 2px 2px 2% 2px;
}

.impersonate-icon i:hover {
  cursor: pointer;
  background-color: #e6e6e6;
  color: rgb(182, 5, 62);
  border-color: rgb(182, 5, 62);
}

.impersonate-info a:hover {
  color: grey !important;
}

.impersonate-info a {
  color: #b0b5b9 !important;
}

.css-impersonate-exit-icon {
  display: none;
}

.css-impersonate-exit-icon {
  position: absolute;
  top: 5px;
  right: 10px;
}

.impersonationInfoNav {
  pointer-events: none;
}

@media (max-width: 576px) {
  .impersonate-info.impersonate-expanded {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .impersonate-content {
    width: auto;
    box-sizing: border-box;
  }

  .css-userTableDiv {
    max-height: 200px;
  }

  .css-addUserDiv button {
    padding: 12px 16px;
    font-size: 1em;
    min-height: 48px;
  }

  .css-switchUserTable tr {
    display: flex;
    align-items: center;
  }

  .css-switchUserTable tr td:first-child {
    flex: 1;
    vertical-align: middle;
  }

  .css-switchUserTable tr td:last-child {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .css-switchUserTable .btn-xs {
    padding: 6px 8px;
    font-size: 1.1em;
    min-width: 36px;
    min-height: 36px;
  }

  .css-switchUserTable .btn-xs + .btn-xs {
    margin-left: 10px;
  }
}

/* IMPERSONATE INFO END*/

/* ERROR PAGE */
.btnErrorRedirect {
  -webkit-appearance: none;
}

.errorText {
  font-size: 1.1em;
}
/* END ERROR PAGE */

.documentDescription {
  text-align: left;
  width: 350px !important;
}

.infoBtn:hover {
  cursor: pointer;
}

@media (max-width: 1110px) {
  .tabbable .form-box-table {
    width: 70%;
  }
}

@media (max-width: 710px) {
  .tabbable .form-box-table {
    width: 60%;
  }

  .tabbable .nav-tabs li a {
    padding: 10px 6px;
  }
  #navbar-pink ul {
    flex-direction: column;
    padding-bottom: 5px;
  }
  #navbar-pink ul li {
    margin: 0 30px 10px 30px;
  }
}

@media (max-width: 500px) {
  .tabbable .form-box-table {
    width: 100%;
  }

  .tabbable .nav-tabs {
    width: 100%;
    border: none;
    margin-bottom: 20px;
  }

  .tabbable .nav-tabs .active a {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
  }
  .hide-mobilenr {
    display: none !important;
  }
}

.modal {
  z-index: 9999 !important;
}

/*New css winkelwagen*/
.pink-background {
  background-color: rgb(214, 11, 82);
  color: white;
  padding: 0 7px;
}
.empty-cart {
  margin: 60px -15px 15px -15px;
  display: flex;
  align-items: center;
}
.empty-cart .col-md-6 {
  flex: 1;
  height: 100%;
}
.empty-cart > div:nth-of-type(1) {
  padding-bottom: 30px;
}
.empty-cart h1 {
  font-weight: 300;
  padding-bottom: 20px;
}
.empty-cart h1.page-title {
  padding-bottom: 40px;
}

/* .empty-cart .col-md-6 .row div .icon-border {
    border: 2px solid #ec0a90;
    width: 90px;
    height: 90px;
    border-radius: 500px;
} */

.empty-cart .landing-image {
  background-size: cover;
  height: 600px;
  background-repeat: no-repeat;
}
.empty-cart > div > p {
  margin: 20px 0 40px;
  line-height: 25px;
}
.empty-cart > div .buttons {
  margin: 20px -10px 0;
  display: flex;
  justify-content: center;
}
.empty-cart > div .buttons div {
  padding: 0 10px;
  width: 30%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.empty-cart > div .buttons div a div:after {
  content: "";
  position: absolute;
  bottom: -17px;
  /* left: 0px; */
  width: 40px;
  height: 1px;
  background: #ccc;
}
.empty-cart div .buttons .fa {
  font-size: 45px;
  color: rgb(214, 11, 82);
  /*transition: font-size .2s;*/
}
.empty-cart div .buttons div span {
  font-size: 40px;
}
.empty-cart div .buttons div p {
  text-align: center;
  margin-top: 30px;
}
.empty-cart > div .buttons div a {
  display: block;
  /*background-color: #f9f9f9;*/
  border: 1px solid #cccccc;
  height: 150px;
  width: 100%;
  justify-content: center;
  color: #6d6e72;
  /*font-weight: bold;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  /*transition: font-size .2s;*/
  font-size: 14px;
  padding-top: 1px;
}
.empty-cart > div .buttons div a:hover {
  /*font-size: 16px;*/
  border-top: 2px solid rgb(214, 11, 82);
  padding-top: 0;
}
.empty-cart > div .buttons div a:hover .fa {
  /*font-size: 50px;*/
}
@media (max-width: 1000px) {
  .scroll-mobile {
    overflow: scroll;
  }

  .scroll-mobile > div {
    min-width: 1000px;
  }
}
.overview-table .alert {
  padding: 7px;
  text-align: center;
}
.overview-table .alert a,
.overview-table .alert span {
  background-color: #fbeaea;
  padding: 7px 15px;
  border-radius: 5px;
  border: 3px solid rgb(214, 11, 82);
  color: rgb(214, 11, 82);
  width: 100%;
  display: inline-block;
}
.fa-chevron-circle-down,
.fa-chevron-down {
  transition: transform 0.25s;
}
button.icon-button {
  border: 1px solid rgb(214, 11, 82);
  color: rgb(214, 11, 82);
  text-align: left;
  border-radius: 3px;
  margin-left: 15px;
  padding-right: 10px;
}

.rbbNewLine {
  font-size: 0.8em !important;
}

.rbbNewLine button {
  position: relative;
  top: -5px;
}

.empty-cart .col-md-6 .grey-panel button.icon-button {
  margin: 0;
  width: 49%;
}

button.icon-button i {
  background-color: rgb(214, 11, 82);
  color: white;
  padding: 7px;
  margin-right: 7px;
}

.row.projectinfo {
  background-color: rgb(214, 11, 82);
  padding: 10px 0;
  color: white;
  margin: 7px 0 0 0;
}

.row.projectinfo p {
  display: inline;
  margin-right: 30px;
}

.row.projectinfo i {
  background-color: white;
  color: rgb(214, 11, 82);
  padding: 6px;
  border-radius: 300px;
  margin-right: 7px;
}

.row.projectinfo .header-button {
  border: 1px solid white;
  background-color: white;
  border-radius: 3px;
  color: rgb(214, 11, 82);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
}
.row.projectinfo .header-button span {
  padding: 7px;
  background-color: rgb(214, 11, 82);
  color: white;
  border-radius: 3px 0 0 3px;
  margin-right: 15px;
}
.row.projectinfo .header-button span i {
  margin-right: 7px;
}

.row.tableheader,
.row.tablefooter {
  padding: 10px 0;
  margin: 7px 0 0 0;
}
.row.subheader {
  padding: 10px 0;
  margin: 0;
}
.row.tableheader.lightpink,
.row.tablefooter.lightpink {
  background-color: #fbeaea;
}
.row.tableheader.grey {
  background-color: #f0f0f0;
  font-weight: 500;
}
.row.subheader {
  background-color: #f9f9f9;
}
.row.tableheader label,
.row.tableheader i,
.row.tableheader p,
.row.subheader label,
.row.subheader i,
.row.subheader p,
.row.tablefooter i,
.row.tablefooter p,
.row.tablefooter button {
  display: inline;
}
.row.tableheader label,
.row.tableheader i,
.row.tableheader a.action-btn,
.row.subheader label,
.row.subheader i {
  display: inline-block;
  width: 30px;
  text-align: center;
  color: #6d6e72;
}
.row.tableheader .col-xs-1 label {
  width: 20px;
}
.tablefooter .margin-right {
  margin-right: 15px;
}
.tableheader .col {
  text-overflow: ellipsis;
}
.row.tableheader label {
  margin: 0;
}
.row.tableheader label .fa-chevron-circle-right {
  font-size: 16px;
}
.tablebody {
  margin: 0;
  background-color: #f9f9f9;
  padding: 7px;
}
.tablebody.sub {
  padding: 0;
  width: 100%;
  background-color: white;
  overflow: hidden;
  position: relative;
}
.tablebody.sub.level-3 {
  color: #a9a9a9;
}
.tablebody.sub.level-4 {
}
.tablebody.sub.level-4 .grey {
  background-color: #f9f9f9;
  min-height: 34px;
  color: "gray";
}
.tablebody.sub::before,
.tablebody.sub::after {
  background-color: #f9f9f9;
  width: 15px;
  height: 40px;
  position: absolute;
  z-index: 100;
}
.tablebody.sub::after {
  right: 0;
}
.tablebody.sub .col {
  padding: 7px 15px;
}
.tablebody.sub .col.white {
  background-color: white;
}
.tablebody p.smalltitle {
  font-weight: 500;
}
.divtotoggle {
  background-color: #f9f9f9;
  display: block;
}

input.tablebodytoggler + .divtotoggle {
  max-height: 0;
  /*display: flex;*/
  overflow: hidden;
  padding: 0 7px;
  transition:
    max-height 0.25s,
    padding 0.1s 0.02s;
}
input.tablebodytoggler:checked + .divtotoggle {
  height: auto;
  padding: 7px 0;
  max-height: unset !important;
}
input.tablebodytoggler + .divtotoggle.noflex {
  display: block;
  padding: 0;
}
label:checked {
  color: red;
}
.tablebody .infoblockwrapper {
  overflow: hidden;
  width: 100%;
}
.tablebody .infoblockwrapper.twocols {
  width: 50%;
  float: left;
  padding-right: 7px;
}
.tablebody .infoblockwrapper.twocols.nopr {
  padding-right: 0;
}
.tablebody .infolabel {
  background-color: white;
  padding: 7px;
  border-radius: 3px;
  float: left;
  margin-top: 7px;
  width: 100%;
}
.tablebody .infolabel.small {
  width: 50%;
  border-right: 7px solid #f9f9f9;
}
.tablebody p.smalltitle {
  margin-top: 7px;
}
.tablebody .infolabel span:nth-of-type(1) {
  color: #9b9aa0;
  padding-left: 4px;
  padding-right: 7px;
  margin-right: 7px;
  border-right: 1px solid #9b9aa0;
  display: inline-block;
  text-align: center;
  font-size: 15px;
}
.tablebody .infolabel .info-label-key {
  color: #9b9aa0;
  padding-left: 4px;
  padding-right: 7px;
  margin-right: 7px;
  border-right: 1px solid #9b9aa0;
  display: inline-block;
  text-align: center;
  font-size: 15px;
}
.tablebody .infolabel span:nth-of-type(2) {
  color: #9b9aa0;
  float: right;
  background-color: #f9f9f9;
  padding: 3px;
  border-radius: 3px;
}
.row.tablebody .adaptive-image {
  background-size: contain;
  background-repeat: no-repeat;
  /*margin: 0 15px;*/
}

.css-productImg {
  max-width: 100%;
  height: auto;
}

.row.tablefooter {
  color: rgb(214, 11, 82);
  font-weight: 500;
  text-align: right;
}
.row.tablefooter .col-md-6:nth-of-type(1) {
  text-align: left;
  padding-left: 0;
}
.row.tablefooter .col-md-6:nth-of-type(1) button {
  padding: 8px 0;
  margin-left: 0;
  width: 200px;
}
.row.tablefooter .col-md-6:nth-of-type(1) button i {
  padding: 10px;
}
.row.tablefooter .col-md-6:nth-of-type(1) button span {
  padding: 10px;
}
.row.tablefooter .col-md-6:nth-of-type(2) {
  text-align: right;
}
.row.tablefooter.clear-right-padding .col {
  padding-right: 0;
}
.row.tablefooter i {
  margin-right: 15px;
}
.pink-button {
  background-color: rgb(214, 11, 82);
  padding: 10px;
  color: white;
  border-radius: 3px;
  text-align: center;
  width: 200px;
  margin-left: 15px;
}
.pink-button.loading {
  background-color: rgb(214, 11, 82, 0.5);
}
.pink-button .spinner {
  display: none;
}
.pink-button.loading .spinner {
  display: flex;
}
.pink-button.loading .button-text {
  display: none;
}
.btn-save-offer {
  display: flex;
  justify-content: center;
  color: white !important;
  gap: 0.5rem;
}
.overview-table a {
  cursor: pointer;
  color: #6d6e72;
  font-weight: bold;
}
.overview-table a:hover,
label.rotate-icon.pink i {
  color: rgb(214, 11, 82);
}

.form-box-content .radio-box input + label {
  text-align: center;
  border: 1px solid #f0f0f0;
}
.form-box-content .radio-box input + label p {
  padding: 3px 7px;
  background-color: #f0f0f0;
}
.form-box-content .radio-box input + label img {
}

.form-box-content .radio-box input:checked + label {
  border-color: rgb(214, 11, 82);
}

.form-box-content .radio-box input:checked + label p {
  color: rgb(214, 11, 82);
}

.clear-padding-left {
  padding-left: 0;
}
.custom-control-div {
  display: table;
}
.custom-control-div label {
  display: table-cell;
}
.custom-control-div input {
  display: table-cell;
  max-width: 50px;
  margin-left: 7px;
  margin-right: 7px;
}
.form-box.grey {
  background-color: #f0f0f0;
  padding: 7px;
}

#mapImage:hover {
  cursor: pointer;
}

.float-left {
  float: left;
}

.info-icon {
  position: absolute;
  bottom: 5px;
  right: 25px;
  font-size: 1.2em;
}

.info-icon-input-dimensions {
  position: absolute;
  bottom: -45px;
  right: 10px;
  padding: 8px;
  color: white;
  border-radius: 5px;
  font-size: 1.5em;
  background-color: rgb(214, 11, 82);
}
.info-icon-choose-options {
  margin-left: 5px;
  position: absolute;
  bottom: 0;
  padding: 4px;
  color: white;
  border-radius: 5px;
  font-size: 1.2em;
  background-color: rgb(214, 11, 82);
}
.info-icon-coating {
  right: 3px;
  z-index: 1;
  bottom: 5px;
}

.css-imgContainer {
  position: relative;
}

.css-imgContainer img {
  display: block;
}

.modal {
  z-index: 1050 !important;
}

.css-titleMountingProfile {
  height: 50px;
  min-height: 50px;
  display: table-cell;
  vertical-align: middle;
}

.css-mountingProfileDiv {
  display: initial;
}

.css-mountingProfileLabel {
  background-color: #f0f0f0;
}

/* Favorites / Most Ordered */
body {
  overflow-x: hidden;
}

.bottom-collapse {
  position: fixed;
  bottom: -1000px; /* Dynamic With jQuery instead of static height */
  left: 0;
  right: 0;
  background: #e9eaeb;
  z-index: 999;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}
.bottom-collapse.active {
  bottom: 0 !important;
}
.bottom-collapse-list {
  padding: 0;
  margin: 0 -10px;
  list-style: none;
}
.bottom-collapse-list li {
  float: left;
  width: calc(25% - 20px);
  margin: 0 10px 20px 10px;
}
.bottom-collapse .main-wrapper {
  background: transparent;
}
.bottom-collapse .main-wrapper .row {
  display: flex;
}

.bottom-collapse .main-wrapper .row > div.products ul,
.bottom-collapse .main-wrapper .row > div.products li,
.bottom-collapse .main-wrapper .row > div.products a {
  height: 100%;
}
.bottom-collapse .main-wrapper .row > div.products a {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.bottom-collapse-title {
  color: rgb(214, 11, 82);
  margin-bottom: 0.5em;
}
.bottom-collapse-list li a {
  border: 1px solid #dbddde;
  display: block;
  position: relative;
  padding-bottom: 40px;
}
.bottom-collapse-list .selector-title {
  background: #f0f0f0;
  display: block;
  padding: 0.75em 1em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 40px;
  color: #6d6e72;
  text-align: center;
}
.bottom-collapse-list li img {
  width: 40%;
  margin: auto;
}
.bottom-collapse-info-block {
  border-left: 4px solid rgb(214, 11, 82);
  height: 100%;
  overflow: hidden;
}

.css-btnOrderSpotlightProduct {
  width: 100%;
}

.css-imgInSpotlight {
  max-height: 140px;
}

.css-linkInSpotlight {
  margin: 0 auto 10px auto;
}

.bottom-collapse-info-block .bottom-collapse-content {
  align-items: center;
}
.bottom-collapse-info-block
  .bottom-collapse-content
  .bottom-product-item
  div
  > div:first-of-type {
  display: flex;
  align-items: center;
}
.bottom-collapse-content {
  padding: 2rem;
  background: #fff;
  height: 85%;
  display: flex;
}

.display-block {
  display: block !important;
}

.bottom-collapse-info-block-title {
  padding: 1rem 1rem;
  background: rgb(214, 11, 82);
  vertical-align: middle;
  font-weight: 300;
  color: #fff;
}
.bottom-collapse-info-block-title h4 {
  font-weight: 400;
}
.bottom-collapse-info-block-title span {
  vertical-align: middle;
}
.bottom-collapse-content .alert {
  padding: 1rem;
  border-radius: 0;
  color: #66512c;
  background: rgba(247, 181, 67, 0.2);
}
.bottom-collapse-content .alert-link {
  display: block;
  position: relative;
  padding-left: 60px;
  padding-right: 40px;
}
.alert-icon {
  font-size: 1.5em;
  width: 21px;
  height: 21px;
  left: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.alert-arrow-icon,
.bottom-product-icon {
  display: block;
  width: 14px;
  height: 17px;
  top: 0;
  bottom: 0;
  right: 0.75em;
  position: absolute;
  margin: auto;
}
.alert-description {
  font-size: 0.9em;
}
.bottom-products-sidebar {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bottom-products-sidebar a {
  display: block;
  padding: 10px 40px 10px 60px;
  border-bottom: 1px solid #dbddde;
  position: relative;
  color: #6d6e72;
}
.bottom-products-sidebar a .product-image {
  position: absolute;
  left: 0;
  max-width: 50px;
  max-height: 50px;
  top: 0;
}
.bottom-product-details {
  font-size: 0.85em;
}
.bottom-product-name {
  font-size: 1em;
}
.bottom-products-sidebar li:last-child a {
  border: 0;
}
.btn-bottom-collapse {
  background: rgb(214, 11, 82);
  position: absolute;
  bottom: 100%;
  left: 20px;
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  font-size: 1.4em;
  cursor: pointer;
}
.bottom-collapse.active .btn-bottom-collapse span.ti-angle-up:before {
  content: "\e64b";
}
.overflow-bottom-collapse {
  max-height: 380px;
  overflow-y: hidden;
}

.overflow-bottom-collapse::-webkit-scrollbar {
  width: 8px;
}
.overflow-bottom-collapse::-webkit-scrollbar-track {
  background: #f4f4f6;
}
.overflow-bottom-collapse::-webkit-scrollbar-thumb {
  background: #c8c9ca;
}
.favorite-helper {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 80px;
}
.favorite-helper-title {
  display: block;
}
.custom-radio-favorite {
  background: #f7b543;
  position: relative;
}
.radio-favorite {
  border-color: #f7b543 !important;
}
.radio-favorite .custom-radio .bottom-positioned {
  color: #f7b543;
  background: #fff;
}
.radio-list li.favorite {
  border-color: #f7b543 !important;
}
.favorite-helper-title {
  font-size: 1.4em;
  font-weight: bold;
}
.outline-box-2 {
  padding-right: 300px;
}
.outline-box-padding .btn-primary {
  width: 120px;
}
.outline-box-padding .btn-primary span,
.outline-box-padding .btn-warning span {
  display: block;
  text-align: center;
  line-height: 1.4;
}
.btn-favorite {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 120px;
  right: 140px;
}
#modal-library .modal-body {
  background: #f0f0f0;
  border: 0;
}
#modal-library .modal-header {
  border: 0;
}
#modal-library .modal-content {
  border-radius: 0;
  border: 0;
  background: #fff;
}
#modal-favorite-library .modal-body > .row {
  display: flex;
}
#modal-favorite-library .modal-body > .row .library-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#modal-favorite-library .modal-body > .row .library-item .image {
  flex: 1;
  justify-content: center;
  display: flex;
}
#modal-favorite-library .modal-body > .row .library-item .image img {
  object-fit: scale-down;
}
.library-item {
  background: #fff;
  position: relative;
  padding: 15px 0;
}
.library-item .image {
  text-align: center;
}
.library-item.library-item-notactive {
  pointer-events: none;
}
.library-item.library-item-notactive .btn-primary {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.library-item-overlay {
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.library-item-overlay-text {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background: #b6b7b8;
  color: #fff;
  padding: 10px;
}
.library-item .item-header {
  display: flex;
  margin: 15px 0 10px 0;
  background-color: #fafafa;
  padding: 5px;
  border-bottom: 0;
}
.library-item .item-header span {
  flex: 0.5;
}
.gray-label {
  display: inline-block;
  background: #f0f0f0;
  padding: 5px 20px;
  margin-bottom: 5px;
}
.spacer {
  height: 1px;
  background: #dbddde;
  margin: 10px 0;
  display: block;
}
.library-date {
  display: block;
}
.library-item-description {
  margin-bottom: 10px;
}
.library-item-description div {
  margin-bottom: 5px;
}
.row.row-small {
  margin: 0 -10px;
}
.row.row-small > div {
  padding: 0 10px;
}
.btn-bottom-collapse-text {
  font-size: 0.75em;
}
.btn-bottom-collapse span.ti-angle-up {
  font-size: 0.8em;
}
.bottom-product-description {
  padding: 0.5rem 0;
}
.bottom-product-item a {
  display: block;
}

.bottom-product-item {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
@media (min-width: 1260px) {
  .modal-lg {
    width: 1200px;
  }
}

@media (max-width: 768px) {
  .bottom-collapse-list li {
    width: calc(33.33% - 20px);
  }
  .outline-box-padding .btn-warning,
  .outline-box-padding .btn-primary {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 20px auto 0;
  }
  .outline-box-2 {
    padding-right: 0;
  }
  .outline-box-padding {
    padding: 20px;
  }

  .overflow-bottom-collapse {
    max-height: 350px;
  }
  .bottom-collapse {
    padding: 10px 0;
    bottom: -365px;
  }
  .product-in-de-kijker {
    flex-wrap: wrap;
  }
  .product-in-de-kijker > div {
    width: 100vw;
  }
  .product-in-de-kijker > div:nth-of-type(2) {
    height: 150px;
    margin-top: 20px;
  }
  .selling-point {
    min-width: 45vw;
  }
  #navbar-pink {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .bottom-collapse-list li {
    width: calc(50% - 20px);
  }
}

.css-change-color:hover {
  cursor: pointer;
}

.css-accessoiresDiv,
.css-overViewActionDiv,
.css-materialFinishZoneDiv,
.css-doorPullerMountsDiv {
  margin-bottom: 5em;
}
.css-doorPullerMountsDiv {
  margin-left: -15px;
  overflow: scroll;
}
.css-combinedAnglesImageIcon {
  color: rgb(214, 11, 82) !important;
}

.dot {
  height: 22px;
  width: 22px;
  color: #fff;
  background-color: rgb(214, 11, 82);
  text-align: center;
  padding-top: 2px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 15%;
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.customRowPadding {
  padding-left: 15px;
}

.project-number {
  display: inline-block;
  font-weight: bold;
  padding: 6px 15px;
  background: #f0f0f0;
  margin-bottom: 20px;
}

.cart-btn .dot {
  padding-top: 1px !important;
  margin-left: unset !important;
  height: 22px !important;
  width: 22px !important;
}

p.error {
  float: left;
  color: rgb(214, 11, 82);
  width: 100%;
}

.related-product-container {
  display: flex;
}
.related-product-block {
  width: calc(16.6666% - 20px);
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 0 10px 20px 10px;
}

.related-product-block .img-block {
  white-space: nowrap;
  height: 200px;
  text-align: center;
}

.related-product-block .img-block .center-image-helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.related-product-block .selector-title {
  background: #f0f0f0;
  display: block;
  padding: 0.75em 1em;
  min-height: 40px;
  color: #6d6e72;
  text-align: center;
}

.copyright a {
  color: #333;
  display: inline-block;
  padding: 0 0.4rem;
}

#footer {
  padding: 15px;
}

.main-wrapper {
  min-height: 91vh;
  position: relative;
}

.documentsTable th,
.documentsTable td {
  border: none !important;
}

.documentsTable tbody tr {
  background-color: unset !important;
  border-top: 1px solid #e5e5e5 !important;
}
.listbox {
  border: 1px solid lightgray;
  padding: 10px;
  width: 100%;
}

/* CONFIGURATOR MILLINGS */
.line-type-container {
  display: flex;
  flex-wrap: wrap;
}
.line-type-container .line-type .radio {
  background-color: #f8f8f8;
  padding: 10px;
  margin: 0 10px 15px 0;
}

.line-type-container .line-type .radio svg {
  fill: #e9e4e4;
  width: 50px;
}

.line-type-container .line-type.selected .radio {
  background-color: white;
  border: 1px solid #e02964;
}

.line-type-container .line-type.selected .radio svg {
  fill: #e02964;
}

/* Delivery address */
.form-detail summary {
  background-color: #eee;
  color: #485156;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 17px;
  text-transform: capitalize;
  margin-bottom: 15px;
  cursor: pointer;
}
.js-timeslot.flex,
.js-unloading-equipment.flex {
  display: flex !important;
}
.js-timeslot input,
.js-unloading-equipment input,
.js-unloading-equipment select {
  margin-right: 5px;
}
.availableCheckbox {
  display: flex;
  height: 40px;
  align-items: center;
}
.availableCheckbox input {
  margin-top: 0 !important;
}
.availableCheckbox input + label::before {
  box-shadow:
    0 0 0 1px #fff,
    0 0 0 0.2rem rgba(0, 255, 0, 0.25);
}
.availableCheckbox label {
  margin-left: 5px;
  margin-bottom: 0;
}

.clock-timepicker {
  min-width: 0;
  width: 100%;
}
.clock-timepicker input {
  width: 98%;
}
.existing-delivery-address {
  padding: 10px;
  border-radius: 5px;
  background-color: darkgray;
}
.existing-delivery-address label {
  color: white;
  font-size: 17px;
}
.greek-symbol {
  text-transform: none !important;
  font-size: 1.15em !important;
}

.highlight {
  border-color: rgb(214, 11, 82);
}

label.custom-error {
  float: left;
  color: var(--color-primary);
  width: 100%;
}

label.custom-warning {
  float: left;
  color: var(--color-warning);
  width: 100%;
}

html,
body,
.chart {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
div[id^="customizationsModal"] .modal-content .plate-container {
  background: #f8f8f8;
}
div[id^="customizationsModal"]
  .modal-content
  .plate-container
  .customizations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px;
  width: 100%;
}
div[id^="customizationsModal"]
  .modal-content
  .plate-container
  .customizations-list
  .card {
  width: 49%;
  background-color: #ffffff;
  padding: 5px;
  margin-bottom: 10px;
}
div[id^="customizationsModal"]
  .modal-content
  .plate-container
  .customizations-list
  .card
  .card-header {
  font-weight: bold;
  margin-left: 5px;
}
div[id^="customizationsModal"]
  .modal-content
  .plate-container
  .customizations-list
  .card
  .list-group {
  margin-bottom: 0;
}
div[id^="customizationsModal"]
  .modal-content
  .plate-container
  .customizations-list
  .card
  .list-group
  .list-group-item {
  padding: 4px 7px;
  border-radius: 0;
  background-color: #f8f8f8;
  border-left: none;
  border-right: none;
  border-color: white;
  border-width: 2px;
}
div[id^="customizationsModal"] .modal-content .pink-button {
  color: white;
  text-align: center;
  margin-top: 15px;
  display: inline-block;
}

input[type="checkbox"]:checked + i.fa-check-circle {
  color: rgb(214, 11, 82);
}

.door-panel-options img {
  max-height: 72vh;
  position: fixed;
  top: 278px;
  right: 0;
}
.door-panel-options img.not-fixed {
  position: relative;
  top: 0;
}
.door-panel-options .door-panel-groups {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}
.door-panel-options .door-panel-groups .door-panel-group {
  width: 31%;
  margin-bottom: 20px;
  margin-right: 1%;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  padding: 10px 15px;
}
.door-panel-options .door-panel-groups .door-panel-group h3 {
  font-size: 18px;
  margin-bottom: 7px;
}
.door-panel-options .door-panel-groups .door-panel-group .form-control,
.door-panel-options
  .door-panel-groups
  .door-panel-group
  input[type="checkbox"] {
  margin-bottom: 7px;
}
#helper-bubble {
  display: flex;
  margin: 5px;
  background-color: rgb(214, 11, 82);
  color: white;
  padding: 5px;
}
#helper-bubble i {
  margin-right: 7px;
}
.amc-covering-input label .panel {
  position: relative;
  cursor: pointer;
}
.amc-covering-input label .panel-heading {
  background: none;
  border-bottom: none;
}
.amc-covering-input label .panel-body {
  padding-top: 0;
}
.amc-covering-input label .panel-body img {
  margin-bottom: 20px;
}
.amc-covering-input label .panel-body p {
  color: black;
}
.amc-covering-input input:checked + label .panel {
  border-color: rgb(214, 11, 82);
}
.amc-covering-input input:checked + label .panel h3 {
  color: rgb(214, 11, 82);
}
.amc-covering-input .panel .text-container {
  height: 56px;
  overflow: hidden;
}
.amc-covering-input label .panel:hover .panel-hover {
  display: flex;
}
.amc-covering-input label .panel-hover {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(214, 11, 82);
  padding: 15px;
  opacity: 0.85;
  color: white;
  align-items: flex-end;
}
.dimensions-list.no-margin {
  margin: 0 -7px !important;
}

.product-description {
  background-color: #efefef;
  color: #727272;
  padding: 10px 20px;
  border-radius: 5px;
}

.page-content-no-space {
  padding: 150px 0 0 0;
  overflow-x: hidden;
}

.pagination > li > a,
.pagination > li > span {
  color: rgb(214, 11, 82);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  color: #fff !important;
  background-color: rgb(214, 11, 82) !important;
  border-color: rgb(214, 11, 82) !important;
}

.brievenbusklep_number,
.plint_number,
.cilinder_slot_number {
  position: relative;
}

/* Feedback page */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.rating > input {
  display: none;
}
.rating > label {
  position: relative;
  width: 1.1em;
  font-size: 40px;
  color: #ffd700;
  cursor: pointer;
}
.rating > label::before {
  content: "\2605";
  position: absolute;
  opacity: 0;
}
.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important;
}
.rating > input:checked ~ label:before {
  opacity: 1;
}
.rating:hover > input:checked ~ label:before {
  opacity: 0.4;
}

.discount-banner {
  background-color: #cce5ff;
  color: #004085;
}

.order-row-button:hover {
  background-color: #494a4e;
}
.order-row-button,
.order-row-button i {
  background-color: #6d6e72;
  padding: 5px;
  border-radius: 5px;
  font-weight: normal !important;
  color: white !important;
  margin-left: 5px;
}
.order-row-button i {
  margin: 0 0 0 3px;
  padding: 0;
  width: auto !important;
}

.door-panel-filters,
.door-puller-filters {
  display: flex;
  gap: 10px;
  background-color: #f0f0f0;
  padding: 10px 10px 0 10px;
  align-items: center;
  /* margin-top: -20px; */
  border-radius: 5px;
}
.door-panel-filters h2,
.door-puller-filters h2 {
  color: #596066;
  font-size: 18px;
  margin-right: 10px;
  margin-bottom: 5px;
}
.door-panel-filters h2 i,
.door-puller-filters h2 i {
  margin-right: 3px;
}
.door-panel-filters .form-group,
.door-puller-filters .form-group {
  flex-grow: 1;
}
.door-panel-filters .form-group label,
.door-puller-filters .form-group label {
  color: #596066;
}

.ral-color-badge {
  display: inline-block;
  min-width: calc(var(--spacing) * 6);
  min-height: calc(var(--spacing) * 6);
  border-radius: 50%;
  margin-right: calc(var(--spacing) * 3) !important;
  vertical-align: middle;
  border: 1px solid white;
}
.ral-color-badge.no-color {
  border: 1px solid #52525b;
  background-image: repeating-linear-gradient(
    45deg,
    #999,
    #999 var(--spacing-relative),
    #eee var(--spacing-relative),
    #eee calc(var(--spacing-relative) * 2)
  );
}
.ral-color-badge.bigger-on-hover {
  transition: transform 0.2s ease-in-out;
}
.ral-color-badge.bigger-on-hover:hover {
  transform: scale(800%);
}

.ral-color-rectangle {
  display: inline-block;
  width: 2em;
  height: 1em;
  border-radius: 2px;
  margin-right: 0.5em !important;
  vertical-align: middle;
}

.flex {
  display: flex !important;
}

.flex-col {
  flex-direction: column !important;
}

.items-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center !important;
}

.text-center {
  text-align: center !important;
}

.hidden {
  display: none !important;
}

.w-1\/2 {
  width: 50% !important;
}

.h-1\/2 {
  height: 50% !important;
}

.w-full {
  width: 100% !important;
}

.h-full {
  height: 100% !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.rounded-md {
  border-radius: 0.375rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mt-5 {
  margin-top: calc(var(--spacing) * 5) !important;
}

.mr-2 {
  margin-right: calc(var(--spacing) * 2) !important;
}

.gap-2 {
  gap: calc(var(--spacing) * 2) !important;
}

.gap-20 {
  gap: calc(var(--spacing) * 20) !important;
}

.gap-40 {
  gap: calc(var(--spacing) * 40) !important;
}

.font-bold {
  font-weight: 700 !important;
}

.z-1000 {
  z-index: 1000 !important;
}

.relative {
  position: relative !important;
}

.p-60 {
  padding: calc(var(--spacing) * 60) !important;
}

/* Common */
.loader-sm-red {
  border: 3px solid white;
  border-top: 3px solid rgb(214, 11, 82);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pointer-events-none {
  pointer-events: none;
  cursor: default;
}

.ml-auto {
  margin-left: auto;
}

.mb-0 {
  margin-bottom: calc(var(--spacing) * 0) !important;
}

.mt-0 {
  margin-top: calc(var(--spacing) * 0) !important;
}
.m-0 {
  margin: calc(var(--spacing) * 0) !important;
}
.d-flex,
.flex {
  display: flex !important;
}

.flex-col {
  flex-direction: column !important;
}

.grow {
  flex-grow: 1;
}

.gap-1 {
  gap: calc(var(--spacing) * 1) !important;
}

.gap-4 {
  gap: calc(var(--spacing) * 4) !important;
}

.items-center {
  align-items: center !important;
}

.p-0 {
  padding: calc(var(--spacing) * 0) !important;
}

.unit-label {
  color: #9b9aa0;
  float: right;
  background-color: #f9f9f9;
  padding: 3px;
  border-radius: 3px;
}

.p-4 {
  padding: calc(var(--spacing) * 4) !important;
}

.mb-2 {
  margin-bottom: calc(var(--spacing) * 2) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.dropzone {
  border: 0 !important;
}

.btn-primary-dashed {
  width: 100%;
  border: 2px dashed var(--border-light);
  border-radius: 0.375rem;
  padding: 1rem;
  color: var(--muted-color-text);
  transition: all 0.2s ease-in-out;
}

.btn-primary-dashed:hover {
  border: 2px dashed var(--color-primary);
  color: var(--color-primary);
}

.btn-primary-dashed:focus {
  outline: none;
  box-shadow: none;
}

.form-subtitle {
  font-size: large;
  color: var(--muted-color-text);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.form-subtitle::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--border-light);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.unloading-times-title {
  color: var(--muted-color-text);
  font-weight: bold;
}

.form-control.is-invalid,
.form-select.is-invalid,
.form-check-input.is-invalid {
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  background-color: var(--color-primary-light) !important;
}

.js-collection-container.is-invalid {
  .js-equipment-item {
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    background-color: var(--color-primary-light) !important;
    border-radius: var(--radius-md) !important;
  }
}

.text-error {
  color: var(--color-primary);
}

.form-select {
  border: 1px solid var(--border-medium-light);
  border-radius: 4px;
  padding: 1rem;
  width: 100%;
}

.js-toggle-details {
  padding: 1rem;
  border-radius: 1.3rem;
  cursor: pointer;
  margin: 0 1rem 0 1rem !important;
}
.js-toggle-details:hover {
  background-color: #f2f2f2;
}

.adaptive-image img {
  height: 26rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.choose-delivery-date-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  .info-banner {
    width: 347px;
    background-color: #eeeeee;
    padding: 1rem;
    border-radius: 0.375rem;
  }
}

.choose-delivery-date-container .actions {
  margin-top: 5rem;
}

.choose-delivery-date-container .calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.choose-delivery-date-container .calendar,
.choose-delivery-date-container .information,
.choose-delivery-date-container .actions {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .choose-delivery-date-container .calendar,
  .choose-delivery-date-container .information {
    flex: 1 1 50%;
  }

  .choose-delivery-date-container .actions {
    flex: 1 1 100%;
  }
}

/* 1) Neutralize Flatpickr's default selection so our styles show cleanly */
.flatpickr-calendar .dayContainer .flatpickr-day {
  border: none !important;
}
.flatpickr-calendar .dayContainer .flatpickr-day.selected,
.flatpickr-calendar .dayContainer .flatpickr-day.inRange,
.flatpickr-calendar .dayContainer .flatpickr-day.startRange,
.flatpickr-calendar .dayContainer .flatpickr-day.endRange {
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
}

.flatpickr-weekdays {
  display: none;
}

/* 3) Colors per week type */
.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.inRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.startRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.endRange {
  background-color: var(--rush) !important;
}
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.inRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.startRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.endRange {
  background-color: var(--fast) !important;
}
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard.inRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard.startRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard.endRange {
  background-color: var(--standaard) !important;
}

/* 4) Make the week look like one pill: round only the first/last day */
.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.startRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.startRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard.startRange {
  border-radius: 999px 0 0 999px !important;
}
.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.endRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.endRange,
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard.endRange {
  border-radius: 0 999px 999px 0 !important;
}

/* 5) Hover/active feedback (keep it subtle & consistent) */
.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.inRange:hover,
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.inRange:hover,
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard.inRange:hover {
  filter: brightness(0.92);
}

/* 6) Keep “today” dot readable on bright chips */
.flatpickr-calendar
  .dayContainer
  .flatpickr-day.inRange[aria-current="date"]::after,
.flatpickr-calendar
  .dayContainer
  .flatpickr-day.startRange[aria-current="date"]::after,
.flatpickr-calendar
  .dayContainer
  .flatpickr-day.endRange[aria-current="date"]::after {
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.flatpickr-calendar .dayContainer .flatpickr-day.inRange {
  /* hide inner gaps between cells */
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset -1px 0 0 rgba(255, 255, 255, 0.12);
}

/* 8) Disabled days should not adopt the chip colors */
.flatpickr-calendar .dayContainer .flatpickr-day.inRange.flatpickr-disabled,
.flatpickr-calendar .dayContainer .flatpickr-day.startRange.flatpickr-disabled,
.flatpickr-calendar .dayContainer .flatpickr-day.endRange.flatpickr-disabled {
  background: #e9ecef !important;
  color: #9aa0a6 !important;
  filter: none !important;
  border-radius: 0 !important;
}

.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.selected {
  background-color: var(--rush-darker) !important;
  border: none !important;
}

.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard.selected {
  background-color: var(--standaard-darker) !important;
  border: none !important;
}

.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.selected {
  background-color: var(--fast-darker) !important;
  border: none !important;
}

.flatpickr-calendar .dayContainer .flatpickr-day.week--rush::before,
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard::before,
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.flatpickr-calendar .dayContainer .flatpickr-day.week--rush::before {
  background-color: var(--rush-darker); /* rush */
}
.flatpickr-calendar .dayContainer .flatpickr-day.week--standaard::before {
  background-color: var(--standaard-darker); /* standaard */
}
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast::before {
  background-color: var(--fast-darker); /* fast */
}

.flatpickr-calendar .dayContainer .flatpickr-day.week--rush.selected::before {
  background-color: var(--rush); /* rush */
}
.flatpickr-calendar
  .dayContainer
  .flatpickr-day.week--standaard.selected::before {
  background-color: var(--standaard); /* standaard */
}
.flatpickr-calendar .dayContainer .flatpickr-day.week--fast.selected::before {
  background-color: var(--fast); /* fast */
}

.flatpickr-weekwrapper .flatpickr-weekday {
  display: none !important;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  border-right: 1px solid var(--border-light);
  padding-right: 1rem;
}

.unit-label {
  color: #9b9aa0;
  float: right;
  background-color: #f9f9f9;
  padding: 3px;
  border-radius: 3px;
}
