/* body {
    margin: 0px;
    overflow: hidden;
    background: #000;
    
	font-family: Arial;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	color: #fff;
} */

:root {
    --mainColor: #1c2849;
    --secondColor: #a9c208;
    --mainTextColor: #1c2849;
    --secondaryTextColor: #1d70b7;
    --activeTextColor: #fff;
    --inactiveColor: #a9c208;

    --hotspotTextColor: #fff;
    --hotspotTextSize: 15px;
    --hotspotTextWeight: 400
}

@media screen and (max-width: 1280px) {
    :root {
        --hotspotTextSize: 12px;
    }
}

#v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /* background:radial-gradient(ellipse at top, #444,#000); */
    background: linear-gradient(0deg, #fff 75%, #c8d7e6);
    /* background: #1f1f1f; */

    /* padding: 100px; */
}

.container_bg {
    background: linear-gradient(0deg, #fff 75%, #c8d7e6) !important;
}

#v3d-container>canvas {
    opacity: 0;
    transition: opacity 1s linear;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('../media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('../media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.debug_controls {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 99;
    display: none;
}

.debug_controls *, .colorHolder * {
    color: #fff !important;
    cursor: pointer;
    pointer-events: all;
}

.colorHolder {
    /* position: absolute;
    top: 5vh;
    left: 15px;
    z-index: 99;
    z-index: 99; */
}

.breadcrumb {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
    color: var(--mainTextColor);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    pointer-events: all;
}

.breadcrumb a {
    color: var(--secondaryTextColor);
}

#btnSkip {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    color: var(--mainTextColor);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    pointer-events: all;
    cursor: pointer;
}

/*-------------------------------------------*\
    Text
\*-------------------------------------------*/

.dd_webgl_floorplan_wrapper h2 {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 0;
    letter-spacing: 2px;
    font-weight: 500;
}

/*-------------------------------------------*\
    Icons
\*-------------------------------------------*/

.dd_webgl_floorplan_wrapper i::before {
    color: #fff;
    font-size: 26px;
} 

/*-------------------------------------------*\
    Input / Radio
\*-------------------------------------------*/

.pretty .state label:before {
    border-color: var(--inactiveColor) !important;
    background-color: var(--inactiveColor);
}

.pretty.p-default input:checked~.state label:after {
    background-color: var(--mainColor) !important;
}

/*-------------------------------------------*\
    Interface
\*-------------------------------------------*/

.dd_webgl_floorplan_wrapper {
    position: relative;
    width: 100% !important;
    /* height: 100%; */
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    left: 0;
    top: 0;
    max-width: 100% !important;
    z-index: 10;
    /* overflow: hidden; */

    font-family: 'Armavir01';
    color: var(--mainTextColor);
}

.dd_webgl_floorplan_wrapper * {
    font-family: 'Armavir01';
    color: var(--mainTextColor);
}

.dd_webgl_floorplan_wrapper a {
    text-decoration: none;
}

.interface_mobile_menue {
    display: none;
}

.interface_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 1fr 22%;
    pointer-events: none;

    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
}

.interface_wrapper *,
.interface_wrapper *:before,
.interface_wrapper *:after {
    box-sizing: border-box;
}

.interface_wrapper ul,
.interface_wrapper li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interface_menue {
    background-color: rgba(255, 255, 255, 1);
    padding: 30px 20px 20px 20px;
    pointer-events: auto;
    height: 100%;
    z-index: 1;

    display: grid;
    /* grid-template-rows: repeat(2, 1fr); */
    place-items: center;
    text-align: center;
}

