/*===================================================================
  >> General
================================================================== */

.wlac-wrap {
    display: block;
    width: 100%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1220px) {
    .wlac-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.wlac-main {
    padding-bottom: 30px;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.wlac-main-overlay {
    background-color: var(--wlac-gray);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.wlac-main .flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

.wlac-main h1,
.wlac-main h2 {
    color: var(--wlac-primary-color);
    text-transform: uppercase;
    font-weight: bold;
}

.wlac-main h2 {
    font-size: 25px;
    padding-bottom: 21px;
}

/* Select */

.wlac-main select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='4b4b4b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%;
}

/* Block heading */

.block-title {
    color: var(--wlac-primary-color);
    text-align: center;
    padding-top: 28px;
}

.block-title-sub {
    font-family: "Poppins";
    font-size: 17px;
    text-align: center;
}

/* WLAC button */

.wlac-button {
    background-color: var(--wlac-primary-color) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    padding: 5px 15px !important;
    border: 2.5px solid var(--wlac-primary-color) !important;
    border-radius: 4px !important;
    -webkit-transition: all 0.2s ease-in-out !important;
    -o-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
    position: relative;
}

.wlac-button:hover,
.wlac-button:active,
.wlac-button:focus {
    background-color: #ffffff !important;
    color: var(--wlac-primary-color) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    padding: 5px 15px !important;
    border: 2.5px solid var(--wlac-primary-color) !important;
    border-radius: 4px !important;
}

.wlac-button[disabled],
.wlac-button[disabled]:hover,
.wlac-button[disabled]:active,
.wlac-button[disabled]:focus {
    background-color: var(--wlac-primary-color) !important;
    color: #ffffff !important;
    opacity: 0.5;
    cursor: not-allowed !important;
    border: 2.5px solid var(--wlac-primary-color) !important;
}

/* WLAC button spinner */

.wlac-button-spinner > svg {
    display: none;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 12px;
}

.wlac-button-spinner-show,
.wlac-button-spinner-show:hover,
.wlac-button-spinner-show:active,
.wlac-button-spinner-show:focus {
    padding-left: 40px !important;
}

.wlac-button-spinner-show > svg {
    display: block;
    -webkit-animation: rotating 1.5s linear infinite;
    animation: rotating 1.5s linear infinite;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*===================================================================
  >> Objectlist
================================================================== */

/* Block objectlistmap */

.block-objectlistmap-map {
    width: 100%;
    height: 400px;
}

@media (max-width: 1199px) {
    .block-objectlistmap-map {
        height: 350px;
    }
}

.block-objectlistmap-map .maplibregl-popup {
    max-width: 400px !important;
}

.block-objectlistmap-map .maplibregl-popup-content {
    font-family: inherit;
    padding: 10px;
}

.block-objectlistmap-map .maplibregl-popup-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.block-objectlistmap-map .maplibregl-popup-link > img {
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.block-objectlistmap-map .maplibregl-popup-text {
    color: #888888;
    font-size: 14px;
    padding-left: 15px;
}

.block-objectlistmap-map .maplibregl-popup-text-title {
    color: var(--wlac-primary-color);
    font-size: 16px;
    padding-bottom: 3px;
}

.block-objectlistmap-map .maplibregl-popup-text-price-label {
    padding-top: 3px;
}

.block-objectlistmap-map .maplibregl-popup-text-price {
    color: var(--wlac-primary-color);
    font-size: 18px;
}

/* block searchfilter */

.block-searchfilter {
    padding-top: 32px;
}

.block-searchfilter input,
.block-searchfilter select {
    height: 42px;
    padding: 5px 10px;
    border: 2px solid var(--wlac-primary-color);
    border-radius: 4px;
    margin-right: 13px;
}

.block-searchfilter select {
    padding: 5px 20px 5px 10px;
}

@media (max-width: 767px) {

    .block-searchfilter input,
    .block-searchfilter select {
        margin-right: 0;
        width: 100%;
    }
}

.block-searchfilter-content > * {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .block-searchfilter-content select:nth-child(1) {
        width: 200px;
    }

    .block-searchfilter-content select:nth-child(2) {
        width: 140px;
    }

    .block-searchfilter-content input:nth-child(3) {
        width: 200px;
    }

    .block-searchfilter-content input:nth-child(4),
    .block-searchfilter-content input:nth-child(5) {
        width: 140px;
    }

    .block-searchfilter-content button:nth-child(6) {
        margin-right: auto;
    }

    .block-searchfilter-content select:nth-child(7) {
        width: 170px;
        margin-right: 0;
    }
}

/* Block objectlist */

.block-objectlist {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;
    padding-top: 40px;
}

@media (max-width: 1099px) {
    .block-objectlist {
        -ms-grid-columns: 1fr 50px 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .block-objectlist {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.block-objectlist-unit {
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    border: 2px solid var(--wlac-primary-color);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.block-objectlist-unit:hover,
.block-objectlist-unit:active,
.block-objectlist-unit:focus {
    color: inherit;
    text-decoration: none;
}

.block-objectlist-unit > img {
    width: 100%;
    height: 248px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.block-objectlist-banderole-left {
    display: block;
    width: 250px;
    height: 48px;
    background-color: var(--wlac-secondary-color);
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg);
    padding-top: 9px;
    position: absolute;
    left: -68px;
    top: 27px;
}

.block-objectlist-banderole-right {
    display: block;
    width: 250px;
    height: 48px;
    background-color: var(--wlac-primary-color);
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
    padding-top: 9px;
    position: absolute;
    right: -68px;
    top: 27px;
}

.block-objectlist-unit-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100% - 248px);
    padding: 15px 20px;
}

h2.block-objectlist-unit-title {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: auto;
}

.block-objectlist-unit-externalnumber {
    margin-top: 13px;
}

.block-objectlist-unit-meta {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 2px 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-columns: 1fr 2px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2px;
    margin-top: 7px;
}

.block-objectlist-unit-meta > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.block-objectlist-unit-meta > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.block-objectlist-unit-meta > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.block-objectlist-unit-meta > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.block-objectlist-unit-meta-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-columns: 45px 1fr;
    grid-template-columns: 45px 1fr;
    height: 75px;
    font-family: "Poppins";
    justify-items: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-objectlist-unit-meta-item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.block-objectlist-unit-meta-item > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.block-objectlist-unit-meta-item > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.block-objectlist-unit-meta-item > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
}

.block-objectlist-unit-meta-item > svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    width: 33px;
    height: 30px;
    color: var(--wlac-primary-color);
}

.unit-meta-label {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    color: #282828;
    font-size: 11px;
}

.unit-meta-value {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    color: #282828;
    font-size: 15px;
}

.block-objectlist-unit-pricing {
    min-height: 86px;
    color: var(--wlac-primary-color);
    padding-top: 10px;
}

.block-objectlist-unit-pricing .pricing-value > span {
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
}

.block-objectlist-unit-pricing .pricing-value.pricing-value-alert > span {
    color: var(--wlac-secondary-color);
    text-transform: uppercase;
}

.block-objectlist-unit-courtage {
    font-family: "Poppins";
    font-size: 13px;
    padding-top: 6px;
}

/* Block pagination */

.block-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 50px;
}

.block-pagination-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33px;
    height: 34px;
    color: #000000;
    cursor: pointer;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-left: 1px solid #000000;
}

.block-pagination-button:last-child {
    border-right: 1px solid #000000;
}

.block-pagination-button:hover {
    background-color: #333333;
    color: #ffffff;
}

.block-pagination-button.pageindex.active {
    background-color: #000000;
    color: #ffffff;
}

/*===================================================================
  >> Expose
================================================================== */

/* Block slider */

.block-slider {
    padding-bottom: 20px;
}

.block-slider .splide__arrow {
    z-index: 2;
}

/* Block goto */

.block-goto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: bold;
    padding-top: 7px;
    padding-bottom: 15px;
}

.block-goto-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 165px;
    background-color: var(--wlac-gray);
    color: var(--wlac-primary-color);
    text-align: center;
    text-transform: uppercase;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .block-goto-button {
        width: 100%;
    }

    .block-goto-button:not(:last-child) {
        margin-bottom: 28px;
    }
}

