/* Minification failed. Returning unminified contents.
(42,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(43,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(44,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(45,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(46,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(47,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(48,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(54,28): run-time error CSS1039: Token not allowed after unary operator: '-ol-background-color'
(55,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(65,20): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(74,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-foreground-color'
(76,15): run-time error CSS1039: Token not allowed after unary operator: '-ol-foreground-color'
(97,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-foreground-color'
(107,15): run-time error CSS1039: Token not allowed after unary operator: '-ol-foreground-color'
(108,30): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(108,74): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(108,118): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(108,163): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(116,15): run-time error CSS1039: Token not allowed after unary operator: '-ol-foreground-color'
(117,30): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(117,74): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(117,118): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(117,163): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(125,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-foreground-color'
(129,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-foreground-color'
(133,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-background-color'
(180,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-background-color'
(215,15): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-foreground-color'
(223,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-background-color'
(254,27): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-foreground-color'
(255,15): run-time error CSS1039: Token not allowed after unary operator: '-ol-foreground-color'
(277,15): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-foreground-color'
(284,15): run-time error CSS1039: Token not allowed after unary operator: '-ol-foreground-color'
(285,29): run-time error CSS1039: Token not allowed after unary operator: '-ol-background-color'
(313,20): run-time error CSS1039: Token not allowed after unary operator: '-ol-partial-background-color'
(363,26): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-foreground-color'
(380,20): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-background-color'
(384,29): run-time error CSS1039: Token not allowed after unary operator: '-ol-subtle-foreground-color'
 */
/* max-height - the only parameter in this file that needs to be edited.
 * Change it to suit your needs. The rest is recommended to leave as is.
 */
.clusterize-scroll {
    max-height: 100%;
    overflow: auto;
}

/**
 * Avoid vertical margins for extra tags
 * Necessary for correct calculations when rows have nonzero vertical margins
 */
.clusterize-extra-row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

    /* By default extra tag .clusterize-keep-parity added to keep parity of rows.
 * Useful when used :nth-child(even/odd)
 */
    .clusterize-extra-row.clusterize-keep-parity {
        display: none;
    }

/* During initialization clusterize adds tabindex to force the browser to keep focus
 * on the scrolling list, see issue #11
 * Outline removes default browser's borders for focused elements.
 */
.clusterize-content {
    outline: 0;
    counter-reset: clusterize-counter;
}

/* Centering message that appears when no data provided
 */
.clusterize-no-data td {
    text-align: center;
}

:root,
:host {
  --ol-background-color: white;
  --ol-accent-background-color: #F5F5F5;
  --ol-subtle-background-color: rgba(128, 128, 128, 0.25);
  --ol-partial-background-color: rgba(255, 255, 255, 0.75);
  --ol-foreground-color: #333333;
  --ol-subtle-foreground-color: #666666;
  --ol-brand-color: #00AAFF;
}

.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 1.5px solid var(--ol-background-color);
  background-color: var(--ol-partial-background-color);
}

.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute;
}

.ol-scale-line {
  background: var(--ol-partial-background-color);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute;
}

.ol-scale-line-inner {
  border: 1px solid var(--ol-subtle-foreground-color);
  border-top: none;
  color: var(--ol-foreground-color);
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width;
  transition: all 0.25s;
}

.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.ol-scale-bar-inner {
  display: flex;
}

.ol-scale-step-marker {
  width: 1px;
  height: 15px;
  background-color: var(--ol-foreground-color);
  float: right;
  z-index: 10;
}

.ol-scale-step-text {
  position: absolute;
  bottom: -5px;
  font-size: 10px;
  z-index: 11;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
}

.ol-scale-text {
  position: absolute;
  font-size: 12px;
  text-align: center;
  bottom: 25px;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
}

.ol-scale-singlebar {
  position: relative;
  height: 10px;
  z-index: 9;
  box-sizing: border-box;
  border: 1px solid var(--ol-foreground-color);
}

.ol-scale-singlebar-even {
  background-color: var(--ol-subtle-foreground-color);
}

.ol-scale-singlebar-odd {
  background-color: var(--ol-background-color);
}

.ol-unsupported {
  display: none;
}

.ol-viewport,
.ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ol-viewport canvas {
  all: unset;
  overflow: hidden;
}

.ol-viewport {
  touch-action: pan-x pan-y;
}

.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.ol-grabbing {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.ol-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.ol-control {
  position: absolute;
  background-color: var(--ol-subtle-background-color);
  border-radius: 4px;
}

.ol-zoom {
  top: .5em;
  left: .5em;
}

.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear;
}

.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}

.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}

.ol-full-screen {
  right: .5em;
  top: .5em;
}

.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: var(--ol-subtle-foreground-color);
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: var(--ol-background-color);
  border: none;
  border-radius: 2px;
}

.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}

.ol-zoom-extent button {
  line-height: 1.4em;
}

.ol-compass {
  display: block;
  font-weight: normal;
  will-change: transform;
}

.ol-touch .ol-control button {
  font-size: 1.5em;
}

.ol-touch .ol-zoom-extent {
  top: 5.5em;
}

.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  outline: 1px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
}

.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}

.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}