.interface_menue .logo {
    background-image: url('../media/travemuende_logo.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 30px 0;
    height: 65px;
}

.hideContainer {
    display: none;
}

.invisContainer {
    /* position: absolute !important; */
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    max-height: 0;
}

.showContainer {
    display: inherit;
}

/*-------------------------------------------*\
    Interface - Map
\*-------------------------------------------*/

.interface_map {
    position: absolute;
    bottom: 2%;
    left: 2%;
    width: 10vw;
    cursor: pointer;
    pointer-events: all;
}

.interface_menue_map {
    width: 100%;
    margin: 15px 0;
}

.interface_map img, .interface_menue_map svg {
    width: 100%;
    height: auto;
    border: 1px solid var(--mainColor);
}

.interface_map div {
    background-color: var(--mainColor);
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    margin-top: 5px;
    padding: 3px 0;
    float: left;
    text-align: center;
    font-size: var(--hotspotTextSize);
    display: flex;
    align-items: center;
    justify-content: center;
}

.interface_map div i::before {
    color: #fff;
}

svg .hotspots {
    cursor: pointer;
}

svg .hotspots * {
    fill:#DADADA !important;
    stroke:#9B8266 !important;
}

svg .hotspots.active * {
    fill:#23525A !important;
    stroke:#9B8266 !important;
}

/*-------------------------------------------*\
    Interface - Text
\*-------------------------------------------*/

.interface_text {
    padding: 10px 45px;
}

.interface_text p {
    padding: 0 0 10px 0;
    margin: 0;
}

.interface_text h2, .interface_table_wrapper h2 {
    font-size: 34px;
    display: flex;
    place-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
}

.interface_text h2 i::before, .interface_table_wrapper h2 i::before {
    font-size: 40px;
    color: var(--mainTextColor);
}

#btnActiveFilter {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: var(--secondaryTextColor);
    color: #fff;
    display: inline-block;
}

#btnActiveFilter:hover {
    background-color: var(--mainColor);
}

#btnActiveFilter span {
    display: grid;
    grid-template-columns: auto 1fr;
    color: #fff;
    place-items: center;
    column-gap: 5px;
}


.interface_table_wrapper h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.interface_table_wrapper h2 i::before {
    font-size: 22px;
}

/*-------------------------------------------*\
    Interface - Filter
\*-------------------------------------------*/

.interface_filter {
    background-color: rgba(28, 40, 73, 0.9);
    color: #fff;
    padding: 5px 5px;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 10%;
    pointer-events: none;
    /* display: grid;
    grid-template-columns: 1fr auto;
    transform: translateX(0); */
    z-index: 0;
    opacity: 0;
}

.interface_filter.visible {
    opacity: 1;
    pointer-events: all;
}

.interface_filter.foreground {
    z-index: 2;
}

.interface_filter_content {
    /* display: none; */
    display: grid;
    grid-template-rows: repeat(1fr);
    

}

.interface_filter_content>div {
    /* display: none; */
    display: grid;
    grid-template-columns: 0.5fr minmax(0, 1fr);
    row-gap: 0px;
    column-gap: 5px;

}

.interface_filter .dd-icon-icon-close {
    float: right;
    cursor: pointer;
}

.interface_filter_content div.interface_filter_title {
    /* display: grid;
    grid-template-rows: 1fr 1fr; */

    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 18px;
    color: var(--secondaryTextColor);
    text-transform: uppercase;
}

.interface_filter_content div.interface_filter_title span {
    color: #fff;
    font-weight: normal;
    text-transform: none;
}

.interface_filter_content div.interface_filter_title.first {
    display: flex;
    background:none;
    place-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.interface_filter_content div.interface_filter_title.first span {
    font-size: 25px;
}

.interface_filter_content div.interface_filter_options {
    background-color: #fff;
    color: var(--mainTextColor);
    padding: 15px 28px;
    font-size: 16px;
    font-weight: normal;
}

.interface_filter_content div.interface_filter_options * {
    font-size: 16px;
    font-weight: normal;
}

.interface_filter_content div.interface_filter_options h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 3px !important;
}

.interface_filter_content div.interface_filter_options h2 i::before {
    font-size: 38px;
}

.interface_filter_content div.interface_filter_options i::before {
    color: var(--mainTextColor);
}

.interface_filter_content div.interface_filter_options.first {
    background-color: #e8edee;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.interface_filter_content div.interface_filter_options.first i {
    margin-left: auto;
    cursor: pointer;
}

.interface_filter_options #btnPrevBF, .interface_filter_options #btnNextBF {
    cursor: pointer;
}

.interface_filter_content .sliderWrapper {
    display: grid;
    /* grid-template-rows: repeat(1,100%);  */
    grid-template-columns: repeat(1, auto 1fr auto);
    align-items: center;
    margin: 0 10px;
    row-gap: 10px;
}

.sliderWrapper>div {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
    width: 97%;
}

.sliderWrapper span {
    grid-row-start: 2;
    grid-row-end: 3;
    text-transform: none;
}

.interface_filter .spacer {
    width: 100%;
    height: 2px;
    margin: 10px 0 9px 0;
    padding: 0 25px;
    background-color: #c4bdb3;
}

.interface_table_wrapper {
    /* height: 70%; */
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    /* display: none; */
}