.block-goto-button > svg {
    width: 10px;
    margin-right: 10px;
    -webkit-transition: margin 0.2s ease-in-out;
    -o-transition: margin 0.2s ease-in-out;
    transition: margin 0.2s ease-in-out;
}

.block-goto-button:hover > svg {
    margin-right: 15px;
}

/* Block teaser */

.block-teaser {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 30px;
}

.block-teaser-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.333333%;
    color: var(--wlac-primary-color);
    padding-top: 27px;
}

@media (max-width: 767px) {
    .block-teaser-item {
        width: 100%;
    }
}

.block-teaser-item > svg {
    height: 55px;
}

.block-teaser-item-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 6px;
    padding-bottom: 15px;
}

.block-teaser-item-text {
    padding-bottom: 5px;
}

/* WLAC field group */

.wlac-field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 12px;
}

.wlac-field-group-label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
}

.wlac-field-group-value {
    color: var(--wlac-primary-color);
    font-weight: bold;
}

/* Block data */

.block-data {
    background-color: var(--wlac-gray);
    padding-top: 50px;
    padding-bottom: 50px;
}

.block-data-main,
.block-data-equipment {
    width: 50%;
}

@media (max-width: 767px) {

    .block-data-main,
    .block-data-equipment {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .block-data-equipment {
        max-width: 500px;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .block-data-equipment {
        padding-top: 30px;
    }
}

.block-data-equipment-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 17px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 17px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.block-data-equipment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    color: inherit;
    padding: 5px 13px;
    border-radius: 6px;
}

.block-data-equipment-item:last-child {
    margin-bottom: 30px;
}

.block-data-equipment-item.goto-langexpose {
    margin-top: 15px;
    cursor: pointer;
}

.block-data-equipment-item > svg {
    height: 14px;
    color: var(--wlac-primary-color);
    margin-right: 8px;
}

/* Block description */

.block-description {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 992px) {
    .block-description {
        padding-left: 10%;
        padding-right: 10%;
    }
}

.block-description h3 {
    color: var(--wlac-primary-color);
    font-weight: 400;
    padding-top: 30px;
    padding-bottom: 10px;
}

.block-description h2 + h3 {
    padding-top: 0;
}

/* Block costs */

.block-costs {
    background-color: var(--wlac-gray);
    padding-top: 50px;
    padding-bottom: 50px;
}

.block-costs-content {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Block energy */

.block-energy {
    max-width: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.block-energy-energybar {
    padding-top: 37px;
}

.block-energy-energybar-gradient {
    height: 10px;
    background: -o-linear-gradient(left,
    rgba(52, 141, 40, 1) 0%,
    rgba(219, 196, 40, 1) 50%,
    rgba(169, 27, 31, 1) 100%);
    background: -webkit-gradient(linear,
    left top, right top,
    from(rgba(52, 141, 40, 1)),
    color-stop(50%, rgba(219, 196, 40, 1)),
    to(rgba(169, 27, 31, 1)));
    background: linear-gradient(to right,
    rgba(52, 141, 40, 1) 0%,
    rgba(219, 196, 40, 1) 50%,
    rgba(169, 27, 31, 1) 100%);
    position: relative;
    top: 0;
    left: 0;
}

.block-energy-energybar-pointer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 27px;
    height: 23px;
    background: #4c4c4c;
    color: #ffffff;
    padding: 1px 0;
    position: absolute;
    top: -33px;
}

.block-energy-energybar-pointer::after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    border-top-color: transparent;
    border-top-width: medium;
    border-right-color: transparent;
    border-right-width: medium;
    border-bottom-color: transparent;
    border-bottom-width: medium;
    border-left-color: transparent;
    border-left-width: medium;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(1, 48, 100, 0);
    border-top-color: rgba(1, 48, 100, 0);
    border-top-color: #4c4c4c;
    border-width: 5px;
    margin-left: -5px;
}

.block-energy-energybar-scale {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-energy-energybar-scale .energybar-scale-space {
    width: 4.5%;
}

.block-energy-energybar-scale .energybar-scale-number {
    height: 25px;
    width: 12%;
    font-size: 0.75em;
    color: #939393;
    text-align: center;
}

/* Block location */

.block-location {
    padding-top: 50px;
}

@media (min-width: 992px) {
    .block-location {
        padding-left: 10%;
        padding-right: 10%;
    }
}

.block-location-content {
    padding-bottom: 50px;
}

/* Block 3d */

.block-3d {
    padding-top: 100px;
    padding-bottom: 20px;
}

.block-embed-content {
    width: 100%;
    padding-bottom: 57%;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.block-embed-content > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Block map */

.block-map-content {
    width: 100%;
    height: 400px;
}

.block-map-content .marker {
    width: 150px;
    height: 150px;
    background-color: var(--wlac-primary-faded-color);
    border: 2px solid var(--wlac-primary-color);
    border-radius: 50%;
}

/* Block gallery */

.block-gallery {
    padding-top: 80px;
}

.block-gallery-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
    padding-bottom: 50px;
}

@media (max-width: 1199px) {
    .block-gallery-grid {
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .block-gallery-grid {
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .block-gallery-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.block-gallery-grid-item {
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding-bottom: 70%;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.block-gallery-grid-item > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.block-gallery-grid-item > img:hover {
    -webkit-filter: brightness(1.15);
    filter: brightness(1.15);
}

/* Block documents */

.block-documents {
    padding-top: 30px;
}

.block-documents-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
    padding-bottom: 50px;
}

@media (max-width: 1199px) {
    .block-documents-grid {
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .block-documents-grid {
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .block-documents-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.block-documents-grid-item {
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding-bottom: 70%;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.block-documents-grid-item > a {
    width: 100%;
    height: 100%;
    background-color: var(--wlac-primary-faded-color);
    color: var(--wlac-primary-color);
    font-size: 18px;
    padding: 15px;
    border: 2px solid var(--wlac-primary-color);
    text-transform: uppercase;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.block-documents-grid-item > a:hover {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
    text-decoration: none;
}


/* Block broker */

.block-broker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 15px;
}

.block-broker > div {
    background-color: var(--wlac-gray);
}

.block-broker-line {
    width: 100%;
    height: 3px;
}

.block-broker-foto {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    padding: 26px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

@media (max-width: 699px) {
    .block-broker-foto.hide-small-screens {
        display: none;
    }
}

@media (min-width: 700px) {
    .block-broker-foto.hide-big-screens {
        display: none;
    }
}

.block-broker-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 365px;
    height: 300px;
    padding: 26px 26px 26px 0;
}

@media (max-width: 699px) {
    .block-broker-text {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: unset;
        padding: 30px 15px;
    }
}

.block-broker-text-title {
    color: var(--wlac-primary-color);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.block-broker-text-subtitle {
    margin-bottom: 5px;
}

.block-broker-text-name {
    color: var(--wlac-primary-color);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: auto;
}

.block-broker-text-comment {
    margin-bottom: 22px;
}

.wlac-broker-foto {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%;
}

/* Block contactform */

.block-contactform {
    padding-top: 50px;
    padding-bottom: 50px;
}

.block-contactform-form-content {
    max-width: 580px;
    padding-top: 8px;
    margin-left: auto;
    margin-right: auto;
}

.block-contactform-form-content input,
.block-contactform-form-content select {
    width: 100%;
    height: 49px;
    font-size: 16px !important;
    padding: 6px 14px !important;
    border: 1px solid #cccccc !important;
    border-radius: 0 !important;
    margin-bottom: 17px;
    overflow: hidden;
}

.block-contactform-form-content select {
    background-position-y: 12px;
}

.block-contactform-form-content-place {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wlac-checkbox-group {
    min-height: 60px;
    padding-bottom: 17px;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wlac-checkbox-group:not(.wlac-checkbox-group-readonly) {
    min-height: 60px;
}

.wlac-checkbox-group-readonly.checked {
    -webkit-animation: wlacFadeIn 1s;
    animation: wlacFadeIn 1s;
}

.wlac-checkbox-group-readonly:not(.checked) {
    display: none;
}

.wlac-checkbox-group-readonly-text {
    width: calc(100% - 30px);
    position: relative;
    top: 0;
    left: 30px;
}

.wlac-checkbox-group-readonly-check {
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 2;
}

.wlac-checkbox-group > input {
    display: none;
}

@-webkit-keyframes wlacFadeIn {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes wlacFadeIn {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

.wlac-checkbox-group > input {
    position: absolute;
    top: 15px;
    left: 12px;
    z-index: 0;
}

.wlac-checkbox-group > label {
    width: 100%;
    cursor: pointer;
}

.wlac-checkbox-group > label::before {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid #cccccc !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.wlac-checkbox-group > label > div {
    width: calc(100% - 55px);
    position: relative;
    top: -5px;
    left: 55px;
}

.wlac-checkbox-group a {
    color: var(--wlac-primary-color);
}

.wlac-checkbox-group > label > svg {
    display: none;
    width: 27px;
    height: 27px;
    color: var(--wlac-primary-color);
    cursor: pointer;
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 2;
}

.wlac-checkbox-group > input:checked + label > svg {
    display: block;
}

.wlac-searchorder-propertyowner-separator {
    color: var(--wlac-primary-color);
    border-top: 1px solid var(--wlac-primary-color);
    padding-top: 14px;
    margin-bottom: 39px;
}

.block-contactform-form-content-right > button {
    margin-top: 30px;
}

.pflicht-align-end {
    text-align: end;
    font-size: 14px;
}

.block-contactform-form-trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 15px;
}

.block-contactform-form-trust > svg {
    width: 20px;
    height: 20px;
}

.block-contactform-form-trust-text {
    padding-left: 10px;
}

/*===================================================================
  >> Modal
================================================================== */

/* Basic modal styles */

.wlac-modal {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.wlac-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wlac-modal__overlay_pt {
    padding-top: 150px;
}

.micromodal-slide.acceptance-check-open > .wlac-modal__overlay {
    background-color: var(--wlac-gray);
}

.wlac-modal__container {
    background-color: #ffffff;
    padding: 30px;
    max-width: 650px;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
}

.micromodal-slide.acceptance-check-open .wlac-modal__container {
    border-radius: 0;
}

.wlac-modal__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wlac-modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--wlac-primary-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wlac-modal__close {
    background: transparent;
    border: 0;
}

.wlac-modal__header .wlac-modal__close:before {
    content: "\2715";
}

.wlac-modal__content {
    margin-top: 25px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.8);
}

.wlac-modal__content_intro {
    margin-bottom: 30px;
}

.wlac-modal .modal-legal-check-content-left a {
    text-decoration: underline;
    font-weight: 600;
}

/* Modal Timum */

.modal-timum .wlac-modal__container {
    max-width: unset;
}

.modal-timum .wlac-modal__content {
    height: 60vh;
    width: 1000px;
    max-width: 100%;
}

.modal-timum .wlac-modal__content > iframe {
    width: 100%;
    height: 100%;
}

/* Animation Style */

@-webkit-keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

@keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open,
.micromodal-slide.acceptance-check-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .wlac-modal__overlay {
    -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .wlac-modal__container {
    -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .wlac-modal__overlay {
    -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .wlac-modal__container {
    -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .wlac-modal__container,
.micromodal-slide .wlac-modal__overlay {
    will-change: transform;
}

/* Expose in preparation */

#modal-expose-in-preparation .modal-expose-in-preparation-content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#modal-expose-in-preparation.is-open .modal-expose-in-preparation-content-wrap > svg {
    display: block;
    width: 40px;
    height: 40px;
    color: var(--wlac-primary-color);
    -webkit-animation: rotating 1.5s linear infinite;
    animation: rotating 1.5s linear infinite;
}

/* Modal legal check */

.wlac-modal-legal-check,
.wlac-modal-legal-check p {
    font-size: 15px;
}

.wlac-modal-legal-check .wlac-modal__container {
    max-width: 1220px;
    max-height: calc(100% - 15vh);
    margin-top: 15vh;
}

#modal-legal-check .wlac-modal__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

#modal-legal-check-title {
    margin-bottom: 22px;
}

.modal-commission-title-to,
.modal-commission-title-name {
    margin-right: 10px;
}

.modal-commission-title-email::before {
    content: '<';
}

.modal-commission-title-email::after {
    content: '>';
}

#modal-legal-check .wlac-modal__content {
    margin-top: 10px;
}

@media (min-width: 992px) {
    #modal-legal-check .wlac-modal__content {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 400px 50px 1fr;
        grid-template-columns: 400px 1fr;
        grid-gap: 50px;
    }
}

.modal-legal-check-content-iframe {
    width: 100%;
    padding-bottom: 57%;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.modal-legal-check-content-iframe iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.modal-legal-check-header-title {
    width: 100%;
    color: var(--wlac-primary-color);
    font-size: 27px;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    padding-bottom: 14px;
}

.modal-legal-check-content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--wlac-primary-color);
    font-size: 21px;
    font-weight: normal;
    padding-bottom: 15px;
}

.modal-legal-check-content-title:not(:first-child) {
    padding-top: 28px;
}

.modal-legal-check-content-title > span {
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--wlac-primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.modal-legal-check-content-frame-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--wlac-primary-color);
    padding: 0 0 20px 0;
}

.modal-legal-check-content-frame-header:first-child {
    padding-bottom: 10px;
}

.modal-legal-check-content-frame-header > svg {
    width: 21px;
    margin-right: 10px;
}

.modal-legal-check-content-frame {
    background-color: #F3F7F9;
    padding: 21px;
}

@media (max-width: 767px) {
    .modal-legal-check-content-frame {
        padding: 15px;
    }
}

.modal-legal-check-content hr {
    border: none;
    border-top: 1px solid var(--wlac-font-color);
}

.modal-legal-check-content-frame-scrollable {
    max-height: 15vh;
    overflow-y: scroll;
    padding-bottom: 20px;
}

#modal-legal-check .wlac-checkbox-group {
    padding-bottom: 0;
    margin-top: 14px;
}

.modal-legal-check-signature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 10px;
}

.modal-legal-check-signature > div,
.modal-legal-check-signature > input {
    height: 26px !important;
    padding: 0 !important;
}

.modal-legal-check-signature > input {
    min-width: 0;
    max-width: 300px;
    min-height: unset !important;
    font-size: inherit !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 2px solid var(--wlac-font-color) !important;
    margin-left: 5px;
}

#modal-legal-check-text-success {
    color: var(--wlac-primary-color);
    font-weight: 500;
    padding: 15px 0;
}

.modal-legal-check-disclaimer {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (max-width: 560px) {
    .modal-legal-check-disclaimer {
        margin-bottom: 30px;
    }
}

/* PDF exposé */

#modal-pdf-expose .modal-pdf-expose-content-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

#modal-pdf-expose.is-open .modal-pdf-expose-content-wrap > svg {
    display: block;
    width: 40px;
    height: 40px;
    color: var(--wlac-primary-color);
    -webkit-animation: rotating 1.5s linear infinite;
    animation: rotating 1.5s linear infinite;
}

#modal-pdf-expose .wlac-modal__container {
    width: 100%;
    max-width: 991px;
}

#modal-pdf-expose-content {
    width: 100%;
    margin-top: 0;
}

#embed-pdf-expose {
    width: 100%;
    height: 1160px;
}

#modal-pdf-expose:not(.expose-loaded) #embed-pdf-expose {
    display: none;
}

#modal-pdf-expose.expose-loaded .wlac-modal__header,
#modal-pdf-expose.expose-loaded .modal-pdf-expose-content-wrap {
    display: none;
}

#modal-pdf-expose.expose-loaded .wlac-modal__container {
    margin-top: 340px;
}

/*===================================================================
  >> Search order
================================================================== */

.block-searchorder {
    padding-top: 30px;
}

.block-searchorder-wrapper-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    padding-bottom: 38px;
}

.block-searchorder-wrapper-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    padding-bottom: 38px;
}

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

