:root {
  --primary-color: #00aeef;
  --secondary-color: #e94e00;
  --light-color: #fff;
  --light-blue-color: #eaf6fd;
  --text-dark: #464646;
  --dark-primary: #006388;
}

/* Algemeen */

body {
  background-color: var(--light-color);
  color: var(--text-dark);
  font-family: "Work Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.1rem;
}

h1,
h2 {
  font-family: "Ubuntu", serif;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--primary-color);
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
}

section {
  overflow: hidden;
}

a,
a:hover {
  color: var(--primary-color);
  transition: 0.5s ease;
}

a.no-underline,
a.no-underline:hover,
a[href].no-underline,
a[href].no-underline:hover {
  text-decoration: none !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: rgba(0, 155, 233, 0.8);
  border-color: rgba(0, 155, 233, 0.8);
}

.fancy-heading {
  font-size: 4rem;
}

.big-heading,
h1 {
  font-size: 3rem;
}

.btn-light-brown {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
}

.btn {
  border-radius: 0;
}

.social-wrapper a {
  text-decoration: none !important;
  padding: 0 5px;
  transform: translateY(0px);
  display: inline-block;
}

.social-wrapper a:hover {
  transform: translateY(-5px);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.content-wrapper {
  animation: fade-in 1s ease both;
  animation-delay: 0.5s;
}

.header_image {
  animation: fade-in 1s ease both;
  animation-delay: 0.5s;
}

.parallax-lead p {
  text-shadow: rgba(214, 211, 210, 0.7) 0px 0px 8px;
}

.carousel-control-next,
.carousel-control-prev {
  font-size: 40px;
}

.big {
  font-size: 1.5rem;
}

.masonry .masonry-item {
  cursor: pointer;
}

.modal-body.loading:after {
  content: "\f110";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 40px;
  animation: fa-spin 2s infinite linear;
  padding: 3rem;
}

.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax .parallax-lead h2,
.logo_block h3 {
  color: var(--text-dark);
}

.my-6,
.mb-6 {
  margin-bottom: 5rem !important;
}

.my-6,
.mt-6 {
  margin-top: 5rem !important;
}

.max-height-100px {
  max-height: 100px;
}

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

.max-height-300px {
  max-height: 300px;
}

a.fas:hover {
  text-decoration: none;
}

/* Breadcrumb */
.breadcrumb {
  background: none !important;
}

.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb .breadcrumb-item:last-of-type:after {
  color: var(--primary-color) !important;
}

.breadcrumb-item.active {
  color: var(--secondary-color) !important;
}

.breadcrumb-wrapper h1 {
  pointer-events: none;
}

.breadcrumb .breadcrumb-item:last-of-type:after {
  display: inline-block;
  padding-right: 0.5rem;
  content: "/";
}

/* Pagination */
.pagination {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pagination li a {
  background: none !important;
  border: none !important;
  color: var(--primary-color) !important;
  font-size: 1.2rem;
}

.pagination li.disabled a {
  opacity: 0.5;
}

.pagination li.page-number a {
  cursor: default !important;
}

/* Parallax text block */

.parallaxtextblock {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.parallaxtextblock:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  opacity: 0.8;
  z-index: 1;
}

.parallaxtextblock .parallax-lead {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 3;
}

.text_left {
  width: 60%;
}

.text_left_wrapper:after {
  background: linear-gradient(to right, var(--light-color) 65%, transparent);
  background-color: unset !important;
}

/* Logo slider */

.logo_block {
  display: block;
  text-align: center;
}

.logo_block img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto;
  transition: 0.5s ease;
}

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

.logo_block.has_link:hover img {
  transform: scale(1.1);
}

/* Iconblock */

.icon-block {
  display: block;
}

.icon-block span.icon {
  font-size: 2rem;
}

.icon-devider {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 50px;
  height: 1px;
  border-bottom: 4px solid var(--secondary-color);
}

/* Header */

.navbar-brand svg {
  width: 100%;
  max-width: 200px;
}

.navbar-brand svg .text {
  fill: var(--primary-color);
  transition: 0.4s ease;
}

.navbar-brand svg circle {
  fill: #0472a9;
}

header a {
  color: var(--primary-color) !important;
}

.head-logo {
  position: relative;
}

.head-logo svg g path {
  transition: 0.4s ease;
}

.toggle-head-menu,
.head-bars {
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: 0.5s ease;
  background: white;
}

header.closed {
  transform: translateY(-300px);
}

.head-menu .navbar-brand {
  position: relative;
}

.header-fix {
  padding: 0.5rem 0;
  visibility: hidden;
  opacity: 0;
  position: relative;
  display: block;
}
/* Head menu */

.head-menu {
  position: fixed;
  right: 0;
  z-index: 9;
  width: 100%;
  background: var(--light-color);
  transition: 0.5s ease;
  opacity: 0;
  visibility: none;
  pointer-events: none;
  user-select: none;
}

.head-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  user-select: all;
}

