* {
	box-sizing: border-box;
	outline: none;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	min-width: 320px;
	overflow-x: hidden;
}

.floor-maps {
	position: relative;
	height: 100vh;
	min-height: 500px;
	overflow: hidden;
}

.map-interractive {
	cursor: pointer;
}

.tippy-box {
	background-color: #fff;
	color: var(--dark);
	box-shadow: 0 0 15px 0 rgba(50, 50, 50, 0.1);
	font-size: 12px;
}

.tippy-arrow {
	color: #fff;
}

.tabs {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
}

.tabs li {
	cursor: pointer;
	transition: all .3s ease;
}

.tab-pane {
	visibility: hidden;
	height: 0;
	overflow-y: hidden;
	transition: opacity 0.7s ease;
	opacity: 0;
}

.tab-pane.current {
	visibility: visible;
	height: auto;
	overflow-y: visible;
	opacity: 1;
    min-height: 80vh;
}

.map-controls {
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
	z-index: 50;
	display: inline-flex;
	flex-direction: column;
}

.map-controls__caption {
	margin-bottom: 4px;
	font-size: 14px;
	width: 100%;
	text-align: center;
}

.tabs-floor {
	margin: 0;
	padding: 0;
	flex-direction: column;
	list-style-type: none;
}

.map-zooming {
	display: inline-flex;
	flex-direction: column;
	margin-bottom: 21px;
}

.tab-link, .zoom-item {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 40px;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid #ccc;
	background-color: #fff;
	cursor: pointer;
}

.tab-link:not(:last-child), .zoom-item:not(:last-child) {
	border-bottom: none;
}

.tab-link.current {
	background-color: rgb(168, 240, 222);
}

.interractive-hover {
	/*stroke: #CDCDCD;*/
	stroke: transparent;
	transition: all .3s ease;
}

.interractive-hover:hover, .interractive-hover.active {
    stroke: #892565;
}

.floor-data {
    display: inline-block;
}

.floor-data img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

[data-tippy-content] {
	cursor: pointer;
}

[data-tippy-root] {
	text-align: center;
	color: #334;
}

.tippy-content {
	padding: 16px 12px!important;
}

.tippy-content b {
	font-size: 14px;
}

.btn-shop-detail {
	display: block;
	width: 100%;
	margin-top: 8px;
	padding: 6px 16px;
	border: 1px solid teal;
	text-align: center;
	color: teal;
	transition: all .3s ease;
	font-weight: 700;
	text-decoration-color: transparent;
}

[data-tippy-root] a:hover {
	text-decoration-color: currentColor;
}

.map-search {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	z-index: 21;
    margin-bottom: 21px;
	background-color: #fff;
}

.search-input {
	display: block;
	height: 32px;
	padding: 7px 21px;
	flex-grow: 1;
	border: 1px solid #ccc;
}

.btn-search {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	padding: 4px 21px;
	cursor: pointer;
	margin-left: -1px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.btn-search svg {
	width: 21px;
	height: 21px;
}

@media (max-width: 575px) {
	.map-controls {
		right: 20px;
		top: 42%;
	}
}
ul.tabs-floor li {
    margin: 0;
}

ul.tabs-floor li::before {
    content: none;
}

.shop-detail {
    display: flex;
    align-items: center;
    position: absolute;
    top: 31px;
    left: 0;
    right: 0;
    padding: 15px 0 15px 15px;
    background-color: #fff;
    border: 1px solid #bbb;
    z-index: 20;
}

.shop-detail__floor {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 1;
    border: 1px solid #333;
    text-align: center;
}

.shop-detail__floor .val {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    font-family: ElliotBold, sans-serif;
}

.shop-detail__logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    max-width: 100%;
    padding: 0 30px;
}

.shop-detail__logo img {
    max-width: 100%;
}

.shop-detail__title {
    font-size: 24px;
    font-weight: 700;
    font-family: ElliotBold, sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

.shop-detail__description {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(0,0,0,0.7);
}

.shop-detail__link {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 100%;
    margin-left: auto;
    border-left: 1px solid #ccc;
    color: #7f8486;
}

.shop-detail__link svg {
    width: 21px;
    height: 21px;
}

@media (max-width: 991px) {
    .shop-detail__logo {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .shop-detail__floor {
        display: none;
    }

    .shop-detail__logo {
        width: 120px;
        margin-right: 20px;
        padding: 0;
    }
}

@media (max-width: 575px) {
    .shop-detail__title {
        font-size: 18px;
    }
}

@media (max-width: 374px) {
    .shop-detail__logo {
        width: 80px;
    }
}

.map-search {
    position: relative;
    top: unset;
    left: unset;
}

.shop-detail {
    position: relative;
    top: unset;
    width: calc(100% - 70px);
}

.shop-detail__information {
    max-width: calc(100% - 80px);
}

.btn-shop-detail {
    width: 320px;
    max-width: 100%;
    color: #892565;
    border-color: #892565;
}

.search-input {
    height: 70px;
    padding-left: 40px;
    padding-right: 40px;
}

.btn-search {
    height: 70px;
    width: 220px;
    min-width: 220px;
    background-color: #892565!important;
    color: #fff;
    border: none;
}

.btn-search::after {
    content: 'Найти магазин';
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-search svg {
    margin-right: 8px;
}

.btn-search svg path {
    fill: #fff;
}

.btn-search:hover svg path {
    fill: #fff;
}

.map-controls {
    right: 0;
}

.map-controls__caption {
    pointer-events: none;
}

ul.tabs-floor li.tab-link, .zoom-item {
    font-size: 20px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #9b9b9b;
    text-decoration: none;
}

ul.tabs-floor li.tab-link:hover, .zoom-item:hover {
    color: #892565;
}

ul.tabs-floor li.tab-link.current {
    background-color: #892565;
    color: #fff;
    border: none;
    margin-right: -1px;
    margin-left: -1px;
}

.ui-widget.ui-widget-content {
    max-height: 280px;
    overflow-y: auto;
}

.ui-menu .ui-menu-item {
    height: 70px;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    color: #9b9b9b;
    cursor: pointer;
    overflow: hidden;
}

.ui-menu .ui-menu-item:last-child {
    border: none;
}

.ui-menu .ui-menu-item-wrapper {
    display: flex;
    align-items: center;
    height: 70px;
    margin: 0;
    padding: 10px 40px;
    border: none!important;
    color: #9b9b9b;
    font-family: ElliotBold;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: ElliotBold;
    background-color: #fff!important;
    transition: color .3s ease;
}

.ui-menu .ui-menu-item-wrapper:hover {
    color: #892565;
}

.ui-menu .ui-menu-item::before {
    content: none;
}

@media (max-width: 767px) {
    .btn-search {
        width: 70px;
        min-width: 70px;
    }
    .btn-search::after {
        content: none;
    }

    .btn-search svg {
        margin: 0;
    }

    .shop-detail {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .shop-detail__logo {
        display: none;
    }
}

.tab-pane {
    position: relative;
    background-color: #fff;
}

.floor-maps {
    height: auto;
}

@media (max-width: 767px) {
    .floor-maps {
        margin-right: 40px;
        overflow: visible;
    }

    .map-controls {
        right: -50px;
    }

    ul.tabs-floor li.tab-link, .zoom-item {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .tab-pane {
        overflow: hidden!important;
    }

    .tab-pane.current {
        min-height: 70vh;
    }
}
.floor-data .street {
    left: -20%;
    top: -10%;
}