.hall-plan {
    position: relative;
}

.hall-plan .loading {
    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: wait;
    justify-content: center;
    display: flex;
}


.hall-plan .loading .loading-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
}

.hall-plan .loading img {
    height: 250px;
    width: auto;
}

/*.hall-plan .loading .loading-content .loader {*/
/*    border: 13px solid #f291007a;*/
/*    border-top: 13px solid var(--color_main);*/
/*    border-right: 13px solid var(--color_main);*/
/*    border-bottom: 13px solid var(--color_main);*/
/*    border-radius: 50%;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    animation: spin 2s linear infinite;*/
/*}*/

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

.hall-plan .loading .loading-content span {
    display: block;
    margin-top: .5rem;
    color: var(--color_main);
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.hall-plan #hall-plan-toolbar {
    position: relative;
    top: -2rem;
}

.hall-plan #hall-plan-toolbar button {
    background: transparent;
    border-radius: 100%;
    cursor: zoom-in;
    padding-left: .5rem;
}

.hall-plan #hall-plan-toolbar button#zoom-out {
    cursor: zoom-out;
}

.hall-plan #hall-plan-toolbar button:after {
    content: "\e912";
    font-size: 2em;
    font-family: 'Icons';
    color: var(--color_main);
}

.hall-plan #hall-plan-toolbar button#zoom-out:after {
    content: "\e911";
}

.hall-plan #hall-plan-svg {
    height: 80vh;
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    border: 1px solid var(--color_main);
}

@media (max-width: 767px) {
    .hall-plan #hall-plan-svg {
        height: 70vh;
    }
}

@media (max-width: 575px) {
    .hall-plan #hall-plan-svg {
        height: 55vh;
    }
}

.hall-plan #hall-plan-svg svg {
    overflow: hidden;
    width: 100%;
    height: 100%;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hall-plan #hall-plan-svg svg:active {
    cursor: all-scroll;
}

.hall-plan #hall-plan-svg svg g.stand:hover polygon,
.hall-plan #hall-plan-svg svg g.stand:hover path,
.hall-plan #hall-plan-svg svg g.stand:hover rect {
    stroke: var(--color_main) !important;
    fill: rgb(242 145 0 / 50%) !important;
}

.hall-plan #hall-plan-svg svg g.stand:hover polygon,
.hall-plan #hall-plan-svg svg g.stand:hover rect,
.hall-plan #hall-plan-svg svg g.stand:hover text,
.hall-plan #hall-plan-svg svg g.stand:hover image {
    cursor: pointer;
}

.hall-plan #hall-plan-svg svg g.stand:hover text {
    fill: var(--color_white) !important;
}

/*OVERLAY*/
.hall-plan-overlay {
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.hall-plan-overlay #overlay-bg {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}

.hall-plan-overlay .overlay-wrapper {
    position: fixed;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    left: 50%;
    background: var(--color_white);
    box-shadow: 0px 0px 25px #222;
    width: 90%;
    max-width: 400px;
    padding-top: .5rem;
    padding-bottom: 1rem;
    max-height: 80vh;
    overflow-y: auto;
}

.hall-plan-overlay .exhibitor-categories,
.hall-plan-overlay .company-logo,
.hall-plan-overlay .contact-data {
    padding: .5rem 0;
}

.hall-plan-overlay .button-row {
    margin-top: 1rem;
}

.hall-plan-overlay .header {
    font-size: 1.5rem;
    color: var(--color_main);
}


.hall-plan-overlay .overlay-header .close:after {
    font-family: Icons;
    font-size: 20px;
    content: "\e902";
    position: absolute;
    color: var(--color_main);
    border: 1px solid var(--color_main);
    padding: .5rem;
    border-radius: 20px;
    cursor: pointer;
    top: .5rem;
    right: 1rem;
}


.hall-plan-overlay .company-logo img {
    max-height: 80px;
}

.hall-plan-overlay .exhibitor-categories img {
    height: 40px;
    width: 40px;
}

.hall-plan-overlay .stand-data p,
.hall-plan-overlay .contact-data p {
    color: var(--color_grey-dark);
}

.hall-plan-overlay .social-media {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.hall-plan-overlay .social-media img {
    width: 25px;
    height: auto;
    display: block;
    padding-bottom: .5rem;
}

.hall-plan-overlay hr {
    padding-bottom: .5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--color_grey-middle);
}