.head-menu-inner {
  opacity: 0;
  height: 100%;
  transform: translateY(-50px);
  transition: 0.5s ease;
}

@media screen and (max-width: 1300px) {
  .head-menu-menu {
    padding: 0px 50px;
  }
}

.head-menu.open .head-menu-inner {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.5s;
}

.head-menu-menu {
  width: 100%;
  margin-top: 30px;
}

.head-menu-menu ul li a {
  font-size: 1.2rem;
  transition: 0.2s ease;
  user-select: none;
  padding-left: 0;
  color: var(--primary-color) !important;
}

.head-menu-menu .left-column ul li a {
  font-size: 1.5rem;
  line-height: 1.1;
  transition: 0.2s ease;
}

.head-menu-menu .left-column ul.flex-column li a.active {
  color: var(--dark-primary) !important;
  transform: translateX(5px);
}

.head-menu-menu .left-column ul.flex-column li a:not(.active):hover {
  transform: translateX(2px);
}

.head-menu-menu .left-column ul li a:not(.active):hover {
  color: #0194cc !important;
}

.left-column .dropdown-toggle:after {
  display: none !important;
}

.left-column .dropdown-toggle {
  cursor: pointer;
}

.right-column-header {
  margin-bottom: 30px;
}

.right-column-header a {
  color: var(--primary-color) !important;
  text-decoration: unset !important;
}

.right-column ul li a {
  color: var(--primary-color) !important;
  padding: 0;
  font-size: 18px;
}

.right-column ul li a:hover {
  text-decoration: underline !important;
}

.right-column .right-column-header h4 {
  color: var(--dark-primary) !important;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  user-select: none;
  cursor: default;
}

.right-column h5 {
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1.3rem;
  word-break: break-word;
}

.right-column .row div > a {
  text-decoration: none !important;
}

.right-column ul li a {
  color: var(--primary-color) !important;
}

.right-column {
  border-left: 2px solid var(--primary-color);
  padding: 0px 35px;
}

.right-column .sub {
  display: none;
}

.right-column .sub.open {
  display: block;
}

/* Footer */

.sub-footer {
  text-align: center;
  margin-top: 5rem;
}

.sub-footer * {
  color: var(--primary-color);
}

footer {
  padding-top: 5rem;
  background-color: var(--light-blue-color);
}

/* News items */
.news-thumbnail {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news-thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  opacity: 0;
  z-index: 1;
  will-change: transform;
  transition: 1.5s ease;
}

.news-thumbnail-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate3d(0, 10px, 0);
  z-index: 2;
  opacity: 0;
  transition: 0.5s ease;
  transition-delay: 0s;
  will-change: transform;
}

.newsitem:hover .news-thumbnail-inner {
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 0);
  transition-delay: 0.2s;
}

.newsitem:hover .news-thumbnail:before {
  opacity: 0.75;
  transition: 0.5s ease;
}

.newsitem a {
  text-decoration: none !important;
  display: block;
  color: inherit !important;
}

/* Product */

.product_block {
  width: 100%;
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
  transition: 1s ease;
  margin-bottom: 30px;
}