.block-searchorder-wrapper-full {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    padding-bottom: 38px;
}

.block-searchorder-wrapper-section-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    padding-bottom: 38px;
}

.block-searchorder-wrapper-inner-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    padding-bottom: 38px;
}

.block-searchorder-wrapper-inner-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 0fr 15px 1fr;
    grid-template-columns: 1fr 0fr 1fr;
    grid-gap: 15px;
    padding-bottom: 38px;
}

@media (max-width: 991px) {

    .block-searchorder-wrapper-3,
    .block-searchorder-wrapper-4 {
        -ms-grid-columns: 1fr 30px 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .block-searchorder-wrapper-inner-2,
    .block-searchorder-wrapper-inner-3 {
        padding-bottom: 0;
    }

    .block-searchorder-wrapper-full,
    .block-searchorder-wrapper-section-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .block-searchorder-wrapper-inner-2 {
        -ms-grid-columns: 1fr 30px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
    }
}

@media (max-width: 767px) {

    .block-searchorder-wrapper-inner-2,
    .block-searchorder-wrapper-inner-3,
    .block-searchorder-wrapper-3,
    .block-searchorder-wrapper-4 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .block-searchorder-wrapper-sliders {
        width: 86%;
        margin-left: 7%;
    }
}

/* Multiselect */

.multiselect__tags {
    width: 100% !important;
    min-height: 47px !important;
    font-size: inherit !important;
    border: 1px solid var(--wlac-primary-color) !important;
    border-radius: 3px;
}

.multiselect__tags.multiselect-no-padding-top {
    padding-top: 0 !important;
}

.multiselect__tag {
    background-color: var(--wlac-primary-color) !important;
    font-size: 16px !important;
    margin-bottom: 2px !important;
    padding: 5px 26px 6px 10px !important;
}

.multiselect__tag-icon {
    color: #ffffff !important;
    width: 22px;
    font-size: inherit;
    border: 2px solid var(--wlac-primary-color);
}

.multiselect__tags.multiselect-no-padding-top {
    padding-top: 0;
}

.multiselect__tag {
    background-color: var(--wlac-primary-color);
    font-size: 16px;
    margin-bottom: 2px;
    padding: 5px 26px 6px 10px;
}

.multiselect__tag-icon {
    color: #ffffff;
}

.multiselect__tag-icon:focus,
.multiselect__tag-icon:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.multiselect__tag-icon::after {
    color: rgba(255, 255, 255, 0.4);
}

.multiselect__option--highlight {
    background-color: var(--wlac-primary-color) !important;
}

.multiselect__option--highlight::after {
    background: none !important;
}

.multiselect__option--selected.multiselect__option--highlight::after {
    background: none !important;
}

.block-searchorder-moreoptions {
    border-color: var(--wlac-primary-color) !important;
    padding: 10px 43px 10px 8px !important;

}

.multiselect__placeholder,
.multiselect__single {
    color: var(--wlac-font-color) !important;
    margin-bottom: 9px !important;
}

.multiselect__select {
    top: 6px;
}

.multiselect__input,
.multiselect__single {
    margin-top: 4px !important;
}

.multiselect__spinner {
    top: 4px;
}

.multiselect__spinner::after,
.multiselect__spinner::before {
    width: 19px;
    height: 19px;
    border-color: var(--wlac-primary-color) transparent transparent;
}

/* Slider group */

.block-searchorder-slidergroup {
    padding-bottom: 20px;
}

.block-searchorder-slidergroup-label {
    color: var(--wlac-primary-color);
    font-size: 20px;
    padding-bottom: 10px;
}

.block-searchorder-slidergroup-value {
    color: var(--wlac-primary-color);
    font-size: 20px;
    padding-bottom: 7px;
}

.vue-slider {
    padding: 0;
}

/* Range slider component style */

.vue-slider-disabled .vue-slider-rail {
    background-color: #ccc;
}

.vue-slider-disabled .vue-slider-dot-handle {
    background-color: #666;
}

.vue-slider-disabled .vue-slider-process {
    background-color: #666;
}

.vue-slider-disabled .vue-slider-mark-step {
    background-color: #666;
}

.vue-slider-disabled .vue-slider-mark-step-active {
    background-color: #ccc;
}

/* Range slider rail style */

.vue-slider-rail {
    height: 16px !important;
    background-color: #e4e4e4;
}

.vue-slider-rail::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #e4e4e4;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -8px;
    z-index: -1;
}