.ol-attribution {
  text-align: right;
  bottom: .5em;
  right: .5em;
  max-width: calc(100% - 1.3em);
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
}

.ol-attribution a {
  color: var(--ol-subtle-foreground-color);
  text-decoration: none;
}

.ol-attribution ul {
  margin: 0;
  padding: 1px .5em;
  color: var(--ol-foreground-color);
  text-shadow: 0 0 2px var(--ol-background-color);
  font-size: 12px;
}

.ol-attribution li {
  display: inline;
  list-style: none;
}

.ol-attribution li:not(:last-child):after {
  content: " ";
}

.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}

.ol-attribution button {
  flex-shrink: 0;
}

.ol-attribution.ol-collapsed ul {
  display: none;
}

.ol-attribution:not(.ol-collapsed) {
  background: var(--ol-partial-background-color);
}

.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
}

.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em;
}

.ol-attribution.ol-uncollapsible button {
  display: none;
}

.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px;
}

.ol-zoomslider button {
  position: relative;
  height: 10px;
}

.ol-touch .ol-zoomslider {
  top: 5.5em;
}

.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em;
}

.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0;
}

.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: block;
}

.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid var(--ol-subtle-foreground-color);
  height: 150px;
  width: 150px;
}

.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 0;
  left: 0;
  position: absolute;
}

.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none;
}

.ol-overviewmap:not(.ol-collapsed) {
  background: var(--ol-subtle-background-color);
}

.ol-overviewmap-box {
  border: 1.5px dotted var(--ol-subtle-foreground-color);
}

.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}

.ol-overviewmap .ol-viewport:hover {
  cursor: pointer;
}

