.locations-and-areas .laa-tabs {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.locations-and-areas .laa-tabs .nav-item {
padding: 3px 15px;
border-bottom: 3px solid transparent;
color: inherit;
cursor: pointer;
}
.locations-and-areas .laa-tabs .nav-item.active {
font-weight: bold;
border-color: black;
color: black;
}
.locations-and-areas .laa-tabs .nav-item:hover {
border-color: black;
}
.locations-and-areas .map-wrap {
position: relative;
padding-top: 65%;
}
.locations-and-areas .map-wrap .map {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100%;
}
.locations-and-areas .map-wrap .map img {
width: 100%;
height: auto;
}
.locations-and-areas .map-wrap .leaflet-map {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100%;
}
.locations-and-areas .map-wrap .leaflet-map a {
text-decoration: none !important;
}
.locations-and-areas .map-wrap .leaflet-map .leaflet-popup-content-wrapper {
border-radius: 0;
}
.locations-and-areas .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content {
margin: 0;
min-width: 250px;
}
.locations-and-areas .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .laa_location_image {
padding-top: 50%;
background-size: cover;
background-position: top center;
}
.locations-and-areas .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .laa_location_text {
padding: 15px;
}
.locations-and-areas .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .laa_location_text .laa_location_address {
margin-bottom: 10px;
color: #666;
}
.locations-and-areas .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .laa_location_text .laa_location_name {
font-size: 1rem;
font-weight: bold;
margin-top: 0;
margin-bottom: 10px;
}
.locations-and-areas .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .laa_location_text audio {
margin-top: 15px;
}
.locations-and-areas .map-wrap .leaflet-map.map-style_Custom1 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
-webkit-filter: saturate(3);
filter: saturate(3);
}
.locations-and-areas .map-wrap .leaflet-map.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
-webkit-filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
}
.locations-and-areas .map-wrap .leaflet-map.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
-webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
filter: sepia(0) contrast(1) invert(1) brightness(2);
}
.locations-and-areas .map-wrap .leaflet-map.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
-webkit-filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
}
.locations-and-areas .map-wrap .leaflet-map.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
-webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
filter: sepia(0) contrast(1) invert(1) brightness(2);
}
.locations-and-areas .map-wrap #open-add-location-overlay {
position: absolute;
top: 8px;
right: 13px;
z-index: 9999;
background: #2271b1;
color: white;
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 50px;
text-align: center;
height: 50px;
cursor: pointer;
padding: 0 12px;
width: 50px;
overflow: hidden;
-webkit-transition: width 0.1s ease-in;
transition: width 0.1s ease-in;
}
.locations-and-areas .map-wrap #open-add-location-overlay span.btn_icon {
font-family: sans-serif;
font-size: 46px;
line-height: 1;
top: -3px;
position: relative;
}
.locations-and-areas .map-wrap #open-add-location-overlay span.btn_text {
font-size: 16px;
line-height: 1;
padding-left: 14px;
width: 115px;
text-align: left;
word-break: keep-all;
opacity: 0;
}
.locations-and-areas .map-wrap #open-add-location-overlay:hover, .locations-and-areas .map-wrap #open-add-location-overlay:active {
background: #1a5686;
width: 158px;
}
.locations-and-areas .map-wrap #open-add-location-overlay:hover span.btn_text, .locations-and-areas .map-wrap #open-add-location-overlay:active span.btn_text {
opacity: 1;
-webkit-transition: opacity 0.1s ease-in;
transition: opacity 0.1s ease-in;
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
.locations-and-areas .add-location {
display: none;
position: fixed;
z-index: 99999;
background: radial-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
top: 0;
left: 0;
right: 0;
bottom: 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding-top: 50px;
overflow: auto;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location {
padding-top: 0;
}
}
.locations-and-areas .add-location .location-overlay-content {
width: 768px;
max-width: 80%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
background: #fff;
color: #333;
padding: 33px 43px;
border-radius: 5px;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location .location-overlay-content {
max-width: 100%;
padding: 15px;
}
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location h2 {
text-align: center;
font-size: 26px;
margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location .location-overlay-content #laa_add_location h2 {
text-align: left;
}
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location input[type=text],
.locations-and-areas .add-location .location-overlay-content #laa_add_location textarea {
margin: 0 0 15px;
font-size: 16px;
border: 1px solid #888;
border-radius: 2px;
color: #333;
background: #fff;
outline: none;
line-height: 1;
padding: 13px;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location #laa_location_title {
width: 100%;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap {
position: relative;
padding-top: 50%;
margin: 0 2px 15px;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap {
padding-top: 100%;
}
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation {
position: absolute;
z-index: 1;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation .leaflet-geosearch-bar {
max-width: calc(100% - 67px);
margin: 10px 10px 0 auto;
}
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation input.glass {
border: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
margin: 0 !important;
outline: none !important;
font-size: 14px;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation input.glass {
padding: 0;
font-size: 16px;
}
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation.map-style_Custom1 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
-webkit-filter: saturate(3);
filter: saturate(3);
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
-webkit-filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
-webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
filter: sepia(0) contrast(1) invert(1) brightness(2);
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
-webkit-filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .map-wrap #mapGetLocation.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
-webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
filter: sepia(0) contrast(1) invert(1) brightness(2);
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location #laa_location_address {
width: 100%;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location #laa_location_text {
width: 100%;
height: 100px;
resize: none;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location label {
font-size: 16px;
margin-left: 10px;
margin-right: 10px;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location .location-overlay-content #laa_add_location label {
display: block;
margin-left: 0;
font-weight: bold;
}
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location #laa_location_image {
color: #2271b1;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .laa_media {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .laa_media .media-upload label {
display: inline-block;
font-size: 20px;
padding: 5px;
margin: 0;
line-height: 1;
color: #2271b1;
cursor: pointer;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .laa_media .media-upload label:hover {
color: #1a5686;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .laa_media .media-upload label .dashicons {
width: 25px;
height: 25px;
font-size: 25px;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .laa_media .media-upload input[type=file] {
display: none;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location .laa_media .media-upload .preview {
display: inline-block;
color: #2271b1;
font-size: 14px;
margin-right: 8px;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location input[type=submit] {
font-size: 19px;
margin: 40px 0 10px;
background-color: #2271b1;
padding: 15px 30px;
line-height: 1;
border: none;
color: white;
position: relative;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location input[type=submit]:hover, .locations-and-areas .add-location .location-overlay-content #laa_add_location input[type=submit]:active {
color: white;
background-color: #1a5686;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location .location-overlay-content #laa_add_location input[type=submit] {
width: 100%;
}
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location_error {
color: red;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location_thankyou {
text-align: center;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location_thankyou h3 {
color: #2271b1;
margin-bottom: 20px;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location_thankyou button {
margin: 30px 0 0;
background-color: #2271b1;
padding: 15px;
line-height: 1;
border: none;
color: white;
}
.locations-and-areas .add-location .location-overlay-content #laa_add_location_thankyou button:hover, .locations-and-areas .add-location .location-overlay-content #laa_add_location_thankyou button:active {
color: white;
background-color: #1a5686;
}
.locations-and-areas .add-location #close-add-location-overlay {
color: #fff;
position: absolute;
top: 20px;
right: 20px;
font-size: 50px;
line-height: 1;
display: inline-block;
cursor: pointer;
}
.locations-and-areas .add-location #close-add-location-overlay:hover {
color: #2271b1;
}
@media screen and (max-width: 768px) {
.locations-and-areas .add-location #close-add-location-overlay {
color: #333;
top: 7px;
right: 16px;
}
}
.locations-and-areas .add-location.active {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.locations-and-areas .box-wrap.layout-2 {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.locations-and-areas .box-wrap.layout-2 > nav {
width: 170px;
}
.locations-and-areas .box-wrap.layout-2 > nav .laa-tabs {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
border-bottom: none;
border-right: 1px solid rgba(0, 0, 0, 0.5);
height: 100%;
-webkit-box-pack: unset;
-ms-flex-pack: unset;
justify-content: unset;
}
.locations-and-areas .box-wrap.layout-2 > nav .laa-tabs .nav-item {
padding: 10px 10px 10px 20px;
line-height: 1.1;
border-bottom: none;
border-right: 3px solid transparent;
color: inherit;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
.locations-and-areas .box-wrap.layout-2 > nav .laa-tabs .nav-item.active {
font-weight: bold;
border-color: black;
color: black;
}
.locations-and-areas .box-wrap.layout-2 > nav .laa-tabs .nav-item:hover {
border-color: black;
}
.locations-and-areas .box-wrap.layout-2 > .map-wrap {
width: calc(100% - 150px);
}
.locations-and-areas .box-wrap.no-areas > nav {
display: none;
}
.locations-and-areas .box-wrap.no-areas > .map-wrap {
width: 100%;
}.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
position: absolute;
left: 0;
top: 0;
}
.leaflet-container {
overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: none;
} .leaflet-tile::selection {
background: transparent;
} .leaflet-safari .leaflet-tile {
image-rendering: -webkit-optimize-contrast;
} .leaflet-safari .leaflet-tile-container {
width: 1600px;
height: 1600px;
-webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
display: block;
}  .leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
max-width: none !important;
max-height: none !important;
}
.leaflet-container.leaflet-touch-zoom {
-ms-touch-action: pan-x pan-y;
touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
-ms-touch-action: pinch-zoom; touch-action: none;
touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
-ms-touch-action: none;
touch-action: none;
}
.leaflet-container {
-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
filter: inherit;
visibility: hidden;
}
.leaflet-tile-loaded {
visibility: inherit;
}
.leaflet-zoom-box {
width: 0;
height: 0;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 800;
} .leaflet-overlay-pane svg {
-moz-user-select: none;
}
.leaflet-pane         { z-index: 400; }
.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }
.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }
.leaflet-vml-shape {
width: 1px;
height: 1px;
}
.lvml {
behavior: url(#default#VML);
display: inline-block;
position: absolute;
} .leaflet-control {
position: relative;
z-index: 800;
pointer-events: visiblePainted; 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;
} .leaflet-fade-anim .leaflet-tile {
will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
opacity: 0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
opacity: 1;
}
.leaflet-zoom-animated {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
will-change: transform;
}
.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);
transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
-webkit-transition: none;
-moz-transition: none;
transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
visibility: hidden;
} .leaflet-interactive {
cursor: pointer;
}
.leaflet-grab {
cursor: -webkit-grab;
cursor:    -moz-grab;
cursor:         grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
cursor: move;
cursor: -webkit-grabbing;
cursor:    -moz-grabbing;
cursor:         grabbing;
} .leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
pointer-events: visiblePainted; pointer-events: auto;
} .leaflet-container {
background: #ddd;
outline: 0;
}
.leaflet-container a {
color: #0078A8;
}
.leaflet-container a.leaflet-active {
outline: 2px solid orange;
}
.leaflet-zoom-box {
border: 2px dotted #38f;
background: rgba(255,255,255,0.5);
} .leaflet-container {
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
} .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;
}
.leaflet-touch .leaflet-bar a:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
} .leaflet-control-zoom-in,
.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
font-size: 22px;
} .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(//www.keviaggi.it/wp-content/plugins/locations-and-areas/src/leaflet/images/layers.png);
width: 36px;
height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(//www.keviaggi.it/wp-content/plugins/locations-and-areas/src/leaflet/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-scrollbar {
overflow-y: scroll;
overflow-x: hidden;
padding-right: 5px;
}
.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;
} .leaflet-default-icon-path {
background-image: url(//www.keviaggi.it/wp-content/plugins/locations-and-areas/src/leaflet/images/marker-icon.png);
} .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: border-box;
box-sizing: border-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;
} .leaflet-popup {
position: absolute;
text-align: center;
margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
}
.leaflet-popup-content {
margin: 13px 19px;
line-height: 1.4;
}
.leaflet-popup-content p {
margin: 18px 0;
}
.leaflet-popup-tip-container {
width: 40px;
height: 20px;
position: absolute;
left: 50%;
margin-left: -20px;
overflow: hidden;
pointer-events: none;
}
.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);
transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
background: white;
color: #333;
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-container a.leaflet-popup-close-button {
position: absolute;
top: 0;
right: 0;
padding: 4px 4px 0 0;
border: none;
text-align: center;
width: 18px;
height: 14px;
font: 16px/14px Tahoma, Verdana, sans-serif;
color: #c3c3c3;
text-decoration: none;
font-weight: bold;
background: transparent;
}
.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;
} .leaflet-div-icon {
background: #fff;
border: 1px solid #666;
}  .leaflet-tooltip {
position: absolute;
padding: 6px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 3px;
color: #222;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.leaflet-tooltip.leaflet-clickable {
cursor: pointer;
pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
position: absolute;
pointer-events: none;
border: 6px solid transparent;
background: transparent;
content: "";
} .leaflet-tooltip-bottom {
margin-top: 6px;
}
.leaflet-tooltip-top {
margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
left: 50%;
margin-left: -6px;
}
.leaflet-tooltip-top:before {
bottom: 0;
margin-bottom: -12px;
border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
top: 0;
margin-top: -12px;
margin-left: -6px;
border-bottom-color: #fff;
}
.leaflet-tooltip-left {
margin-left: -6px;
}
.leaflet-tooltip-right {
margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
top: 50%;
margin-top: -6px;
}
.leaflet-tooltip-left:before {
right: 0;
margin-right: -12px;
border-left-color: #fff;
}
.leaflet-tooltip-right:before {
left: 0;
margin-left: -12px;
border-right-color: #fff;
}@-webkit-keyframes leaflet-gestures-fadein{0%{opacity:0}100%{opacity:1}}@keyframes leaflet-gestures-fadein{0%{opacity:0}100%{opacity:1}}.leaflet-container:after{-webkit-animation:leaflet-gestures-fadein .8s backwards;animation:leaflet-gestures-fadein .8s backwards;color:#fff;font-family:Roboto,Arial,sans-serif;font-size:22px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:15px;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.5);z-index:461;pointer-events:none}.leaflet-gesture-handling-scroll-warning:after,.leaflet-gesture-handling-touch-warning:after{-webkit-animation:leaflet-gestures-fadein .8s forwards;animation:leaflet-gestures-fadein .8s forwards}.leaflet-gesture-handling-touch-warning:after{content:attr(data-gesture-handling-touch-content)}.leaflet-gesture-handling-scroll-warning:after{content:attr(data-gesture-handling-scroll-content)}.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}
.leaflet-cluster-spider-leg { -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}.marker-cluster {
background-clip: padding-box;
border-radius: 20px;
background-color: rgba(255, 111, 105, 0.6);
}
.marker-cluster div {
width: 30px;
height: 30px;
margin-left: 5px;
margin-top: 5px;
background-color: rgba(255, 111, 105, 1);
color: white;
text-align: center;
border-radius: 15px;
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.marker-cluster span {
line-height: 30px;
}:root{--joinchat-ico:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M3.516 3.516c4.686-4.686 12.284-4.686 16.97 0s4.686 12.283 0 16.97a12 12 0 0 1-13.754 2.299l-5.814.735a.392.392 0 0 1-.438-.44l.748-5.788A12 12 0 0 1 3.517 3.517zm3.61 17.043.3.158a9.85 9.85 0 0 0 11.534-1.758c3.843-3.843 3.843-10.074 0-13.918s-10.075-3.843-13.918 0a9.85 9.85 0 0 0-1.747 11.554l.16.303-.51 3.942a.196.196 0 0 0 .219.22zm6.534-7.003-.933 1.164a9.84 9.84 0 0 1-3.497-3.495l1.166-.933a.79.79 0 0 0 .23-.94L9.561 6.96a.79.79 0 0 0-.924-.445l-2.023.524a.797.797 0 0 0-.588.88 11.754 11.754 0 0 0 10.005 10.005.797.797 0 0 0 .88-.587l.525-2.023a.79.79 0 0 0-.445-.923L14.6 13.327a.79.79 0 0 0-.94.23z'/%3E%3C/svg%3E");--joinchat-font:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif}.joinchat{--sep:20px;--bottom:var(--sep);--s:60px;--h:calc(var(--s)/2);--ch:142;--cs:70%;--cl:49%;--bw:1;--text:hsl(0deg 0% clamp(0%,var(--bw)*1000%,100%)/clamp(70%,var(--bw)*1000%,100%));--hover:hsl(var(--ch) var(--cs) calc(var(--cl) + 20%));--color:hsl(var(--ch) var(--cs) var(--cl));display:none;position:fixed;z-index:9000;right:var(--sep);bottom:var(--bottom);font:normal normal normal 16px/1.625em var(--joinchat-font);letter-spacing:0;animation:joinchat_show .5s cubic-bezier(.18,.89,.32,1.28) 10ms both;transform:scale3d(0,0,0);transform-origin:calc(var(--s)/-2) calc(var(--s)/-4);-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:manipulation;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgb(0 0 0/0)}.joinchat *,.joinchat :after,.joinchat :before{box-sizing:border-box}.joinchat--show{display:block;transform:scaleX(1)}.joinchat--left{right:auto;left:var(--sep)}.joinchat--noanim{animation:none}.joinchat__button{position:absolute;z-index:2;bottom:8px;right:8px;height:var(--s);width:var(--s);background:#25d366 var(--joinchat-ico) 50%/60% no-repeat;color:inherit;border-radius:50%;box-shadow:1px 6px 24px 0 rgba(7,94,84,.24);cursor:pointer;transition:background-color .2s linear}.joinchat__button:hover{background-color:#128c7e}.joinchat__button:active{background-color:#128c7e;transition:none}.joinchat--left .joinchat__button{right:auto;left:8px}.joinchat__button__ico{position:absolute;inset:0;display:flex;border-radius:50%;overflow:hidden;color:var(--text)!important}.joinchat__button__ico svg{width:var(--ico-size,100%);height:var(--ico-size,100%);margin:calc((100% - var(--ico-size, 1))/2)}.joinchat__button:has(.joinchat__button__ico){background:var(--color);box-shadow:1px 6px 24px 0 hsl(var(--ch) var(--cs) calc(var(--cl) - 10%)/24%)}.joinchat__button:has(.joinchat__button__ico):active,.joinchat__button:has(.joinchat__button__ico):hover{background:var(--hover)}.joinchat__button__image{position:absolute;inset:1px;border-radius:50%;overflow:hidden;opacity:0}.joinchat__button__image img,.joinchat__button__image video{display:block;width:100%;height:100%;object-fit:cover;object-position:center}.joinchat--show .joinchat__button__image{animation:joinchat_image_loop 20s linear 5s infinite normal both}.joinchat--img .joinchat__button__image{opacity:1;animation:none}.joinchat__tooltip{position:absolute;top:calc(var(--h) - 16px);right:calc(var(--s) + 16px);max-width:calc(100vw - var(--s) - 45px);height:32px;padding:0 14px;border:none;border-radius:16px;background:#fff;color:rgba(0,0,0,.8);line-height:31px;white-space:nowrap;opacity:0;transition:opacity .3s ease-out .4s;filter:drop-shadow(0 1px 4px rgba(0,0,0,.4));pointer-events:none}.joinchat__tooltip:after{content:"";display:block;position:absolute;top:10px;right:-6px;border:8px solid transparent;border-width:6px 0 6px 8px;border-left-color:#fff}.joinchat__tooltip div{width:-moz-max-content;width:max-content;max-width:100%;overflow:hidden;text-overflow:ellipsis}.joinchat--tooltip .joinchat__tooltip{animation:joinchat_tootlip 20s linear 5s 1 normal both}.joinchat--left .joinchat__tooltip{right:auto;left:calc(var(--s) + 16px)}.joinchat--left .joinchat__tooltip:after{left:-6px;right:auto;border-color:transparent;border-width:6px 8px 6px 0;border-right-color:#fff}.joinchat__qr{position:absolute;z-index:2;bottom:calc(var(--s) + 24px);right:8px;display:none;flex-direction:column-reverse;width:228px;min-height:200px;padding:14px 14px 10px;border:none;border-radius:16px;background:#fff;color:rgba(0,0,0,.8);text-align:center;white-space:nowrap;filter:drop-shadow(0 1px 4px rgba(0,0,0,.4));animation:joinchat_badge_in .4s cubic-bezier(.11,.84,.83,1.01) .5s both;pointer-events:none}.joinchat__qr:after{content:"";display:block;position:absolute;bottom:-6px;right:calc(var(--h) - 6px);border:8px solid transparent;border-width:8px 6px 0;border-top-color:#fff}.joinchat--left .joinchat__qr{left:8px;right:auto}.joinchat--left .joinchat__qr:after{left:calc(var(--h) - 6px);right:auto}.joinchat__qr div{font-size:14px;color:#4a4a4a;overflow:hidden;text-overflow:ellipsis}.joinchat__qr canvas{display:block;width:200px;height:200px;margin:0;image-rendering:pixelated}@keyframes joinchat_show{0%{transform:scale3d(0,0,0)}to{transform:scaleX(1)}}@keyframes joinchat_badge_in{0%{opacity:0;transform:translate3d(0,50px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes joinchat_image_loop{0%{opacity:0}3%,20%{opacity:1}25%,to{opacity:0}}@keyframes joinchat_tootlip{0%{opacity:0;transform:scaleY(0)}1%,20%{opacity:1;transform:scaleX(1)}25%,to{opacity:0;transform:scaleX(1)}}.joinchat__woo-btn__wrapper{clear:both}.joinchat__woo-btn{--s:40px;display:inline-block;box-sizing:border-box;height:var(--s);max-width:100%;padding:0 calc(var(--s)/2) 0 var(--s);background:#25d366 var(--joinchat-ico) calc(var(--s)*0.2) 50% no-repeat;background-size:calc(var(--s)*0.6);color:#fff;border-radius:calc(var(--s)/2);font:700 normal calc(var(--s)*0.35)/var(--s) var(--joinchat-font);white-space:nowrap;text-overflow:ellipsis;overflow:hidden;cursor:pointer;transition:background-color .2s}.joinchat__woo-btn:empty{padding-right:0}.joinchat__woo-btn:hover{background-color:#128c7e}@media (orientation:landscape) and (height >= 481px),(orientation:portrait) and (width >= 481px){.joinchat--mobile{display:none!important}}@media (width <= 767px){.joinchat--footer-bar{--bottom:76px!important}}@media (orientation:landscape) and (height <= 480px),(width <= 480px){.joinchat{--sep:6px}}@media (hover:hover){.joinchat__button:hover .joinchat__tooltip{opacity:1;animation:none;transition:opacity .2s}.joinchat--btn .joinchat__button:hover~.joinchat__qr{display:flex}}@media (prefers-reduced-motion){.joinchat{animation:none}}