.interface_viewport {
    position: relative;
}

.interface_controls {
    position: absolute;
    right: 0;
    bottom: 3%;
    height: auto;
    padding: 5px 10px 5px 15px;
    background-color: rgba(243, 240, 238, 0.9);
    border-radius: 15px 0 0 15px;
}

.interface_controls ul {
    display: grid;
    align-items: center;
    place-items: center;
    column-gap: 10px;
}

.btn {
    width: 35px;
    height: 35px;
    z-index: 1;
    position: relative;
    cursor: pointer;
    grid-row: 1;
    pointer-events: all;
}

.btn a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

/* #btnFilter {
    position: absolute;
    top: -35px;
    left: 15px;
    background-color: #d1ccc4;
    border-radius: 7px 7px 0 0;
    width: auto;
} */

#btnFilter::before,
#btnFilter2::before {
    width: 40px;
}

/* #btnFilter span, #btnFilter2 span {
    margin: 5px 15px 0 40px;
    float: left;
}
 */
.interface_filter.filtered {
    padding: 25px 32px;
}

/* .interface_filter ::selection {
    color: none;
    background: none;
} */


.interface_filter.filtered ul {
    display: grid;
}

.btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #5a5853;
    margin: 0;
    padding: 0;
    line-height: 0;
    mask-size: 90%;
    mask-position: center !important;
    -webkit-mask-size: 90%;
    -webkit-mask-position: center !important;
}

.btn:hover::before {
    background-color: #8e7f6e;
}

#btnCompass::before {
    -webkit-mask: url(../media/icon_kompass.svg) no-repeat;
    mask: url(../media/icon_kompass.svg) no-repeat;
    mask-size: 70%;
    -webkit-mask-size: 70%;
}

#btnVisibility::before {
    -webkit-mask: url(../media/icon_auge.svg) no-repeat;
    mask: url(../media/icon_auge.svg) no-repeat;
}

#btnInfo::before {
    -webkit-mask: url(../media/icon_info.svg) no-repeat;
    mask: url(../media/icon_info.svg) no-repeat;
    mask-size: 70%;
    -webkit-mask-size: 70%;
}

#btnFullscreen::before {
    -webkit-mask: url(../media/icon_fullscreen.svg) no-repeat;
    mask: url(../media/icon_fullscreen.svg) no-repeat;
    mask-size: 70%;
    -webkit-mask-size: 70%;
}

#btnFilter::before {
    -webkit-mask: url(../media/icon_filter.svg) no-repeat;
    mask: url(../media/icon_filter.svg) no-repeat;
    mask-size: 70%;
    -webkit-mask-size: 70%;
}

#btnEnterAR::before {
    -webkit-mask: url(../media/icon_fullscreen.svg) no-repeat;
    mask: url(../media/icon_fullscreen.svg) no-repeat;
    mask-size: 70%;
    -webkit-mask-size: 70%;
}



/*-------------------------------------------*\
    Tablepress Overrides
\*-------------------------------------------*/

.dataTables_scrollBody {
    height: 100vh;
    opacity: 1;
    overflow: hidden;
}

.tablepress td.column-1, .tablepress th.column-1, .tablepress td.column-3, .tablepress th.column-3 {
    display: none;
    width: 0 !important;
    padding: 0 !important;
}

.tablepress {
    color: var(--mainTextColor);
    font-size: 12px;
}

.tablepress td,
.tablepress th {
    word-break: normal;
    white-space: nowrap;
    padding: 8px 2px;
}

.tablepress .sorting, .tablepress .sorting_asc, .tablepress .sorting_desc {
    padding-right: 0;
}

.tablepress thead th,
.tablepress tfoot th {
    background-color: #dbd7d1;
    background: none;
    /* width: auto !important; */
}

.tablepress thead .sorting_asc,
.tablepress thead .sorting_desc,
.tablepress thead .sorting:hover {
    background-color: #8e7f6e;
    background: none;
}

.tablepress .row-hover tr td {
    background-color: rgba(209, 204, 196, 0.4);
    background: none;
    border: 0;
    cursor: pointer;
}

.tablepress .row-hover tr.reserviert td {
    background-color: #cccccc !important;
}

.tablepress .row-hover tr.verkauft td {
    background-color: #d2acab !important;
}

.tablepress td.column-2, .tablepress th.column-2 {
    max-width: 70px;
}