@font-face {
  font-family: 'RobotoNewRegular';
  src: url('../fontRobotoNew/roboto-regular.eot');
  src: url('../fontRobotoNew/roboto-regular.eot?#iefix') format('embedded-opentype'), url('../fontRobotoNew/roboto-regular.woff') format('woff'), url('../fontRobotoNew/roboto-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RobotoNewLight';
  src: url('../fontRobotoNew/roboto-light.eot');
  src: url('../fontRobotoNew/roboto-light.eot?#iefix') format('embedded-opentype'), url('../fontRobotoNew/roboto-light.woff') format('woff'), url('../fontRobotoNew/roboto-light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RobotoNewMedium';
  src: url('../fontRobotoNew/roboto-medium.eot');
  src: url('../fontRobotoNew/roboto-medium.eot?#iefix') format('embedded-opentype'), url('../fontRobotoNew/roboto-medium.woff') format('woff'), url('../fontRobotoNew/roboto-medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
html,
body {
  height: 100%;
  line-height: 1.25;
}
body {
  font-family: 'RobotoNewRegular';
}
.map-title-wrap {
  padding: 20px;
}
.map-title {
  font-family: 'RobotoNewMedium';
  font-size: 30px;
  line-height: 1;
  margin-bottom: 0;
}
.smap .cluster div {
  color: #ffffff !important;
  width: 50px;
  border: 5px solid #B5E4FE !important;
  cursor: pointer;
  height: 50px;
  display: flex;
  font-size: 16px !important;
  align-items: center;
  font-weight: 400 !important;
  border-radius: 50% !important;
  justify-content: center;
  background-color: #0094E7 !important;
  box-sizing: content-box;
}
.smap .cluster div img {
  display: none;
  vertical-align: baseline;
}
.smap img[src$="png?a"] {
  z-index: 100;
  animation: pinactive 3s ease infinite;
}
.smap img[src^="/Content/map/i"] {
  cursor: pointer;
}
.smap .compass.compass-north {
  display: none;
}
.smap .zoom {
  top: inherit !important;
  right: -12px !important;
  bottom: 125px !important;
}
.smap .zoom .zoom-menu {
  display: none !important;
}
.smap .zoom .button-group {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.smap .zoom .button-group button,
.smap .zoom .button-group button.minus {
  width: 42px !important;
  height: 42px !important;
  border-radius: 4px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15) !important;
  margin-bottom: 5px !important;
  color: #000 !important;
}
.smap .zoom .button-group button.minus:hover,
.smap .zoom .button-group button:hover {
  color: black !important;
  background: #f8f8f8 !important;
}
@media only screen and (max-width: 852px) {
  .map-column {
    display: none !important;
  }
}
@media only screen and (max-width: 852px) {
  .branch-column {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: none;
  }
}
.ol-zoom {
  bottom: 30px !important;
}
.copyrightcontrol {
  bottom: 0;
  right: 10px;
  padding: 0 3px;
  position: absolute;
  background: #ffffff99;
  border-radius: 5px;
}
#locationButton {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 5px;
  position: absolute;
  bottom: 110px;
  right: 10px;
  z-index: 101;
  border: 0;
  cursor: pointer;
  background: #fff;
}
#closeButton {
  background-color: #fff;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  display: none;
  height: 52px;
  line-height: 52px;
  position: absolute;
  right: 6px;
  text-align: center;
  top: 6px;
  transition: background-color 0.2s linear 0s;
  width: 52px;
  z-index: 510;
}
#closeButton:hover,
#closeButton:focus {
  background-color: #fafafa;
}
#locationButton svg .my-location-icon {
  fill: #000;
}
#locationButton:hover {
  background: #f8f8f8;
}
#locationButton:hover svg .my-location-icon {
  fill: black;
}
#locationButton:active {
  outline: none;
}
#locationButton:active .my-location-icon {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
/* branch list loading more item animation */
#branchProgress {
  display: none;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 4px;
  background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 11px, #fff 10px, #fff 20px);
  background-size: 28px 28px;
}
#branchProgress.loading {
  display: block;
  animation: progressanim 0.2s linear infinite;
}
@keyframes pinactive {
  0% {
    transform: translate3d(0px, 0%, 0px) scale(1, 1);
    transform-origin: bottom;
  }
  5% {
    transform: translate3d(0px, 0%, 0px) scale(0.6, 1.1);
    transform-origin: bottom;
  }
  10% {
    transform: translate3d(0px, 0px, 0px) scale(1.1, 0.7);
    transform-origin: bottom;
  }
  15% {
    transform: translate3d(0px, 0px, 0px) scale(0.7, 1.05);
    transform-origin: bottom;
  }
  20% {
    transform: translate3d(0px, 0px, 0px) scale(1.05, 0.85);
    transform-origin: bottom;
  }
  25% {
    transform: translate3d(0px, 0px, 0px) scale(0.8, 1.03);
    transform-origin: bottom;
  }
  30% {
    transform: translate3d(0px, 0px, 0px) scale(1.01, 0.9);
    transform-origin: bottom;
  }
  35% {
    transform: translate3d(0px, 0px, 0px) scale(0.9, 1.01);
    transform-origin: bottom;
  }
  40% {
    transform: translate3d(0px, 0px, 0px) scale(1.0001, 0.95);
    transform-origin: bottom;
  }
  45% {
    transform: translate3d(0px, 0px, 0px) scale(1.0001, 1.0001);
    transform-origin: bottom;
  }
  100% {
    transform: translate3d(0px, 0px, 0px) scale(1, 1);
    transform-origin: bottom;
  }
}
@keyframes progressanim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 0;
  }
}
/* networks */
#networklist {
  background-color: transparent;
  padding: 1.2rem 66px 0.75rem 1rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 500;
}
@media only screen and (max-width: 1270px) {
  #networklist {
    display: none !important;
  }
}
.UA #networklist {
  display: none !important;
}
.network-label {
  background-color: #fff;
  background-position-x: 7px;
  background-position-y: 10px;
  background-repeat: no-repeat;
  border-radius: 8px;
  margin: 0.5rem 0.4rem;
  min-height: 40px;
  min-width: 125px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 48px;
  position: relative;
  transition: background-color 0.2s linear 0s;
  z-index: 510;
}
.network-label[data-n="ZASCZS"] {
  background-image: url('/Content/map/i/ZSKN.png');
  order: 1;
}
.network-label[data-n="ZASSKS"] {
  background-image: url('/Content/map/i/ZSKN.png');
  order: 1;
}
.network-label[data-n="ZASHUS"] {
  background-image: url('/Content/map/i/ZSKN.png');
  order: 1;
}
.network-label[data-n="ZASROS"] {
  background-image: url('/Content/map/i/ZSKN.png');
  order: 1;
}
.network-label[data-n="ZSKNUA"] {
  background-image: url('/Content/map/i/ZSKNUA.png');
  order: 1;
}
.network-label[data-n="CPBL"] {
  background-image: url('/Content/map/i/CPBL.png?v=2');
  order: 3;
}
.network-label[data-n="4H"] {
  background-image: url('/Content/map/i/4H.png');
  order: 5;
}
.network-label[data-n="CPBO"] {
  background-image: url('/Content/map/i/CPBO.png');
  order: 4;
}
.network-label[data-n="PACZKOMAT"] {
  background-image: url('/Content/map/i/PMAT.png');
  order: 1;
}
.network-label[data-n="PACZKOMAT"] {
  background-image: url('/Content/map/i/PMAT.png');
  order: 1;
}
.network-label[data-n="ZASHUXFP"] {
  background-image: url('/Content/map/i/ZASHUXFP.png');
  order: 1;
}
.network-label[data-n="ZASPLXPACZ"] {
  background-image: url('/Content/map/i/PMAT.png');
  order: 1;
}
.network-label[data-n="PPL-CZPS"] {
  background-image: url('/Content/map/i/PPLCZPS.png');
  order: 2;
}
.network-label[data-n="PPL-DEPS"] {
  background-image: url('/Content/map/i/PPLDEPS.png');
  order: 2;
}
.network-label[data-n="SPSVM"] {
  background-image: url('/Content/map/i/SPSVM.png');
  order: 1;
}
.network-label[data-n="PLPPOCZTEX"] {
  background-image: url('/Content/map/i/PLPPOCZTEX.png');
  order: 1;
}
.network-label[data-n="ZASPLVPOCZ"] {
  background-image: url('/Content/map/i/PLPPOCZTEX.png');
  order: 1;
}
.network-label[data-n="SDB"] {
  background-image: url('/Content/map/i/SDB.png');
  order: 1;
}
.network-label[data-n="ZASROXSD"] {
  background-image: url('/Content/map/i/ZASROXSD.png');
  order: 1;
}
.network-label[data-n="MPVM"] {
  background-image: url('/Content/map/i/MPVM.png');
  order: 1;
}
.network-label[data-n="ZASHUVMP"] {
  background-image: url('/Content/map/i/MPVM.png');
  order: 1;
}
.network-label[data-n="ZASHUXMP"] {
  background-image: url('/Content/map/i/MPVM.png');
  order: 1;
}
.network-label[data-n="MNPB"] {
  background-image: url('/Content/map/i/MNPB.png');
  order: 1;
}
.network-label[data-n="ZASUANP"] {
  background-image: url('/Content/map/i/MNPB.png');
  order: 1;
}
.network-label[data-n="DPVM"] {
  background-image: url('/Content/map/i/DPDPS.png');
  order: 1;
}
.network-label[data-n="DPDEVM"] {
  background-image: url('/Content/map/i/DPDPS.png');
  order: 1;
}
.network-label[data-n="DPHUVM"] {
  background-image: url('/Content/map/i/DPDPS.png');
  order: 1;
}
.network-label[data-n="DPROVM"] {
  background-image: url('/Content/map/i/DPDPS.png');
  order: 1;
}
.network-label[data-n="DPSIVM"] {
  background-image: url('/Content/map/i/DPDPS.png');
  order: 1;
}
.network-label[data-n="SPEAVM"] {
  background-image: url('/Content/map/i/SPEAVM.png');
  order: 1;
}
.network-label[data-n="ZASDES"] {
  background-image: url('/Content/map/i/ZASDES.png');
  order: 1;
}
.network-label[data-n="ZASSIS"] {
  background-image: url('/Content/map/i/ZASSIS.png');
  order: 1;
}
.network-label[data-n="GLSVM"] {
  background-image: url('/Content/map/i/GLSVM.png');
  order: 1;
}
.network-label:hover,
.network-label:focus {
  background-color: #fafafa;
  cursor: pointer;
}
.network-label.disabled {
  color: #c0c0c0 !important;
}
.network-label.selected:after {
  background-color: #7bb505;
  background-image: url('/Content/map/i/ico-network-selected-check.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  border-radius: 100%;
  color: white;
  content: '';
  display: inline-block;
  height: 22px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transform: translateX(40%) translateY(-40%);
  width: 22px;
  z-index: 1999;
}
.network-name {
  display: block;
  font-size: 12px;
  font-family: 'RobotoNewRegular';
  line-height: 1;
}
.network-count {
  font-size: 12px;
  font-style: normal;
}
.network-price {
  color: #7db115;
  display: block;
  font-size: 12px;
  font-family: 'RobotoNewMedium';
}
#networklist > .network-label > input[type="checkbox"] {
  opacity: 0.1;
  width: 30px;
  height: 30px;
}
#networklist > .network-label > input[type="checkbox"]:before {
  content: "fck";
  opacity: 1;
}
/* branch v listu */
#placelist {
  position: relative;
  overflow-y: auto;
}
/* IE */
#placelist.sscrol {
  scrollbar-track-color: #fff;
  scrollbar-darkshadow-color: #fff;
  scrollbar-arrow-color: #fff;
  scrollbar-highlight-color: #cecece;
  scrollbar-shadow-color: #e0e0e0;
  scrollbar-3dlight-color: #fff;
  scrollbar-base-color: #e0e0e0;
  scrollbar-face-color: #e0e0e0;
  scrollbar-width: thin;
}
#placelist.sscrol::-webkit-scrollbar {
  width: 5px;
}
#placelist.sscrol::-webkit-scrollbar-track {
  background-color: #fff;
}
#placelist.sscrol::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
#placelist.sscrol::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}
#placelist.sscrol::-webkit-scrollbar-button {
  height: 5px;
}
_:-ms-lang(x),
#placelist {
  margin-right: 0;
}
/* ie 10 & above ... */
#places {
  padding-left: 20px;
  padding-right: 20px;
}
#places > div {
  border-style: solid;
  border-color: #dfdfdf;
  border-width: 0 0 1px 0;
  color: #555555;
  transition: background-color 0.2s linear 0s;
}
#places > div:last-child {
  border-bottom-width: 0;
}
#places > div:hover {
  background-color: #fafafa;
  cursor: pointer;
}
#places > div.disabled {
  color: #9f9f9f !important;
  background-color: #f8f8f8 !important;
}
#places > div.disabled:hover {
  cursor: default;
}
#places > div.selected:hover {
  cursor: default;
}
#places > div > div:before,
#places > div > div:after {
  content: "";
  display: table;
}
#places > div > div:after {
  clear: both;
}
#places > div .place-item-wrap {
  float: left;
  width: calc(100% - 70px);
}
#places > div .pr-1 {
  float: right;
  padding-right: 0 !important;
  width: 100px;
}
#places > div .place-wrap {
  margin-top: 0 !important;
}
#places > div .place-description,
#places > div .place-details,
#places > div .place-opening-time,
#places > div .place-address {
  font-size: 14px;
  font-family: 'RobotoNewLight';
  line-height: 1.5;
  margin-bottom: 15px;
}
#places > div .place-description strong,
#places > div .place-details strong,
#places > div .place-opening-time strong,
#places > div .place-address strong {
  font-family: 'RobotoNewMedium';
}
#places > div .place-details--CPBL,
#places > div .place-details--CPBO,
#places > div .place-details--PPL-CZPS,
#places > div .place-details--PPL-DEPS,
#places > div .place-details--SDB,
#places > div .place-details--ZASROXSD,
#places > div .place-details--MPVM,
#places > div .place-details--ZASHUVMP,
#places > div .place-details--ZASHUXMP,
#places > div .place-details--4H,
#places > div .place-details--DPVM,
#places > div .place-details--DPDEVM,
#places > div .place-details--DPHUVM,
#places > div .place-details--DPROVM,
#places > div .place-details--DPSIVM,
#places > div .place-details--SPEAVM,
#places > div .place-details--ZASDES,
#places > div .place-details--ZASSIS,
#places > div .place-details--GLSVM {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100% !important;
}
#places > div .place-opening-time {
  margin-bottom: 0;
}
.place-details--CPBL .place-opening-time__days strong,
.place-details--CPBO .place-opening-time__days strong,
.place-details--PPL-CZPS .place-opening-time__days strong,
.place-details--PPL-DEPS .place-opening-time__days strong,
.place-details--4H .place-opening-time__days strong,
.place-details--MPVM .place-opening-time__days strong,
.place-details--ZASHUVMP .place-opening-time__days strong,
.place-details--ZASHUXMP .place-opening-time__days strong,
.place-details--DPVM .place-opening-time__days strong,
.place-details--DPDEVM .place-opening-time__days strong,
.place-details--DPHUVM .place-opening-time__days strong,
.place-details--DPROVM .place-opening-time__days strong,
.place-details--DPSIVM .place-opening-time__days strong,
.place-details--SPEAVM .place-opening-time__days strong,
.place-details--ZASDES .place-opening-time__days strong,
.place-details--ZASSIS .place-opening-time__days strong,
.place-details--GLSVM .place-opening-time__days strong,
.place-details--CPBL .place-opening-time__days b,
.place-details--CPBO .place-opening-time__days b,
.place-details--PPL-CZPS .place-opening-time__days b,
.place-details--PPL-DEPS .place-opening-time__days b,
.place-details--4H .place-opening-time__days b,
.place-details--MPVM .place-opening-time__days b,
.place-details--ZASHUVMP .place-opening-time__days b,
.place-details--ZASHUXMP .place-opening-time__days b,
.place-details--DPVM .place-opening-time__days b,
.place-details--DPDEVM .place-opening-time__days b,
.place-details--DPHUVM .place-opening-time__days b,
.place-details--DPROVM .place-opening-time__days b,
.place-details--DPSIVM .place-opening-time__days b,
.place-details--SPEAVM .place-opening-time__days b,
.place-details--ZASDES .place-opening-time__days b,
.place-details--ZASSIS .place-opening-time__days b,
.place-details--GLSVM .place-opening-time__days b {
  display: inline-block;
  width: 80px;
}
#places > div[data-i] {
  background-position-x: 10px;
  background-position-y: 10px;
  background-repeat: no-repeat;
  background-size: 34px;
  margin: 0;
  min-height: 40px;
  padding: 0.33rem 10px 0.33rem 60px;
}
#places > div[data-i] div.i {
  display: none;
}
#places > div[data-i^="ZASCZS:"] {
  background-image: url('/Content/map/i/ZSKN.png');
}
#places > div[data-i^="ZASCZS:"].disabled {
  background-image: url('/Content/map/i/ZSKN0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASSKS:"] {
  background-image: url('/Content/map/i/ZSKN.png');
}
#places > div[data-i^="ZASSKS:"].disabled {
  background-image: url('/Content/map/i/ZSKN0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASHUS:"] {
  background-image: url('/Content/map/i/ZSKN.png');
}
#places > div[data-i^="ZASHUS:"].disabled {
  background-image: url('/Content/map/i/ZSKN0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASROS:"] {
  background-image: url('/Content/map/i/ZSKN.png');
}
#places > div[data-i^="ZASROS:"].disabled {
  background-image: url('/Content/map/i/ZSKN0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZSKNUA:"] {
  background-image: url('/Content/map/i/ZSKNUA.png');
}
#places > div[data-i^="ZSKNUA:"].disabled {
  background-image: url('/Content/map/i/ZSKNUA0.png');
  /*grayscale icon*/
}
#places > div[data-i^="CPBL:"] {
  background-image: url('/Content/map/i/CPBL.png?v=2');
}
#places > div[data-i^="CPBL:"].disabled {
  background-image: url('/Content/map/i/CPBL0.png?v=2');
  /*grayscale icon*/
}
#places > div[data-i^="4H:"] {
  background-image: url('/Content/map/i/4H.png');
}
#places > div[data-i^="4H:"].disabled {
  background-image: url('/Content/map/i/4H0.png');
  /*grayscale icon*/
}
#places > div[data-i^="CPBO:"] {
  background-image: url('/Content/map/i/CPBO.png');
}
#places > div[data-i^="CPBO:"].disabled {
  background-image: url('/Content/map/i/CPBO.png');
  /*grayscale icon*/
}
#places > div[data-i^="PACZKOMAT:"] {
  background-image: url('/Content/map/i/PMAT.png');
}
#places > div[data-i^="PACZKOMAT:"].disabled {
  background-image: url('/Content/map/i/PMAT0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASHUXFP:"] {
  background-image: url('/Content/map/i/ZASHUXFP.png');
}
#places > div[data-i^="ZASHUXFP:"].disabled {
  background-image: url('/Content/map/i/ZASHUXFP0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASPLXPACZ:"] {
  background-image: url('/Content/map/i/PMAT.png');
}
#places > div[data-i^="ZASPLXPACZ:"].disabled {
  background-image: url('/Content/map/i/PMAT0.png');
  /*grayscale icon*/
}
#places > div[data-i^="PPL-CZPS:"] {
  background-image: url('/Content/map/i/PPLCZPS.png');
}
#places > div[data-i^="PPL-CZPS:"].disabled {
  background-image: url('/Content/map/i/PPLCZPS0.png');
  /*grayscale icon*/
}
#places > div[data-i^="PPL-DEPS:"] {
  background-image: url('/Content/map/i/PPLDEPS.png');
}
#places > div[data-i^="PPL-DEPS:"].disabled {
  background-image: url('/Content/map/i/PPLDEPS0.png');
  /*grayscale icon*/
}
#places > div[data-i^="SDB:"] {
  background-image: url('/Content/map/i/SDB.png');
}
#places > div[data-i^="SDB:"].disabled {
  background-image: url('/Content/map/i/SDB0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASROXSD:"] {
  background-image: url('/Content/map/i/ZASROXSD.png');
}
#places > div[data-i^="ZASROXSD:"].disabled {
  background-image: url('/Content/map/i/ZASROXSD0.png');
  /*grayscale icon*/
}
#places > div[data-i^="MPVM:"] {
  background-image: url('/Content/map/i/MPVM.png');
}
#places > div[data-i^="MPVM:"].disabled {
  background-image: url('/Content/map/i/MPVM0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASHUVMP:"] {
  background-image: url('/Content/map/i/MPVM.png');
}
#places > div[data-i^="ZASHUVMP:"].disabled {
  background-image: url('/Content/map/i/MPVM0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASHUXMP:"] {
  background-image: url('/Content/map/i/MPVM.png');
}
#places > div[data-i^="ZASHUXMP:"].disabled {
  background-image: url('/Content/map/i/MPVM0.png');
  /*grayscale icon*/
}
#places > div[data-i^="SPSVM:"] {
  background-image: url('/Content/map/i/SPSVM.png');
}
#places > div[data-i^="SPSVM:"].disabled {
  background-image: url('/Content/map/i/SPSVM0.png');
  /*grayscale icon*/
}
#places > div[data-i^="PLPPOCZTEX:"] {
  background-image: url('/Content/map/i/PLPPOCZTEX.png');
}
#places > div[data-i^="PLPPOCZTEX:"].disabled {
  background-image: url('/Content/map/i/PLPPOCZTEX0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASPLVPOCZ:"] {
  background-image: url('/Content/map/i/PLPPOCZTEX.png');
}
#places > div[data-i^="ZASPLVPOCZ:"].disabled {
  background-image: url('/Content/map/i/PLPPOCZTEX0.png');
  /*grayscale icon*/
}
#places > div[data-i^="PPLP:"] {
  background-image: url('/Content/map/m/PPLP11.png');
}
#places > div[data-i^="PPLP:"].disabled {
  background-image: url('/Content/map/m/PPLP01.png');
  /*grayscale icon*/
}
#places > div[data-i^="GLSP:"] {
  background-image: url('/Content/map/m/GLSP11.png');
}
#places > div[data-i^="GLSP:"].disabled {
  background-image: url('/Content/map/m/GLSP01.png');
  /*grayscale icon*/
}
#places > div[data-i^="PARD:"] {
  background-image: url('/Content/map/m/PARD11.png');
}
#places > div[data-i^="PARD:"].disabled {
  background-image: url('/Content/map/m/PARD01.png');
}
#places > div[data-i^="MNPB:"] {
  background-image: url('/Content/map/i/MNPB.png');
}
#places > div[data-i^="MNPB:"].disabled {
  background-image: url('/Content/map/i/MNPB0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASUANP:"] {
  background-image: url('/Content/map/i/MNPB.png');
}
#places > div[data-i^="ZASUANP:"].disabled {
  background-image: url('/Content/map/i/MNPB0.png');
  /*grayscale icon*/
}
#places > div[data-i^="DPVM:"] {
  background-image: url('/Content/map/i/DPDPS.png');
}
#places > div[data-i^="DPVM:"].disabled {
  background-image: url('/Content/map/i/DPDPS0.png');
  /*grayscale icon*/
}
#places > div[data-i^="DPDEVM:"] {
  background-image: url('/Content/map/i/DPDPS.png');
}
#places > div[data-i^="DPDEVM:"].disabled {
  background-image: url('/Content/map/i/DPDPS0.png');
  /*grayscale icon*/
}
#places > div[data-i^="DPHUVM:"] {
  background-image: url('/Content/map/i/DPDPS.png');
}
#places > div[data-i^="DPHUVM:"].disabled {
  background-image: url('/Content/map/i/DPDPS0.png');
  /*grayscale icon*/
}
#places > div[data-i^="DPROVM:"] {
  background-image: url('/Content/map/i/DPDPS.png');
}
#places > div[data-i^="DPROVM:"].disabled {
  background-image: url('/Content/map/i/DPDPS0.png');
  /*grayscale icon*/
}
#places > div[data-i^="DPSIVM:"] {
  background-image: url('/Content/map/i/DPDPS.png');
}
#places > div[data-i^="DPSIVM:"].disabled {
  background-image: url('/Content/map/i/DPDPS0.png');
  /*grayscale icon*/
}
#places > div[data-i^="SPEAVM:"] {
  background-image: url('/Content/map/i/SPEAVM.png');
}
#places > div[data-i^="SPEAVM:"].disabled {
  background-image: url('/Content/map/i/SPEAVM0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASDES:"] {
  background-image: url('/Content/map/i/ZASDES.png');
}
#places > div[data-i^="ZASDES:"].disabled {
  background-image: url('/Content/map/i/ZASDES0.png');
  /*grayscale icon*/
}
#places > div[data-i^="ZASSIS:"] {
  background-image: url('/Content/map/i/ZASSIS.png');
}
#places > div[data-i^="ZASSIS:"].disabled {
  background-image: url('/Content/map/i/ZASSIS_0.png');
  /*grayscale icon*/
}
#places > div[data-i^="GLSVM:"] {
  background-image: url('/Content/map/i/GLSVM.png');
}
#places > div[data-i^="GLSVM:"].disabled {
  background-image: url('/Content/map/i/GLSVM.png');
  /*grayscale icon*/
}
#places > div[data-i] .place-name {
  font-size: 15px;
  font-family: 'RobotoNewMedium';
}
#places > div[data-i] .place-name span {
  color: #9c9c9c;
  display: inline-block;
  font-family: 'RobotoNewLight';
  font-size: 13px;
}
/*#places > div[data-i^="ZSKN:"] .place-name {
    &:after {
        content: '(Zásilkovna)';
    }
}

#places > div[data-i^="CPBL:"] .place-name {
    &:after {
        content: '(Balíkovna)';
    }
}

#places > div[data-i^="4H:"] .place-name {
    &:after {
        content: '(4Home výdejna)';
    }
}

#places > div[data-i^="CPBO:"] .place-name {
    &:after {
        content: '(Balík Na poštu)';
    }
}*/
#places > div[data-i] .place {
  font-size: 14px;
  font-family: 'RobotoNewLight';
}
#places > div[data-i] .place-price,
#places .place-delivery-day,
#places .place-distance {
  text-align: right;
  white-space: nowrap;
}
#places > div[data-i] .place-price--free {
  text-transform: uppercase;
}
#places > div[data-i].disabled .place-price,
#places > div[data-i].disabled .place-delivery-day,
#places > div[data-i].disabled .place-distance {
  display: none;
}
#places > div[data-i]:not(.disabled) .place-price {
  color: #7db115;
  font-size: 15px;
  font-family: 'RobotoNewMedium';
}
#places > div[data-i]:not(.disabled) .place-delivery-day,
#places > div[data-i]:not(.disabled) .place-distance {
  color: #000;
  font-size: 13px;
  font-family: 'RobotoNewLight';
}
#places > div.selected {
  background-color: #ecf6f5;
  position: relative;
  transition: background-color 0.2s linear 0s;
  z-index: 10;
}
#places > div[data-i].selected div.i {
  display: block;
}
#places > div[data-i] .notice {
  display: block;
}
#places > div[data-i] .reason {
  display: block;
  font-size: small;
}
#places > div[data-i] .i .buttons {
  margin-left: -46px;
  padding: 0.33rem 0;
  text-align: center;
}
#places > div[data-i] .i .buttons .pick-here-button {
  background-color: #7bb505;
  border: 0 none;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  height: 44px;
  line-height: 44px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
  transition: background-color 0.2s linear 0s;
}
#places > div[data-i] .i .buttons .pick-here-button:hover {
  background-color: #85be00;
}
#places > div[data-i].disabled .i .buttons {
  display: none;
}
#places > div[data-i] .i .details {
  line-height: 1.5;
  min-height: 32px;
}
#places > div[data-i] .i .details.loading {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/Content/map/activity.gif');
  margin-left: -46px;
}
#places > div[data-i] .i .details img.front {
  border-radius: 8px;
  max-width: 100%;
  box-shadow: rgba(0, 0, 0, 0.5) 2px 2px inset;
}
.suggestContainer {
  padding: 0 20px 8px;
  position: relative;
}
.smap-suggest {
  width: 100% !important;
  position: absolute;
  z-index: 20;
  list-style: none;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #e1e1e1;
  padding: 0;
  box-shadow: 5px 5px 5px 0px #00000033;
}
.smap-suggest .item {
  border-top: 1px solid #e1e1e1;
  min-height: 50px;
  padding: 5px;
}
.smap-suggest .item .text {
  display: flex;
  flex-direction: column;
}
.smap-suggest .item .text em {
  font-size: 12px;
  line-height: 16px;
  color: grey;
  font-style: normal;
}
.smap-suggest .item:hover {
  background: #f3f3f3;
  cursor: pointer;
}
.smap-suggest .item.selected {
  background: #f3f3f3;
}
.smap-suggest > a > img {
  display: none;
}
@media (max-width: 852px) {
  .smap-suggest > a > img {
    display: block;
  }
}
#searchbox {
  border: 1px solid #c3c3c3;
  position: relative;
}
#searchbox:after {
  background-image: url('/Content/map/ico_search.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px;
  content: '';
  height: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
#search {
  border: 0 none;
  font-size: 15px;
  font-family: 'RobotoNewRegular';
  height: 50px;
  line-height: 50px;
  padding: 0 100px 0 16px;
  position: relative;
  width: 100%;
}
#search::-webkit-input-placeholder {
  color: #939292;
  opacity: 1;
  /* Firefox */
}
#search::-moz-placeholder {
  /* Internet Explorer 10-11 */
  color: #939292;
}
#search:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #939292;
}
#search::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #939292;
}
#searchloc {
  padding: 0;
  border: 0;
  background-color: white;
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-13px);
}
/* gls description field obsahuje akorat nejake spany, takze to prestylujeme: */
#places .details .iw:first-of-type {
  display: none;
}
/* na prvnim radku maji jen nazev, ktery uz tam mame */
#places .details .iw-h2 {
  font-weight: bold;
  display: block;
}
#places .details .iw-p {
  margin-bottom: 1rem;
  display: block;
}
#places .details table {
  margin-bottom: 1rem;
}
#places .details th {
  font-weight: normal;
  font-style: italic;
}
#places .details th,
#places .details td {
  padding-right: 1rem;
}
/* na prvnim radku maji jen nazev, ktery uz tam mame */
/*#places > div[data-i]:not(.selected) .badge {
    display: none;
    background-color: silver;
    color: white;
}

#places > div[data-i].selected .badge {
    display: inline-block;
    background-color: silver;
    color: white;
}

#places > div[data-i].selected:not(.disabled) .badge.badge-isNew {
    background-color: royalblue;
    color: white;
}*/
#places > div[data-f~="isNew"] .nazev:after {
  content: "Novinka";
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  padding: 2px;
  border-radius: 4px;
  background-color: yellow;
  color: green;
  font-size: 0.5rem;
  font-weight: bold;
}
.ol-zoom {
  left: unset !important;
  top: unset !important;
  right: 0.5em;
  bottom: 0.5em;
  font-size: 1.5em;
}
body.readonly .map-column {
  display: flex !important;
}
body.readonly .suggestContainer {
  left: 0;
  padding: 10px 20px;
  position: absolute;
  z-index: 3;
}
@media only screen and (min-width: 1150px) {
  body.readonly .suggestContainer {
    top: 0;
  }
}
@media only screen and (min-width: 850px) and (max-width: 1149px) {
  body.readonly .suggestContainer {
    top: 75px;
    width: 100%;
  }
}
@media only screen and (max-width: 849px) {
  body.readonly .suggestContainer {
    top: 0;
    width: 100%;
  }
}
body.readonly .suggestContainer #searchbox {
  margin: 0.5rem 0.4rem;
}
body.readonly #networklist {
  top: 0 !important;
  width: auto !important;
  padding: 10px 20px !important;
}
@media only screen and (min-width: 1150px) {
  body.readonly #networklist {
    right: 0;
  }
}
@media only screen and (min-width: 850px) and (max-width: 1149px) {
  body.readonly #networklist {
    left: 0;
  }
}
@media only screen and (max-width: 849px) {
  body.readonly #networklist {
    display: none !important;
    height: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    width: 0 !important;
  }
}
body.readonly .smap .card {
  background-color: #ecf6f5;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
body.readonly .smap .card .card-body {
  background-color: #ecf6f5;
}
body.readonly .smap .card .close {
  top: 0;
}
body.readonly .smap .card img {
  width: 100%;
}
body.readonly .smap .card:after {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ecf6f5;
  display: block;
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
body.readonly .smap .card-details {
  color: #555;
}
body.readonly .smap .place-details--CPBL,
body.readonly .smap .place-details--CPBO {
  flex: 0 0 100%;
  max-width: 100% !important;
}
body.readonly .smap .place-name {
  font-size: 15px;
  font-family: 'RobotoNewMedium';
}
body.readonly .smap .place {
  font-size: 14px;
  font-family: 'RobotoNewLight';
}
body.readonly .smap .place-description,
body.readonly .smap .place-opening-time,
body.readonly .smap .place-address {
  font-size: 14px;
  font-family: 'RobotoNewLight';
  line-height: 1.5;
  margin-bottom: 10px;
}
body.readonly .smap .place-description strong,
body.readonly .smap .place-opening-time strong,
body.readonly .smap .place-address strong {
  font-family: 'RobotoNewMedium';
}