.product_block:after {
  content: "";
  display: block;
  padding-top: 100%;
}

.product_block:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--primary-color);
  opacity: 0.45;
}

.product_block .thumbnail-background {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 1s ease;
  filter: grayscale(1);
}

.product_block span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.7s ease;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 100%;
  display: block;
  font-family: "Ubuntu";
  width: 100%;
  max-width: 90%;
}

.product_block span:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-bottom: 2px solid white;
  width: 0;
  transition: 0.5s ease;
}

.product_block:hover span:after {
  width: 100%;
}

/* Product slider */

.product-carousel .owl-stage-outer,
.reference-carousel .owl-stage-outer,
.logo-carousel .owl-stage-outer {
  overflow: visible;
}

.product-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0 !important;
  pointer-events: none;
}

.product-carousel .owl-item {
  transition: 0.5s ease;
}

.product-carousel .owl-item:not(.active) {
  transform: scale(0.8);
  opacity: 0.2;
  pointer-events: none;
}

.owl-carousel.owl-theme .owl-dots .owl-dot {
  box-shadow: none !important;
  outline: none !important;
}

.owl-carousel.owl-theme .owl-dots .owl-dot span {
  height: 5px;
  width: 30px;
  border-radius: 0;
  background-color: var(--primary-color);
  transition: 0.5s ease;
  opacity: 0.3;
}

.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  opacity: 0.6;
}

.owl-carousel.owl-theme .owl-dots .owl-dot.active span {
  opacity: 1;
}

.owl-carousel.owl-theme.product-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 0;
  border: 0 !important;
  outline: 0 !important;
  transition: 0.5s ease;
  margin: 0 !important;
  pointer-events: all;
}

.owl-theme .owl-nav .disabled {
  cursor: default !important;
  opacity: 0.4 !important;
}

.product-carousel .product_block {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1200px) {
  .product-carousel .owl-nav {
    width: calc(100% + 50px);
    left: -25px;
  }
}

@media screen and (max-width: 768px) {
  html.no-scroll {
    overflow: hidden;
  }
}

/* Scroll down */

@keyframes scroll {
  from {
    transform: translateY(-10px) translateX(-50%);
    opacity: 0;
  }
  50% {
    transform: translateY(0px) translateX(-50%);
    opacity: 1;
  }
  to {
    transform: translateY(5px) translateX(-50%);
    opacity: 0;
  }
}

.scroll_down {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  font-size: 30px;
  width: 30px;
  height: 50px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: 0.5s ease;
  cursor: pointer;
  pointer-events: none;
  z-index: 999;
}

.scroll_down:after {
  content: "";
  width: 4px;
  height: 10px;
  border-radius: 4px;
  background-color: var(--light-color);
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite ease;
}

.scroll_down.scroll_show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Reference carousel */

.reference-carousel .owl-item {
  transition: 0.5s ease;
}

.reference-carousel .owl-item:not(.active) {
  opacity: 0.3;
}

.reference-carousel .reference_block h2 {
  font-size: 3rem;
}

.ref-devider {
  width: 100%;
  max-width: 50px;
  height: 1px;
  border-bottom: 4px solid var(--primary-color);
  margin: 20px 0;
}

.reference_lead .rich-text *:last-of-type {
  margin-bottom: 0;
}

.search-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 1);
  z-index: 99;
  transition: 0.5s ease;
  transform: translateY(-140px);
}

.search-wrapper.open {
  transform: translateY(0px);
}

.search-wrapper form,
.search-wrapper .form-group {
  width: 100%;
}

.search-wrapper .search-input {
  width: 100%;
  background: unset;
  border: 0;
  color: var(--primary-color);
  box-shadow: unset !important;
  outline: unset !important;
  height: 130px;
  font-size: 20px;
  font-size: 1.5rem;
}