.tablepress td.column-8, .tablepress th.column-8 {
    width: 15px !important;
}

.tablepress th.column-8:after {
    content: '';
}

.tablepress td.column-8 a {
    text-decoration: none;
    font-size: 28px;
    pointer-events: none;
    /* opacity: 0; */
}

.tablepress td.column-8 i::before {
    color: var(--mainTextColor);
}

.tablepress .row-hover tr.row-active td.column-8 a, .tablepress .row-hover tr:hover td.column-8 a {
    pointer-events: all;
    opacity: 1;
}

.tablepress .row-hover tr.row-active td {
    background-color: var(--secondColor) !important;
    color: #fff;
    font-weight: 600;
}

@media (hover: hover) {
    .tablepress .row-hover tr:hover td {
        background-color: var(--secondColor) !important;
        color: #fff;
        font-weight: 600;
    }
}

.tablepress [class*="row-filtered-"],
.tablepress .row-filtered {
    display: none;
}

/*-------------------------------------------*\
    Checkbox
\*-------------------------------------------*/

.checkboxWrap {
    display: grid;
    grid-template-columns: repeat(2, 0.5fr);
    /* grid-template-columns: repeat(auto-fit, minmax(0.1fr, 0.33fr)); */
    grid-auto-flow: dense;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    padding: 10px 10px;
    white-space: nowrap;
    place-items: center;
}

.checkboxWrap.floors {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.checkboxWrap.rooms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkboxWrap.types {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1fr);
}

.checkboxWrap.states {
    place-items: start;
}


/*-------------------------------------------*\
    Slider
\*-------------------------------------------*/

.noUi-horizontal {
    height: 13px;
}

.noUi-horizontal .noUi-handle {
    border-radius: 2px;
    width: 13px;
    height: 25px;
    background-color: var(--mainColor);
    box-shadow: none;
    border: 2px solid #fff;
    right: -7px;
    top: -7px;
}

.noUi-connect {
    background-color: var(--secondaryTextColor);
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

/* .noUi-target {
    padding: 0 17px;
} */
.noUi-connects {
    /* margin: 0 -17px;
    width: calc(100% + 34px); */
    background-color: var(--inactiveColor);
    border-radius: 0;
}

/*-------------------------------------------*\
    Lightbox
\*-------------------------------------------*/

.interface_lightbox {
    /* width: 100%; */
    height: 100%;
    padding: 100px;
    background-color: rgba(180, 171, 161, 0.8);
    display: none;
    text-align: center;
}

.interface_lightbox_content {
    /* width: 100%; */
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    z-index: 999;

    display: inline-block;
    /* margin: 0 auto; */
}

.interface_lightbox_content div,
.interface_lightbox_content img {
    height: 100%;
}

.interface_lightbox #btnPDF {
    width: auto;
    height: 40px;
    position: absolute;
    top: -15px;
    right: 0px;
    pointer-events: all;
    cursor: pointer;
    background-color: var(--mainColor);
    padding: 5px 40px 5px 10px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    place-items: center;
}

.interface_lightbox #btnPDF a, .interface_lightbox #btnPDF a:hover, .interface_lightbox #btnPDF a:focus {
    color: #fff;
    text-decoration: none;
    display: flex;
    place-items: center;
    background: none;
}

.interface_lightbox #btnPDF:hover {
    background-color: var(--secondaryTextColor);
}

.interface_lightbox #btnClose {
    width: 50px;
    height: 50px;
    background-image: url('../media/close.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: -20px;
    right: -20px;
    pointer-events: all;
    cursor: pointer;
}

/*-------------------------------------------*\
    Preloader
\*-------------------------------------------*/