.vue-slider-rail::after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #e4e4e4;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -8px;
    z-index: -1;
}

/* Range slider process style */

.vue-slider-process {
    background-color: var(--wlac-primary-color);
    z-index: 0 !important;
}

/* Range slider mark style */

.vue-slider-mark {
    z-index: 4;
}

.vue-slider-mark-step {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #6200ee;
}

.vue-slider-mark-step-active {
    background-color: #bda1f3;
}

.vue-slider-mark-label {
    font-size: 14px;
    white-space: nowrap;
}

/* Range slider dot style */

.vue-slider-dot {
    z-index: 0 !important;
}

.vue-slider-dot-handle {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--wlac-primary-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.vue-slider-dot-handle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300%;
    height: 300%;
    background-color: var(--wlac-primary-color);
    opacity: 0.35;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.vue-slider-dot-handle-focus::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.vue-slider-dot-handle-disabled {
    cursor: not-allowed;
    background-color: #666 !important;
}

/* Range slider dot tooltip */

.vue-slider-dot-tooltip-inner {
    font-size: 14px;
    white-space: nowrap;
    padding: 2px 5px;
    min-width: 20px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    border-color: #000000;
    background-color: #000000;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.vue-slider-dot-tooltip-inner::after {
    content: "";
    position: absolute;
}

.vue-slider-dot-tooltip-inner-top::after {
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-top-color: inherit;
}

.vue-slider-dot-tooltip-inner-bottom::after {
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-bottom-color: inherit;
}

.vue-slider-dot-tooltip-inner-left::after {
    left: 100%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-left-color: inherit;
}

.vue-slider-dot-tooltip-inner-right::after {
    right: 100%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-right-color: inherit;
}

.vue-slider-dot-tooltip-wrapper {
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.vue-slider-dot-tooltip-wrapper-show {
    opacity: 1;
}

/* Contact form */

.block-searchorder .block-contactform-form-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
    max-width: unset;
    padding-top: 8px;
}

@media (max-width: 767px) {
    .block-searchorder .block-contactform-form-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.block-searchorder .block-contactform-form-content-right input {
    display: none;
}

/* Search order Contact */

.block-searchorder-contact {
    padding-top: 15px;
}

.block-searchorder-contact-intro {
    color: var(--wlac-primary-color);
    font-size: 18px;
    margin-bottom: 25px;
    padding-top: 10px;
}

/* 2 Columns into 1 on top of the other in mobile view*/
@media (max-width: 767px) {
    .searchorder-responsive {
        display: block;
    }
}

/* Validation error list */

.block-searchorder-validation-errors {
    padding-top: 15px;
}

.block-searchorder-validation-errors > .block-searchorder-validation-errors-intro,
.block-searchorder-validation-errors li {
    font-family: inherit;
    color: #eb3b5a;
}

.block-searchorder-validation-errors > .block-searchorder-validation-errors-intro {
    padding-bottom: 22px;
}

/*===================================================================
  >> Radar
================================================================== */

#radar-top-block-grid {
    display: -ms-grid;
    display: grid;
    /* grid-template-columns: 3.4fr 0.1fr 1.5fr; */
    grid-gap: 10px;
    -ms-grid-columns: 3.4fr 10px 0.1fr 10px 1.5fr;
    grid-template-columns: 3.4fr 0.1fr 1.5fr;
    padding-bottom: 0;
}

.radar-filters-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    height: 90%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.radar-filters-section {
    display: -ms-grid;
    display: grid;
    grid-gap: 10px;
}

.radar-filters-section-row-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 4fr 10px 1fr;
    grid-template-columns: 4fr 1fr;
    grid-gap: 10px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.radar-filters-section-row-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.arrow-style {
    position: relative;
    display: -ms-grid;
    display: grid;
    height: 100%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.arrow-style select {
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.arrow-style select::-ms-expand {
    display: none;
}

.arrow-style::after {
    content: '';
    position: absolute;
    right: 7px;
    top: 17px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #16758d;
    pointer-events: none;
}

#radar-umkreis-input,
.radar-filters-section-row-1 select,
.radar-filters-section-row-2 select {
    border: 1px solid #25788d94;
    border-radius: 5px;
    height: 97%;
    padding: 7px;
    color: #282828;
    font-size: 15px;
    width: 100%;
}

#radar-umkreis-input::-webkit-input-placeholder {
    color: #282828;
}

#radar-umkreis-input::-moz-placeholder {
    color: #282828;
}

#radar-umkreis-input:-ms-input-placeholder {
    color: #282828;
}