.search-wrapper .search-input::placeholder {
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.search-wrapper .toggle-search {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  background: none;
  outline: none;
  border: none;
  box-shadow: none;
  color: var(--primary-color) !important;
  font-size: 2rem;
  cursor: pointer;
}

.head-logo-image,
.header-fix img {
  width: auto;
  max-height: 80px;
  transition: 0.2s ease;
}

header.scrolled .head-logo-image,
header.scrolled .header-fix img {
  max-height: 60px;
}

/* Header image */
.header_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.head_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 1)
  );
}

.homepage .header_image {
  display: none;
}

/* Head-carousel */
.head-carousel,
.head-carousel * {
  cursor: default !important;
  user-select: none;
}

.head-carousel,
.head-carousel .image-wrapper,
.head-carousel .image-wrapper,
.head-carousel .slider-image {
  height: 100vh;
  max-height: calc(100vh - 106px);
}

.head-carousel .image-wrapper {
  position: relative;
}

.head-carousel .image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.head-carousel .slider-image {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@keyframes slide-in {
  from {
    transform: translate(-50%, -50%) translate3d(0, -30px, 0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
    opacity: 1;
  }
}

.head-carousel .lead-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 1140px;
  width: 100%;
  padding: 0 15px;
  z-index: 2;
  text-align: left;
  animation: slide-in 1s ease both;
  animation-delay: 1s;
}

.head-carousel .lead-wrapper * {
  color: white;
}

.homepage-slider .head-carousel .lead-wrapper .rich-text h2 {
  font-size: 8rem;
  margin-top: 0;
}

.header_breadcrumbs {
  margin-top: 30px;
}

/* Media queries */

@media screen and (max-width: 768px) {
  .navbar-brand svg {
    max-width: 130px;
  }
  .fancy-heading {
    font-size: 3rem;
  }
  .parallaxtextblock {
    height: unset !important;
    padding: 30px 0;
  }
  .parallaxtextblock .parallax-lead {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    z-index: 2;
  }
  .big-heading {
    font-size: 2.5rem;
  }
  .m-mobile-0 {
    margin: 0 !important;
  }
  .reference-carousel .reference_block:not(:last-of-type) {
    margin-bottom: 5rem;
  }
  .reference-carousel .reference_block h2 {
    font-size: 1.3rem;
  }
  .reference_lead {
    font-size: 1rem;
  }
  .logo_block h3 {
    font-size: 20px;
  }
  .toggle-search span {
    display: none !important;
  }
  .toggle-search small {
    font-size: 100% !important;
  }
  .homepage-slider .head-carousel .lead-wrapper .rich-text h2 {
    font-size: 3rem;
    text-align: center;
  }
  .search-wrapper .toggle-search {
    right: 15px;
  }
  .search-wrapper .search-input {
    height: 75px;
  }
  .text_left {
    width: 100%;
  }
  .text_left_wrapper:after {
    background: rgba(255, 255, 255, 0.85) !important;
  }
}

@media screen and (max-width: 340px) {
  .homepage-slider .head-carousel .lead-wrapper .rich-text h2 {
    font-size: 2rem;
  }
}

.room_info p {
  margin-bottom: 0;
}

.rooms .room {
  position: relative;
  background-color: white;
  display: block;
  text-decoration: none !important;
  color: #464646;
  transition: 0.3s ease;
  box-shadow: 0 3px 13px -3px rgba(0, 0, 0, 0.2);
}

.rooms .room:not(.room_add) {
  margin: 15px 0px;
}

.rooms .room:hover {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.rooms .room .room_info {
  padding: 10px 15px;
}

.rooms .room .room_image {
  position: relative;
  overflow: hidden;
}

.room_info small {
  line-height: 1.3;
}

.room_info small b {
  font-weight: 600;
  color: #343a40 !important;
}

.rooms .room.room_add {
  display: block;
  position: relative;
  height: calc(100% - 30px);
  min-height: 300px;
  width: 100%;
  margin: 15px 0;
}

.rooms .room.room_add .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.rooms .room.room_add i {
  font-size: 40px;
}

.rooms .room .room_info > p:not(:last-of-type):not(:first-of-type) {
  line-height: 1;
}

.room_info p b {
  font-weight: 600;
}

.room_room {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(6, 173, 240, 0.8);
  color: white;
  backdrop-filter: blur(2px);
  font-weight: 600;
  position: absolute;
  top: 0;
  z-index: 2;
}

.rooms .delete_room {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: white;
  color: #dc3545;
  padding: 6px 12px;
  font-size: 16px;
  border-top-left-radius: 10px;
  box-shadow: -3px 3px 10px -3px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1200px) {
  .container-lg {
    max-width: 1380px;
  }
}

.comp_wrapper {
  position: sticky;
  top: 120px;
}

.totals th,
.totals td {
  padding: 0.75rem 0 !important;
  border-color: #ededed !important;
}

.totals td {
  text-align: right;
}

.totals tr:last-of-type {
  border-top: 1px solid #ededed;
}

.totals tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.totals th {
  line-height: 1.2;
}

table th.edit {
  width: 1px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(234, 246, 254) !important;
}

.total_price {
  background-color: rgb(234, 246, 254);
  padding: 15px 15px;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(6, 173, 240, 0.25);
  border-color: #06adf0;
}

.embed-responsive-small {
  height: 300px;
}

#googlemap {
  height: 100%;
  min-height: 500px;
}

.location_list {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 500px;
  width: 100%;
}

.location_list .location {
  padding: 15px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #ededed;
}

.location-form {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex: unset !important;
  padding: 15px;
  background: #ededed;
}

.location-form button {
  margin-left: 30px;
}

.location-form .form-group:not(:first-child) {
  margin-left: 15px;
}

.location-form .form-group input,
.location-form .form-group select {
  width: 100%;
  max-width: 200px;
}

.location-form .form-group select {
  min-width: 200px;
  width: 100%;
  max-width: 200px;
}

.location-form .form-group label {
  margin-right: 15px;
  margin-bottom: 0;
}

.location-form .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.pictogramblock h4 {
  font-size: 1rem !important;
}

@media screen and (min-width: 991px) {
  .pictogramblock:hover img {
    transform: scale(1.04) translateY(-2px);
  }
  .pictogramblock img {
    margin-top: 10px;
    transition: 0.2s ease;
  }
  .head-menu.open:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-50px);
    z-index: -1;
    background: white;
  }
}