.v3d-simple-preloader-background {
    background: #21525a;
    background-image: url(../media/intro-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.v3d-simple-preloader-container {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85vw;
    height: 100%;
    margin: 0;
}

.v3d-simple-preloader-bar::before {
    content: '';
    position: absolute;
    width: 85vw;
    height: 5px;
    z-index: -1;
    background: #444;
}

.v3d-simple-preloader-bar {
    position: absolute;
    background: #FFF;
    border: 0;
    height: 5px;
    border-radius: 1px;
    bottom: 50px;
    left: 0;
    width: 100%;
}

.v3d-simple-preloader-logo {
    width: 100%;
    height: 50vh;
    max-height: 630px;
    margin: 0 auto;
    background-image: url('../media/dd_preloader.svg');
    background-size: contain;
    background-position: center;
}

.preload_white .v3d-simple-preloader-background {
    background: #FFF;
}

.preload_white .v3d-simple-preloader-bar::before {
    background: #DDD;
}

.preload_white .v3d-simple-preloader-bar {
    background: #1f1f1f;
}

.preload_white .v3d-simple-preloader-logo {
    filter: invert();
}

/*-------------------------------------------*\
    Annotations
\*-------------------------------------------*/


.v3d-annotation {
    font-family: inherit;
    background-color: var(--secondColor);
    color: var(--hotspotTextColor);
    font-size: var(--hotspotTextSize);
    font-weight: var(--hotspotTextWeight);
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
    border: 1px solid #fff;

    /* text-transform: uppercase; */
    border-radius: 0;
    /* border: 0; */
    padding: 12px 20px;
    height: auto;
    pointer-events: all;
    opacity: 0.95 !important;
    letter-spacing: 1px;
    left: -95px;
    top: -250px;

    display: grid;
    grid-template-rows: repeat(auto);
    -webkit-box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.35); 
    box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.35);
    z-index: 90;
}

.v3d-annotation.active {
    border: 2px solid #fff;
    z-index: 99;
}

.v3d-annotation * {
    color: var(--hotspotTextColor);
}

.v3d-annotation a {
    text-decoration: none;
}

.v3d-annotation:after {
    content: " ";
    position: absolute;
    top: 100%;
    /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -20px;
    margin-top: -1px;
    border-width: 20px;
    border-style: solid;
    border-color: var(--secondColor) transparent transparent transparent;
}

.v3d-annotation .dd-icon-icon-close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.v3d-annotation .dd-icon-icon-close::before {
    font-size: 26px !important;
}

.v3d-annotation.uebersicht:after {
    border-color: var(--secondaryTextColor) transparent transparent transparent;
}

.v3d-annotation.uebersicht-inactive:after {
    border-color: var(--secondaryTextColor) transparent transparent transparent;
}

.v3d-annotation.uebersicht, .v3d-annotation.uebersicht-inactive  {
    background-color: var(--secondaryTextColor);
    color: #fff;
    font-size: var(--hotspotTextSize);
    font-weight: var(--hotspotTextWeight);
    line-height: 130%;
    /* border: 2px solid #eee; */
}

.v3d-annotation.uebersicht *, .v3d-annotation.uebersicht-inactive *  {
    color: #fff;
}

.v3d-annotation.uebersicht {
    background-color: var(--secondaryTextColor);
    color: #fff;
    border: 0;
    cursor: pointer;
    pointer-events: all;
}

.v3d-annotation.uebersicht * {
    color: #fff;
}

/* .v3d-annotation#uebersicht-inactive:after {
    margin-top: 0px;
} */


.v3d-annotation.uebersicht-inactive i:before {
    color: #fff;
}

.v3d-annotation i:before {
    color: var(--hotspotTextColor);
    font-size: 30px !important;
}