#radar-umkreis-input::-ms-input-placeholder {
    color: #282828;
}

#radar-umkreis-input::placeholder {
    color: #282828;
}

#radar-umkreis-input:focus,
.radar-filters-section-row-1 select:focus,
.radar-filters-section-row-2 select:focus {
    outline: none !important;
    border: 1px solid #16758d !important;
}

.radar-vue-sliders {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

.hideColumn {
    display: none;
}

.showColumn {
    display: block;
}

.spreadFilterSection {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    padding-bottom: 20px;
}

.shrinkFilterSection {
    -ms-grid-columns: 3.4fr 0.1fr 1.5fr;
    grid-template-columns: 3.4fr 0.1fr 1.5fr;
    padding-bottom: 0;
}

.showIcon {
    display: -ms-grid;
    display: grid;
}

.showKaufSlider {
    display: block;
}

.showMieteSlider {
    display: block;
}

.radar-vue-sliders label,
.radar-some-vue-sliders label {
    margin-bottom: 0;
    font-size: 12px;
    /* color: #16758d; */
    color: #1a758dbd;
    padding-top: 8px;
}

.radar-vue-sliders .vue-slider,
.radar-some-vue-sliders .vue-slider {
    padding: 4px 0 !important;
    margin: 0 8px;
}

.radar-icon-grid {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #16758d;
    font-size: 2rem;
}

.radar-icon-grid i {
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.radar-ergebnis-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    background: #eee;
}

.radar-ergebnis-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.radar-ergebnis-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.radar-ergebnis-grid > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.radar-ergebnis-grid > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
}

