

/******* leaflet.css *******/

/* required styles */

.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	-ms-touch-action: none;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	-webkit-user-drag: none;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
	max-width: none !important;
	}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
	max-width: 15000px !important;
	}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-tile-pane    { z-index: 2; }
.leaflet-objects-pane { z-index: 3; }
.leaflet-overlay-pane { z-index: 4; }
.leaflet-shadow-pane  { z-index: 5; }
.leaflet-marker-pane  { z-index: 6; }
.leaflet-popup-pane   { z-index: 7; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 7;
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-clickable {
	cursor: pointer;
	}
.leaflet-container {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}


/* visual tweaks */

.leaflet-container {
	background: #eee;
	outline: 0;
	}

.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: content-box;
	     box-sizing: content-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	}
.leaflet-popup-content {
	margin: 15px 50px 15px 20px;
	line-height: 1.4;
	font-size: 14px;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	margin: 0 auto;
	width: 40px;
	height: 20px;
	position: relative;
	overflow: hidden;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;

	box-shadow: 0 3px 14px rgba(0,0,0,0.2);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 13px;
	right: 15px;
	padding: 5px 0 0 0;
	text-align: center;
	width: 25px;
	height: 25px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	background: #CFCFCF;
	border-radius: 50%;
	display: block;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/******* leaflet.label.css *******/

.leaflet-label {
	background: rgb(235, 235, 235);
	background: rgba(235, 235, 235, 0.81);
	background-clip: padding-box;
	border-color: #777;
	border-color: rgba(0,0,0,0.25);
	border-radius: 4px;
	border-style: solid;
	border-width: 4px;
	color: #111;
	display: block;
	font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-weight: bold;
	padding: 1px 6px;
	position: absolute;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
	z-index: 6;
}

.leaflet-label.leaflet-clickable {
	cursor: pointer;
}

.leaflet-label:before,
.leaflet-label:after {
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	content: none;
	position: absolute;
	top: 5px;
}

.leaflet-label:before {
	border-right: 6px solid black;
	border-right-color: inherit;
	left: -10px;
}

.leaflet-label:after {
	border-left: 6px solid black;
	border-left-color: inherit;
	right: -10px;
}

.leaflet-label-right:before,
.leaflet-label-left:after {
	content: "";
}

/******* Control.FullScreen.css *******/

.leaflet-control-zoom-fullscreen { background-image: url(images/icon-fullscreen.png); }
.leaflet-container:-webkit-full-screen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-pseudo-fullscreen { position: fixed !important; width: 100% !important; height: 100% !important; top: 0px !important; left: 0px !important; z-index: 99999; }

/******* MarkerCluster.Default.css *******/

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
.mobilni-mapa-pokryti .fullContainer .pageContainer .productsNavigation{margin-bottom:30px}.productsNavigation .iconHandsetData:before,.productsNavigation .iconVolani:before,.productsNavigation .iconWeb:before{position:relative;top:2px}.productsNavigation .iconWeb:before{left:3px}.productsNavigation .iconHandsetData:before{left:4px}#mapa-pokryti .overRhombus .vfmapsInner{position:relative;z-index:1005}#mapa-pokryti .export>.pageWrapper{position:relative}#mapa-pokryti .tabs{margin:0 0 3em;max-width:700px}#mapa-pokryti .tabs .boxTabs ul{display:block}@media only screen and (min-width:767px){#mapa-pokryti .tabs .boxTabs ul{display:table;width:100%}}#mapa-pokryti .tabs li{width:100%;display:block}@media only screen and (min-width:767px){#mapa-pokryti .tabs li{display:table-cell;width:33%}}#legendAreaMobilniInternet{display:none}.dragMapDesktop{position:absolute;top:0;left:-65px;font-size:30px;text-decoration:none;display:block;width:50px;height:50px;background:#fff;border:2px solid #6e6e6e;color:#6e6e6e;text-align:center;line-height:42px}.dragMapDesktop .icon{margin:0}.dragMapDesktop:active,.dragMapDesktop:focus{border:2px solid #6e6e6e;color:#6e6e6e;text-decoration:none}.dragMapDesktop:hover{text-decoration:none}.dragMapDesktop.active{border-color:#9c2aa0;color:#9c2aa0;text-decoration:none}#VFMaps input[type=checkbox].checkbox.any+label:before{background-position:-60px -46px}#VFMaps .fullWidthContainer{margin-top:0}#VFMaps table{display:table;margin-bottom:0;border:none}#VFMaps table:after,#VFMaps table:before{display:none}#VFMaps table td{height:auto}#VFMaps tbody,#VFMaps tfoot,#VFMaps thead{display:table-row-group}#VFMaps tr{display:table-row}#VFMaps td,#VFMaps th{display:table-cell;border:0}#VFMaps .vfmapsInner .mapAreaBox{position:relative;z-index:2}#VFMaps .vfmapsInner .mapAreaBox>.relative{overflow:hidden}#VFMaps .leaflet-container img{max-width:none;max-height:none}#VFMaps .activeLegend,#VFMaps .mapSidebarWrapper .activeLegendInner{background:#eee;padding-bottom:20px}#VFMaps .activeLegend tr,#VFMaps .mapSidebarWrapper .activeLegendInner tr{border-bottom:none}#VFMaps .activeLegend tr+tr,#VFMaps .mapSidebarWrapper .activeLegendInner tr+tr{border-top:1px solid #ccc}#VFMaps .activeLegend td,#VFMaps .mapSidebarWrapper .activeLegendInner td{padding:10px 0;height:auto;background:0 0;border:0}#VFMaps .activeLegend td.check,#VFMaps .mapSidebarWrapper .activeLegendInner td.check{width:30px}#VFMaps .activeLegend label,#VFMaps .mapSidebarWrapper .activeLegendInner label{width:auto}#VFMaps .activeLegend .dijitComboBox.dijitFocused,#VFMaps .mapSidebarWrapper .activeLegendInner .dijitComboBox.dijitFocused{border-color:#434241;box-shadow:inset 0 0 0 1px #434241}#VFMaps .activeLegend#activeLegendStavSite,#VFMaps .mapSidebarWrapper .activeLegendInner#activeLegendStavSite{padding:0;border:0}#VFMaps .activeLegend#activeLegendStavSite .dragMapDesktop,#VFMaps .mapSidebarWrapper .activeLegendInner#activeLegendStavSite .dragMapDesktop{left:-40px}@media only screen and (min-width:767px){#VFMaps .mapSidebarWrapper .activeLegend{top:0}}#VFMaps .mapSidebarWrapper .activeLegendInner{background:0 0;padding:0}#VFMaps .mapSidebarWrapper #activeLegendInternetTurbo .activeLegendInner td.check{width:60px}#VFMaps .mapSidebarWrapper #activeLegendNBIoT .activeLegendInner td.check{width:auto}@media only screen and (min-width:767px){#VFMaps .activeLegend{background:#fff;position:absolute;top:20px;right:0;z-index:1;max-width:310px;border:1px solid #ccc}#VFMaps .pageWrapperFake{margin:0;position:absolute;top:0;left:0;right:0}}#VFMaps_map{width:100%;height:550px}@media only screen and (min-width:767px){#VFMaps_map{height:1000px}}#VFMaps_map .leaflet-popup-content-wrapper{border-radius:15px;font-family:VodafoneRg,'Arial CE',Arial,Helvetica,sans-serif}#VFMaps_map .leaflet-popup-content-wrapper p{margin:0 0 1rem 0}#VFMaps_map .leaflet-popup-close-button{text-indent:-100px;width:24px;height:24px;overflow:hidden;background:transparent center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M1.5 14.5L14.5 1.5' stroke='%23e60000' stroke-width='1.08375' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.5 14.5L1.5 1.5' stroke='%23e60000' stroke-width='1.08375' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}#VFMaps_map .leaflet-control-container .leaflet-left,#VFMaps_map .leaflet-control-container .leaflet-right{left:20px;right:20px}#VFMaps_map .leaflet-control-container .leaflet-right{right:20px}#VFMaps_map .leaflet-control-container .leaflet-control{float:none;margin:0}#VFMaps_map .leaflet-control-container .leaflet-bottom.leaflet-right{left:0}#VFMaps_map .leaflet-control-container .leaflet-bottom.leaflet-right .leaflet-bar{display:none}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right{top:20px;right:90px}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .leaflet-control{float:left}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo{text-align:left;width:220px;background:#fff;padding:25px 20px}@media only screen and (min-width:560px){#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo{width:350px}}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .close{cursor:pointer;width:28px;height:28px;background:url(/public/design/images/atlas.png) -146px 0 no-repeat;position:absolute;top:20px;right:20px;overflow:hidden;text-indent:-1000em}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .close:hover{background-position:-146px -28px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx){#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .close{background-image:url(/public/design/images/atlas_x2.png);background-size:200px auto}}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .coverageInfoInner h2{padding-right:30px}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo h2{text-align:left;font-size:20px;line-height:1.4;margin-bottom:0;padding-bottom:5px}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .coverageLegend tr:first-child td{border-top:1px solid #d6d6d6;padding-top:20px}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .formElements{display:table;width:100%}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .formElements input{text-transform:none;border-radius:2px}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .formElements .input{display:table-cell}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .formElements .input input{width:100%;border:1px solid #6e6e6e;height:40px;padding:0 10px;font-size:14px;border-radius:2px 0 0 2px}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .formElements .submit{display:table-cell;text-align:right;width:1px}#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right .coverageInfo .formElements .submit input{margin:0 0 0 -2px;height:40px;font-weight:400;min-width:0;font-size:16px}@media only screen and (min-width:767px){#VFMaps_map .leaflet-control-container .leaflet-left,#VFMaps_map .leaflet-control-container .leaflet-right{left:20px;right:auto}}@media only screen and (min-width:830px){#VFMaps_map .leaflet-control-container .leaflet-top.leaflet-right{top:80px}}#mapUIbuttons{position:absolute;margin:0;top:20px;right:20px;left:auto;z-index:9;padding:0}#mapUIbuttons li{border:none;float:none;height:auto;margin:10px 0 0 0;padding:0;list-style:none}#mapUIbuttons li:before{display:none}#mapUIbuttons li a{display:block;width:50px;height:50px;background:#fff;text-align:center;line-height:42px;overflow:hidden;font-size:20px;border-radius:15px;box-shadow:0 0 12px #0000000d}#mapUIbuttons li a:hover{background:#eee;transition:.3s}#mapUIbuttons li a .icon{color:inherit;display:block;width:50px;height:50px;background:transparent no-repeat center/36px}#mapUIbuttons li a .icon.iconMapPosition{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192' fill='none'%3E%3Cpath d='M96 156C129.137 156 156 129.137 156 96C156 62.8629 129.137 36 96 36C62.8629 36 36 62.8629 36 96C36 129.137 62.8629 156 96 156Z' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 96H52M140 96H172M96 172V140M96 52V20' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}#mapUIbuttons li a .icon.iconMapZoomin{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192' fill='none'%3E%3Cpath d='M48 76H104M76 48V104' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M76 132C106.928 132 132 106.928 132 76C132 45.0721 106.928 20 76 20C45.0721 20 20 45.0721 20 76C20 106.928 45.0721 132 76 132Z' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M115.6 115.6L172 172' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}#mapUIbuttons li a .icon.iconMapZoomout{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192' fill='none'%3E%3Cpath d='M48 76H104' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M76 132C106.928 132 132 106.928 132 76C132 45.0721 106.928 20 76 20C45.0721 20 20 45.0721 20 76C20 106.928 45.0721 132 76 132Z' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M115.6 115.6L172 172' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}#mapUIbuttons li a .icon.iconTouchMove{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192' fill='none'%3E%3Cpath d='M72 115.93V51.9297C72 49.808 72.8429 47.7731 74.3431 46.2728C75.8434 44.7725 77.8783 43.9297 80 43.9297C82.1217 43.9297 84.1566 44.7725 85.6569 46.2728C87.1571 47.7731 88 49.808 88 51.9297V91.9297V83.9297C88 81.808 88.8429 79.7731 90.3431 78.2728C91.8434 76.7725 93.8783 75.9297 96 75.9297C98.1217 75.9297 100.157 76.7725 101.657 78.2728C103.157 79.7731 104 81.808 104 83.9297V91.9297C104 89.808 104.843 87.7731 106.343 86.2728C107.843 84.7725 109.878 83.9297 112 83.9297C114.122 83.9297 116.157 84.7725 117.657 86.2728C119.157 87.7731 120 89.808 120 91.9297V99.9297' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M120 99.9299C120 97.8081 120.843 95.7733 122.343 94.273C123.843 92.7727 125.878 91.9299 128 91.9299C130.122 91.9299 132.157 92.7727 133.657 94.273C135.157 95.7733 136 97.8081 136 99.9299V131.93C136 140.417 132.629 148.556 126.627 154.557C120.626 160.558 112.487 163.93 104 163.93H88C79.5131 163.93 71.3737 160.558 65.3726 154.557C59.3714 148.556 56 140.417 56 131.93V111.93C56 108.747 57.2643 105.695 59.5147 103.445C61.7652 101.194 64.8174 99.9299 68 99.9299H72M57 58.9299C55.9323 55.3478 55.716 51.5658 56.3684 47.8854C57.0208 44.2049 58.5238 40.7277 60.7577 37.7309C62.9915 34.734 65.8945 32.3003 69.2353 30.6238C72.576 28.9473 76.2622 28.0742 80 28.0742C83.7378 28.0742 87.424 28.9473 90.7647 30.6238C94.1055 32.3003 97.0085 34.734 99.2423 37.7309C101.476 40.7277 102.979 44.2049 103.632 47.8854C104.284 51.5658 104.068 55.3478 103 58.9299' stroke='%23333333' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}#mapUIbuttons li a span{margin:0}#mapUIbuttons li a#btn_ZoominMap,#mapUIbuttons li a#btn_ZoomoutMap{border-color:#9c2aa0;color:#9c2aa0}#mapUIbuttons li a#btn_ZoominMap.disabled,#mapUIbuttons li a#btn_ZoomoutMap.disabled{opacity:.5;cursor:default}#mapUIbuttons li a#btn_ZoominMap.disabled:hover,#mapUIbuttons li a#btn_ZoomoutMap.disabled:hover{background:#fff}#mapUIbuttons li.active a{outline:2px solid #e60000}#mapUIbuttons li:first-child{margin-top:0}#mapUIbuttons li .iconTouchMove{font-size:30px}@media only screen and (min-width:767px){#mapUIbuttons li{margin:10px 0 0 0;float:none}}.no-touch #mapUIbuttons li a:hover{border-color:#9c2aa0;color:#9c2aa0}#activeLegendInternetTurbo.mapSidebar .technologyName tr,#activeLegendNBIoT.mapSidebar .technologyName tr{border-bottom:1px solid #ccc}#activeLegendInternetTurbo.mapSidebar .technologyDetail td,#activeLegendNBIoT.mapSidebar .technologyDetail td{border-bottom:none;padding:3px 0}#activeLegendInternetTurbo.mapSidebar tr+tr,#activeLegendNBIoT.mapSidebar tr+tr{border-top:none}#activeLegendInternetTurbo.mapSidebar td.check,#activeLegendNBIoT.mapSidebar td.check{width:auto}#activeLegendInternetTurbo .turboDevices,#activeLegendNBIoT .turboDevices{margin-bottom:1.5em;text-align:left}#activeLegendInternetTurbo .turboDevices .selectArea,#activeLegendNBIoT .turboDevices .selectArea{float:none;width:auto;padding:0}#activeLegendInternetTurbo .turboDevices .resultArea,#activeLegendNBIoT .turboDevices .resultArea{float:none;width:auto}#activeLegendInternetTurbo .turboDevices .text-lte,#activeLegendNBIoT .turboDevices .text-lte{margin-top:10px;padding-left:40px;position:relative}#activeLegendInternetTurbo .turboDevices .text-lte:before,#activeLegendNBIoT .turboDevices .text-lte:before{content:attr(data-content);position:absolute;top:50%;margin-top:-15px;left:0;width:30px;height:30px;line-height:28px;border-radius:50%;border:1px solid #6e6e6e;text-align:center;text-transform:uppercase;font-size:12px}#activeLegendInternetTurbo .turboDevices .dijitComboBox,#activeLegendNBIoT .turboDevices .dijitComboBox{background:0 0;position:relative}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitButtonNode,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitButtonNode{position:absolute;top:0;right:0;bottom:0;width:40px;background:0 0;border:none;display:none}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitButtonNode:after,#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitButtonNode:before,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitButtonNode:after,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitButtonNode:before{position:absolute;left:50%;top:50%;display:block;content:"";margin-left:-5px}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitButtonNode:before,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitButtonNode:before{margin-top:-7px;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #4a4d4e}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitButtonNode:after,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitButtonNode:after{margin-top:2px;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #4a4d4e}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitButtonNode input[type=text],#activeLegendNBIoT .turboDevices .dijitComboBox .dijitButtonNode input[type=text]{background:0 0;border-width:0 0 0 1px;overflow:hidden;text-indent:-1000em;margin:0;position:absolute;top:0;bottom:0;right:0;left:0;width:100%;z-index:1}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitValidationContainer,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitValidationContainer{position:absolute;top:2px;bottom:0;right:5px;width:20px;display:none}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitValidationContainer:before,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitValidationContainer:before{content:"\00d7";line-height:40px;font-size:21px;display:inline-block;vertical-align:middle;color:#6e6e6e}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitValidationContainer input[type=text],#activeLegendNBIoT .turboDevices .dijitComboBox .dijitValidationContainer input[type=text]{cursor:pointer;position:absolute;top:0;bottom:0;right:0;left:0;background:0 0;border:0;margin:0;padding:0;opacity:0;filter:alpha(opacity=0);z-index:1;height:40px}#activeLegendInternetTurbo .turboDevices .dijitComboBox .dijitInputContainer input[type=text]::-ms-clear,#activeLegendNBIoT .turboDevices .dijitComboBox .dijitInputContainer input[type=text]::-ms-clear{display:none}#activeLegendInternetTurbo .turboDevices .dijitComboBox.dijitFocused .dijitValidationContainer,#activeLegendNBIoT .turboDevices .dijitComboBox.dijitFocused .dijitValidationContainer{display:block}#activeLegendInternetTurbo .turboDevices .dijitComboBox.dijitFocused .dijitButtonNode input[type=text],#activeLegendNBIoT .turboDevices .dijitComboBox.dijitFocused .dijitButtonNode input[type=text]{border-left-width:2px;border-color:#434241}#activeLegendInternetTurbo .turboDevices .dijitComboBox.dijitFocused .dijitInputContainer input[type=text],#activeLegendNBIoT .turboDevices .dijitComboBox.dijitFocused .dijitInputContainer input[type=text]{margin:0}#activeLegendInternetTurbo .resultArea,#activeLegendNBIoT .resultArea{margin-top:1.5em}#activeLegendInternetTurbo .showAllLayers,#activeLegendNBIoT .showAllLayers{text-align:center}#activeLegendInternetTurbo .showAllLayers button,#activeLegendNBIoT .showAllLayers button{margin:0}#activeLegendInternetTurbo .technologyName,#activeLegendNBIoT .technologyName{margin:20px 0 7px 0}#activeLegendInternetTurbo .technologyName table,#activeLegendNBIoT .technologyName table{margin:0;border:none}#activeLegendInternetTurbo .technologyName table td,#activeLegendNBIoT .technologyName table td{padding:10px 0;text-align:right;height:auto}#activeLegendInternetTurbo .technologyName table td:first-child,#activeLegendNBIoT .technologyName table td:first-child{text-align:left}#activeLegendInternetTurbo .technologyName table td .arrowDown,#activeLegendNBIoT .technologyName table td .arrowDown{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAALCAYAAAByF90EAAAAt0lEQVQ4EZ3BoU5CARgG0J+x8QY0khYSlQjvoZWuXePZyNrJjMchUUi4GwhMO+NzbgbnFC+eU5iiwaQuhAkaTAsNgjeMqyWM8YrgpXCDI4IDRvUHjHBAcMRtfcAMJwR7DOsXGGKP4IRZfYU7BMEO1/UNrrBDENzXT/CAINhiUJ8wwBZB8FjnYI4g2KCPPjYIgnm1gScEwRprBMFztYUOFgiCIFigU5dAF0sEwRLd+g/0sMIKvTrjHV0dyF3j26mJAAAAAElFTkSuQmCC) 0 0 no-repeat;width:19px;height:11px;display:inline-block;cursor:pointer}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx){#activeLegendInternetTurbo .technologyName table td .arrowDown,#activeLegendNBIoT .technologyName table td .arrowDown{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAWCAYAAACosj4+AAABeUlEQVRIx8WWu04CQRSGZ0OEZBsKbvoktJTaqSWhRFulh/LzUiq1tGqppTTeGiVxE16BNyChIBDWZjYhZubsshecZJrZ8//n292ZM0cppRSwC3jAD1BVWxpAVef0gL1gsQKMAV/PMVDaAkzJkLeigNe1xWB+A8UMYYrAlyHvmwImhgc+8A64GcC42tuUc6KAOjC1BLwA+RRh8trTlGsK1IPABjCzBD6lAQXsaC9TjhnQ+Cs4AOYWwT2QSwCT0x4m7zmwbxMeA0uL8A5wYsA4WmvyXAJHYQYtAeo2BtCNANOKanIKrCxGlxvAXFg8VsDJpm/WsZj5QDeCvivoO3E3Y08wPRd0Z4Kul/S4XgufvW2Ibwu/+yqtgtYXNmZzLa4pHIh+muXeAQbS0QUOgYUlZhCnZEQpbo9CcbMV1YckRTXKXfQsbNhMrp0wqAIwjAAzBArb6vRc4FOA+ciidYnSZI0MMKMsm7swqLKhDS2r/xxATTfpHlBL6vcLVMrNbUHEq3oAAAAASUVORK5CIIA=) 0 0 no-repeat;background-size:19px auto}}#activeLegendInternetTurbo .technologyName table td label,#activeLegendNBIoT .technologyName table td label{margin:0;font-weight:700;width:auto}#activeLegendInternetTurbo .technologyName table td label span,#activeLegendNBIoT .technologyName table td label span{font-weight:400}#activeLegendInternetTurbo .technologyName.open table td .arrowDown,#activeLegendNBIoT .technologyName.open table td .arrowDown{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAALCAYAAAByF90EAAAAuElEQVQ4EZ3BrU6CARgG0JcxvQNNNAqJSoTrIGPWC6AezdrJNC6GpIUCIxD86YzHuRmcU/zwnDoGZ1hggfP6D7QxRxDM0a5ToIUZgiAIZmhVU7hHECyxRBA8VBO4RRA84RIXeEQQ3NUxmCIIVujUJ3SwQhBM6ye4RhCs0a1v0MUaQXBTX2GCA4IdevUL9LBDcMBVfcAYewQv6Ncf0Mczgj3GhQ2CNwyqIQzwimBTGGGLYZ0IQ2wxegcgCMhYGkNYOQAAAABJRU5ErkJggg==)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx){#activeLegendInternetTurbo .technologyName.open table td .arrowDown,#activeLegendNBIoT .technologyName.open table td .arrowDown{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAWCAYAAACosj4+AAABWklEQVRIx2NgoBC0traKA/F5KBZnGEgAdIAIEF8C4v9QDGKLDJRj+IH4NJJjYBgkxk9vx3AB8REsjoHhwyA19HIMOxDvxuMYGAapYae1Y9iAeBMRjoHhjSA9tHIMMxCvxGHxTyjGJrcCpJfajmEE4nk4LPwDxIFQ/AeHGpBeRmo6aDIex8QgqYvG46jJ1HJMJw4L/gFxKhb1qVA5bHo6KHVMLZ4EW4BHXwEefbXkOqaQEkOBamrw6C8k1TFp1Ah2kFpSohuXITF4EuYkMkJ6EjEZApfmIDyOmUtO1oUWGXPxFRm4NHrSqnCDFqor8BSqHugaHID4Ky2Lf2i1sxGHHSC7HWAKzYH4Ew6Fu6hZF0EdhatiBrnBHKToMT2bENCmy2Ecdj4GKdiPReIULRtZ0MbdKSz2HgBJigLxZbRmqDAd2lXCaM1fkBtEYZKSSA11MTq2PJE7CJIgMQCQf82FivqOagAAAABJRU5ErkJggg==)}}#activeLegendInternetTurbo .toggle,#activeLegendNBIoT .toggle{width:20px}#activeLegendInternetTurbo .technologyDetail,#activeLegendNBIoT .technologyDetail{display:none;padding-left:5px}#activeLegendInternetTurbo .technologyDetail table tr,#activeLegendNBIoT .technologyDetail table tr{border-bottom:none}#activeLegendInternetTurbo .technologyDetail table td,#activeLegendNBIoT .technologyDetail table td{padding:10px 0;text-align:right}#activeLegendInternetTurbo .technologyDetail table td label,#activeLegendNBIoT .technologyDetail table td label{margin:0;font-weight:400;line-height:22px}#activeLegendInternetTurbo .technologyDetail table td:first-child,#activeLegendNBIoT .technologyDetail table td:first-child{text-align:left}#activeLegendInternetTurbo .technologyDetail table td.speed,#activeLegendNBIoT .technologyDetail table td.speed{width:35%}#activeLegendInternetTurbo .technologyDetail label,#activeLegendNBIoT .technologyDetail label{padding-left:27px}#activeLegendInternetTurbo .technologyDetail label:before,#activeLegendNBIoT .technologyDetail label:before{width:18px;height:18px;margin-top:2px;text-indent:-7px;line-height:16px}#activeLegendInternetTurbo .technologyDetail label span,#activeLegendNBIoT .technologyDetail label span{display:none}#activeLegendInternetTurbo .technologyDetail .checkbox:checked+label:before,#activeLegendNBIoT .technologyDetail .checkbox:checked+label:before{background-position:-41px -46px}.mapSidebarWrapper{z-index:99;-webkit-transition:all .5s;-moz-transition:all .5s;-ms-transition:all .5s;-o-transition:all .5s}@media only screen and (min-width:767px){.mapSidebarWrapper{position:absolute;top:20px;right:-310px;width:310px;height:960px}}.mapSidebarWrapper .mapSidebar{border-top-right-radius:0;border-bottom-right-radius:0;z-index:99;padding-bottom:0!important}@media only screen and (min-width:767px){.mapSidebarWrapper .mapSidebar{position:absolute;top:0;bottom:0;right:0;left:0;background:#fff}}.mapSidebarWrapper.open{right:0}.mapSidebarWrapper .opener{position:absolute;top:50%;left:-34px;transform:translateY(-50%);height:60px;width:35px;background:#fff;text-align:center;cursor:pointer;z-index:100;border-radius:15px 0 0 15px}.mapSidebarWrapper .opener .arrowClose,.mapSidebarWrapper .opener .arrowOpen{width:11px;height:18px;display:inline-block;position:relative;top:20px;background:center/24px no-repeat}.mapSidebarWrapper .opener .arrowOpen{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192' fill='none'%3E%3Cpath d='M130 164L62 96L130 28' stroke='%23333333' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}.mapSidebarWrapper .opener .arrowClose{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192' fill='none'%3E%3Cpath d='M62 28L130 96L62 164' stroke='%23333333' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");display:none}.mapSidebarWrapper.open .opener .arrowOpen{display:none}.mapSidebarWrapper.open .opener .arrowClose{display:inline-block}@media only screen and (min-width:767px){.mapSidebarWrapper #mapUIbuttons{top:0;left:-65px}}#mapRightClickInfoContainer{padding:20px;background:#eee}@media only screen and (min-width:767px){#mapRightClickInfoContainer{background:#fff;position:absolute;top:20px;left:20px;max-width:320px}}@media only screen and (min-width:830px){#mapRightClickInfoContainer{top:80px}}.mapRightClickInfo{margin:0;padding-left:40px;position:relative}.mapRightClickInfo .desktop,.mapRightClickInfo .devices{position:relative}.mapRightClickInfo .devices:before{position:absolute;top:50%;margin-top:-15px;content:attr(data-content);border:1px solid #6e6e6e;border-radius:100%;width:30px;height:30px;text-align:center;line-height:28px;overflow:hidden;font-size:12px;left:-40px}.mapRightClickInfo .desktop:before{position:absolute;top:50%;margin-top:-26px;content:"";background:url(/public/design/images/icon_mouse.svg) 0 0 no-repeat;background-size:100% auto;width:25px;height:52px;left:-40px}@media only screen and (min-width:767px){#VFMaps.storesMap .mapSidebarWrapper{right:-440px;width:440px}}#VFMaps.storesMap .mapSidebarWrapper.open{right:0}.noTopButtons #activeLegendInternetTurbo .turboDevices,.noTopButtons #activeLegendNBIoT .turboDevices{margin-top:0}.noTopButtons #activeLegendInternetTurbo .turboDevices .boxHeading,.noTopButtons #activeLegendNBIoT .turboDevices .boxHeading{padding-top:0}.noTopButtons #activeLegendInternetTurbo .turboDevices .boxContent,.noTopButtons #activeLegendNBIoT .turboDevices .boxContent{padding:0}.tundra .dijitMenuItem{font-size:1em}.coverageInfo{padding:0 20px 25px 20px;text-align:left;width:100%;background:#fff}@media only screen and (min-width:560px){.coverageInfo{width:310px}}.coverageInfo .close{cursor:pointer;width:28px;height:28px;background:url(/public/design/images/atlas.png) -146px 0 no-repeat;position:absolute;top:20px;right:20px;overflow:hidden;text-indent:-1000em}.coverageInfo .close:hover{background-position:-146px -28px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx){.coverageInfo .close{background-image:url(/public/design/images/atlas_x2.png);background-size:200px auto}}.coverageInfo .coverageInfoInner p:first-of-type{display:none}.coverageInfo table{width:100%;display:table;margin-bottom:0}.coverageInfo table tr{display:table-row}.coverageInfo table tr td{display:table-cell;background:0 0}.coverageInfo tbody{display:table-row-group}.coverageInfo td,.coverageInfo tr{border-bottom:none}.coverageInfo td{padding:3px 0;vertical-align:middle}.coverageInfo td.check{width:25px}.coverageInfo td.info{width:50px}.coverageInfo td.info>div{position:relative}.coverageInfo .name{font-size:13px;line-height:22px}.coverageInfo .speed{font-size:12px}.coverageInfo .icon-info{display:inline-block;cursor:pointer;position:absolute;top:-7px;right:1px;font-size:16px}.coverageInfo .icon-info:before{font-family:vodafone-icons;margin-right:0;content:"\21"}.coverageInfo .signalInfo{width:24px;height:6px;background:url(/webs/vodafonecz/images/vfmaps/atlas_signalinfo.png) no-repeat;overflow:hidden;text-indent:-1000em;vertical-align:middle;display:block;padding:3px}.coverageInfo .signalInfo0{visibility:hidden}.coverageInfo .signalInfo1{background-position:0 -10px}.coverageInfo .signalInfo2{background-position:0 -20px}.coverageInfo .signalInfo3{background-position:0 -30px}.legendColors .legendColor,.legendColors .legendColor.legend_3ghspa,.legendColors .legendColor.legend_3ghspadc,.legendColors .legendColor.legend_3gvoice,.legendColors .legendColor.legend_lte1800,.legendColors .legendColor.legend_lte2100,.legendColors .legendColor.legend_lte800,.legendColors .legendColor.legend_lte900,.legendColors .legendColor.legend_ltea,.legendColors .legendColor.legend_nbiot20db,.legendColors .legendColorNej,.legendColors .legendColorZaklad{display:inline-block;width:18px;height:18px;background:#ccc;vertical-align:middle;margin:-4px 0 0 10px}.legendColors .legendColor,.legendColors .legendColorZaklad{background:#f3b9b5}.legendColors .legendColor.legend_3ghspa,.legendColors .legendColor.legend_3ghspadc,.legendColors .legendColor.legend_3gvoice,.legendColors .legendColor.legend_lte1800,.legendColors .legendColor.legend_lte2100,.legendColors .legendColor.legend_lte800,.legendColors .legendColor.legend_lte900,.legendColors .legendColor.legend_ltea,.legendColors .legendColor.legend_nbiot20db,.legendColors .legendColorNej{background:#e60000}.legendColors .legendColor{margin-left:0!important}#VFMaps .coverageInfo .legend_voice,#activeLegendVolani .legendColors .legendColorZaklad{background:#ed5e5c}#activeLegendUzivatelske .legendColors .legendColorZaklad{background:#8cc4ce}#activeLegendUzivatelske .legendColors .legendColorRychlejsi{background:#54a7b6}#activeLegendUzivatelske .legendColors .legendColorNej{background:#007c92}#activeLegendModemy .legendColors .legendColorZaklad{background:#d2c3cf}#activeLegendModemy .legendColors .legendColorRychlejsi{background:#b79eb1}#activeLegendModemy .legendColors .legendColorNej{background:#936e8a}.dijitInlineTable{display:block}.dijitTooltip{position:absolute;z-index:2000;display:block;left:0;top:-10000px;overflow:visible;max-width:350px}.dijitTooltip .dijitTooltipConnector{display:none}.dijitTooltip.dijitTooltipLeft{padding-right:14px}.dijitTooltip.dijitTooltipLeft .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipLeft .dijitTooltipContainer:before{content:'';width:0;height:0;position:absolute}.dijitTooltip.dijitTooltipLeft .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipLeft .dijitTooltipContainer:before{left:100%;top:50%}.dijitTooltip.dijitTooltipLeft .dijitTooltipContainer:before{border-left:7px solid #ccc;border-top:7px solid transparent;border-bottom:7px solid transparent;margin-top:-7px}.dijitTooltip.dijitTooltipLeft .dijitTooltipContainer:after{border-left:6px solid #fff;border-top:6px solid transparent;border-bottom:6px solid transparent;margin-top:-6px}.dijitTooltip.dijitTooltipRight{padding-left:14px}.dijitTooltip.dijitTooltipRight .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipRight .dijitTooltipContainer:before{content:'';width:0;height:0;position:absolute}.dijitTooltip.dijitTooltipRight .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipRight .dijitTooltipContainer:before{right:100%;top:50%}.dijitTooltip.dijitTooltipRight .dijitTooltipContainer:before{border-right:7px solid #ccc;border-top:7px solid transparent;border-bottom:7px solid transparent;margin-top:-7px}.dijitTooltip.dijitTooltipRight .dijitTooltipContainer:after{border-right:6px solid #fff;border-top:6px solid transparent;border-bottom:6px solid transparent;margin-top:-6px}.dijitTooltip.dijitTooltipAbove{padding-bottom:15px}.dijitTooltip.dijitTooltipAbove .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipAbove .dijitTooltipContainer:before{content:'';width:0;height:0;position:absolute}.dijitTooltip.dijitTooltipAbove .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipAbove .dijitTooltipContainer:before{top:100%;left:50%}.dijitTooltip.dijitTooltipAbove .dijitTooltipContainer:before{border-top:7px solid #ccc;border-left:7px solid transparent;border-right:7px solid transparent;margin-left:-7px}.dijitTooltip.dijitTooltipAbove .dijitTooltipContainer:after{border-top:6px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;margin-left:-6px}.dijitTooltip.dijitTooltipBelow{padding-top:15px}.dijitTooltip.dijitTooltipBelow .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipBelow .dijitTooltipContainer:before{content:'';width:0;height:0;position:absolute}.dijitTooltip.dijitTooltipBelow .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipBelow .dijitTooltipContainer:before{bottom:100%;left:50%}.dijitTooltip.dijitTooltipBelow .dijitTooltipContainer:before{border-bottom:7px solid #ccc;border-left:7px solid transparent;border-right:7px solid transparent;margin-left:-7px}.dijitTooltip.dijitTooltipBelow .dijitTooltipContainer:after{border-bottom:6px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;margin-left:-6px}.dijitTooltip .dijitTooltipContainer{background:#fff;border:#ccc solid 1px;color:#191918;padding:20px 15px;position:relative;font-size:16px;text-align:center;font-family:'Arial CE',Arial,Helvetica,sans-serif;border-radius:2px}.dijitTooltip.dijitTooltipABRight .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipABRight .dijitTooltipContainer:before{right:10px;left:auto}.dijitTooltip.dijitTooltipABLeft .dijitTooltipContainer:after,.dijitTooltip.dijitTooltipABLeft .dijitTooltipContainer:before{left:10px}.vf-fc-loaded-base .dijitTooltip .dijitTooltipContainer{font-family:VodafoneRg,'Arial CE',Arial,Helvetica,sans-serif}.tundra .dijitTextBox{margin:0}.tundra .dijitPopup{position:absolute;background-color:transparent;margin:0;border:0;padding:0;z-index:1010!important}.tundra .dijitMenu{background:#fff;border:2px solid #434241;border-top:none;text-align:left;box-sizing:content-box}.tundra .dijitMenu li.dijitMenuItem{padding:10px 14px;background:#fff;cursor:pointer;border-top:1px solid #ccc;white-space:normal}.tundra .dijitMenu li.dijitMenuItem.dijitMenuItemSelected,.tundra .dijitMenu li.dijitMenuItem:hover{background-color:#ededed;color:#000}.tundra .dijitComboBoxHighlightMatch{background-color:#ccc}@media only screen and (min-width:560px){.obsahNadMapou h1,.obsahNadMapou p{max-width:65%}}@media only screen and (min-width:767px){#widget_VFMaps_map_FindNearestFeatures_Dialog_location_address_dropdown ul{max-width:396px;margin-top:-2px;border-top:2px solid #434241;border-radius:0 0 5px 5px}.obsahNadMapou h1,.obsahNadMapou p{max-width:45%}}@keyframes iconPulsing{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1)}50%{-webkit-transform:scale(.9);-moz-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9)}100%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1)}}.iconPulsing{color:#9c2aa0!important}.iconPulsing .icon{animation:iconPulsing .5s infinite linear;display:inline-block}.mapLayerSwitcherWrapper{overflow:hidden;overflow-x:auto;background:#eee;padding:20px 10px}@media only screen and (min-width:830px){.mapLayerSwitcherWrapper{background:0 0;margin:0;padding:0;position:absolute;top:20px;left:20px;z-index:1006}}.button-menu{white-space:nowrap;text-align:left;width:auto;margin:0}.button-menu__button.button-menu__button{margin-top:0;margin-bottom:0;background:#fff;color:#434241;border-color:#6e6e6e}.button-menu__button.button-menu__button.-active{background:#434241;color:#fff;border-color:#434241}.button-menu__button.button-menu__button:focus,.button-menu__button.button-menu__button:hover{text-decoration:none;color:#434241;background:#d5d5d5}.button-menu__button.button-menu__button.-active:focus,.button-menu__button.button-menu__button.-active:hover{color:#fff;background:#434241;cursor:default}.mapSearchInputContainer{background:#eee;padding:10px 0}@media only screen and (min-width:767px){.mapSearchInputContainer{padding:0;background:0 0;position:absolute;top:-105px;left:0;right:0}}@media (pointer:coarse){#li_DragMap{display:none}}.maps-filter{max-width:900px}.maps-filter .maps-filter__search{display:flex;flex-direction:column;gap:16px;align-items:stretch}@media only screen and (min-width:560px){.maps-filter .maps-filter__search{flex-direction:row}}.maps-filter .maps-filter__input{position:relative}@media only screen and (min-width:560px){.maps-filter .maps-filter__input{flex:0 1 500px}}.maps-filter .maps-filter__button{margin:0}.maps-filter .select2-container{width:100%}.maps-filter .select2-container.select2-container-active .select2-choice{border-color:#272727}.maps-filter .cancelButton{position:absolute;top:50%;right:16px;transform:translateY(-50%);border:0;width:32px;height:32px;text-indent:-100px;cursor:pointer;overflow:hidden;background:transparent no-repeat center center/24px 24px url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20192%20192'%3E%3Ctitle%3EZav%C5%99%C3%ADt%3C/title%3E%3Cpath%20d='M48%20144l96-96'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='12'%20stroke='%23333'/%3E%3Cpath%20d='M144%20144L48%2048'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='12'%20stroke='%23333'/%3E%3C/svg%3E")}.maps-filter .select2-choice{border-radius:6px;padding:18px 15px;background:#fff;height:auto;border:0;box-shadow:0 2.13px 8.51px 0 hsla(0,0%,0%,.16);color:#6d6d6d}.maps-filter .select2-choice:hover{border-color:#272727}.maps-filter .select2-container .select2-choice>.select2-chosen{margin:0 8px 0 40px}.maps-filter .select2-arrow.select2-arrow{background:0 0;border:0;width:60px;right:auto;left:0}.page-header__wrapper .maps-filter .select2-arrow.select2-arrow{width:40px}.maps-filter .select2-arrow.select2-arrow b{background:no-repeat center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' fill='none' viewBox='0 0 35 35'%3E%3Cpath stroke='%23E60000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.064' d='m21.42 20.53 10.005 10.005M24.33 13.507c0 5.486-4.447 9.933-9.932 9.933-5.486 0-9.933-4.447-9.933-9.933s4.447-9.933 9.933-9.933c5.485 0 9.932 4.447 9.932 9.933Z'/%3E%3C/svg%3E")!important}.page-header__wrapper .maps-filter .select2-arrow.select2-arrow b{background:no-repeat center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 192'%3E%3Cpath fill='%23333' d='M96 134c-1 0-2-.4-2.8-1.2l-68-68c-1.6-1.6-1.6-4.1 0-5.7 1.6-1.6 4.1-1.6 5.7 0L96 124.3l65.2-65.2c1.6-1.6 4.1-1.6 5.7 0 1.6 1.6 1.6 4.1 0 5.7l-68 68c-.9.8-1.9 1.2-2.9 1.2z'%3E%3C/path%3E%3C/svg%3E")!important;background-size:60%!important}.maps-filter .select2-dropdown-open .select2-arrow.select2-arrow b{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 192'%3E%3Cpath d='M164 134c-1 0-2-.4-2.8-1.2L96 67.7l-65.2 65.2c-1.6 1.6-4.1 1.6-5.7 0-1.6-1.6-1.6-4.1 0-5.7l68-68c1.6-1.6 4.1-1.6 5.7 0l68 68c1.6 1.6 1.6 4.1 0 5.7-.8.7-1.8 1.1-2.8 1.1z'%3E%3C/path%3E%3C/svg%3E")!important}.select2-drop.select2-drop.select2-drop{border-radius:6px;background:#fff;border:0;padding:0;overflow:hidden;z-index:9998;margin-top:-62px;box-shadow:0 15.58px 23.37px 0 hsla(0,0%,0%,.12)}.select2-drop.select2-drop.select2-drop.select2-drop-above{margin-top:46px}.select2-search.select2-search.select2-search{padding:0}.roaming-country-detail .select2-search.select2-search.select2-search{margin-top:-15px}.select2-search.select2-search.select2-search input{border:0;margin-top:0;border-radius:6px 6px 0 0;min-height:46px;padding:18px 15px 18px 56px;font-family:VodafoneLt,'Arial CE',Arial,Helvetica,sans-serif;background:no-repeat #fff 13px 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' fill='none' viewBox='0 0 35 35'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.064' d='m21.42 20.53 10.005 10.005M24.33 13.507c0 5.486-4.447 9.933-9.932 9.933-5.486 0-9.933-4.447-9.933-9.933s4.447-9.933 9.933-9.933c5.485 0 9.932 4.447 9.932 9.933Z'/%3E%3C/svg%3E")!important;max-width:none}.select2-search.select2-search.select2-search input:focus{outline:0}.select2-search.select2-search.select2-search input:focus-visible{outline-offset:-5px}.select2-container:has(.select2-focusser:focus-visible) .select2-choice{outline:3px solid #007c92;outline-offset:2px}.select2-results.select2-results{margin:0;padding:0}.select2-results.select2-results li{padding:0 20px}.select2-results.select2-results .select2-highlighted{background:#eee;color:#333}.select2-results.select2-results .select2-result{position:relative}.select2-results.select2-results .select2-no-results{padding-top:18px;padding-bottom:18px}.select2-results.select2-results .select2-result-label{padding:20px 0 20px 53px;border-top:1px solid #bebebe}.tundra .dijitComboBox .dijitButtonNode{padding:2px}.tundra .dijitDialog{z-index:1005!important;border:1px solid #ccc;background:#fff}.tundra .dijitComboBoxMenuPopup{z-index:1600!important}.tundra .dijitDialogTitleBar{background:0 0;padding:0 0 1px 0}.tundra .dijitDialogTitle{display:block;font-size:1.9em;line-height:1.2em;text-align:left;padding:18px 25px 15px 0;margin:0 20px 15px 20px;font-family:VodafoneRgBd,'Arial CE',Arial,Helvetica,sans-serif;border-bottom:1px solid #c1c1c1}.tundra .dijitDialogCloseIcon,.tundra .dijitDialogCloseIconHover{width:26px;height:26px;background:url(/webs/vodafonecz/images/socWr-close.png) no-repeat #adadad center center;border-radius:20px;display:block;position:absolute;cursor:pointer}.tundra .dijitDialogCloseIconHover{background-color:#ef0000}.tundra .dijitDialogCloseIcon{top:20px;right:20px}.tundra .dijitDialogCloseIcon span{display:none}.tundra .dijitDialogPaneContent{border:none;padding:0;text-align:left;font-size:1.2em}.tundra .dijitDialogPaneContent .dialogBg{background:#f2f2f2;margin:0 13px 4px 15px;padding:10px 13px 0 13px}.tundra .dijitDialogPaneContent .butt{padding:7px 15px 15px 15px}.tundra .dijitDialog .input{position:relative;width:100%;padding:0 0 6px 0}.tundra .dijitDialog .input label{position:relative;top:0;left:0;padding:0 0 5px 0;margin:0;float:none;width:auto;color:#666;font-weight:400}.tundra .dijitDialog .fl{float:left}.tundra .dijitDialog .fr{float:right}.tundra .dijitDialog .dijitInlineTable{display:block}.tundra .dijitDialog .dijitInputContainer input,.tundra .dijitDialog .dijitTextBox{padding:2px 4px!important}.tundra .dijitDialog .dijitTextBox{width:auto}.tundra .dijitDialog .dijitTextBox input{float:none;color:#666}.tundra .dijitDialog .dijitTextBoxError .dijitValidationContainer{display:none}.atm-cluster-icon,.servicecenter-cluster-icon,.store-cluster-icon,.store-disabled-cluster-icon{color:#fff;font-size:14px;display:flex;justify-content:center;align-items:center}.store-cluster-icon{background:url(/webs/vodafonecz/images/vfmaps/markers/ico_red-round.png) no-repeat 0 0}.store-disabled-cluster-icon{background:url(/webs/vodafonecz/images/vfmaps/markers/ico_grey-round.png) no-repeat 0 0;padding-top:9px}.atm-cluster-icon{background:url(/webs/vodafonecz/images/vfmaps/markers/ico_blue-round_2.png) no-repeat 0 0;padding-top:8px}.servicecenter-cluster-icon{background:url(/webs/vodafonecz/images/vfmaps/markers/ico_yellow-round_2.png) no-repeat 0 0;padding-top:8px}.store-popup-images{overflow:hidden}.store-popup-image{width:75px;height:75px;overflow:hidden;margin-right:10px;text-align:center;display:block;float:left}.openingNoteTooltip{font-size:20px;margin-left:5px;color:#858585}.openingHours td,.openingHours th{line-height:1.3em;vertical-align:top}.openingHours td{padding-right:0}.store-bubble-data{display:flex;gap:16px}.store-bubble-data>*{flex:1}#storeBubble{text-align:left;line-height:1.3em}#storeBubble td,#storeBubble th{padding:0 10px 0 0;white-space:nowrap}#storeBubble p{margin-bottom:15px}#storeBubble h4{font-size:18px;margin-bottom:10px}#storeBubble table{margin-bottom:10px}#storeBubble table td.openingNote{white-space:normal!important}#storeBubble .button{margin-right:13px!important}#storeBubble .svg{height:50px!important;max-width:none}#storeBubble .svg80{height:80px!important}#storeBubble .svg70{height:70px!important}#storeBubble .svg60{height:60px!important}#storeBubble .svg100{height:100px!important}#storeBubble .svg40.svg40{height:40px!important}#storeBubble .svg35.svg35{height:35px!important}#storeBubble .svg30.svg30{height:30px!important}#storeBubble .svg25.svg25{height:25px!important}#storeBubble .bubbleStoreParameters{margin:0 0 20px 0}#storeBubble .bubbleStoreParameters>*{margin-left:10px}#storeBubble .bubbleStoreParameters>:first-child{margin-left:0}#atmBubble .atmBubbleBg,#scBubble .scBubbleBg,#storeBubble .storeBubbleBg{margin:0 20px 15px 0}#atmBubble h3,#storeBubble h2{padding:10px 0 0 0!important}#atmBubble .button,#main .right .button,#scBubble .button,#storeBubble .button{margin-bottom:10px!important}#storeBubble .butt{padding:0 15px 5px 15px}#storeBubble .butt p{padding:0!important;margin:0!important}#storeBubble .butt p.bubbleContacts{margin-bottom:15px}.bubbleContacts span{margin:0 6px}.bubbleContacts a{white-space:nowrap}@media only screen and (max-width:1000px){#storeBubble{width:250px!important}#bubbleLeftCol,#bubbleRightCol{float:none!important;width:auto!important}}@media only screen and (max-width:768px) and (min-width:661px){#storeBubble .bubbleEmail{display:none}#atmBubble,#scBubble,#storeBubble{width:215px!important}.bubbleContacts span{display:none}.bubbleContacts a{display:block}#storeBubble .in-mobile{display:inline}}@media only screen and (max-width:660px){#storeBubble .not-mobile{display:none}#storeBubble .in-mobile{display:inline}#atmBubble,#scBubble,#storeBubble{width:215px!important}.bubbleContacts a{display:block;padding-top:8px}}#VFMaps_map{height:300px}.storesInfoContainer .cleanTable{width:auto;margin:0 auto}.storesInfoContainer .cleanTable td,.storesInfoContainer .cleanTable th{padding-top:6px;padding-bottom:0}.storesInfoContainer .cleanTable tr:first-child td,.storesInfoContainer .cleanTable tr:first-child th{padding-top:0}.storesInfoContainer .cleanTable .openingNoteRow .openingNote{text-align:left;padding:0;font-size:.9em;line-height:1.2}.storesInfoContainer .openingNote{text-align:center}.storesInfoContainer .openingNote p:first-child{margin-top:0}.storesInfoContainer .storeParam{line-height:1.5}.storesInfoContainer .storeParam a{text-decoration:none}.storesInfoContainer .storeParam a .link{text-decoration:underline}.storesInfoContainer .storeParam .svg{margin:0 5px 0 0!important}.storesInfoContainer .detailStoreParam{display:flex;justify-content:center}.storesInfoContainer .detailStoreParam img{margin:5px 20px 0 0!important}.safari .storesInfoContainer .box2{min-height:280px}html{scroll-behavior:smooth}.help-boxes{display:flex;flex-direction:column;gap:16px;max-width:900px;margin:0 auto}.help-boxes .toggle-box__content-area{height:auto!important;display:none!important;transition:height .25s ease-in}.help-boxes .toggle-box__content-area.-open{display:block!important}.help-box{display:flex;flex-direction:column;gap:8px}@media only screen and (min-width:560px){.help-box{align-items:center;flex-direction:row;gap:32px}.help-box svg{flex:0 0 64px}.help-box .button{white-space:nowrap;min-width:170px;display:block}}.help-form{max-width:600px;margin:0 auto}.help-form fieldset{display:flex;flex-direction:column;gap:16px}.help-form .fRow{display:flex;gap:16px;flex-direction:column}@media only screen and (min-width:560px){.help-form .fRow{flex-direction:row}.help-form .fRow .fCell{flex:1}}.help-form label{margin-bottom:.3em;display:block;position:relative}.help-form .required{display:none}.help-form .error{margin-top:.1em;color:#e60000}.help-form .g-recaptcha,.help-form .preventing-spam{display:none}.help-form input[type=checkbox]+label{padding-left:35px;padding-top:2px}.help-form input[type=checkbox]+label:before{width:20px;height:20px;border:1px solid #999;border-radius:3px;position:absolute;display:inline-block;margin:0 10px 0 0;content:"";top:1px;left:0;color:#fff;font-size:29px;text-indent:-4px;line-height:22px;background:#fff}.help-form input[type=checkbox]:checked+label:before{border-color:#007c92;background:#007c92 center center no-repeat url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTIgMTkyIiBhcmlhLWhpZGRlbj0idHJ1ZSI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTczLjYgMTQwLjJjLTEuMSAwLTIuMS0uNC0yLjgtMS4yTDM1IDEwMy4yYy0xLjYtMS42LTEuNi00LjEgMC01LjcgMS42LTEuNiA0LjEtMS42IDUuNyAwbDMyLjkgMzIuOSA3Ny42LTc3LjZjMS42LTEuNiA0LjEtMS42IDUuNyAwIDEuNiAxLjYgMS42IDQuMSAwIDUuN0w3Ni40IDEzOWMtLjcuOC0xLjcgMS4yLTIuOCAxLjJ6Ii8+PC9zdmc+);background-size:26px 20px}.store-details{display:flex;flex-direction:column;flex-wrap:wrap;gap:16px}@media only screen and (min-width:767px){.store-details{flex-direction:row;justify-content:center}}@media only screen and (min-width:767px){.store-details .box{flex:0 0 350px}}.store-details .svg30{height:30px}.store-details__icon{height:64px}.stores-list{display:flex;flex-direction:column;gap:16px;max-width:900px;margin:0 auto}.stores-list__row{display:flex;flex-direction:column;gap:8px}.stores-list__row h3{margin-bottom:.2em}@media only screen and (min-width:560px){.stores-list__row{flex-direction:row;align-items:center;gap:16px;justify-content:space-between}}.stores-list__experts.stores-list__experts img,.stores-list__experts.stores-list__experts svg{width:36px;height:36px}.stores-list__experts.stores-list__experts a.tooltip{cursor:pointer}@media only screen and (min-width:560px){.stores-list__experts.stores-list__experts{flex:0 1 120px;text-align:right}}@media only screen and (min-width:560px){.stores-list__hours{flex:0 1 28%}}@media only screen and (min-width:560px){.stores-list__name{flex:0 1 40%}}.experts-box .closeButton{top:10px!important}.detail-prodejny .leaflet-popup{display:none}.map-button-under-stores-list{display:none}.mfp-content{height:auto}.mfp-figure figure{padding:10px 0}.successBox{color:#1d9b06}.errorBox{color:#e60000}@media only screen and (min-width:767px){.experts-box .closeButton{top:20px!important;right:0!important}.detail-prodejny .leaflet-popup{display:block}.map-button-under-stores-list{display:block}.safari .what-we-offer .box2{min-height:440px}}.help-form.help-form .select2-container{width:100%}.help-form.help-form .select2-container.select2-container-active .select2-choice{border-color:#272727}.help-form.help-form .select2-choice{border-radius:6px;padding:18px 15px;background:#fff;height:auto;border:1px solid #333;color:#6d6d6d}.help-form.help-form .select2-choice:hover{border-color:#272727}.help-form.help-form .select2-container .select2-choice>.select2-chosen{margin:0 8px 0 40px}.help-form.help-form .select2-arrow.select2-arrow{background:0 0;border:0;width:60px;right:auto;left:0}.page-header__wrapper .help-form.help-form .select2-arrow.select2-arrow{width:40px}.help-form.help-form .select2-arrow.select2-arrow b{background:no-repeat center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' fill='none' viewBox='0 0 35 35'%3E%3Cpath stroke='%23E60000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.064' d='m21.42 20.53 10.005 10.005M24.33 13.507c0 5.486-4.447 9.933-9.932 9.933-5.486 0-9.933-4.447-9.933-9.933s4.447-9.933 9.933-9.933c5.485 0 9.932 4.447 9.932 9.933Z'/%3E%3C/svg%3E")!important}.help-form.help-form .select2-arrow.select2-arrow b{background:no-repeat center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' fill='none' viewBox='0 0 35 35'%3E%3Cpath stroke='%23E60000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.064' d='m21.42 20.53 10.005 10.005M24.33 13.507c0 5.486-4.447 9.933-9.932 9.933-5.486 0-9.933-4.447-9.933-9.933s4.447-9.933 9.933-9.933c5.485 0 9.932 4.447 9.932 9.933Z'/%3E%3C/svg%3E")!important}.page-header__wrapper .help-form.help-form .select2-arrow.select2-arrow b{background:no-repeat center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 192'%3E%3Cpath fill='%23333' d='M96 134c-1 0-2-.4-2.8-1.2l-68-68c-1.6-1.6-1.6-4.1 0-5.7 1.6-1.6 4.1-1.6 5.7 0L96 124.3l65.2-65.2c1.6-1.6 4.1-1.6 5.7 0 1.6 1.6 1.6 4.1 0 5.7l-68 68c-.9.8-1.9 1.2-2.9 1.2z'%3E%3C/path%3E%3C/svg%3E")!important;background-size:60%!important}.help-form.help-form .with-calendar .select2-arrow.select2-arrow b{background:no-repeat center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='21' viewBox='0 0 18 21' fill='none'%3E%3Cpath d='M5 0.53125V3.53125' stroke='%23e60000' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M13 0.53125V3.53125' stroke='%23e60000' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M17.5 17.5312C17.5 18.6328 16.6055 19.5312 15.5 19.5312H2.5C1.39453 19.5312 0.5 18.6328 0.5 17.5312V4.53125C0.5 3.42578 1.39453 2.53125 2.5 2.53125H17.5V17.5312Z' stroke='%23e60000' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M17.5 5.56641H0.5' stroke='%23e60000' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M3.5 8.55078H5.07812C5.35547 8.55078 5.57812 8.77344 5.57812 9.05078V10.6289C5.57812 10.9062 5.35547 11.1289 5.07812 11.1289H3.5C3.22266 11.1289 3 10.9062 3 10.6289V9.05078C3 8.77344 3.22266 8.55078 3.5 8.55078Z' stroke='%23e60000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.17969 8.55078H9.75781C10.0352 8.55078 10.2578 8.77344 10.2578 9.05078V10.6289C10.2578 10.9062 10.0352 11.1289 9.75781 11.1289H8.17969C7.90234 11.1289 7.67969 10.9062 7.67969 10.6289V9.05078C7.67969 8.77344 7.90234 8.55078 8.17969 8.55078Z' stroke='%23e60000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.9219 8.54688H14.5C14.7773 8.54688 15 8.76953 15 9.04688V10.625C15 10.8984 14.7773 11.125 14.5 11.125H12.9219C12.6445 11.125 12.4219 10.8984 12.4219 10.625V9.04688C12.4219 8.76953 12.6445 8.54688 12.9219 8.54688Z' stroke='%23e60000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.5 13.9727H5.07812C5.35547 13.9727 5.57812 14.1953 5.57812 14.4727V16.0508C5.57812 16.3281 5.35547 16.5508 5.07812 16.5508H3.5C3.22266 16.5508 3 16.3281 3 16.0508V14.4727C3 14.1953 3.22266 13.9727 3.5 13.9727Z' stroke='%23e60000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.17969 13.9727H9.75781C10.0352 13.9727 10.2578 14.1953 10.2578 14.4727V16.0508C10.2578 16.3281 10.0352 16.5508 9.75781 16.5508H8.17969C7.90234 16.5508 7.67969 16.3281 7.67969 16.0508V14.4727C7.67969 14.1953 7.90234 13.9727 8.17969 13.9727Z' stroke='%23e60000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.9219 13.9648H14.5C14.7773 13.9648 15 14.1914 15 14.4648V16.0469C15 16.3203 14.7773 16.5469 14.5 16.5469H12.9219C12.6445 16.5469 12.4219 16.3203 12.4219 16.0469V14.4648C12.4219 14.1914 12.6445 13.9648 12.9219 13.9648Z' stroke='%23e60000' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important}.help-form.help-form .with-clock .select2-arrow.select2-arrow b{background:no-repeat center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M13.25 13.2812L10 10.0312V3.53125' stroke='%23e60000' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.5 10C19.5 15.2461 15.2461 19.5 10 19.5C4.75391 19.5 0.5 15.2461 0.5 10C0.5 4.75391 4.75391 0.5 10 0.5H19.5V10Z' stroke='%23e60000'/%3E%3C/svg%3E")!important}.select2-dropdown-open .select2-arrow.select2-arrow b{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 192'%3E%3Cpath d='M164 134c-1 0-2-.4-2.8-1.2L96 67.7l-65.2 65.2c-1.6 1.6-4.1 1.6-5.7 0-1.6-1.6-1.6-4.1 0-5.7l68-68c1.6-1.6 4.1-1.6 5.7 0l68 68c1.6 1.6 1.6 4.1 0 5.7-.8.7-1.8 1.1-2.8 1.1z'%3E%3C/path%3E%3C/svg%3E")!important}.select2-drop.select2-drop.select2-drop{border-radius:6px;background:#fff;border:0;padding:0;overflow:hidden;z-index:9998;margin-top:-62px;box-shadow:0 15.58px 23.37px 0 hsla(0,0%,0%,.12)}.select2-drop.select2-drop.select2-drop.select2-drop-above{margin-top:46px}.select2-search.select2-search.select2-search{padding:0}.roaming-country-detail .select2-search.select2-search.select2-search{margin-top:-15px}.select2-search.select2-search.select2-search input{border:0;margin-top:0;border-radius:6px 6px 0 0;min-height:46px;padding:18px 15px 18px 56px;font-family:VodafoneLt,'Arial CE',Arial,Helvetica,sans-serif;background:no-repeat #fff 13px 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' fill='none' viewBox='0 0 35 35'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.064' d='m21.42 20.53 10.005 10.005M24.33 13.507c0 5.486-4.447 9.933-9.932 9.933-5.486 0-9.933-4.447-9.933-9.933s4.447-9.933 9.933-9.933c5.485 0 9.932 4.447 9.932 9.933Z'/%3E%3C/svg%3E")!important;max-width:none}.select2-search.select2-search.select2-search input:focus{outline:0}.select2-search.select2-search.select2-search input:focus-visible{outline-offset:-5px}.select2-results.select2-results{max-height:225px}.select2-container:has(.select2-focusser:focus-visible) .select2-choice{outline:3px solid #007c92;outline-offset:2px}.select2-results.select2-results{margin:0;padding:0}.select2-results.select2-results li{padding:0 20px}.select2-results.select2-results .select2-highlighted{background:#eee;color:#333}.select2-results.select2-results .select2-result{position:relative}.select2-results.select2-results .select2-no-results{padding-top:18px;padding-bottom:18px}.select2-results.select2-results .select2-result-label{padding:20px 0 20px 53px;border-top:1px solid #bebebe}@media screen{.giantFilter{position:relative}.giantFilter.pageContainer.pageContainer{padding:0 20px}.giantFilter .fCell,.giantFilter .input,.giantFilter .select{margin:0}.giantFilter .fCell{margin:0 0 10px 0;position:relative}.giantFilter .buttonCell{text-align:center;clear:both}.giantFilter .buttonCell .button{padding:14px 15px;font-size:16px;margin:0}.giantFilter .giantFilter__form{background:#010101;margin:0 -20px 0 -20px;padding:20px}.giantFilter .giantFilter__form .select2-container .select2-choice{padding:15px 20px 15px 25px}.giantFilter .giantFilter__form .select2-container .select2-choice>.select2-chosen{text-align:left;font-size:14px;padding:3px 0;font-family:open_sans,'Arial CE',Arial,'Verdana CE',Verdana,sans-serif;margin:0 0 0 30px;font-weight:400}.giantFilter .giantFilter__form .select2-container .select2-choice .select2-arrow{border:0;border-radius:0;width:54px;right:auto;left:0}.giantFilter .giantFilter__form .select2-container .select2-choice .select2-arrow b:before{display:none}.giantFilter .giantFilter__form .select2-container .select2-choice .select2-arrow b:after{border-top-color:#6b6967;border-width:8px;margin-top:-2px}.giantFilter .giantFilter__form .searchSelect .select2-container .select2-choice .select2-arrow b{font-family:vodafone-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.giantFilter .giantFilter__form .searchSelect .select2-container .select2-choice .select2-arrow b:before{display:block;content:"\30";border:0;color:#ccc;font-size:28px;margin-top:-13px;margin-left:-13px}.giantFilter .giantFilter__form .searchSelect .select2-container .select2-choice .select2-arrow b:after{display:none}.giantFilter .cancelButton{position:absolute;top:9px;right:15px;border:0;background:0;width:30px;line-height:30px;font-size:28px;color:#333}.giantFilter__sublink{margin-top:20px;clear:both}.giantFilter__sublink--light a{color:#fff}.giantFilter__sublink--light a:hover{color:#f1f1f1}}@media only screen and (min-width:560px){.giantFilter__form .fCell{float:right;width:42%}.giantFilter__form .fCell.first-child{float:left;width:56%}.giantFilter__form .buttonCell .button{padding-left:30px;padding-right:30px}}@media only screen and (min-width:767px){.with-giantFilter{padding-bottom:180px}.giantFilter.pageContainer.pageContainer{padding:0;background:0 0}.giantFilter .giantFilter__form{position:absolute;top:-140px;width:100%;margin:0;padding:0;background:0 0}.giantFilter .giantFilter__form .select2-container .select2-choice{padding:27px 20px 27px 25px}.giantFilter .giantFilter__form .select2-container .select2-choice>.select2-chosen{font-size:18px;margin:0 0 0 43px}.giantFilter .giantFilter__form .select2-container .select2-choice .select2-arrow{left:8px}.giantFilter .giantFilter__form .button{width:100%;padding:31px 30px;font-size:20px;height:79px}.giantFilter .giantFilter__form .fCell{float:left;width:29%;margin-right:1%}.giantFilter .giantFilter__form .fCell.first-child{width:49%}.giantFilter .giantFilter__form .buttonCell{clear:none;float:right;width:20%}.giantFilter .giantFilter__form .buttonCell .button{width:100%;padding:27px 30px;font-size:20px}.giantFilter .cancelButton{top:20px;right:25px}.giantFilter__sublink{text-align:left}}.deafFriendlyPopup .mfp-content{height:100%}.deafFriendlyPopup .white-popup{width:100%;max-width:1000px;height:100%;background:#eee;padding:0;border-radius:0}.deafFriendlyPopup .white-popup .iframe-popup-wrap{-webkit-overflow-scrolling:touch;width:100%;height:100%;overflow:auto}.deafFriendlyPopup .white-popup .mfp-close{cursor:pointer;top:-30px;right:-30px;color:#fff}.deafFriendlyPopup .white-popup iframe{width:100%;height:100%}.toggle-box__trigger-arrow{display:inline-block;transition:transform .25s;margin-left:15px;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Cg%3E%3Cpolyline points='38 2 20 18 2 2' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/polyline%3E%3C/g%3E%3C/svg%3E");background-position:center center;background-size:15px auto;background-repeat:no-repeat;width:15px;height:15px}.-open .toggle-box__trigger-arrow{transform:rotate(180deg)}.toggle-box__content-area{transition:all .5s;transition-timing-function:ease-in-out;height:0;overflow:hidden}.toggle-box__content-area.-ta-fade{opacity:0}.toggle-box__trigger-area.-ta-hide{transition:all .5s;transition-timing-function:ease-in-out;overflow:hidden}.toggle-box__trigger-area.-ta-fade{opacity:1}
/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('select2.png') no-repeat 100% -22px;
    background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url('select2.png') no-repeat -37px -22px;
    background: url('select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100%;
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}.tippy-box[data-theme~=light]{color:#26323d;box-shadow:0 0 20px 4px #9aa1b126,0 4px 80px -8px #24282f40,0 4px 4px -2px #5b5e6926;background-color:#fff}.tippy-box[data-theme~=light][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=light][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff}.tippy-box[data-theme~=light][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=light][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff}.tippy-box[data-theme~=light]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=light]>.tippy-svg-arrow{fill:#fff}.tooltip{display:inline-block;vertical-align:middle;cursor:help;line-height:0}.tooltip svg{width:24px;height:24px}._skin-dark .tooltip path,._skin-dark .tooltip circle{stroke:#eb9700}.tooltip:focus-visible{box-shadow:0 0 0 2px #00798f;border-radius:50%;outline:none}._skin-dark .tooltip:focus-visible{box-shadow:0 0 0 2px #00b0ca}.tippy-box[data-theme~=light]{border-radius:15px;padding:12px;font-size:16px}.tippy-box[data-theme~=light] a{color:#000}._skin-dark .tippy-box[data-theme~=light] a{color:#fff}.tippy-box[data-theme~=light] a:hover{color:#000;text-decoration:none}._skin-dark .tippy-box[data-theme~=light] a:hover{color:#fff}.tippy-box[data-theme~=light] a:active{color:#e60000}._skin-dark .tippy-box[data-theme~=light]{box-shadow:none;background-color:#434241;color:#d9d9d9}._skin-dark .tippy-box[data-theme~=light][data-placement^=top]>.tippy-arrow:before{border-top-color:#434241}._skin-dark .tippy-box[data-theme~=light][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#434241}._skin-dark .tippy-box[data-theme~=light][data-placement^=left]>.tippy-arrow:before{border-left-color:#434241}._skin-dark .tippy-box[data-theme~=light][data-placement^=right]>.tippy-arrow:before{border-right-color:#434241}
.alert-message{display:flex;margin:15px 0;border-radius:6px}.alert-message__icon,.alert-message__text,.alert-message__close{display:flex;align-items:center;padding:13px 16px}.alert-message__icon{flex:0 0 50px;justify-content:center;border-radius:6px 0 0 6px}.alert-message__text{flex:1 1 auto}.-with-border .alert-message__text{margin:1px 0}.alert-message__close{flex:0 0 50px;border-radius:0 5px 5px 0}.-with-border .alert-message__close{margin:1px 1px 1px 0}.alert-message__button{flex:0 0 24px;cursor:pointer;border:0;background:transparent no-repeat center / cover url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJWcnN0dmFfMSIgeD0iMCIgeT0iMCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTkyIDE5MiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHN0eWxlPi5zdDB7ZmlsbDojMzMzfTwvc3R5bGU+PHRpdGxlPmNsb3NlPC90aXRsZT48cGF0aCBkPSJNMTAxLjcgOTZsNDUuMi00NS4yYzEuNi0xLjYgMS42LTQuMSAwLTUuNy0xLjYtMS42LTQuMS0xLjYtNS43IDBMOTYgOTAuMyA1MC44IDQ1LjJjLTEuNi0xLjYtNC4xLTEuNi01LjcgMC0xLjYgMS42LTEuNiA0LjEgMCA1LjdMOTAuMyA5NmwtNDUuMiA0NS4yYy0xLjYgMS42LTEuNiA0LjEgMCA1LjcuOS43IDEuOSAxLjEgMi45IDEuMXMyLS40IDIuOC0xLjJMOTYgMTAxLjdsNDUuMiA0NS4yYy44LjggMS44IDEuMiAyLjggMS4yczItLjQgMi44LTEuMmMxLjYtMS42IDEuNi00LjEgMC01LjdMMTAxLjcgOTZ6IiBjbGFzcz0ic3QwIi8+PC9zdmc+);padding:0;width:24px;height:24px}
/*!
 * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */.row{display:flexbox;display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;padding-right:15px;padding-left:15px;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.333333%;max-width:8.333333%}.col-2{flex:0 0 16.666667%;max-width:16.666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.333333%;max-width:33.333333%}.col-5{flex:0 0 41.666667%;max-width:41.666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.333333%;max-width:58.333333%}.col-8{flex:0 0 66.666667%;max-width:66.666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.333333%;max-width:83.333333%}.col-11{flex:0 0 91.666667%;max-width:91.666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flexbox!important;display:flex!important}.d-inline-flex{display:inline-flexbox!important;display:inline-flex!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:15px!important}.mt-1,.my-1{margin-top:15px!important}.mr-1,.mx-1{margin-right:15px!important}.mb-1,.my-1{margin-bottom:15px!important}.ml-1,.mx-1{margin-left:15px!important}.m-2{margin:30px!important}.mt-2,.my-2{margin-top:30px!important}.mr-2,.mx-2{margin-right:30px!important}.mb-2,.my-2{margin-bottom:30px!important}.ml-2,.mx-2{margin-left:30px!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:15px!important}.pt-1,.py-1{padding-top:15px!important}.pr-1,.px-1{padding-right:15px!important}.pb-1,.py-1{padding-bottom:15px!important}.pl-1,.px-1{padding-left:15px!important}.p-2{padding:30px!important}.pt-2,.py-2{padding-top:30px!important}.pr-2,.px-2{padding-right:30px!important}.pb-2,.py-2{padding-bottom:30px!important}.pl-2,.px-2{padding-left:30px!important}.m-n1{margin:-15px!important}.mt-n1,.my-n1{margin-top:-15px!important}.mr-n1,.mx-n1{margin-right:-15px!important}.mb-n1,.my-n1{margin-bottom:-15px!important}.ml-n1,.mx-n1{margin-left:-15px!important}.m-n2{margin:-30px!important}.mt-n2,.my-n2{margin-top:-30px!important}.mr-n2,.mx-n2{margin-right:-30px!important}.mb-n2,.my-n2{margin-bottom:-30px!important}.ml-n2,.mx-n2{margin-left:-30px!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}@media only screen and (min-width: 560px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flexbox!important;display:flex!important}.d-sm-inline-flex{display:inline-flexbox!important;display:inline-flex!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:15px!important}.mt-sm-1,.my-sm-1{margin-top:15px!important}.mr-sm-1,.mx-sm-1{margin-right:15px!important}.mb-sm-1,.my-sm-1{margin-bottom:15px!important}.ml-sm-1,.mx-sm-1{margin-left:15px!important}.m-sm-2{margin:30px!important}.mt-sm-2,.my-sm-2{margin-top:30px!important}.mr-sm-2,.mx-sm-2{margin-right:30px!important}.mb-sm-2,.my-sm-2{margin-bottom:30px!important}.ml-sm-2,.mx-sm-2{margin-left:30px!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:130px!important}.mt-sm-4,.my-sm-4{margin-top:130px!important}.mr-sm-4,.mx-sm-4{margin-right:130px!important}.mb-sm-4,.my-sm-4{margin-bottom:130px!important}.ml-sm-4,.mx-sm-4{margin-left:130px!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:15px!important}.pt-sm-1,.py-sm-1{padding-top:15px!important}.pr-sm-1,.px-sm-1{padding-right:15px!important}.pb-sm-1,.py-sm-1{padding-bottom:15px!important}.pl-sm-1,.px-sm-1{padding-left:15px!important}.p-sm-2{padding:30px!important}.pt-sm-2,.py-sm-2{padding-top:30px!important}.pr-sm-2,.px-sm-2{padding-right:30px!important}.pb-sm-2,.py-sm-2{padding-bottom:30px!important}.pl-sm-2,.px-sm-2{padding-left:30px!important}.m-sm-n1{margin:-15px!important}.mt-sm-n1,.my-sm-n1{margin-top:-15px!important}.mr-sm-n1,.mx-sm-n1{margin-right:-15px!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-15px!important}.ml-sm-n1,.mx-sm-n1{margin-left:-15px!important}.m-sm-n2{margin:-30px!important}.mt-sm-n2,.my-sm-n2{margin-top:-30px!important}.mr-sm-n2,.mx-sm-n2{margin-right:-30px!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-30px!important}.ml-sm-n2,.mx-sm-n2{margin-left:-30px!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media only screen and (min-width: 767px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flexbox!important;display:flex!important}.d-md-inline-flex{display:inline-flexbox!important;display:inline-flex!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:15px!important}.mt-md-1,.my-md-1{margin-top:15px!important}.mr-md-1,.mx-md-1{margin-right:15px!important}.mb-md-1,.my-md-1{margin-bottom:15px!important}.ml-md-1,.mx-md-1{margin-left:15px!important}.m-md-2{margin:30px!important}.mt-md-2,.my-md-2{margin-top:30px!important}.mr-md-2,.mx-md-2{margin-right:30px!important}.mb-md-2,.my-md-2{margin-bottom:30px!important}.ml-md-2,.mx-md-2{margin-left:30px!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:15px!important}.pt-md-1,.py-md-1{padding-top:15px!important}.pr-md-1,.px-md-1{padding-right:15px!important}.pb-md-1,.py-md-1{padding-bottom:15px!important}.pl-md-1,.px-md-1{padding-left:15px!important}.p-md-2{padding:30px!important}.pt-md-2,.py-md-2{padding-top:30px!important}.pr-md-2,.px-md-2{padding-right:30px!important}.pb-md-2,.py-md-2{padding-bottom:30px!important}.pl-md-2,.px-md-2{padding-left:30px!important}.m-md-n1{margin:-15px!important}.mt-md-n1,.my-md-n1{margin-top:-15px!important}.mr-md-n1,.mx-md-n1{margin-right:-15px!important}.mb-md-n1,.my-md-n1{margin-bottom:-15px!important}.ml-md-n1,.mx-md-n1{margin-left:-15px!important}.m-md-n2{margin:-30px!important}.mt-md-n2,.my-md-n2{margin-top:-30px!important}.mr-md-n2,.mx-md-n2{margin-right:-30px!important}.mb-md-n2,.my-md-n2{margin-bottom:-30px!important}.ml-md-n2,.mx-md-n2{margin-left:-30px!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (width >= 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flexbox!important;display:flex!important}.d-lg-inline-flex{display:inline-flexbox!important;display:inline-flex!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (width >= 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flexbox!important;display:flex!important}.d-xl-inline-flex{display:inline-flexbox!important;display:inline-flex!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flexbox!important;display:flex!important}.d-print-inline-flex{display:inline-flexbox!important;display:inline-flex!important}}
.leadform-2020{background-color:#fff;border-radius:15px;max-width:900px;margin:0 auto;position:relative}._skin-dark .leadform-2020{background-color:#3d3d3d}@media only screen and (min-width:767px){.leadform-2020{display:flex;align-items:center}.leadform-2020.-speechmark{align-items:flex-start}}.leadform-2020 p{margin-bottom:15px}.leadform-2020 p.error{color:#e60000;margin:3px 0 0 0;font-size:13px}@media only screen and (min-width:560px){.leadform-2020 p.error{text-align:left}}._skin-dark .leadform-2020 p.error{color:#ff4348}.leadform-2020.-business{margin-top:140px}@media only screen and (min-width:767px){.leadform-2020.-business{margin-top:0;padding-left:280px;min-height:313px}}.leadform-2020__header{width:130px;padding:20px 20px 0 20px;position:relative}@media only screen and (min-width:767px){.leadform-2020__header{flex-shrink:0;width:36.73469%;padding:40px 50px 40px 40px;top:0;margin:0}.leadform-2020__header.-speechmark{margin-bottom:10px}}.-speechmark .leadform-2020__header{margin-bottom:-30px;transform:translateY(-30px)}@media only screen and (min-width:767px){.-speechmark .leadform-2020__header{transform:translateY(-54px)}}.-business .leadform-2020__header{width:230px;margin:0 auto -120px;top:-120px;transform:none}.-business .leadform-2020__header:after{content:'';position:absolute;right:0;bottom:0;left:0;background:linear-gradient(to bottom,rgba(255,255,255,0) 0,#fff 100%);height:60px}._skin-dark .-business .leadform-2020__header:after{background:linear-gradient(to bottom,rgba(61,61,61,0) 0,#3d3d3d 100%)}@media only screen and (min-width:767px){.-business .leadform-2020__header{position:absolute;top:-50px;right:0;left:0;padding:0;margin:0;width:260px}}@media only screen and (min-width:1023px){.-business .leadform-2020__header{top:auto;bottom:0}.-business .leadform-2020__header:after{display:none}}.leadform-2020__image{display:block}@media only screen and (min-width:767px){.-with-video .leadform-2020__image{display:none}}@supports (-webkit-hyphens:none){.-with-video .leadform-2020__image{display:block}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.-with-video .leadform-2020__image{display:block}}.leadform-2020__video{display:none}@media only screen and (min-width:767px){.-with-video .leadform-2020__video{max-width:260px;display:block}}@supports (-webkit-hyphens:none){.-with-video .leadform-2020__video{display:none}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.-with-video .leadform-2020__video{display:none}}video{display:inline-block}.leadform-2020__medium{width:100%;pointer-events:none}.leadform-2020__body{padding:16px 20px 20px}@media only screen and (min-width:767px){.leadform-2020__body{padding:40px 60px 40px 0}}.leadform-2020__heading{margin-bottom:12px;font-size:32px;line-height:40px;text-align:center}@media only screen and (max-width:480px){.leadform-2020__heading br{display:none}}@media only screen and (min-width:767px){.leadform-2020__heading{margin-bottom:24px;font-size:40px;line-height:46px;text-align:left}}.leadform-2020__desc{margin-bottom:24px;text-align:center}.leadform-2020__desc a{color:inherit}.leadform-2020__desc a:focus,.leadform-2020__desc a:hover{text-decoration:none}@media only screen and (min-width:767px){.leadform-2020__desc{margin-bottom:16px;text-align:left}}@media only screen and (min-width:1023px){.leadform-2020__desc{margin-bottom:24px}}.leadform-2020-form__row{text-align:center;max-width:280px;margin:0 auto}@media only screen and (min-width:767px){.leadform-2020-form__row{text-align:left;margin:0}}@media only screen and (min-width:1023px){.leadform-2020-form__row{display:flex;align-items:flex-start;max-width:none;margin:10px 0 0 0}}.leadform-2020-form__cell input[type=number]::-webkit-inner-spin-button,.leadform-2020-form__cell input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.leadform-2020-form__cell.-prefix{flex-basis:140px}@media only screen and (min-width:560px){.leadform-2020-form__cell{padding-right:8px;flex:0 0 150px}.leadform-2020-form__cell:last-child{padding-right:0;flex:0 0 auto}}@media only screen and (min-width:767px){.leadform-2020-form__cell{flex:0 0 200px}}.leadform-2020-form__cell+.leadform-2020-form__cell{margin-top:10px}@media only screen and (min-width:1023px){.leadform-2020-form__cell+.leadform-2020-form__cell{margin-top:0}}.leadform-2020-form__input.leadform-2020-form__input{padding:8px 15px;border:1px solid #ddd;background-color:#f4f4f4;color:#333;font-family:VodafoneLt,'Arial CE',Arial,Helvetica,sans-serif;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:20px;border-radius:6px;width:100%;text-align:center;outline:0;margin:0}.leadform-2020-form__input.leadform-2020-form__input:focus{border-color:#007c92}@media only screen and (min-width:560px){.leadform-2020-form__input.leadform-2020-form__input{text-align:left}}.leadform-2020-form__input.leadform-2020-form__input::-webkit-input-placeholder{color:#666;overflow:visible}.leadform-2020-form__input.leadform-2020-form__input:-moz-placeholder{color:#666;opacity:1;overflow:visible}.leadform-2020-form__input.leadform-2020-form__input::-moz-placeholder{color:#666;opacity:1;overflow:visible}.leadform-2020-form__input.leadform-2020-form__input:-ms-input-placeholder{color:#666;overflow:visible}.custom-select .leadform-2020-form__input.leadform-2020-form__input::-ms-expand{display:none}@media screen and (-webkit-min-device-pixel-ratio:0){.custom-select{position:relative}}.custom-select:after{content:'';position:absolute;top:50%;right:12px;font-size:17px;margin-top:-7px;display:block;width:10px;height:10px;border-top:1px solid #333;border-right:1px solid #333;transform:rotate(135deg);pointer-events:none}.leadform-2020-form__button{margin-top:12px}@media only screen and (min-width:560px){.leadform-2020-form__button{margin:0}}.leadform-2020-form__note{margin-top:24px;font-size:14px;text-align:center}@media only screen and (min-width:767px){.leadform-2020-form__note{text-align:left}}.leadform-2020-form__note p{line-height:1.3;font-size:14px}.leadform-2020-form__note a{color:inherit}.leadform-2020-form__note a:focus,.leadform-2020-form__note a:hover{color:inherit;text-decoration:none}.leadform-2020-form__note>:last-child{margin-bottom:0}.leadform-2020__contact{display:flex;list-style:none;margin:20px 0 0 0;padding:0}.leadform-2020__contact li{margin:0;padding:0}.leadform-2020__contact>li:first-child{padding-right:20px}.-business .leadform-2020__contact{justify-content:center}@media only screen and (min-width:767px){.-business .leadform-2020__contact{justify-content:flex-start}}.leadform-2020.-simple{margin-bottom:16px;padding:24px;display:flex;flex-direction:column;gap:16px;align-items:stretch;max-width:660px}.leadform-2020.-simple .leadform-2020-form__input,.leadform-2020.-simple .leadform-2020-form__row{text-align:left;max-width:none}.leadform-2020.-simple .leadform-2020-form__input{margin-bottom:4px}.leadform-2020.-simple .leadform-2020-form__button{width:100%}@media only screen and (min-width:560px){.leadform-2020.-simple .leadform-2020-form__row{display:flex;align-items:start;max-width:none;margin:0;text-align:left}.leadform-2020.-simple .leadform-2020-form__cell{margin:0}.leadform-2020.-simple .leadform-2020-form__cell:first-child{flex:1 1 auto}.leadform-2020.-simple .leadform-2020-form__cell:last-child{flex:1 0 140px}}@media only screen and (min-width:767px){.leadform-2020.-simple{align-items:center;flex-direction:row;justify-content:space-between;gap:32px}.leadform-2020.-simple .leadform-2020__form{flex:0 0 57%}.leadform-2020.-simple .leadform-2020__col{flex:0 0 52%}}@media only screen and (min-width:1023px){.leadform-2020.-simple{flex-direction:column;align-items:start;gap:16px}}@media only screen and (min-width:1150px){.leadform-2020.-simple{flex-direction:row;gap:32px;align-items:center}}.leadform-2020.-simple .leadform-2020__heading{font-size:28px;margin:0 0 .2em;text-align:left;line-height:1.1}.leadform-2020.-simple .leadform-2020__desc{font-size:18px;font-family:VodafoneRgBd,'Arial CE',Arial,Helvetica,sans-serif;margin:0;text-align:left}.leadform-2020.-simple .leadform-2020__desc p{line-height:1.2}.leadform-2020.-simple .leadform-2020__desc p:last-child{margin:0}.leadform-2020.-simple small{color:#4a4d4e}