.v3d-annotation.uebersicht h4, .v3d-annotation h4 {
    margin: 0 0 10px 0;
    padding: 0;
    display: flex;
    place-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.color, .v3d-annotation.uebersicht-inactive:hover {
    background-color: var(--mainColor) !important;
    color: #fff !important;
    /* border: 0 !important; */
}

.color *, .v3d-annotation.uebersicht-inactive:hover * {
    color: var(--hotspotTextColor) !important;
}

.color i:before, .v3d-annotation.uebersicht-inactive:hover i:before {
    color: var(--hotspotTextColor) !important;
}

.color:after, .v3d-annotation.uebersicht-inactive:hover:after {
    border-color: var(--mainColor) transparent transparent transparent !important;
}

.v3d-annotation .dd-icon-icon-floorplan {
    pointer-events: all;
}

.v3d-annotation.uebersicht h4::after {
    content: '';
}

.v3d-annotation.uebersicht span {
    opacity: 0.5;
    font-size: 10px;
    text-transform: uppercase;
}

.v3d-annotation.uebersicht>div {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 7px;
}

.v3d-annotation.uebersicht>div div:first-child {
    text-align: left;
}

.v3d-annotation.uebersicht>div div:last-child {
    text-align: right;
}

.v3d-annotation-dialog {
    position: absolute;
    top: -29px;
    left: -6px;
    margin-left: 0;
    margin-top: 0;
    user-select: none;
    padding: 5px 10px;
    min-width: 0;
    color: #fff;
    background: rgba(115, 115, 115, 0.8);
    border-radius: 0;
    line-height: 1.2;
    transition: opacity .5s;
    visibility: hidden;
    z-index: 9999;
    white-space: nowrap;
    word-spacing: normal;
}

@media screen and (max-width: 1920px) {
    .interface_wrapper {
        grid-template-columns: 1fr 27%;
    }
    .interface_filter {
        max-width: 38vw;
    }
    .interface_text {
        padding: 10px 25px;
    }
    
}

@media screen and (max-width: 1680px) {
    .checkboxWrap.floors {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        place-items: baseline;
        row-gap: 20px;
    }
    .interface_filter {
        bottom: 5%;
    }
}

@media screen and (max-width: 1280px) {
    .interface_wrapper {
        grid-template-columns: 1fr 27%;
    }
    .interface_text {
        padding: 10px 0;
    }
    .interface_filter {
        max-width: 38vw;
        bottom: 5%;
    }
    .interface_filter_content>div {
        grid-template-columns: 14vw minmax(0, 1fr);
    }
    .interface_filter_content div.interface_filter_title {
        padding: 8px 10px;
    }
    .interface_filter_content div.interface_filter_options {
        padding: 5px 18px;
        font-size: 13px;
    }
    .interface_filter_content div.interface_filter_options * {
        font-size: 13px;
    }
    .interface_filter_content div.interface_filter_options h2 {
        font-size: 24px;
    }
    .interface_filter_content div.interface_filter_title.first span {
        font-size: 18px;
    }
    .interface_map {
        width: 17vw;
    }
    .v3d-annotation {
        top: -30vh;
    }
}

@media screen and (max-width: 1024px) {
    .interface_wrapper {
        grid-template-columns: 1fr 33%;
    }
    .interface_filter {
        max-width: 45vw;
    }
    .interface_filter_content>div {
        grid-template-columns: 18vw minmax(0, 1fr);
    }
}

@media screen and (max-width: 580px) {
    .dd_webgl_floorplan_wrapper {
        height: 75vh;
        height: calc(var(--vh, 1vh) * 75);
    }
    
    .interface_controls {
        display: none;
    }
    .interface_viewport, .interface_menue {
        position: absolute;
        width: 100%;
        height: 100%;
        background: none;
    }
    .interface_menue {
        top: 0;
        padding: 0;
        /* transform: translateY(90%);
        display: none; */
        pointer-events: none;
    }
    .interface_intro, .breadcrumb {
        display: none;
    }
    .interface_mobile_menue {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        background-color: var(--mainColor);
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        column-gap: 1px;
        place-items: center;
        pointer-events: all;
        z-index: 2;        
    }
    .interface_mobile_menue div {
        width: 100%;
        text-align: center;
    }
    .interface_mobile_menue div.active {
        background-color: var(--secondColor);    
    }
    .interface_mobile_menue i::before {
        font-size: 38px;
    }
    .interface_filter {
        opacity: 0;
        width: 100%;
        height: 95%;
        right: 0 !important;
        overflow: auto;
        max-width: 100%;
        top: -10px;
        max-height: 100% !important;
        /* pointer-events: all; */
    }
    .interface_filter_content>div {
        grid-template-columns: 1fr;
    }
    .interface_filter_content div.interface_filter_title {
        padding: 18px 10px;
        border-top:1px solid var(--secondaryTextColor);
        background-color: #fff;
    }
    .interface_filter_content div.interface_filter_title span {
        color: var(--mainTextColor);
    }
    .interface_filter_content div.interface_filter_title.first span {
        color: #fff;
    }
    .interface_filter_content div.interface_filter_options {
        padding: 15px 18px;
    }
    .interface_table_wrapper {
        background-color: rgba(243, 240, 238, 1);
        padding: 15px 10px;
        pointer-events: all;
    }
    .interface_map {
        display: none;
    }
    .v3d-annotation {
        padding: 6px 5px;
        left:-16vw;
        top: -18vh;
        line-height: 115% !important;
    }
    .v3d-annotation * {
        font-size: 10px;
    }
    .v3d-annotation:after {
        border-width: 10px;
        margin-left: -10px;
    }
    h4 {
        font-size: 16px;
        
    }
    .v3d-annotation#uebersicht h4, .v3d-annotation h4 {
        margin: 0;
    }
    .v3d-annotation i:before {
        font-size: 16px !important;
    }
}