.radar-ergebnis-box {
    display: -ms-grid;
    display: grid;
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    padding: 25px;
}

.radar-ergebnis-item {
    color: #16758d;
}

.radar-ergebnis-item .radar-ergebnis-style {
    font-size: 1.5rem;
    font-weight: bold;
}

.radar-analyse-btn {
    display: -ms-grid;
    display: grid;
    height: 97%;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.radar-analyse-btn button {
    background: #16758d;
    color: #fff;
    font-weight: bold;
    border: 1px solid #16758d;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.radar-analyse-btn:hover,
.radar-icon-grid i:hover {
    -webkit-filter: brightness(1.2);
    filter: brightness(1.2);
}

/* SPINER STYLE STARTS HERE */
.fulfilling-bouncing-circle-spinner,
.fulfilling-bouncing-circle-spinner * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.fulfilling-bouncing-circle-spinner {
    height: 20px;
    width: 20px;
    position: relative;
    -webkit-animation: fulfilling-bouncing-circle-spinner-animation infinite 4000ms ease;
    animation: fulfilling-bouncing-circle-spinner-animation infinite 4000ms ease;
}

.fulfilling-bouncing-circle-spinner .orbit {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: calc(10px * 0.03) solid #fff;
    -webkit-animation: fulfilling-bouncing-circle-spinner-orbit-animation infinite 4000ms ease;
    animation: fulfilling-bouncing-circle-spinner-orbit-animation infinite 4000ms ease;
}

.fulfilling-bouncing-circle-spinner .circle {
    height: 20px;
    width: 20px;
    color: #fff;
    display: block;
    border-radius: 50%;
    position: relative;
    border: calc(20px * 0.1) solid #fff;
    -webkit-animation: fulfilling-bouncing-circle-spinner-circle-animation infinite 4000ms ease;
    animation: fulfilling-bouncing-circle-spinner-circle-animation infinite 4000ms ease;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
}

@-webkit-keyframes fulfilling-bouncing-circle-spinner-animation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fulfilling-bouncing-circle-spinner-animation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes fulfilling-bouncing-circle-spinner-orbit-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    62.5% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    75% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    87.5% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fulfilling-bouncing-circle-spinner-orbit-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    62.5% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    75% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    87.5% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes fulfilling-bouncing-circle-spinner-circle-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        border-color: transparent;
        border-top-color: inherit;
    }

    16.7% {
        border-color: transparent;
        border-top-color: initial;
        border-right-color: initial;
    }

    33.4% {
        border-color: transparent;
        border-top-color: inherit;
        border-right-color: inherit;
        border-bottom-color: inherit;
    }

    50% {
        border-color: inherit;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    62.5% {
        border-color: inherit;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    75% {
        border-color: inherit;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    87.5% {
        border-color: inherit;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        border-color: transparent;
        border-top-color: inherit;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fulfilling-bouncing-circle-spinner-circle-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        border-color: transparent;
        border-top-color: inherit;
    }

    16.7% {
        border-color: transparent;
        border-top-color: initial;
        border-right-color: initial;
    }

    33.4% {
        border-color: transparent;
        border-top-color: inherit;
        border-right-color: inherit;
        border-bottom-color: inherit;
    }

    50% {
        border-color: inherit;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    62.5% {
        border-color: inherit;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    75% {
        border-color: inherit;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    87.5% {
        border-color: inherit;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        border-color: transparent;
        border-top-color: inherit;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* SPINNER STYLE ENDS HERE */

.hideSpinner {
    display: none;
}

.showSpinner {
    display: block;
    padding-left: 10px;
}

.radar-grid-map {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    height: 700px;
}

.radar-grid-map-and-results-block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3.5fr 1.45fr;
    grid-template-columns: 3.5fr 1.45fr;
    height: 700px;
}

.radar-results {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 60px 30px 11fr;
    grid-template-rows: 60px 30px 11fr;
}

.radar-results-title-wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.radar-results-title {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    border-bottom: 1px solid #16758d;
    width: 100%;
    height: 78%;
    color: #16758d;
    font-weight: bold;
}

.radar-result-filters-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.7fr 0.6fr 0.9fr 1.1fr;
    grid-template-columns: 1fr 0.7fr 0.6fr 0.9fr 1.1fr;
    font-size: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.radar-result-filters-sort {
    font-weight: bold;
    color: darkslategrey;
}

.radar-result-filters-style {
    font-weight: bold;
    color: darkslategrey;
    cursor: pointer;
}

.radar-result-filters-style:hover {
    color: #16758d;
}

/* width */
#customized-scrollbar-block::-webkit-scrollbar {
    width: 20px;
}

/* Track */
#customized-scrollbar-block::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px grey;
    box-shadow: inset 0 0 5px grey;
    border-radius: 5px;
}

/* Handle */
#customized-scrollbar-block::-webkit-scrollbar-thumb {
    background: #16758d;
    border-radius: 5px;
}

/* Handle on hover */
#customized-scrollbar-block::-webkit-scrollbar-thumb:hover {
    background: #3688a1;
}

.radar-result-block {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: row;
    grid-gap: 10px;
    overflow: auto;
    max-height: 608px;
}

.radar-angebote-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.7fr 1.1fr 1.4fr;
    grid-template-columns: 0.7fr 1.1fr 1.4fr;
    height: 70px;
    background: #eee;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.radar-angebote-box:hover {
    -webkit-box-shadow: 0 0 0 1px rgba(43, 45, 80, .1), 0 2px 5px 0 rgba(43, 45, 80, .1), 0 3px 9px 0 rgba(43, 45, 80, .08), 0 1px 1.5px 0 rgba(0, 0, 0, .08), 0 1px 2px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 0 1px rgba(43, 45, 80, .1), 0 2px 5px 0 rgba(43, 45, 80, .1), 0 3px 9px 0 rgba(43, 45, 80, .08), 0 1px 1.5px 0 rgba(0, 0, 0, .08), 0 1px 2px 0 rgba(0, 0, 0, .08);
}

.radar-angebote-box:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.radar-angebote-icon {
    width: 50px;
    height: 50px;
    display: -ms-grid;
    display: grid;
    border: 3px solid #16758d;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    border-radius: 50%;
    background: #fff;
}

.radar-angebote-icon i {
    color: #16758d;
    font-size: 18px;
}

.radar-angebote-main {
    color: #16758d;
    font-size: 1rem;
    font-weight: bold;
}

.radar-angebote-sub {
    font-size: 0.8rem;
}

.radar-angebote-pagination {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    background: #000;
    color: #fff;
}

.graphics-main-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;

    grid-gap: 1px;
    margin-bottom: 50px;
}

.graphic-item-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 300px;
    grid-template-rows: 300px;
}