@media screen and (max-width: 991px) {
  .pictogramblock img {
    margin: 0 auto;
  }
  .pictogramblock {
    display: block;
    width: 100%;
  }
  .location-form {
    flex-wrap: wrap;
  }
  .location-form .form-group {
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 100%;
  }
  .location-form .form-group label,
  .location-form .form-group input,
  .location-form .form-group select {
    width: 100%;
    max-width: 100% !important;
  }
  .location-form button {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
  .location-form .form-group:not(:first-child) {
    margin-left: 0px !important;
  }
}

.breadcrumb-wrapper {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
}

#cookie-banner {
  padding: 25px 0px;
  position: fixed;
  width: 100%;
  background: #fff;
  bottom: 0;
  z-index: 350;
}

#cookie-banner {
  background: rgba(242, 250, 255, 0.98);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.config_background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: 50% 72%;
  background-size: cover;
}

@media screen and (max-width: 1100px) {
  .config_background {
    background-position: bottom right;
  }
}

.grecaptcha-badge {
  margin-bottom: 90px;
}

.job-offer-wrapper .input-group-text, .job-offer-wrapper .custom-file-label:after{
  color: white;
  background: #00aeef;
  font-weight: bold;
}

.job-offer-wrapper button{
  font-weight: bold;
}

@media screen and (min-width:991px) {
  .job-offer-wrapper .input-group-text{
      width: 225px;
  }
}

.d-flex.align-items-center .head-bars:first-child{
  color: #E5A41E !important;
}


.door-photo-carousel.owl-carousel .owl-nav{
  display: flex;
  justify-content: space-between;
}

.door-photo-carousel.owl-carousel .owl-nav button{
  padding: 1rem !important;
}

.modal-body.bg-secondary{
    background: #c3c3c3 !important;
}