.graphic-item-title h2 {
    text-transform: none;
    font-weight: bold;
    padding: 0;
    font-size: 14px;
}

.graphic-item-title span {
    font-weight: bold;
    font-size: 11px;
    color: #000;
}

.graphic-item-title,
.radar-graph {
    background: #eee;
}

/* Highcharts */
.highcharts-background {
    fill: #eee;
}

.highcharts-title tspan {
    fill: #16758d;
}

.highcharts-subtitle tspan {
    font-weight: bold;
}

.highcharts-credits,
.highcharts-legend-item {
    display: none;
}


/* Modal Radar */
.wlac-modal-radar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.wlac-modal-radar__overlay {
    position: relative;
    top: -1300px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 64px;
}

.radar-expose-overlay-main-grid {
    -webkit-box-shadow: 0 7px 14px 0 rgba(65, 69, 88, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 7px 14px 0 rgba(65, 69, 88, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
    border-radius: 10px;
    width: 90%;
    margin: auto;
    background: #fff;
    visibility: visible;
}

.radar-expose-preis {
    text-align: center;
    background: #eee;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.radar-expose-preis h2 {
    padding: 0;
    font-size: 35px;
    margin-bottom: 0;
}

.radar-expose-preis span {
    font-size: 22px;
    font-weight: normal;
}

.radar-expose-preis p {
    margin-bottom: 0;
    font-size: 19px;
    color: #16758d;
}

.radar-expose-main-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.radar-expose-main-info-item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.radar-expose-main-info-item i {
    font-size: 50px;
    color: #16758d;
}

.radar-expose-main-info-item h4 {
    margin: 15px 0;
    color: #16758d;
    font-weight: normal;
    font-size: 16px;
}

.radar-expose-main-info-item p {
    margin-bottom: 0;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    height: 100%;
}

.radar-expose-history {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.radar-expose-history h3,
.radar-expose-description h3,
.radar-expose-furnishing h3,
.radar-expose-energy h3 {
    color: #16758d;
    font-size: 19px;
    cursor: pointer;
}

.expose-history-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.expose-history-item h4 {
    color: #16758d;
    font-weight: normal;
}

.expose-history-item p {
    font-weight: bold;
}

.radar-expose-description {
    padding: 25px 30px;
}

.radar-expose-description-info {
    display: block;
}

.radar-expose-description h5 {
    font-size: 16px;
    font-weight: normal;
    color: #16758d;
}

.radar-expose-furnishing {
    background: #eee;
    padding: 25px 30px;
}

.ausstattung-boxes-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    padding-top: 20px;
}

.ausstattung-box {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 8px;
}

.ausstattung-box i {
    color: #16758d;
}

.radar-expose-energy {
    padding: 30px;
}

.energie-topic {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
    margin-bottom: 7px;
}

.energie-result {
    color: #16758d;
}

.radar-energybar {
    padding-top: 37px;
    width: 50%;
}

/*====================================================
============== SCHICK IMMOBILIEN =====================
====================================================*/

.wlack-main-schick {
    font-family: 'Roboto Condensed', sans-serif;
}

.wlac-wrap-schick {
    display: block;
    max-width: 100% !important;
    width: 100%;
    max-width: 1220px;
}

.splide--fade > .splide__track > .splide__list > .splide__slide,
.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
    max-height: 690px !important;
}

.intrigued-fix-title {
    background: var(--wlac-secondary-color);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    padding: 5px 60px;
    font-size: 30px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    z-index: 900;
    position: fixed;
    left: -100px;
    opacity: .9;
    top: 270px;
}

.intrigued-links {
    visibility: hidden;
    display: -ms-grid;
    display: grid;
    position: fixed;
    width: 280px;
    height: 244px;
    top: 176px;
    z-index: 900;
    left: 49.2px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 5px 0 17px 0.2px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 0 17px 0.2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.intrigued-links a {
    color: var(--wlac-primary-color);
    text-decoration: none;
    padding-left: 15px;
    cursor: pointer;
    font-size: 22px;
}

.intrigued-fix-title:hover ~ .intrigued-links {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.intrigued-links:hover {
    opacity: 1;
    visibility: visible;
}

.block-top-info {
    display: -ms-grid;
    display: grid;
    /*
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    */
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.block-top-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.weitere-dok-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 265px;
    background-color: var(--wlac-secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 300;
    padding: 7px 0;
    -webkit-box-shadow: 0px 0 17px 0.2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0 17px 0.2px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.weitere-dok-button:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

.block-top-info-wrapper {
    border-bottom: 1px solid #d8d5d5;
    max-width: 100%;
    padding-bottom: 20px;
}

.block-top-info .top-info-item,
.block-top-3 .top-info-item {
    font-size: 20px;
}

.block-top-info .top-info-item svg,
.block-top-3 .top-info-item svg {
    height: 20px;
    color: var(--wlac-secondary-color);
    padding-right: 5px;
}

.block-top-info .top-info-item i,
.block-top-3 .top-info-item i {
    color: var(--wlac-secondary-color);
}

.block-top-info .top-info-item span,
.block-top-3 .top-info-item span {
    padding-left: 5px;
}

.key-fact-title {
    padding-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr 2fr;
    grid-template-columns: 2fr 1fr 2fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    max-width: 1220px;
    margin: auto;
}

.key-fact-title hr {
    width: 100%;
    border-top: 1px solid #d8d5d5;
}

.key-fact-title h2 {
    font-weight: 100;
    text-transform: initial;
    font-size: 35px;
    padding: 0;
}

#keyfacts-main-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    max-width: 1220px;
    margin: auto;
}

#keyfacts-main-grid .keyfacts-img-block {
    display: -ms-grid;
    display: grid;
    padding-top: 22px;
}

#keyfacts-main-grid .keyfacts-img-block img {
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#keyfacts-main-grid .keyfacts-img-block img:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

#keyfacts-main-grid .keyfacts-img-block a,
#keyfacts-main-grid .keyfacts-img-block .wlac-button {
    width: 100% !important;
    background-color: #fff !important;
    color: inherit !important;
    font-weight: 400 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    border: 1px solid var(--wlac-secondary-color) !important;
    margin-top: 10px !important;
    text-align: center !important;
    border-radius: 3px !important;
    padding: 10px !important;
    font-size: 20px !important;
    text-decoration: none !important;
    -webkit-transition: all .2s ease-in-out !important;
    -o-transition: all .2s ease-in-out !important;
    transition: all .2s ease-in-out !important;
    text-transform: capitalize !important;
}

#keyfacts-main-grid .keyfacts-img-block a:hover,
#keyfacts-main-grid .keyfacts-img-block .wlac-button:hover {
    background: #eee !important;
}

.keyfacts-data-grid {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.kf-data-row {
    border-bottom: 1px solid #d8d5d5;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px;
    font-size: 20px;
}

.kf-data-row:first-child {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.kf-preis {
    font-weight: bold;
}

.schick-highlight-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    max-width: 1220px;
    margin: 70px auto 0;
    font-size: 22px;
}

.schick-highlight-grid .highlight-item i {
    color: #1ea69a;
    padding-right: 10px;
}

.object-description-title {
    padding-top: 60px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1220px;
    margin: auto;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
}

.object-description-title hr,
.gallery-headline hr,
.contactform-headline hr,
.schick-team-title hr {
    width: 100%;
    border-top: 1px solid #d8d5d5;
}

.object-description-title h2,
.gallery-headline h2,
.contactform-headline h2,
.schick-team-title h2 {
    font-weight: 100;
    text-transform: initial;
    font-size: 35px;
    padding: 0 30px;
}

.object-description-title h2,
.contactform-headline h2,
.schick-team-title h2 {
    padding: 0;
}

.gallery-headline {
    padding-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1220px;
    margin: auto;
}

#expose-gallery,
.block-map,
#expose-contact {
    max-width: 1220px;
    margin: auto;
}

.schick-expose-map {
    min-height: 600px;
}

#expose-weitere-docs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-top: 50px;
    max-width: 1220px;
    margin: auto;
}

.contactform-headline {
    padding-top: 60px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1220px;
    margin: auto;
    -ms-grid-columns: 1fr 3fr 1fr;
    grid-template-columns: 1fr 3fr 1fr;
    justify-items: center;
}

#schick-text-col {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    text-align: justify;
    word-break: keep-all;
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
    padding: 40px 0 20px;
    font-size: 20px;
    max-width: 1220px;
    margin: auto;
}

#schick-text-one-col {
    width: 100vw;
}

.schick-team-title {
    padding-top: 60px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1220px;
    margin: auto;
    justify-items: center;
    -ms-grid-columns: 2.5fr 3.1fr 2.5fr;
    grid-template-columns: 2.5fr 3.1fr 2.5fr;
}


/* =====================================
============== Teamslider ==============
======================================== */
.teamslider {
    padding-top: 40px;
    max-width: 1220px;
    margin: 0 auto;
}

.teamslider .splide__slide img {
    display: block;
    width: 100%;
    border-radius: 8px;
    -webkit-transition: -webkit-transform 200ms;
    transition: -webkit-transform 200ms;
    -o-transition: transform 200ms;
    transition: transform 200ms;
    transition: transform 200ms, -webkit-transform 200ms;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

/* Active Slide */
.teamslider .splide__slide.is-active img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* Arrow Tweaks for Accessibility */
.teamslider .splide .splide__arrow svg {
    width: 24px;
    height: 24px;
}

.teamslider .splide__track ul li h2 {
    padding-bottom: 0;
    margin-bottom: 0;
    color: var(--wlac-secondary-color)
}

.teamslider .splide__track ul li {
    font-size: 18px;
}

.teamslider .splide__track ul li p {
    margin-bottom: 10px;
    font-size: 18px;
}

.teamslider .splide__track ul li .team-a-wrap a {
    text-decoration: none;
    color: #51534a;
    font-size: 18px;
}

.teamslider .splide__track ul li,
.teamslider .splide__track ul li h2,
.teamslider .splide__track ul li p {
    text-align: center;
}

/* =====================================
== RESPOSIVE DESIGN SCHICK IMMOBILIEN ==
======================================== */

/* Large devices (desktops, less than 1100px) */
@media (max-width: 1099.98px) {
    .object-description-title {
        -ms-grid-columns: 0.7fr 1fr 0.7fr;
        grid-template-columns: 0.7fr 1fr 0.7fr;
    }

    .contactform-headline {
        -ms-grid-columns: 0.8fr 3fr 0.8fr;
        grid-template-columns: 0.8fr 3fr 0.8fr;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    #keyfacts-main-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    #keyfacts-main-grid .keyfacts-img-block img {
        display: none;
    }

    .schick-highlight-grid {
        padding: 0 20px;
    }

    .contactform-headline {
        -ms-grid-columns: 0.3fr 3fr 0.3fr;
        grid-template-columns: 0.3fr 3fr 0.3fr;
    }

    .schick-team-title {
        -ms-grid-columns: 1.9fr 3.1fr 1.9fr;
        grid-template-columns: 1.9fr 3.1fr 1.9fr;
    }

    .key-fact-title {
        -ms-grid-columns: 1.5fr 1fr 1.5fr;
        grid-template-columns: 1.5fr 1fr 1.5fr;
    }

    #expose-weitere-docs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #expose-weitere-docs .weitere-dok-button {
        margin-bottom: 20px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    .object-description-title,
    .gallery-headline,
    .contactform-headline,
    .schick-team-title,
    .key-fact-title {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .object-description-title hr,
    .gallery-headline hr,
    .contactform-headline hr,
    .schick-team-title hr,
    .key-fact-title hr {
        display: none;
    }

    .object-description-title h2,
    .gallery-headline h2,
    .contactform-headline h2,
    .schick-team-title h2 {
        text-align: center;
        width: 100%;
    }

    #expose-weitere-docs,
    #expose-contact,
    .schick-highlight-grid,
    #schick-text-col,
    #expose-gallery,
    .block-map {
        border-bottom: 1px solid #eee;
    }

    .schick-highlight-grid,
    .block-map {
        padding-bottom: 40px;
    }

    #expose-weitere-docs {
        padding-bottom: 20px;
    }

    #schick-text-col {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}